aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules/caddyhttp/reverseproxy
diff options
context:
space:
mode:
authorAziz Rmadi <[email protected]>2024-04-12 08:19:14 -0500
committerGitHub <[email protected]>2024-04-12 07:19:14 -0600
commit0b381eb766dfad11f374342c34fe3606b9005562 (patch)
tree97dd613ee069c298805ce9a655d19bbd2bd138db /modules/caddyhttp/reverseproxy
parent83ef61de106b7574d5dea8ffeb879f384df4ebdf (diff)
downloadcaddy-0b381eb766dfad11f374342c34fe3606b9005562.tar.gz
caddy-0b381eb766dfad11f374342c34fe3606b9005562.zip
reverseproxy: Implement modular CA provider for TLS transport (#6065)
* added new modular ca providers to caddy tls HttpTransport * reverse-proxy, httptransport: added tests and caddyfile support for ca module --------- Co-authored-by: Mohammed Al Sahaf <[email protected]>
Diffstat (limited to 'modules/caddyhttp/reverseproxy')
-rw-r--r--modules/caddyhttp/reverseproxy/caddyfile.go29
-rw-r--r--modules/caddyhttp/reverseproxy/httptransport.go22
-rw-r--r--modules/caddyhttp/reverseproxy/httptransport_test.go96
3 files changed, 147 insertions, 0 deletions
diff --git a/modules/caddyhttp/reverseproxy/caddyfile.go b/modules/caddyhttp/reverseproxy/caddyfile.go
index 9e0726be6..8dfbd93da 100644
--- a/modules/caddyhttp/reverseproxy/caddyfile.go
+++ b/modules/caddyhttp/reverseproxy/caddyfile.go
@@ -30,6 +30,7 @@ import (
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
"github.com/caddyserver/caddy/v2/modules/caddyhttp/headers"
"github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
+ "github.com/caddyserver/caddy/v2/modules/caddytls"
)
func init() {
@@ -1145,6 +1146,9 @@ func (h *HTTPTransport) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
if h.TLS == nil {
h.TLS = new(TLSConfig)
}
+ if len(h.TLS.CARaw) != 0 {
+ return d.Err("cannot specify both 'tls_trust_pool' and 'tls_trusted_ca_certs")
+ }
h.TLS.RootCAPEMFiles = args
case "tls_server_name":
@@ -1260,6 +1264,31 @@ func (h *HTTPTransport) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
}
h.MaxConnsPerHost = num
+ case "tls_trust_pool":
+ if !d.NextArg() {
+ return d.ArgErr()
+ }
+ modStem := d.Val()
+ modID := "tls.ca_pool.source." + modStem
+ unm, err := caddyfile.UnmarshalModule(d, modID)
+ if err != nil {
+ return err
+ }
+ ca, ok := unm.(caddytls.CA)
+ if !ok {
+ return d.Errf("module %s is not a caddytls.CA", modID)
+ }
+ if h.TLS == nil {
+ h.TLS = new(TLSConfig)
+ }
+ if len(h.TLS.RootCAPEMFiles) != 0 {
+ return d.Err("cannot specify both 'tls_trust_pool' and 'tls_trusted_ca_certs'")
+ }
+ if h.TLS.CARaw != nil {
+ return d.Err("cannot specify \"tls_trust_pool\" twice in caddyfile")
+ }
+ h.TLS.CARaw = caddyconfig.JSONModuleObject(ca, "provider", modStem, nil)
+
default:
return d.Errf("unrecognized subdirective %s", d.Val())
}
diff --git a/modules/caddyhttp/reverseproxy/httptransport.go b/modules/caddyhttp/reverseproxy/httptransport.go
index dd8ece251..895873b9d 100644
--- a/modules/caddyhttp/reverseproxy/httptransport.go
+++ b/modules/caddyhttp/reverseproxy/httptransport.go
@@ -19,6 +19,7 @@ import (
"crypto/tls"
"crypto/x509"
"encoding/base64"
+ "encoding/json"
"fmt"
weakrand "math/rand"
"net"
@@ -472,9 +473,14 @@ func (h HTTPTransport) Cleanup() error {
// TLSConfig holds configuration related to the TLS configuration for the
// transport/client.
type TLSConfig struct {
+ // Certificate authority module which provides the certificate pool of trusted certificates
+ CARaw json.RawMessage `json:"ca,omitempty" caddy:"namespace=tls.ca_pool.source inline_key=provider"`
+
+ // DEPRECATED: Use the `ca` field with the `tls.ca_pool.source.inline` module instead.
// Optional list of base64-encoded DER-encoded CA certificates to trust.
RootCAPool []string `json:"root_ca_pool,omitempty"`
+ // DEPRECATED: Use the `ca` field with the `tls.ca_pool.source.file` module instead.
// List of PEM-encoded CA certificate files to add to the same trust
// store as RootCAPool (or root_ca_pool in the JSON).
RootCAPEMFiles []string `json:"root_ca_pem_files,omitempty"`
@@ -576,6 +582,7 @@ func (t TLSConfig) MakeTLSClientConfig(ctx caddy.Context) (*tls.Config, error) {
// trusted root CAs
if len(t.RootCAPool) > 0 || len(t.RootCAPEMFiles) > 0 {
+ ctx.Logger().Warn("root_ca_pool and root_ca_pem_files are deprecated. Use one of the tls.ca_pool.source modules instead")
rootPool := x509.NewCertPool()
for _, encodedCACert := range t.RootCAPool {
caCert, err := decodeBase64DERCert(encodedCACert)
@@ -594,6 +601,21 @@ func (t TLSConfig) MakeTLSClientConfig(ctx caddy.Context) (*tls.Config, error) {
cfg.RootCAs = rootPool
}
+ if t.CARaw != nil {
+ if len(t.RootCAPool) > 0 || len(t.RootCAPEMFiles) > 0 {
+ return nil, fmt.Errorf("conflicting config for Root CA pool")
+ }
+ caRaw, err := ctx.LoadModule(t, "CARaw")
+ if err != nil {
+ return nil, fmt.Errorf("failed to load ca module: %v", err)
+ }
+ ca, ok := caRaw.(caddytls.CA)
+ if !ok {
+ return nil, fmt.Errorf("CA module '%s' is not a certificate pool provider", ca)
+ }
+ cfg.RootCAs = ca.CertPool()
+ }
+
// Renegotiation
switch t.Renegotiation {
case "never", "":
diff --git a/modules/caddyhttp/reverseproxy/httptransport_test.go b/modules/caddyhttp/reverseproxy/httptransport_test.go
new file mode 100644
index 000000000..46931c8b1
--- /dev/null
+++ b/modules/caddyhttp/reverseproxy/httptransport_test.go
@@ -0,0 +1,96 @@
+package reverseproxy
+
+import (
+ "encoding/json"
+ "fmt"
+ "reflect"
+ "testing"
+
+ "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
+)
+
+func TestHTTPTransportUnmarshalCaddyFileWithCaPools(t *testing.T) {
+ const test_der_1 = `MIIDSzCCAjOgAwIBAgIUfIRObjWNUA4jxQ/0x8BOCvE2Vw4wDQYJKoZIhvcNAQELBQAwFjEUMBIGA1UEAwwLRWFzeS1SU0EgQ0EwHhcNMTkwODI4MTYyNTU5WhcNMjkwODI1MTYyNTU5WjAWMRQwEgYDVQQDDAtFYXN5LVJTQSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5m5elxhQfMp/3aVJ4JnpN9PUSz6LlP6LePAPFU7gqohVVFVtDkChJAG3FNkNQNlieVTja/bgH9IcC6oKbROwdY1h0MvNV8AHHigvl03WuJD8g2ReVFXXwsnrPmKXCFzQyMI6TYk3m2gYrXsZOU1GLnfMRC3KAMRgE2F45twOs9hqG169YJ6mM2eQjzjCHWI6S2/iUYvYxRkCOlYUbLsMD/AhgAf1plzg6LPqNxtdlwxZnA0ytgkmhK67HtzJu0+ovUCsMv0RwcMhsEo9T8nyFAGt9XLZ63X5WpBCTUApaAUhnG0XnerjmUWb6eUWw4zev54sEfY5F3x002iQaW6cECAwEAAaOBkDCBjTAdBgNVHQ4EFgQU4CBUbZsS2GaNIkGRz/cBsD5ivjswUQYDVR0jBEowSIAU4CBUbZsS2GaNIkGRz/cBsD5ivjuhGqQYMBYxFDASBgNVBAMMC0Vhc3ktUlNBIENBghR8hE5uNY1QDiPFD/THwE4K8TZXDjAMBgNVHRMEBTADAQH/MAsGA1UdDwQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAQEAKB3V4HIzoiO/Ch6WMj9bLJ2FGbpkMrcb/Eq01hT5zcfKD66lVS1MlK+cRL446Z2b2KDP1oFyVs+qmrmtdwrWgD+nfe2sBmmIHo9m9KygMkEOfG3MghGTEcS+0cTKEcoHYWYyOqQh6jnedXY8Cdm4GM1hAc9MiL3/sqV8YCVSLNnkoNysmr06/rZ0MCUZPGUtRmfd0heWhrfzAKw2HLgX+RAmpOE2MZqWcjvqKGyaRiaZks4nJkP6521aC2Lgp0HhCz1j8/uQ5ldoDszCnu/iro0NAsNtudTMD+YoLQxLqdleIh6CW+illc2VdXwj7mn6J04yns9jfE2jRjW/yTLFuQ==`
+ type args struct {
+ d *caddyfile.Dispenser
+ }
+ tests := []struct {
+ name string
+ args args
+ expectedTLSConfig TLSConfig
+ wantErr bool
+ }{
+ {
+ name: "tls_trust_pool without a module argument returns an error",
+ args: args{
+ d: caddyfile.NewTestDispenser(
+ `http {
+ tls_trust_pool
+ }`),
+ },
+ wantErr: true,
+ },
+ {
+ name: "providing both 'tls_trust_pool' and 'tls_trusted_ca_certs' returns an error",
+ args: args{
+ d: caddyfile.NewTestDispenser(fmt.Sprintf(
+ `http {
+ tls_trust_pool inline %s
+ tls_trusted_ca_certs %s
+ }`, test_der_1, test_der_1)),
+ },
+ wantErr: true,
+ },
+ {
+ name: "setting 'tls_trust_pool' and 'tls_trusted_ca_certs' produces an error",
+ args: args{
+ d: caddyfile.NewTestDispenser(fmt.Sprintf(
+ `http {
+ tls_trust_pool inline {
+ trust_der %s
+ }
+ tls_trusted_ca_certs %s
+ }`, test_der_1, test_der_1)),
+ },
+ wantErr: true,
+ },
+ {
+ name: "using 'inline' tls_trust_pool loads the module successfully",
+ args: args{
+ d: caddyfile.NewTestDispenser(fmt.Sprintf(
+ `http {
+ tls_trust_pool inline {
+ trust_der %s
+ }
+ }
+ `, test_der_1)),
+ },
+ expectedTLSConfig: TLSConfig{CARaw: json.RawMessage(fmt.Sprintf(`{"provider":"inline","trusted_ca_certs":["%s"]}`, test_der_1))},
+ },
+ {
+ name: "setting 'tls_trusted_ca_certs' and 'tls_trust_pool' produces an error",
+ args: args{
+ d: caddyfile.NewTestDispenser(fmt.Sprintf(
+ `http {
+ tls_trusted_ca_certs %s
+ tls_trust_pool inline {
+ trust_der %s
+ }
+ }`, test_der_1, test_der_1)),
+ },
+ wantErr: true,
+ },
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ ht := &HTTPTransport{}
+ if err := ht.UnmarshalCaddyfile(tt.args.d); (err != nil) != tt.wantErr {
+ t.Errorf("HTTPTransport.UnmarshalCaddyfile() error = %v, wantErr %v", err, tt.wantErr)
+ return
+ }
+ if !tt.wantErr && !reflect.DeepEqual(&tt.expectedTLSConfig, ht.TLS) {
+ t.Errorf("HTTPTransport.UnmarshalCaddyfile() = %v, want %v", ht, tt.expectedTLSConfig)
+ }
+ })
+ }
+}