2020-04-30 02:03:05 +00:00
|
|
|
package validator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-05-21 02:20:55 +00:00
|
|
|
"path"
|
2023-01-25 09:36:40 +00:00
|
|
|
"sort"
|
2020-05-21 02:20:55 +00:00
|
|
|
"strings"
|
2020-04-30 02:03:05 +00:00
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
|
|
"github.com/authelia/authelia/v4/internal/utils"
|
2020-04-30 02:03:05 +00:00
|
|
|
)
|
|
|
|
|
2022-04-04 23:57:47 +00:00
|
|
|
// validateFileExists checks whether a file exist.
|
|
|
|
func validateFileExists(path string, validator *schema.StructValidator, errTemplate string) {
|
|
|
|
exist, err := utils.FileExists(path)
|
|
|
|
if err != nil {
|
|
|
|
validator.Push(fmt.Errorf("tls: unable to check if file %s exists: %s", path, err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if !exist {
|
|
|
|
validator.Push(fmt.Errorf(errTemplate, path))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateServerTLS checks a server TLS configuration is correct.
|
|
|
|
func ValidateServerTLS(config *schema.Configuration, validator *schema.StructValidator) {
|
|
|
|
if config.Server.TLS.Key != "" && config.Server.TLS.Certificate == "" {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerTLSCert))
|
|
|
|
} else if config.Server.TLS.Key == "" && config.Server.TLS.Certificate != "" {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerTLSKey))
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.TLS.Key != "" {
|
|
|
|
validateFileExists(config.Server.TLS.Key, validator, errFmtServerTLSKeyFileDoesNotExist)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.TLS.Certificate != "" {
|
|
|
|
validateFileExists(config.Server.TLS.Certificate, validator, errFmtServerTLSCertFileDoesNotExist)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.TLS.Key == "" && config.Server.TLS.Certificate == "" &&
|
|
|
|
len(config.Server.TLS.ClientCertificates) > 0 {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerTLSClientAuthNoAuth))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, clientCertPath := range config.Server.TLS.ClientCertificates {
|
|
|
|
validateFileExists(clientCertPath, validator, errFmtServerTLSClientAuthCertFileDoesNotExist)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 02:03:05 +00:00
|
|
|
// ValidateServer checks a server configuration is correct.
|
2022-02-28 03:15:01 +00:00
|
|
|
func ValidateServer(config *schema.Configuration, validator *schema.StructValidator) {
|
|
|
|
if config.Server.Host == "" {
|
|
|
|
config.Server.Host = schema.DefaultServerConfiguration.Host
|
2021-08-02 11:55:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 03:15:01 +00:00
|
|
|
if config.Server.Port == 0 {
|
|
|
|
config.Server.Port = schema.DefaultServerConfiguration.Port
|
2021-08-02 11:55:30 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 23:57:47 +00:00
|
|
|
ValidateServerTLS(config, validator)
|
2021-08-02 11:55:30 +00:00
|
|
|
|
2020-05-21 02:20:55 +00:00
|
|
|
switch {
|
2022-02-28 03:15:01 +00:00
|
|
|
case strings.Contains(config.Server.Path, "/"):
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerPathNoForwardSlashes))
|
|
|
|
case !utils.IsStringAlphaNumeric(config.Server.Path):
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerPathAlphaNum))
|
|
|
|
case config.Server.Path == "": // Don't do anything if it's blank.
|
|
|
|
break
|
2020-05-21 02:20:55 +00:00
|
|
|
default:
|
2022-02-28 03:15:01 +00:00
|
|
|
config.Server.Path = path.Clean("/" + config.Server.Path)
|
2020-05-21 02:20:55 +00:00
|
|
|
}
|
|
|
|
|
2022-08-08 21:50:12 +00:00
|
|
|
if config.Server.Buffers.Read <= 0 {
|
|
|
|
config.Server.Buffers.Read = schema.DefaultServerConfiguration.Buffers.Read
|
2020-04-30 02:03:05 +00:00
|
|
|
}
|
|
|
|
|
2022-08-08 21:50:12 +00:00
|
|
|
if config.Server.Buffers.Write <= 0 {
|
|
|
|
config.Server.Buffers.Write = schema.DefaultServerConfiguration.Buffers.Write
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.Timeouts.Read <= 0 {
|
|
|
|
config.Server.Timeouts.Read = schema.DefaultServerConfiguration.Timeouts.Read
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.Timeouts.Write <= 0 {
|
|
|
|
config.Server.Timeouts.Write = schema.DefaultServerConfiguration.Timeouts.Write
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.Timeouts.Idle <= 0 {
|
|
|
|
config.Server.Timeouts.Idle = schema.DefaultServerConfiguration.Timeouts.Idle
|
2020-04-30 02:03:05 +00:00
|
|
|
}
|
2023-01-25 09:36:40 +00:00
|
|
|
|
|
|
|
ValidateServerEndpoints(config, validator)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateServerEndpoints configures the default endpoints and checks the configuration of custom endpoints.
|
|
|
|
func ValidateServerEndpoints(config *schema.Configuration, validator *schema.StructValidator) {
|
|
|
|
if config.Server.Endpoints.EnableExpvars {
|
|
|
|
validator.PushWarning(fmt.Errorf("server: endpoints: option 'enable_expvars' should not be enabled in production"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Server.Endpoints.EnablePprof {
|
|
|
|
validator.PushWarning(fmt.Errorf("server: endpoints: option 'enable_pprof' should not be enabled in production"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(config.Server.Endpoints.Authz) == 0 {
|
|
|
|
config.Server.Endpoints.Authz = schema.DefaultServerConfiguration.Endpoints.Authz
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
authzs := make([]string, 0, len(config.Server.Endpoints.Authz))
|
|
|
|
|
|
|
|
for name := range config.Server.Endpoints.Authz {
|
|
|
|
authzs = append(authzs, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(authzs)
|
|
|
|
|
|
|
|
for _, name := range authzs {
|
|
|
|
endpoint := config.Server.Endpoints.Authz[name]
|
|
|
|
|
|
|
|
validateServerEndpointsAuthzEndpoint(config, name, endpoint, validator)
|
|
|
|
|
|
|
|
for _, oName := range authzs {
|
|
|
|
oEndpoint := config.Server.Endpoints.Authz[oName]
|
|
|
|
|
|
|
|
if oName == name || oName == legacy {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
switch oEndpoint.Implementation {
|
|
|
|
case authzImplementationLegacy, authzImplementationExtAuthz:
|
|
|
|
if strings.HasPrefix(name, oName+"/") {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzPrefixDuplicate, name, oName, oEndpoint.Implementation))
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
validateServerEndpointsAuthzStrategies(name, endpoint.AuthnStrategies, validator)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateServerEndpointsAuthzEndpoint(config *schema.Configuration, name string, endpoint schema.ServerAuthzEndpoint, validator *schema.StructValidator) {
|
|
|
|
if name == legacy {
|
|
|
|
switch endpoint.Implementation {
|
|
|
|
case authzImplementationLegacy:
|
|
|
|
break
|
|
|
|
case "":
|
|
|
|
endpoint.Implementation = authzImplementationLegacy
|
|
|
|
|
|
|
|
config.Server.Endpoints.Authz[name] = endpoint
|
|
|
|
default:
|
|
|
|
if !utils.IsStringInSlice(endpoint.Implementation, validAuthzImplementations) {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzImplementation, name, strings.Join(validAuthzImplementations, "', '"), endpoint.Implementation))
|
|
|
|
} else {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzLegacyInvalidImplementation, name))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if !utils.IsStringInSlice(endpoint.Implementation, validAuthzImplementations) {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzImplementation, name, strings.Join(validAuthzImplementations, "', '"), endpoint.Implementation))
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reAuthzEndpointName.MatchString(name) {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzInvalidName, name))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateServerEndpointsAuthzStrategies(name string, strategies []schema.ServerAuthzEndpointAuthnStrategy, validator *schema.StructValidator) {
|
|
|
|
names := make([]string, len(strategies))
|
|
|
|
|
|
|
|
for _, strategy := range strategies {
|
|
|
|
if utils.IsStringInSlice(strategy.Name, names) {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzStrategyDuplicate, name, strategy.Name))
|
|
|
|
}
|
|
|
|
|
|
|
|
names = append(names, strategy.Name)
|
|
|
|
|
|
|
|
if !utils.IsStringInSlice(strategy.Name, validAuthzAuthnStrategies) {
|
|
|
|
validator.Push(fmt.Errorf(errFmtServerEndpointsAuthzStrategy, name, strings.Join(validAuthzAuthnStrategies, "', '"), strategy.Name))
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 02:03:05 +00:00
|
|
|
}
|