2022-03-24 22:46:10 +00:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-10-15 19:40:56 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// Package supervisor contains functionality to load/store Config's from/to
|
|
|
|
// some source.
|
|
|
|
package supervisor
|
|
|
|
|
|
|
|
import (
|
2022-04-16 02:43:53 +00:00
|
|
|
"context"
|
2020-10-15 19:40:56 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2022-03-24 22:46:10 +00:00
|
|
|
"net"
|
2020-10-28 18:56:50 +00:00
|
|
|
"strings"
|
2020-10-15 19:40:56 +00:00
|
|
|
|
2021-05-12 20:20:00 +00:00
|
|
|
"k8s.io/utils/pointer"
|
2020-10-15 19:40:56 +00:00
|
|
|
"sigs.k8s.io/yaml"
|
2020-10-28 18:56:50 +00:00
|
|
|
|
|
|
|
"go.pinniped.dev/internal/constable"
|
2021-01-13 01:27:41 +00:00
|
|
|
"go.pinniped.dev/internal/groupsuffix"
|
2020-11-10 14:57:29 +00:00
|
|
|
"go.pinniped.dev/internal/plog"
|
2020-10-15 19:40:56 +00:00
|
|
|
)
|
|
|
|
|
2021-12-15 20:48:55 +00:00
|
|
|
const (
|
|
|
|
NetworkDisabled = "disabled"
|
|
|
|
NetworkUnix = "unix"
|
|
|
|
NetworkTCP = "tcp"
|
|
|
|
)
|
|
|
|
|
2020-10-15 19:40:56 +00:00
|
|
|
// FromPath loads an Config from a provided local file path, inserts any
|
|
|
|
// defaults (from the Config documentation), and verifies that the config is
|
|
|
|
// valid (Config documentation).
|
2022-04-16 02:43:53 +00:00
|
|
|
func FromPath(ctx context.Context, path string) (*Config, error) {
|
2020-10-15 19:40:56 +00:00
|
|
|
data, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("read file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var config Config
|
|
|
|
if err := yaml.Unmarshal(data, &config); err != nil {
|
|
|
|
return nil, fmt.Errorf("decode yaml: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Labels == nil {
|
|
|
|
config.Labels = make(map[string]string)
|
|
|
|
}
|
|
|
|
|
2021-01-19 15:52:12 +00:00
|
|
|
maybeSetAPIGroupSuffixDefault(&config.APIGroupSuffix)
|
|
|
|
|
2021-01-13 01:27:41 +00:00
|
|
|
if err := validateAPIGroupSuffix(*config.APIGroupSuffix); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate apiGroupSuffix: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-28 18:56:50 +00:00
|
|
|
if err := validateNames(&config.NamesConfig); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate names: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-04-16 02:43:53 +00:00
|
|
|
plog.MaybeSetDeprecatedLogLevel(config.LogLevel, &config.Log)
|
|
|
|
if err := plog.ValidateAndSetLogLevelAndFormatGlobally(ctx, config.Log); err != nil {
|
2020-11-10 14:57:29 +00:00
|
|
|
return nil, fmt.Errorf("validate log level: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-12-15 20:48:55 +00:00
|
|
|
// support setting this to null or {} or empty in the YAML
|
|
|
|
if config.Endpoints == nil {
|
|
|
|
config.Endpoints = &Endpoints{}
|
|
|
|
}
|
|
|
|
|
|
|
|
maybeSetEndpointDefault(&config.Endpoints.HTTPS, Endpoint{
|
|
|
|
Network: NetworkTCP,
|
|
|
|
Address: ":8443",
|
|
|
|
})
|
|
|
|
maybeSetEndpointDefault(&config.Endpoints.HTTP, Endpoint{
|
2022-03-24 22:46:10 +00:00
|
|
|
Network: NetworkDisabled,
|
2021-12-15 20:48:55 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err := validateEndpoint(*config.Endpoints.HTTPS); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate https endpoint: %w", err)
|
|
|
|
}
|
|
|
|
if err := validateEndpoint(*config.Endpoints.HTTP); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate http endpoint: %w", err)
|
|
|
|
}
|
2022-03-29 00:03:23 +00:00
|
|
|
if err := validateAdditionalHTTPEndpointRequirements(*config.Endpoints.HTTP, config.AllowExternalHTTP); err != nil {
|
2022-03-24 22:46:10 +00:00
|
|
|
return nil, fmt.Errorf("validate http endpoint: %w", err)
|
|
|
|
}
|
2021-12-15 20:48:55 +00:00
|
|
|
if err := validateAtLeastOneEnabledEndpoint(*config.Endpoints.HTTPS, *config.Endpoints.HTTP); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate endpoints: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-15 19:40:56 +00:00
|
|
|
return &config, nil
|
|
|
|
}
|
2020-10-28 18:56:50 +00:00
|
|
|
|
2021-12-15 20:48:55 +00:00
|
|
|
func maybeSetEndpointDefault(endpoint **Endpoint, defaultEndpoint Endpoint) {
|
|
|
|
if *endpoint != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
*endpoint = &defaultEndpoint
|
|
|
|
}
|
|
|
|
|
2021-01-19 15:52:12 +00:00
|
|
|
func maybeSetAPIGroupSuffixDefault(apiGroupSuffix **string) {
|
|
|
|
if *apiGroupSuffix == nil {
|
2021-05-12 20:20:00 +00:00
|
|
|
*apiGroupSuffix = pointer.StringPtr(groupsuffix.PinnipedDefaultSuffix)
|
2021-01-19 15:52:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-13 01:27:41 +00:00
|
|
|
func validateAPIGroupSuffix(apiGroupSuffix string) error {
|
|
|
|
return groupsuffix.Validate(apiGroupSuffix)
|
|
|
|
}
|
|
|
|
|
2020-10-28 18:56:50 +00:00
|
|
|
func validateNames(names *NamesConfigSpec) error {
|
|
|
|
missingNames := []string{}
|
|
|
|
if names.DefaultTLSCertificateSecret == "" {
|
|
|
|
missingNames = append(missingNames, "defaultTLSCertificateSecret")
|
|
|
|
}
|
|
|
|
if len(missingNames) > 0 {
|
|
|
|
return constable.Error("missing required names: " + strings.Join(missingNames, ", "))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-12-15 20:48:55 +00:00
|
|
|
|
|
|
|
func validateEndpoint(endpoint Endpoint) error {
|
|
|
|
switch n := endpoint.Network; n {
|
|
|
|
case NetworkTCP, NetworkUnix:
|
|
|
|
if len(endpoint.Address) == 0 {
|
|
|
|
return fmt.Errorf("address must be set with %q network", n)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
case NetworkDisabled:
|
|
|
|
if len(endpoint.Address) != 0 {
|
|
|
|
return fmt.Errorf("address set to %q when disabled, should be empty", endpoint.Address)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unknown network %q", n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-31 23:23:45 +00:00
|
|
|
func validateAdditionalHTTPEndpointRequirements(endpoint Endpoint, allowExternalHTTP stringOrBoolAsBool) error {
|
2022-03-24 22:46:10 +00:00
|
|
|
if endpoint.Network == NetworkTCP && !addrIsOnlyOnLoopback(endpoint.Address) {
|
2022-03-31 23:23:45 +00:00
|
|
|
if allowExternalHTTP {
|
2022-03-29 00:03:23 +00:00
|
|
|
// Log that the validation should have been triggered.
|
|
|
|
plog.Warning("Listening on non-loopback interfaces for the HTTP port is deprecated and will be removed " +
|
|
|
|
"in a future release. Your current configuration would not be allowed in that future release. " +
|
|
|
|
"Please see comments in deploy/supervisor/values.yaml and review your settings.")
|
|
|
|
// Skip enforcement of the validation.
|
|
|
|
return nil
|
|
|
|
}
|
2022-03-24 22:46:10 +00:00
|
|
|
return fmt.Errorf(
|
|
|
|
"http listener address %q for %q network may only bind to loopback interfaces",
|
|
|
|
endpoint.Address,
|
|
|
|
endpoint.Network)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-15 20:48:55 +00:00
|
|
|
func validateAtLeastOneEnabledEndpoint(endpoints ...Endpoint) error {
|
|
|
|
for _, endpoint := range endpoints {
|
|
|
|
if endpoint.Network != NetworkDisabled {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return constable.Error("all endpoints are disabled")
|
|
|
|
}
|
2022-03-24 22:46:10 +00:00
|
|
|
|
|
|
|
// For tcp networks, the address can be in several formats: host:port, host:, and :port.
|
|
|
|
// See address description in https://pkg.go.dev/net#Listen and https://pkg.go.dev/net#Dial.
|
|
|
|
// The host may be a literal IP address, or a host name that can be resolved to IP addresses,
|
|
|
|
// or a literal unspecified IP address (as in "0.0.0.0:80" or "[::]:80"), or empty.
|
|
|
|
// If the host is a literal IPv6 address it must be enclosed in square brackets, as in "[2001:db8::1]:80" or
|
|
|
|
// "[fe80::1%zone]:80". The zone specifies the scope of the literal IPv6 address as defined in RFC 4007.
|
|
|
|
// The port may be a literal port number or a service name, the value 0, or empty.
|
|
|
|
// Returns true if a net.Listen listener at this address would only listen on loopback interfaces.
|
|
|
|
// Returns false if the listener would listen on any non-loopback interfaces, or when called with illegal input.
|
|
|
|
func addrIsOnlyOnLoopback(addr string) bool {
|
|
|
|
// First try parsing as a `host:port`. net.SplitHostPort allows empty host and empty port.
|
|
|
|
host, _, err := net.SplitHostPort(addr)
|
|
|
|
if err != nil {
|
|
|
|
// Illegal input.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if host == "" {
|
|
|
|
// Input was :port. This would bind to all interfaces, so it is not only on loopback.
|
|
|
|
return false
|
|
|
|
}
|
2022-03-29 00:03:23 +00:00
|
|
|
if host == "localhost" || host == "ip6-localhost" || host == "ip6-loopback" {
|
|
|
|
// These hostnames are documented as the loopback hostnames seen inside the pod's containers in
|
|
|
|
// https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/#default-hosts-file-content
|
2022-03-24 22:46:10 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
// The host could be a hostname, an IPv4 address, or an IPv6 address.
|
|
|
|
ip := net.ParseIP(host)
|
|
|
|
if ip == nil {
|
|
|
|
// The address was not an IP. It must have been some hostname other than "localhost".
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return ip.IsLoopback()
|
|
|
|
}
|