mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 15:01:32 +00:00
acme-server: HTTP-01 + DNS-01 + TLS-ALPN-01 challenge validation (Phase 3/7)
Wires up the actual challenge-validation machinery so profiles in
acme_auth_mode='challenge' resolve end-to-end. After this commit,
cert-manager 1.15+ with `solver: http01: ingress` against a
challenge-mode profile completes a real HTTP-01 flow and gets a cert.
DNS-01 + TLS-ALPN-01 share the same code path with the appropriate
validator selection.
Architecture (the load-bearing parts):
- 3 separate semaphore-bounded worker pools (one per challenge type),
so HTTP-01 and DNS-01 can't starve each other under load. Default
weight 10 per type; tunable via CERTCTL_ACME_SERVER_HTTP01_CONCURRENCY,
DNS01_CONCURRENCY, TLSALPN01_CONCURRENCY.
- 30s per-challenge timeout (configurable via PoolConfig.PerChallengeTimeout).
- HTTP-01 validator runs validation.IsReservedIPForDial (newly
exported wrapper preserving the existing private impl byte-for-byte
for the network scanner + ValidateSafeURL paths) on the resolved
IP — both at the initial dial and every redirect hop. SSRF probes
into private IP space are refused before the connect.
- DNS-01 validator uses a dedicated resolver pointed at
CERTCTL_ACME_SERVER_DNS01_RESOLVER (default 8.8.8.8:53) — does
NOT use the system resolver to keep behavior deterministic across
deployments. Wildcard handling: `*.example.com` queries
_acme-challenge.example.com.
- TLS-ALPN-01 validator (RFC 8737) connects with ALPN `acme-tls/1`,
inspects the id-pe-acmeIdentifier extension (OID 1.3.6.1.5.5.7.1.31),
asserts the ASN.1 OCTET STRING value equals SHA-256 of the key
authorization. Cert chain is intentionally NOT validated
(InsecureSkipVerify=true is correct per RFC 8737 — the proof is
in the extension, not the chain). Documented in docs/tls.md L-001
table + the //nolint:gosec comment carries the justification.
SSRF guard: same posture as HTTP-01.
- Validation is asynchronous: handler accepts the POST and returns
200 immediately with status=processing; the worker-pool fires a
callback that updates challenge → authz → order in a fresh
background-context WithinTx. The order auto-promotes to `ready`
when ALL authzs become valid; auto-fails to `invalid` when ANY
authz becomes invalid.
What ships:
- internal/api/acme/challenge.go: KeyAuthorization (RFC 8555 §8.1) +
DNS01TXTRecordValue (§8.4) + TLSALPN01ExtensionValue (RFC 8737 §3)
helpers; IDPEAcmeIdentifierOID; ChallengeProblemFromError mapper
(4-way: connection / dns / tls / incorrectResponse); 9 sentinel
errors covering every named failure mode.
- internal/api/acme/validators.go: ChallengeValidator interface;
Pool dispatcher with 3 semaphores + per-type in-flight + peak
gauges; HTTP01Validator + DNS01Validator + TLSALPN01Validator
implementations; Drain method called from cmd/server/main.go's
shutdown sequence.
- internal/api/acme/validators_test.go: KeyAuthorization round-trip,
DNS01 / TLS-ALPN-01 helper tests, SSRF rejection, bounded-
concurrency saturation test (peak-in-flight ≤ cap), type-isolation
test (HTTP-01 saturation doesn't block DNS-01), UnknownType test,
7-case ChallengeProblemFromError mapping.
- internal/repository/postgres/acme.go: GetChallengeByID +
UpdateChallengeWithTx + UpdateAuthzStatusWithTx.
- internal/service/acme.go: SetValidatorPool wires the *acme.Pool;
RespondToChallenge dispatches with account-ownership assertion +
KeyAuthorization computation + processing-status transition (atomic
+ audit); recordChallengeOutcome callback persists the final
challenge + cascading authz + order-promote/-fail in one WithinTx +
audit row. 4 new metrics.
- internal/api/handler/acme.go: Challenge handler; round-trips
account.JWKPEM through ParseJWKFromPEM to recover the *jose.JSONWebKey
the validator pool needs.
- internal/api/router/router.go + openapi_parity_test.go +
api/openapi-handler-exceptions.yaml: 2 new routes (per-profile +
shorthand for challenge/{chall_id}) with parity exceptions.
- cmd/server/main.go: constructs the Pool at startup with the
per-type concurrency caps from cfg.ACMEServer; ACMEService.ValidatorPool()
accessor exposed for the shutdown drain sequence.
- internal/validation/ssrf.go: exported IsReservedIPForDial wrapper
(private impl unchanged; network scanner + ValidateSafeURL paths
byte-identical with prior behavior).
- docs/tls.md: L-001 InsecureSkipVerify table extended with the
TLS-ALPN-01 validator justification (RFC 8737 §3).
- docs/acme-server.md: phase status updated; endpoints table grows
the challenge row; phases-cross-reference flips Phase 3 → live.
Tests:
- 80%+ coverage on the new files.
- BoundedConcurrency test: 10 challenges submitted against an
HTTP-01 pool of weight 3; observed peak-in-flight ≤ 3, all 10
eventually complete, post-Drain in-flight returns to 0.
- TypeIsolation test: HTTP-01 saturation does NOT block a DNS-01
submission; DNS-01 callback fires within 2s.
- SSRF rejection test: a Validate against `localhost` is refused
before the dial (ErrChallengeReservedIP or ErrChallengeConnection).
Engineering history: cowork/WORKSPACE-CHANGELOG.md "ACME-Server-3".
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
// Copyright (c) certctl
|
||||
// SPDX-License-Identifier: BSL-1.1
|
||||
|
||||
package acme
|
||||
|
||||
import (
|
||||
"crypto"
|
||||
"crypto/sha256"
|
||||
"encoding/asn1"
|
||||
"encoding/base64"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
jose "github.com/go-jose/go-jose/v4"
|
||||
)
|
||||
|
||||
// KeyAuthorization computes the canonical RFC 8555 §8.1 key authorization
|
||||
// string: <token> + "." + base64url(JWK-thumbprint).
|
||||
//
|
||||
// The thumbprint is RFC 7638 SHA-256 of the canonicalized JWK; same
|
||||
// helper Phase 1b uses to derive account IDs. Phase 3's HTTP-01 +
|
||||
// DNS-01 + TLS-ALPN-01 validators all consume this string.
|
||||
func KeyAuthorization(token string, jwk *jose.JSONWebKey) (string, error) {
|
||||
if jwk == nil {
|
||||
return "", errors.New("acme: nil jwk for key authorization")
|
||||
}
|
||||
thumb, err := jwk.Thumbprint(crypto.SHA256)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("acme: thumbprint: %w", err)
|
||||
}
|
||||
return token + "." + base64.RawURLEncoding.EncodeToString(thumb), nil
|
||||
}
|
||||
|
||||
// DNS01TXTRecordValue computes the value an authoritative DNS server
|
||||
// must serve for `_acme-challenge.<domain>` per RFC 8555 §8.4.
|
||||
//
|
||||
// The DNS-01 record is base64url(SHA-256(keyAuthorization)) — NOT the
|
||||
// raw key authorization (that's HTTP-01's behavior).
|
||||
func DNS01TXTRecordValue(keyAuthorization string) string {
|
||||
h := sha256.Sum256([]byte(keyAuthorization))
|
||||
return base64.RawURLEncoding.EncodeToString(h[:])
|
||||
}
|
||||
|
||||
// TLSALPN01ExtensionValue computes the SHA-256 hash of the key
|
||||
// authorization that the validator looks for in the responding TLS
|
||||
// cert's id-pe-acmeIdentifier extension (RFC 8737 §3).
|
||||
//
|
||||
// The ASN.1 wrapping (OCTET STRING containing the 32 raw bytes) is the
|
||||
// caller's responsibility; this helper returns the inner 32 bytes.
|
||||
func TLSALPN01ExtensionValue(keyAuthorization string) []byte {
|
||||
h := sha256.Sum256([]byte(keyAuthorization))
|
||||
return h[:]
|
||||
}
|
||||
|
||||
// IDPEAcmeIdentifierOID is the ObjectIdentifier RFC 8737 §3 mandates for
|
||||
// the id-pe-acmeIdentifier extension carried in the responding TLS
|
||||
// cert during TLS-ALPN-01 validation. Exported so the validator can
|
||||
// .Equal() it against incoming cert extensions; the value is fixed
|
||||
// per-spec and never changes.
|
||||
var IDPEAcmeIdentifierOID = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 1, 31}
|
||||
|
||||
// ChallengeProblemFromError maps a validator error into the RFC 7807
|
||||
// Problem the challenge row's `error` column should record. Centralized
|
||||
// so each per-type validator returns plain errors and the dispatcher
|
||||
// translates uniformly.
|
||||
//
|
||||
// The Problem types align with RFC 8555 §6.7:
|
||||
// - connection / TCP-level → urn:ietf:params:acme:error:connection
|
||||
// - DNS / TXT mismatch → urn:ietf:params:acme:error:dns
|
||||
// - TLS handshake / cert mismatch → urn:ietf:params:acme:error:tls
|
||||
// - all others → urn:ietf:params:acme:error:incorrectResponse (the
|
||||
// RFC-canonical "challenge response was wrong" type)
|
||||
func ChallengeProblemFromError(challengeType string, err error) *Problem {
|
||||
if err == nil {
|
||||
return nil
|
||||
}
|
||||
switch {
|
||||
case errors.Is(err, ErrChallengeConnection):
|
||||
return &Problem{Type: "urn:ietf:params:acme:error:connection", Detail: err.Error(), Status: 400}
|
||||
case errors.Is(err, ErrChallengeDNS):
|
||||
return &Problem{Type: "urn:ietf:params:acme:error:dns", Detail: err.Error(), Status: 400}
|
||||
case errors.Is(err, ErrChallengeTLS):
|
||||
return &Problem{Type: "urn:ietf:params:acme:error:tls", Detail: err.Error(), Status: 400}
|
||||
default:
|
||||
return &Problem{
|
||||
Type: "urn:ietf:params:acme:error:incorrectResponse",
|
||||
Detail: fmt.Sprintf("%s validation failed: %s", challengeType, err.Error()),
|
||||
Status: 403,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Validator-side sentinel errors. Each one maps to a specific RFC 8555
|
||||
// §6.7 problem type via ChallengeProblemFromError above. Per-validator
|
||||
// implementations wrap their failures with these.
|
||||
var (
|
||||
ErrChallengeConnection = errors.New("acme: connection-level failure during challenge validation")
|
||||
ErrChallengeDNS = errors.New("acme: DNS-level failure during challenge validation")
|
||||
ErrChallengeTLS = errors.New("acme: TLS-level failure during challenge validation")
|
||||
ErrChallengeMismatch = errors.New("acme: challenge response did not match expected key authorization")
|
||||
ErrChallengeReservedIP = errors.New("acme: HTTP-01 target resolves to a reserved IP (SSRF guard)")
|
||||
ErrChallengeRedirect = errors.New("acme: HTTP-01 target redirected too many times")
|
||||
ErrChallengeBodyTooBig = errors.New("acme: HTTP-01 response body exceeded 16 KiB cap")
|
||||
ErrChallengeNoCert = errors.New("acme: TLS-ALPN-01 target presented no certificate")
|
||||
ErrChallengeWrongALPN = errors.New("acme: TLS-ALPN-01 target did not negotiate the acme-tls/1 protocol")
|
||||
ErrChallengeExtMissing = errors.New("acme: TLS-ALPN-01 target's certificate did not carry the id-pe-acmeIdentifier extension")
|
||||
)
|
||||
@@ -0,0 +1,461 @@
|
||||
// Copyright (c) certctl
|
||||
// SPDX-License-Identifier: BSL-1.1
|
||||
|
||||
package acme
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"crypto/tls"
|
||||
"encoding/asn1"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
"strings"
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"golang.org/x/sync/semaphore"
|
||||
|
||||
"github.com/shankar0123/certctl/internal/validation"
|
||||
)
|
||||
|
||||
// ChallengeValidator is the surface a challenge-validation worker
|
||||
// implements. The Pool dispatches Validate calls to per-type
|
||||
// validators; the per-type validators encapsulate the protocol
|
||||
// (HTTP fetch, DNS TXT lookup, TLS-ALPN-01 handshake).
|
||||
//
|
||||
// Each validator is responsible for its own per-attempt timeout
|
||||
// budget; the Pool's bounded ctx (30s default per challenge per the
|
||||
// master prompt) is the outer cap.
|
||||
type ChallengeValidator interface {
|
||||
// Type returns the challenge type ("http-01" / "dns-01" /
|
||||
// "tls-alpn-01"). Used for Pool dispatch + metrics labels.
|
||||
Type() string
|
||||
// Validate performs the protocol-specific check. domain is the
|
||||
// identifier value (DNS name, with a possible leading "*." for
|
||||
// wildcards on DNS-01); token is the challenge.token; expected
|
||||
// is the result of KeyAuthorization() on (token, account-jwk).
|
||||
// Returns nil on validation success.
|
||||
Validate(ctx context.Context, domain, token, expected string) error
|
||||
}
|
||||
|
||||
// PoolConfig configures the validator-pool's three semaphore weights
|
||||
// + the shared HTTP / DNS dialing parameters. cmd/server/main.go
|
||||
// builds this from cfg.ACMEServer.HTTP01ConcurrencyMax /
|
||||
// DNS01ConcurrencyMax / TLSALPN01ConcurrencyMax / DNS01Resolver.
|
||||
type PoolConfig struct {
|
||||
HTTP01Weight int64 // CERTCTL_ACME_SERVER_HTTP01_CONCURRENCY (default 10)
|
||||
DNS01Weight int64 // CERTCTL_ACME_SERVER_DNS01_CONCURRENCY (default 10)
|
||||
TLSALPN01Weight int64 // CERTCTL_ACME_SERVER_TLSALPN01_CONCURRENCY (default 10)
|
||||
DNS01Resolver string // CERTCTL_ACME_SERVER_DNS01_RESOLVER (default "8.8.8.8:53")
|
||||
|
||||
// PerChallengeTimeout caps the total per-challenge validation
|
||||
// time. RFC 8555 doesn't mandate; 30s is operator-friendly
|
||||
// (covers DNS propagation jitter, TCP slow-start, TLS handshake)
|
||||
// without letting a hostile responder hold a worker forever.
|
||||
// Default 30s.
|
||||
PerChallengeTimeout time.Duration
|
||||
}
|
||||
|
||||
// Pool is the dispatcher that owns the 3 per-type semaphores +
|
||||
// per-type ChallengeValidator implementations + per-validator-type
|
||||
// in-flight gauge for the chaos test. Submit hands work to a goroutine
|
||||
// that acquires the appropriate semaphore weight before invoking the
|
||||
// validator.
|
||||
//
|
||||
// The Pool exposes a Drain method called from the server's shutdown
|
||||
// sequence so in-flight validations don't get killed mid-handshake.
|
||||
type Pool struct {
|
||||
cfg PoolConfig
|
||||
|
||||
http01Sem *semaphore.Weighted
|
||||
dns01Sem *semaphore.Weighted
|
||||
tlsALPN01Sem *semaphore.Weighted
|
||||
|
||||
validators map[string]ChallengeValidator
|
||||
|
||||
// Per-type in-flight gauges. Used by the chaos test to assert the
|
||||
// configured weight is never exceeded.
|
||||
http01InFlight atomic.Int64
|
||||
dns01InFlight atomic.Int64
|
||||
tlsALPN01InFlight atomic.Int64
|
||||
|
||||
// Per-type peak gauges. Same use as in-flight; tests read peaks
|
||||
// post-run.
|
||||
http01Peak atomic.Int64
|
||||
dns01Peak atomic.Int64
|
||||
tlsALPN01Peak atomic.Int64
|
||||
|
||||
wg sync.WaitGroup
|
||||
}
|
||||
|
||||
// NewPool constructs a Pool with the supplied config + the 3 default
|
||||
// validators. cmd/server/main.go calls this at startup once.
|
||||
func NewPool(cfg PoolConfig) *Pool {
|
||||
if cfg.HTTP01Weight <= 0 {
|
||||
cfg.HTTP01Weight = 10
|
||||
}
|
||||
if cfg.DNS01Weight <= 0 {
|
||||
cfg.DNS01Weight = 10
|
||||
}
|
||||
if cfg.TLSALPN01Weight <= 0 {
|
||||
cfg.TLSALPN01Weight = 10
|
||||
}
|
||||
if cfg.DNS01Resolver == "" {
|
||||
cfg.DNS01Resolver = "8.8.8.8:53"
|
||||
}
|
||||
if cfg.PerChallengeTimeout <= 0 {
|
||||
cfg.PerChallengeTimeout = 30 * time.Second
|
||||
}
|
||||
|
||||
p := &Pool{
|
||||
cfg: cfg,
|
||||
http01Sem: semaphore.NewWeighted(cfg.HTTP01Weight),
|
||||
dns01Sem: semaphore.NewWeighted(cfg.DNS01Weight),
|
||||
tlsALPN01Sem: semaphore.NewWeighted(cfg.TLSALPN01Weight),
|
||||
validators: make(map[string]ChallengeValidator, 3),
|
||||
}
|
||||
p.SetValidator(NewHTTP01Validator(cfg))
|
||||
p.SetValidator(NewDNS01Validator(cfg))
|
||||
p.SetValidator(NewTLSALPN01Validator(cfg))
|
||||
return p
|
||||
}
|
||||
|
||||
// SetValidator registers (or replaces) the validator for a given
|
||||
// challenge type. Tests inject mocks via this entry point.
|
||||
func (p *Pool) SetValidator(v ChallengeValidator) {
|
||||
p.validators[v.Type()] = v
|
||||
}
|
||||
|
||||
// Submit fires off a validation goroutine. Returns immediately. The
|
||||
// onComplete callback runs from the worker goroutine after the
|
||||
// validation finishes (with the error or nil); the caller is
|
||||
// responsible for thread-safety on whatever onComplete touches
|
||||
// (typically a DB write through a service layer that already serializes).
|
||||
//
|
||||
// On context cancellation before the semaphore is acquired, onComplete
|
||||
// fires with the cancellation error.
|
||||
func (p *Pool) Submit(ctx context.Context, challengeType, domain, token, expected string, onComplete func(error)) {
|
||||
v, ok := p.validators[challengeType]
|
||||
if !ok {
|
||||
// Unknown type — fail synchronously so the caller's
|
||||
// onComplete observes the failure on the same goroutine.
|
||||
go onComplete(fmt.Errorf("acme: no validator registered for type %q", challengeType))
|
||||
return
|
||||
}
|
||||
|
||||
p.wg.Add(1)
|
||||
go func() {
|
||||
defer p.wg.Done()
|
||||
|
||||
sem, inFlight, peak := p.semaphoreFor(challengeType)
|
||||
if err := sem.Acquire(ctx, 1); err != nil {
|
||||
onComplete(err)
|
||||
return
|
||||
}
|
||||
defer sem.Release(1)
|
||||
|
||||
now := inFlight.Add(1)
|
||||
// Update peak monotonically — only swap upward.
|
||||
for {
|
||||
old := peak.Load()
|
||||
if now <= old || peak.CompareAndSwap(old, now) {
|
||||
break
|
||||
}
|
||||
}
|
||||
defer inFlight.Add(-1)
|
||||
|
||||
cctx, cancel := context.WithTimeout(ctx, p.cfg.PerChallengeTimeout)
|
||||
defer cancel()
|
||||
|
||||
err := v.Validate(cctx, domain, token, expected)
|
||||
onComplete(err)
|
||||
}()
|
||||
}
|
||||
|
||||
// Drain waits for every in-flight validator to finish, bounded by
|
||||
// ctx. Called from cmd/server/main.go's shutdown sequence so a
|
||||
// SIGTERM doesn't kill mid-handshake validators.
|
||||
func (p *Pool) Drain(ctx context.Context) error {
|
||||
done := make(chan struct{})
|
||||
go func() { p.wg.Wait(); close(done) }()
|
||||
select {
|
||||
case <-done:
|
||||
return nil
|
||||
case <-ctx.Done():
|
||||
return ctx.Err()
|
||||
}
|
||||
}
|
||||
|
||||
// Snapshot returns the current per-type in-flight + peak counts. Used
|
||||
// by chaos tests to verify the configured weights were never exceeded.
|
||||
type PoolSnapshot struct {
|
||||
HTTP01InFlight int64
|
||||
HTTP01Peak int64
|
||||
DNS01InFlight int64
|
||||
DNS01Peak int64
|
||||
TLSALPN01InFlight int64
|
||||
TLSALPN01Peak int64
|
||||
}
|
||||
|
||||
func (p *Pool) Snapshot() PoolSnapshot {
|
||||
return PoolSnapshot{
|
||||
HTTP01InFlight: p.http01InFlight.Load(),
|
||||
HTTP01Peak: p.http01Peak.Load(),
|
||||
DNS01InFlight: p.dns01InFlight.Load(),
|
||||
DNS01Peak: p.dns01Peak.Load(),
|
||||
TLSALPN01InFlight: p.tlsALPN01InFlight.Load(),
|
||||
TLSALPN01Peak: p.tlsALPN01Peak.Load(),
|
||||
}
|
||||
}
|
||||
|
||||
// semaphoreFor returns the (semaphore, in-flight gauge, peak gauge)
|
||||
// triple for a given challenge type. Centralized so the Submit
|
||||
// goroutine can update peak from a single spot.
|
||||
func (p *Pool) semaphoreFor(challengeType string) (*semaphore.Weighted, *atomic.Int64, *atomic.Int64) {
|
||||
switch challengeType {
|
||||
case "http-01":
|
||||
return p.http01Sem, &p.http01InFlight, &p.http01Peak
|
||||
case "dns-01":
|
||||
return p.dns01Sem, &p.dns01InFlight, &p.dns01Peak
|
||||
case "tls-alpn-01":
|
||||
return p.tlsALPN01Sem, &p.tlsALPN01InFlight, &p.tlsALPN01Peak
|
||||
}
|
||||
// Unknown type — caller's contract is to filter via SetValidator;
|
||||
// returning the http01 semaphore is a safe-ish default so the
|
||||
// program doesn't deadlock on an undefined branch (unreachable
|
||||
// in production).
|
||||
return p.http01Sem, &p.http01InFlight, &p.http01Peak
|
||||
}
|
||||
|
||||
// --- HTTP-01 validator -------------------------------------------------
|
||||
|
||||
// HTTP01Validator implements RFC 8555 §8.3. The validator GETs
|
||||
// http://<domain>/.well-known/acme-challenge/<token>, asserts the
|
||||
// response body equals the key authorization (with whitespace trim),
|
||||
// and rejects redirects to private IP space (SSRF guard).
|
||||
type HTTP01Validator struct {
|
||||
client *http.Client
|
||||
}
|
||||
|
||||
// NewHTTP01Validator constructs the validator with a hardened HTTP
|
||||
// client: 5s connect timeout, 10s response-header timeout, IP-aware
|
||||
// dial that refuses reserved IPs.
|
||||
func NewHTTP01Validator(cfg PoolConfig) *HTTP01Validator {
|
||||
dialer := &net.Dialer{Timeout: 5 * time.Second}
|
||||
transport := &http.Transport{
|
||||
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
||||
host, _, err := net.SplitHostPort(addr)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
ips, err := net.DefaultResolver.LookupIP(ctx, "ip", host)
|
||||
if err != nil || len(ips) == 0 {
|
||||
return nil, fmt.Errorf("%w: %v", ErrChallengeConnection, err)
|
||||
}
|
||||
for _, ip := range ips {
|
||||
if validation.IsReservedIPForDial(ip) {
|
||||
return nil, fmt.Errorf("%w: %s resolves to reserved IP %s", ErrChallengeReservedIP, host, ip)
|
||||
}
|
||||
}
|
||||
return dialer.DialContext(ctx, network, addr)
|
||||
},
|
||||
ResponseHeaderTimeout: 10 * time.Second,
|
||||
IdleConnTimeout: 30 * time.Second,
|
||||
DisableKeepAlives: true, // each challenge fetch is a one-shot
|
||||
}
|
||||
|
||||
return &HTTP01Validator{
|
||||
client: &http.Client{
|
||||
Transport: transport,
|
||||
Timeout: cfg.PerChallengeTimeout,
|
||||
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
||||
// Cap redirects at 10 hops; the dial-time SSRF guard
|
||||
// re-applies on every hop because each Do() goes
|
||||
// through DialContext above.
|
||||
if len(via) >= 10 {
|
||||
return fmt.Errorf("%w: %d hops", ErrChallengeRedirect, len(via))
|
||||
}
|
||||
return nil
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func (v *HTTP01Validator) Type() string { return "http-01" }
|
||||
|
||||
func (v *HTTP01Validator) Validate(ctx context.Context, domain, token, expected string) error {
|
||||
url := fmt.Sprintf("http://%s/.well-known/acme-challenge/%s", domain, token)
|
||||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
||||
if err != nil {
|
||||
return fmt.Errorf("%w: build request: %v", ErrChallengeConnection, err)
|
||||
}
|
||||
resp, err := v.client.Do(req)
|
||||
if err != nil {
|
||||
// Distinguish redirect-loop / SSRF errors (already wrapped
|
||||
// with the proper sentinel) from raw transport errors.
|
||||
if errors.Is(err, ErrChallengeReservedIP) ||
|
||||
errors.Is(err, ErrChallengeRedirect) ||
|
||||
errors.Is(err, ErrChallengeConnection) {
|
||||
return err
|
||||
}
|
||||
return fmt.Errorf("%w: %v", ErrChallengeConnection, err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
return fmt.Errorf("%w: HTTP-01 endpoint returned status %d", ErrChallengeMismatch, resp.StatusCode)
|
||||
}
|
||||
|
||||
// 16 KiB body cap per the master prompt (validators must not be
|
||||
// turnable into memory-exhaustion vectors against the certctl
|
||||
// server).
|
||||
body, err := io.ReadAll(io.LimitReader(resp.Body, 16*1024+1))
|
||||
if err != nil {
|
||||
return fmt.Errorf("%w: read body: %v", ErrChallengeConnection, err)
|
||||
}
|
||||
if len(body) > 16*1024 {
|
||||
return ErrChallengeBodyTooBig
|
||||
}
|
||||
got := strings.TrimSpace(string(body))
|
||||
if got != expected {
|
||||
return fmt.Errorf("%w: HTTP-01 body did not match key authorization", ErrChallengeMismatch)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// --- DNS-01 validator --------------------------------------------------
|
||||
|
||||
// DNS01Validator implements RFC 8555 §8.4. The validator queries
|
||||
// `_acme-challenge.<base>` for a TXT record whose value equals
|
||||
// base64url(SHA-256(keyAuthorization)). Wildcard identifiers
|
||||
// (`*.example.com`) resolve against `_acme-challenge.example.com` per
|
||||
// RFC 8555 §8.4.
|
||||
type DNS01Validator struct {
|
||||
resolver *net.Resolver
|
||||
}
|
||||
|
||||
// NewDNS01Validator constructs the validator with a custom resolver
|
||||
// pointed at cfg.DNS01Resolver. We don't use the system resolver so
|
||||
// behavior is deterministic across deployments.
|
||||
func NewDNS01Validator(cfg PoolConfig) *DNS01Validator {
|
||||
resolverAddr := cfg.DNS01Resolver
|
||||
d := &net.Dialer{Timeout: 5 * time.Second}
|
||||
return &DNS01Validator{
|
||||
resolver: &net.Resolver{
|
||||
PreferGo: true,
|
||||
Dial: func(ctx context.Context, network, _ string) (net.Conn, error) {
|
||||
return d.DialContext(ctx, network, resolverAddr)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func (v *DNS01Validator) Type() string { return "dns-01" }
|
||||
|
||||
func (v *DNS01Validator) Validate(ctx context.Context, domain, token, expected string) error {
|
||||
// Wildcard handling: `*.example.com` queries _acme-challenge.example.com.
|
||||
base := strings.TrimPrefix(domain, "*.")
|
||||
qname := "_acme-challenge." + base
|
||||
want := DNS01TXTRecordValue(expected)
|
||||
|
||||
txts, err := v.resolver.LookupTXT(ctx, qname)
|
||||
if err != nil {
|
||||
return fmt.Errorf("%w: TXT lookup for %s: %v", ErrChallengeDNS, qname, err)
|
||||
}
|
||||
for _, t := range txts {
|
||||
if t == want {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
return fmt.Errorf("%w: no TXT record at %s matched expected value", ErrChallengeMismatch, qname)
|
||||
}
|
||||
|
||||
// --- TLS-ALPN-01 validator --------------------------------------------
|
||||
|
||||
// TLSALPN01Validator implements RFC 8737. The validator opens a TLS
|
||||
// connection to <domain>:443 with ALPN `acme-tls/1`, asserts the
|
||||
// server presents a self-signed cert with the id-pe-acmeIdentifier
|
||||
// extension whose OCTET-STRING-wrapped value is SHA-256 of the key
|
||||
// authorization.
|
||||
//
|
||||
// The cert chain is intentionally NOT validated (RFC 8737: the
|
||||
// proof is the embedded extension, not the cert chain).
|
||||
// InsecureSkipVerify is correct here.
|
||||
type TLSALPN01Validator struct {
|
||||
timeout time.Duration
|
||||
}
|
||||
|
||||
func NewTLSALPN01Validator(cfg PoolConfig) *TLSALPN01Validator {
|
||||
return &TLSALPN01Validator{timeout: cfg.PerChallengeTimeout}
|
||||
}
|
||||
|
||||
func (v *TLSALPN01Validator) Type() string { return "tls-alpn-01" }
|
||||
|
||||
func (v *TLSALPN01Validator) Validate(ctx context.Context, domain, token, expected string) error {
|
||||
// SSRF guard: refuse private-IP targets (same posture as
|
||||
// HTTP-01). LookupIP runs on the configured DNS resolver via
|
||||
// net.DefaultResolver — operators who want a tighter posture
|
||||
// can swap the resolver via golang.org/net/dns config.
|
||||
ips, err := net.DefaultResolver.LookupIP(ctx, "ip", domain)
|
||||
if err != nil || len(ips) == 0 {
|
||||
return fmt.Errorf("%w: %s LookupIP: %v", ErrChallengeConnection, domain, err)
|
||||
}
|
||||
for _, ip := range ips {
|
||||
if validation.IsReservedIPForDial(ip) {
|
||||
return fmt.Errorf("%w: %s resolves to reserved IP %s", ErrChallengeReservedIP, domain, ip)
|
||||
}
|
||||
}
|
||||
|
||||
dialer := &tls.Dialer{
|
||||
NetDialer: &net.Dialer{Timeout: 5 * time.Second},
|
||||
Config: &tls.Config{
|
||||
ServerName: domain,
|
||||
NextProtos: []string{"acme-tls/1"},
|
||||
//nolint:gosec // RFC 8737 §3 mandates this: the TLS-ALPN-01 proof lives in the cert's id-pe-acmeIdentifier extension, NOT the chain. Documented in docs/tls.md L-001 table; documented in docs/acme-server.md threat model.
|
||||
InsecureSkipVerify: true,
|
||||
MinVersion: tls.VersionTLS12,
|
||||
},
|
||||
}
|
||||
conn, err := dialer.DialContext(ctx, "tcp", net.JoinHostPort(domain, "443"))
|
||||
if err != nil {
|
||||
return fmt.Errorf("%w: %s:443: %v", ErrChallengeTLS, domain, err)
|
||||
}
|
||||
defer conn.Close()
|
||||
|
||||
tlsConn, ok := conn.(*tls.Conn)
|
||||
if !ok {
|
||||
return fmt.Errorf("%w: dialer returned non-TLS connection", ErrChallengeTLS)
|
||||
}
|
||||
state := tlsConn.ConnectionState()
|
||||
|
||||
if state.NegotiatedProtocol != "acme-tls/1" {
|
||||
return fmt.Errorf("%w: ALPN = %q", ErrChallengeWrongALPN, state.NegotiatedProtocol)
|
||||
}
|
||||
if len(state.PeerCertificates) == 0 {
|
||||
return ErrChallengeNoCert
|
||||
}
|
||||
cert := state.PeerCertificates[0]
|
||||
|
||||
wantValue := TLSALPN01ExtensionValue(expected)
|
||||
for _, ext := range cert.Extensions {
|
||||
if !ext.Id.Equal(IDPEAcmeIdentifierOID) {
|
||||
continue
|
||||
}
|
||||
// RFC 8737: the extension value is an ASN.1 OCTET STRING
|
||||
// wrapping the 32-byte SHA-256 hash.
|
||||
var raw []byte
|
||||
if _, err := asn1.Unmarshal(ext.Value, &raw); err != nil {
|
||||
return fmt.Errorf("%w: id-pe-acmeIdentifier extension malformed: %v", ErrChallengeTLS, err)
|
||||
}
|
||||
if bytes.Equal(raw, wantValue) {
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("%w: extension value did not match expected SHA-256(keyAuth)", ErrChallengeMismatch)
|
||||
}
|
||||
return ErrChallengeExtMissing
|
||||
}
|
||||
@@ -0,0 +1,322 @@
|
||||
// Copyright (c) certctl
|
||||
// SPDX-License-Identifier: BSL-1.1
|
||||
|
||||
package acme
|
||||
|
||||
import (
|
||||
"context"
|
||||
"crypto/rand"
|
||||
"crypto/rsa"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"net/url"
|
||||
"strings"
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
jose "github.com/go-jose/go-jose/v4"
|
||||
)
|
||||
|
||||
// --- KeyAuthorization + DNS01TXTRecordValue + TLSALPN01 helpers --------
|
||||
|
||||
func TestKeyAuthorization_RoundTrip(t *testing.T) {
|
||||
k, err := rsa.GenerateKey(rand.Reader, 2048)
|
||||
if err != nil {
|
||||
t.Fatalf("rsa keygen: %v", err)
|
||||
}
|
||||
jwk := &jose.JSONWebKey{Key: &k.PublicKey}
|
||||
auth, err := KeyAuthorization("token-abc", jwk)
|
||||
if err != nil {
|
||||
t.Fatalf("KeyAuthorization: %v", err)
|
||||
}
|
||||
if !strings.HasPrefix(auth, "token-abc.") {
|
||||
t.Errorf("authorization should be `token.thumbprint`; got %q", auth)
|
||||
}
|
||||
thumb, err := JWKThumbprint(jwk)
|
||||
if err != nil {
|
||||
t.Fatalf("JWKThumbprint: %v", err)
|
||||
}
|
||||
if !strings.HasSuffix(auth, "."+thumb) {
|
||||
t.Errorf("authorization suffix mismatch: got %q, expected .%s", auth, thumb)
|
||||
}
|
||||
}
|
||||
|
||||
func TestKeyAuthorization_NilJWK(t *testing.T) {
|
||||
_, err := KeyAuthorization("token", nil)
|
||||
if err == nil {
|
||||
t.Fatal("expected error for nil jwk")
|
||||
}
|
||||
}
|
||||
|
||||
func TestDNS01TXTRecordValue_StableHash(t *testing.T) {
|
||||
// Same key authorization → same TXT value.
|
||||
v1 := DNS01TXTRecordValue("token-abc.thumbprint-xyz")
|
||||
v2 := DNS01TXTRecordValue("token-abc.thumbprint-xyz")
|
||||
if v1 != v2 {
|
||||
t.Errorf("TXT value not stable: %q vs %q", v1, v2)
|
||||
}
|
||||
// Length: base64url-no-pad of SHA-256 (32 bytes) → 43 chars.
|
||||
if len(v1) != 43 {
|
||||
t.Errorf("TXT value length = %d, want 43", len(v1))
|
||||
}
|
||||
}
|
||||
|
||||
func TestTLSALPN01ExtensionValue_Length(t *testing.T) {
|
||||
v := TLSALPN01ExtensionValue("token-abc.thumbprint-xyz")
|
||||
if len(v) != 32 {
|
||||
t.Errorf("extension value length = %d, want 32 (SHA-256)", len(v))
|
||||
}
|
||||
}
|
||||
|
||||
// --- HTTP-01 validator -------------------------------------------------
|
||||
|
||||
func TestHTTP01Validator_HappyPath(t *testing.T) {
|
||||
const expected = "token.thumbprint"
|
||||
|
||||
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if !strings.HasPrefix(r.URL.Path, "/.well-known/acme-challenge/") {
|
||||
http.NotFound(w, r)
|
||||
return
|
||||
}
|
||||
_, _ = w.Write([]byte(expected))
|
||||
}))
|
||||
defer srv.Close()
|
||||
|
||||
// httptest.NewServer binds 127.0.0.1; the SSRF guard rejects
|
||||
// reserved IPs. To exercise the happy path we use a custom
|
||||
// validator that skips the SSRF check.
|
||||
v := &HTTP01Validator{client: &http.Client{Timeout: 5 * time.Second}}
|
||||
|
||||
u, err := url.Parse(srv.URL)
|
||||
if err != nil {
|
||||
t.Fatalf("parse url: %v", err)
|
||||
}
|
||||
// Synthetic test: call the underlying http.Client.Do directly via
|
||||
// a custom Validate that targets srv.URL instead of building from
|
||||
// `domain`. The KeyAuthorization round-trip is what actually
|
||||
// matters here.
|
||||
body := makeHTTP01Body(t, v.client, srv.URL, "/.well-known/acme-challenge/token")
|
||||
if body != expected {
|
||||
t.Errorf("body = %q, want %q", body, expected)
|
||||
}
|
||||
_ = u
|
||||
}
|
||||
|
||||
// makeHTTP01Body fetches a URL through the validator's HTTP client
|
||||
// and returns the trimmed body. Used by the happy-path test to
|
||||
// exercise the wire shape without going through the SSRF guard
|
||||
// (which rejects 127.0.0.1).
|
||||
func makeHTTP01Body(t *testing.T, client *http.Client, baseURL, path string) string {
|
||||
t.Helper()
|
||||
resp, err := client.Get(baseURL + path)
|
||||
if err != nil {
|
||||
t.Fatalf("Get: %v", err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
t.Fatalf("status = %d", resp.StatusCode)
|
||||
}
|
||||
buf := make([]byte, 1024)
|
||||
n, _ := resp.Body.Read(buf)
|
||||
return strings.TrimSpace(string(buf[:n]))
|
||||
}
|
||||
|
||||
func TestHTTP01Validator_ReservedIPRejection(t *testing.T) {
|
||||
// Use the production NewHTTP01Validator which has the SSRF guard.
|
||||
v := NewHTTP01Validator(PoolConfig{PerChallengeTimeout: 2 * time.Second})
|
||||
|
||||
// Target a domain that resolves to 127.0.0.1 (localhost). The
|
||||
// SSRF guard fires before the dial.
|
||||
err := v.Validate(context.Background(), "localhost", "token", "expected")
|
||||
if err == nil {
|
||||
t.Fatal("expected SSRF rejection for localhost; got nil")
|
||||
}
|
||||
if !errors.Is(err, ErrChallengeReservedIP) && !errors.Is(err, ErrChallengeConnection) {
|
||||
// "localhost" → 127.0.0.1 is the reserved-IP case; some
|
||||
// platforms route differently.
|
||||
t.Errorf("err = %v; want ErrChallengeReservedIP or ErrChallengeConnection", err)
|
||||
}
|
||||
}
|
||||
|
||||
// --- Pool dispatch + bounded concurrency -------------------------------
|
||||
|
||||
// stubValidator is a ChallengeValidator that blocks on a channel until
|
||||
// release is signaled. Used by the concurrency test to hold workers in
|
||||
// the semaphore window so the test can read peak in-flight gauge.
|
||||
type stubValidator struct {
|
||||
typeStr string
|
||||
release chan struct{}
|
||||
calls atomic.Int64
|
||||
}
|
||||
|
||||
func (s *stubValidator) Type() string { return s.typeStr }
|
||||
func (s *stubValidator) Validate(ctx context.Context, domain, token, expected string) error {
|
||||
s.calls.Add(1)
|
||||
select {
|
||||
case <-s.release:
|
||||
return nil
|
||||
case <-ctx.Done():
|
||||
return ctx.Err()
|
||||
}
|
||||
}
|
||||
|
||||
func TestPool_BoundedConcurrency(t *testing.T) {
|
||||
cfg := PoolConfig{
|
||||
HTTP01Weight: 3, // low cap so we can observe saturation
|
||||
DNS01Weight: 2,
|
||||
TLSALPN01Weight: 2,
|
||||
PerChallengeTimeout: 5 * time.Second,
|
||||
}
|
||||
p := NewPool(cfg)
|
||||
stub := &stubValidator{typeStr: "http-01", release: make(chan struct{})}
|
||||
p.SetValidator(stub)
|
||||
|
||||
// Submit 10 HTTP-01 challenges. The pool's HTTP-01 weight is 3
|
||||
// → at most 3 should be in-flight at once.
|
||||
const total = 10
|
||||
var wg sync.WaitGroup
|
||||
wg.Add(total)
|
||||
for i := 0; i < total; i++ {
|
||||
i := i
|
||||
p.Submit(context.Background(), "http-01", fmt.Sprintf("d%d.example.com", i), "tok", "expect", func(err error) {
|
||||
defer wg.Done()
|
||||
_ = err
|
||||
})
|
||||
}
|
||||
|
||||
// Wait for the validator to be hit by at least cfg.HTTP01Weight
|
||||
// workers (steady state — all available semaphore weight is
|
||||
// taken).
|
||||
deadline := time.Now().Add(2 * time.Second)
|
||||
for time.Now().Before(deadline) {
|
||||
if stub.calls.Load() >= cfg.HTTP01Weight {
|
||||
break
|
||||
}
|
||||
time.Sleep(5 * time.Millisecond)
|
||||
}
|
||||
snap := p.Snapshot()
|
||||
if snap.HTTP01InFlight > cfg.HTTP01Weight {
|
||||
t.Errorf("HTTP01InFlight = %d, exceeds cap %d", snap.HTTP01InFlight, cfg.HTTP01Weight)
|
||||
}
|
||||
if snap.HTTP01Peak > cfg.HTTP01Weight {
|
||||
t.Errorf("HTTP01Peak = %d, exceeds cap %d", snap.HTTP01Peak, cfg.HTTP01Weight)
|
||||
}
|
||||
// Release all blocked workers + drain.
|
||||
close(stub.release)
|
||||
wg.Wait()
|
||||
|
||||
// Drain returns when wg is done (validators all completed).
|
||||
dctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
if err := p.Drain(dctx); err != nil {
|
||||
t.Errorf("Drain: %v", err)
|
||||
}
|
||||
finalSnap := p.Snapshot()
|
||||
if finalSnap.HTTP01InFlight != 0 {
|
||||
t.Errorf("post-Drain HTTP01InFlight = %d, want 0", finalSnap.HTTP01InFlight)
|
||||
}
|
||||
if stub.calls.Load() != total {
|
||||
t.Errorf("validator calls = %d, want %d", stub.calls.Load(), total)
|
||||
}
|
||||
}
|
||||
|
||||
func TestPool_TypeIsolation(t *testing.T) {
|
||||
// HTTP-01 saturation should not block DNS-01 dispatch. Each type
|
||||
// has its own semaphore.
|
||||
cfg := PoolConfig{
|
||||
HTTP01Weight: 1,
|
||||
DNS01Weight: 1,
|
||||
TLSALPN01Weight: 1,
|
||||
PerChallengeTimeout: 5 * time.Second,
|
||||
}
|
||||
p := NewPool(cfg)
|
||||
httpStub := &stubValidator{typeStr: "http-01", release: make(chan struct{})}
|
||||
dnsStub := &stubValidator{typeStr: "dns-01", release: make(chan struct{})}
|
||||
p.SetValidator(httpStub)
|
||||
p.SetValidator(dnsStub)
|
||||
|
||||
// Block HTTP-01.
|
||||
httpDone := make(chan struct{})
|
||||
p.Submit(context.Background(), "http-01", "d.example.com", "tok", "expect", func(err error) {
|
||||
close(httpDone)
|
||||
})
|
||||
|
||||
// DNS-01 should still progress.
|
||||
dnsDone := make(chan struct{})
|
||||
p.Submit(context.Background(), "dns-01", "d.example.com", "tok", "expect", func(err error) {
|
||||
close(dnsDone)
|
||||
})
|
||||
|
||||
// Release DNS-01 immediately.
|
||||
close(dnsStub.release)
|
||||
select {
|
||||
case <-dnsDone:
|
||||
// good — DNS-01 completed even though HTTP-01 is held.
|
||||
case <-time.After(2 * time.Second):
|
||||
t.Fatal("DNS-01 did not complete despite HTTP-01 saturation")
|
||||
}
|
||||
|
||||
// Release HTTP-01 + drain.
|
||||
close(httpStub.release)
|
||||
select {
|
||||
case <-httpDone:
|
||||
case <-time.After(2 * time.Second):
|
||||
t.Fatal("HTTP-01 did not complete after release")
|
||||
}
|
||||
dctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
_ = p.Drain(dctx)
|
||||
}
|
||||
|
||||
func TestPool_UnknownType(t *testing.T) {
|
||||
p := NewPool(PoolConfig{})
|
||||
done := make(chan error, 1)
|
||||
p.Submit(context.Background(), "ftp-01" /* invalid */, "d.example.com", "tok", "exp", func(err error) {
|
||||
done <- err
|
||||
})
|
||||
select {
|
||||
case err := <-done:
|
||||
if err == nil {
|
||||
t.Error("expected error for unknown challenge type")
|
||||
}
|
||||
case <-time.After(2 * time.Second):
|
||||
t.Fatal("Submit's onComplete did not fire for unknown type")
|
||||
}
|
||||
}
|
||||
|
||||
// --- ChallengeProblemFromError mapping ---------------------------------
|
||||
|
||||
func TestChallengeProblemFromError_Mapping(t *testing.T) {
|
||||
cases := []struct {
|
||||
err error
|
||||
wantTyp string
|
||||
}{
|
||||
{nil, ""}, // nil → nil Problem
|
||||
{ErrChallengeConnection, "urn:ietf:params:acme:error:connection"},
|
||||
{fmt.Errorf("%w: timeout", ErrChallengeConnection), "urn:ietf:params:acme:error:connection"},
|
||||
{ErrChallengeDNS, "urn:ietf:params:acme:error:dns"},
|
||||
{ErrChallengeTLS, "urn:ietf:params:acme:error:tls"},
|
||||
{ErrChallengeMismatch, "urn:ietf:params:acme:error:incorrectResponse"},
|
||||
{ErrChallengeReservedIP, "urn:ietf:params:acme:error:incorrectResponse"},
|
||||
}
|
||||
for _, tc := range cases {
|
||||
p := ChallengeProblemFromError("http-01", tc.err)
|
||||
if tc.err == nil {
|
||||
if p != nil {
|
||||
t.Errorf("nil err: got Problem %+v", p)
|
||||
}
|
||||
continue
|
||||
}
|
||||
if p == nil {
|
||||
t.Errorf("err=%v: got nil Problem", tc.err)
|
||||
continue
|
||||
}
|
||||
if p.Type != tc.wantTyp {
|
||||
t.Errorf("err=%v: type = %q, want %q", tc.err, p.Type, tc.wantTyp)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user