@ -12,6 +12,7 @@ import (
"io"
"net"
"net/http"
"net/netip"
"time"
"github.com/pkg/errors"
@ -23,25 +24,33 @@ const expiresSoon = 7 * 24 * time.Hour // 7 days from now
// TLS returns a Probe that healthchecks a TLS endpoint.
//
// The ProbeFunc connects to a host name (host:port string), does a TLS
// The ProbeFunc connects to a host Port (host:port string), does a TLS
// handshake, verifies that the hostname matches the presented certificate,
// checks certificate validity time and OCSP revocation status.
func TLS ( host name string ) ProbeFunc {
func TLS ( host Port string ) ProbeFunc {
return func ( ctx context . Context ) error {
return probeTLS ( ctx , hostname )
certDomain , _ , err := net . SplitHostPort ( hostPort )
if err != nil {
return err
}
return probeTLS ( ctx , certDomain , hostPort )
}
}
func probeTLS ( ctx context . Context , hostname string ) error {
host , _ , err := net . SplitHostPort ( hostname )
if err != nil {
return err
// TLSWithIP is like TLS, but dials the provided dialAddr instead
// of using DNS resolution. The certDomain is the expected name in
// the cert (and the SNI name to send).
func TLSWithIP ( certDomain string , dialAddr netip . AddrPort ) ProbeFunc {
return func ( ctx context . Context ) error {
return probeTLS ( ctx , certDomain , dialAddr . String ( ) )
}
}
dialer := & tls . Dialer { Config : & tls . Config { ServerName : host } }
conn , err := dialer . DialContext ( ctx , "tcp" , hostname )
func probeTLS ( ctx context . Context , certDomain string , dialHostPort string ) error {
dialer := & tls . Dialer { Config : & tls . Config { ServerName : certDomain } }
conn , err := dialer . DialContext ( ctx , "tcp" , dialHostPort )
if err != nil {
return fmt . Errorf ( "connecting to %q: %w" , hostname , err )
return fmt . Errorf ( "connecting to %q: %w" , dialHostPort , err )
}
defer conn . Close ( )