Files
versitygw/iamapi/internal/iamutil/oidc_thumbprint_test.go
T
niksis02 658c37907d feat: add OIDC endpoint relaxations for private/isolated networks
Closes #2364

`AssumeRoleWithWebIdentity` only ever trusted an `OIDC` provider reachable over verified `https`, at a publicly routable address, on the implicit `:443`. That posture is right for an internet-facing IdP but rejects every address an internal one can have, so a `SPIFFE/SPIRE` OIDC discovery provider in the same cluster — or as a sidecar in the same pod — could never be registered, let alone verified against, and no setting could express "this private address is the IdP".

Two opt-in flags on `versitygw iam`, both off by default:

`--oidc-allow-private-endpoints`
Permit a provider `Url` resolving to a loopback/private/link-local address, and an explicit port. Transport is unchanged: still `https`, still fully verified (a self-signed in-cluster cert is trusted the way AWS documents, through `ThumbprintList`).

`--oidc-allow-insecure-transport`
Additionally permit plaintext `http` provider URLs, discovery/JWKS endpoints and redirects, and drop TLS verification (`thumbprint` pinning included) for `https` ones.

Both apply uniformly to the thumbprint auto-fetch at `CreateOpenIDConnectProvider` time and to the discovery-document plus `JWKS` fetch at `AssumeRoleWithWebIdentity` time. Neither weakens anything past the endpoint: signature verification, issuer matching, audience and trust policy evaluation are untouched, and the DNS-resolve-once/dial-the-resolved-IP shape stays in place so a rebind still cannot redirect a connection.

An `http` provider keeps its scheme in its stored `Url`, `ARN` and `iss` matching, rather than being stripped like an `https` one — otherwise `"http://host"` and `"https://host"` would collapse onto a single ARN and storage key and each could satisfy the other's trust policy. It also stores an empty `ThumbprintList` rather than failing: a plaintext provider presents no certificate to thumbprint.

Helm: `iamServer.oidc.{allowPrivateEndpoints,allowInsecureTransport}`, alongside `disableThumbprintAutofetch` moved into the same block (the flat `iamServer.disableOidcThumbprintAutofetch` stays honored). Chart `0.4.1 -> 0.4.2`.

The WebUI's create-provider form no longer rejects `http` URLs and ports client-side; it cannot see the service's settings, so those two rules are left to the server, whose error surfaces as a toast like any other.
2026-09-08 16:30:37 +04:00

263 lines
9.4 KiB
Go

// Copyright 2026 Versity Software
// This file is licensed under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package iamutil
import (
"context"
"crypto/sha1"
"crypto/tls"
"crypto/x509"
"encoding/hex"
"net"
"net/http/httptest"
"testing"
)
// TestThumbprintFromChain exercises the pure cert-chain-hashing logic
// (AWS's OIDC thumbprint is the SHA-1 hash of the DER bytes of the
// last/top-most certificate in the peer's presented chain, hex encoded and
// lowercased) against a real TLS handshake with a locally generated
// self-signed certificate.
//
// This deliberately dials httptest.NewTLSServer directly with tls.Dial
// rather than going through FetchThumbprint, whose SSRF guard must always
// reject loopback targets — exactly what a local test server is.
func TestThumbprintFromChain(t *testing.T) {
srv := httptest.NewTLSServer(nil)
defer srv.Close()
conn, err := tls.Dial("tcp", srv.Listener.Addr().String(), &tls.Config{InsecureSkipVerify: true})
if err != nil {
t.Fatalf("tls.Dial: %v", err)
}
defer conn.Close()
chain := conn.ConnectionState().PeerCertificates
if len(chain) == 0 {
t.Fatal("expected at least one peer certificate")
}
got, err := ThumbprintFromChain(chain)
if err != nil {
t.Fatalf("ThumbprintFromChain: %v", err)
}
sum := sha1.Sum(chain[len(chain)-1].Raw)
want := hex.EncodeToString(sum[:])
if got != want {
t.Fatalf("ThumbprintFromChain = %q, want %q", got, want)
}
if len(got) != OIDCThumbprintLen {
t.Fatalf("thumbprint length = %d, want %d", len(got), OIDCThumbprintLen)
}
}
func TestThumbprintFromChainEmptyChain(t *testing.T) {
if _, err := ThumbprintFromChain(nil); err == nil {
t.Fatal("expected error for empty certificate chain")
}
}
// TestDialAndVerifyThumbprintRejectsUntrustedCert verifies that
// dialAndVerifyThumbprint rejects a certificate that doesn't chain to a
// trusted root, rather than trusting whatever the peer presents — trusting
// any presented chain is exactly what would let an active network/DNS
// attacker at enrollment time have their own chain pinned as the provider's
// permanent trust anchor. A self-signed test server's certificate, which
// chains to nothing any real trust store recognizes, must be rejected
// instead of silently hashed.
func TestDialAndVerifyThumbprintRejectsUntrustedCert(t *testing.T) {
srv := httptest.NewTLSServer(nil)
defer srv.Close()
// roots=nil selects the host system's real trust store, the same as
// FetchThumbprint's actual usage - httptest's self-signed certificate
// must not verify against it.
if _, err := dialAndVerifyThumbprint(context.Background(), srv.Listener.Addr().String(), "example.com", nil, false); err == nil {
t.Fatal("dialAndVerifyThumbprint: expected verification error for untrusted self-signed certificate, got nil")
}
}
// TestDialAndVerifyThumbprintInsecureAcceptsUntrustedCert covers the
// AllowInsecureTransport path: the very chain
// TestDialAndVerifyThumbprintRejectsUntrustedCert requires to be rejected
// must be accepted and hashed once the operator has declared the network
// path itself to be the trust boundary — otherwise an IdP whose certificate
// cannot chain to a public root by construction could never use auto-fetch.
func TestDialAndVerifyThumbprintInsecureAcceptsUntrustedCert(t *testing.T) {
srv := httptest.NewTLSServer(nil)
defer srv.Close()
got, err := dialAndVerifyThumbprint(context.Background(), srv.Listener.Addr().String(), "example.com", nil, true)
if err != nil {
t.Fatalf("dialAndVerifyThumbprint(insecure=true): %v", err)
}
sum := sha1.Sum(srv.Certificate().Raw)
if want := hex.EncodeToString(sum[:]); got != want {
t.Fatalf("dialAndVerifyThumbprint thumbprint = %q, want %q", got, want)
}
}
// TestDialAndVerifyThumbprintAcceptsVerifiedCert is the positive
// counterpart: once the peer's certificate does verify (here, against an
// explicit pool containing the test server's own certificate, standing in
// for a real public CA in FetchThumbprint's system-trust-store case),
// auto-fetch must still succeed and compute the same thumbprint
// TestThumbprintFromChain gets by hashing the chain directly - proving the
// stricter check rejects only genuinely untrusted chains, not every chain.
func TestDialAndVerifyThumbprintAcceptsVerifiedCert(t *testing.T) {
srv := httptest.NewTLSServer(nil)
defer srv.Close()
roots := x509.NewCertPool()
roots.AddCert(srv.Certificate())
got, err := dialAndVerifyThumbprint(context.Background(), srv.Listener.Addr().String(), "example.com", roots, false)
if err != nil {
t.Fatalf("dialAndVerifyThumbprint: %v", err)
}
sum := sha1.Sum(srv.Certificate().Raw)
want := hex.EncodeToString(sum[:])
if got != want {
t.Fatalf("dialAndVerifyThumbprint thumbprint = %q, want %q", got, want)
}
}
// TestFetchThumbprintSSRFGuard confirms FetchThumbprint refuses to dial
// loopback/private targets before any network attempt: 127.0.0.1 is exactly
// the kind of address a malicious CreateOpenIDConnectProvider caller could
// supply to probe the gateway's own local network.
func TestFetchThumbprintSSRFGuard(t *testing.T) {
tests := []string{
"127.0.0.1",
"169.254.169.254", // cloud metadata endpoint
"::1",
}
for _, host := range tests {
t.Run(host, func(t *testing.T) {
_, err := FetchThumbprint(context.Background(), host, OIDCEndpointPolicy{})
if err == nil {
t.Fatalf("FetchThumbprint(%q): expected SSRF guard error, got nil", host)
}
})
}
}
// TestFetchThumbprintAllowPrivateEndpoints confirms AllowPrivateEndpoints
// waives the address check rather than merely reordering it: with the guard
// off, a loopback provider gets as far as a real TLS handshake against a
// same-process server and yields that server's own thumbprint — something
// TestFetchThumbprintSSRFGuard shows is impossible by default.
func TestFetchThumbprintAllowPrivateEndpoints(t *testing.T) {
srv := httptest.NewTLSServer(nil)
defer srv.Close()
policy := OIDCEndpointPolicy{AllowPrivateEndpoints: true, AllowInsecureTransport: true}
// The listener's host:port becomes the provider Url's authority, which
// only parses as one because AllowPrivateEndpoints also permits a port.
got, err := FetchThumbprint(context.Background(), srv.Listener.Addr().String(), policy)
if err != nil {
t.Fatalf("FetchThumbprint(loopback, AllowPrivateEndpoints): %v", err)
}
sum := sha1.Sum(srv.Certificate().Raw)
if want := hex.EncodeToString(sum[:]); got != want {
t.Fatalf("FetchThumbprint thumbprint = %q, want %q", got, want)
}
}
// TestFetchThumbprintRejectsPlaintextProvider covers the defensive branch
// for an http provider Url: there is no handshake to observe a certificate
// in, so auto-fetch must report a failure rather than dial anything.
func TestFetchThumbprintRejectsPlaintextProvider(t *testing.T) {
policy := OIDCEndpointPolicy{AllowPrivateEndpoints: true, AllowInsecureTransport: true}
if _, err := FetchThumbprint(context.Background(), "http://127.0.0.1:8080", policy); err == nil {
t.Fatal("FetchThumbprint(http provider): expected an error, got nil")
}
}
func TestFetchThumbprintDNSFailure(t *testing.T) {
_, err := FetchThumbprint(context.Background(), "this-host-should-not-resolve.invalid", OIDCEndpointPolicy{})
if err == nil {
t.Fatal("expected error for unresolvable host")
}
}
func TestSplitOIDCHostPort(t *testing.T) {
tests := []struct {
hostport string
wantHost string
wantPort string
}{
{"example.com", "example.com", "443"},
{"spire-oidc.spire.svc:8443", "spire-oidc.spire.svc", "8443"},
{"127.0.0.1", "127.0.0.1", "443"},
{"127.0.0.1:8443", "127.0.0.1", "8443"},
{"[::1]:8443", "::1", "8443"},
{"[::1]", "::1", "443"},
}
for _, tt := range tests {
t.Run(tt.hostport, func(t *testing.T) {
host, port := splitOIDCHostPort(tt.hostport)
if host != tt.wantHost || port != tt.wantPort {
t.Errorf("splitOIDCHostPort(%q) = (%q, %q), want (%q, %q)", tt.hostport, host, port, tt.wantHost, tt.wantPort)
}
})
}
}
func TestHostFromOIDCUrl(t *testing.T) {
tests := []struct{ providerURL, want string }{
{"example.com", "example.com"},
{"example.com/path", "example.com"},
{"spire-oidc.spire.svc:8443", "spire-oidc.spire.svc:8443"},
{"http://127.0.0.1:8080", "127.0.0.1:8080"},
{"http://127.0.0.1:8080/oidc", "127.0.0.1:8080"},
}
for _, tt := range tests {
t.Run(tt.providerURL, func(t *testing.T) {
if got := hostFromOIDCUrl(tt.providerURL); got != tt.want {
t.Errorf("hostFromOIDCUrl(%q) = %q, want %q", tt.providerURL, got, tt.want)
}
})
}
}
func TestIsDisallowedFetchTarget(t *testing.T) {
tests := []struct {
ip string
disallowed bool
}{
{"127.0.0.1", true},
{"169.254.169.254", true},
{"10.0.0.5", true},
{"192.168.1.1", true},
{"::1", true},
{"8.8.8.8", false},
{"1.1.1.1", false},
}
for _, tt := range tests {
ip := net.ParseIP(tt.ip)
if ip == nil {
t.Fatalf("invalid test IP %q", tt.ip)
}
if got := isDisallowedFetchTarget(ip); got != tt.disallowed {
t.Errorf("isDisallowedFetchTarget(%q) = %v, want %v", tt.ip, got, tt.disallowed)
}
}
}