| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // Copyright 2023 The frp Authors
- //
- // 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 validation
- import (
- "fmt"
- "os"
- "path/filepath"
- "slices"
- "github.com/samber/lo"
- v1 "github.com/fatedier/frp/pkg/config/v1"
- "github.com/fatedier/frp/pkg/featuregate"
- )
- func ValidateClientCommonConfig(c *v1.ClientCommonConfig, unsafeFeatures v1.UnsafeFeatures) (Warning, error) {
- var (
- warnings Warning
- errs error
- )
- // validate feature gates
- if c.VirtualNet.Address != "" {
- if !featuregate.Enabled(featuregate.VirtualNet) {
- return warnings, fmt.Errorf("VirtualNet feature is not enabled; enable it by setting the appropriate feature gate flag")
- }
- }
- if !slices.Contains(SupportedAuthMethods, c.Auth.Method) {
- errs = AppendError(errs, fmt.Errorf("invalid auth method, optional values are %v", SupportedAuthMethods))
- }
- if !lo.Every(SupportedAuthAdditionalScopes, c.Auth.AdditionalScopes) {
- errs = AppendError(errs, fmt.Errorf("invalid auth additional scopes, optional values are %v", SupportedAuthAdditionalScopes))
- }
- // Validate token/tokenSource mutual exclusivity
- if c.Auth.Token != "" && c.Auth.TokenSource != nil {
- errs = AppendError(errs, fmt.Errorf("cannot specify both auth.token and auth.tokenSource"))
- }
- // Validate tokenSource if specified
- if c.Auth.TokenSource != nil {
- if c.Auth.TokenSource.Type == "exec" && !unsafeFeatures.IsEnabled(v1.UnsafeFeatureTokenSourceExec) {
- errs = AppendError(errs, fmt.Errorf("unsafe 'exec' not allowed for auth.tokenSource.type"))
- }
- if err := c.Auth.TokenSource.Validate(); err != nil {
- errs = AppendError(errs, fmt.Errorf("invalid auth.tokenSource: %v", err))
- }
- }
- if c.Auth.OIDC.TokenSource != nil {
- // Validate oidc.tokenSource mutual exclusivity with other fields of oidc
- if c.Auth.OIDC.ClientID != "" || c.Auth.OIDC.ClientSecret != "" || c.Auth.OIDC.Audience != "" ||
- c.Auth.OIDC.Scope != "" || c.Auth.OIDC.TokenEndpointURL != "" || len(c.Auth.OIDC.AdditionalEndpointParams) > 0 ||
- c.Auth.OIDC.TrustedCaFile != "" || c.Auth.OIDC.InsecureSkipVerify || c.Auth.OIDC.ProxyURL != "" {
- errs = AppendError(errs, fmt.Errorf("cannot specify both auth.oidc.tokenSource and any other field of auth.oidc"))
- }
- if c.Auth.OIDC.TokenSource.Type == "exec" && !unsafeFeatures.IsEnabled(v1.UnsafeFeatureTokenSourceExec) {
- errs = AppendError(errs, fmt.Errorf("unsafe 'exec' not allowed for auth.oidc.tokenSource.type"))
- }
- }
- if err := validateLogConfig(&c.Log); err != nil {
- errs = AppendError(errs, err)
- }
- if err := validateWebServerConfig(&c.WebServer); err != nil {
- errs = AppendError(errs, err)
- }
- if c.Transport.HeartbeatTimeout > 0 && c.Transport.HeartbeatInterval > 0 {
- if c.Transport.HeartbeatTimeout < c.Transport.HeartbeatInterval {
- errs = AppendError(errs, fmt.Errorf("invalid transport.heartbeatTimeout, heartbeat timeout should not less than heartbeat interval"))
- }
- }
- if !lo.FromPtr(c.Transport.TLS.Enable) {
- checkTLSConfig := func(name string, value string) Warning {
- if value != "" {
- return fmt.Errorf("%s is invalid when transport.tls.enable is false", name)
- }
- return nil
- }
- warnings = AppendError(warnings, checkTLSConfig("transport.tls.certFile", c.Transport.TLS.CertFile))
- warnings = AppendError(warnings, checkTLSConfig("transport.tls.keyFile", c.Transport.TLS.KeyFile))
- warnings = AppendError(warnings, checkTLSConfig("transport.tls.trustedCaFile", c.Transport.TLS.TrustedCaFile))
- }
- if !slices.Contains(SupportedTransportProtocols, c.Transport.Protocol) {
- errs = AppendError(errs, fmt.Errorf("invalid transport.protocol, optional values are %v", SupportedTransportProtocols))
- }
- for _, f := range c.IncludeConfigFiles {
- absDir, err := filepath.Abs(filepath.Dir(f))
- if err != nil {
- errs = AppendError(errs, fmt.Errorf("include: parse directory of %s failed: %v", f, err))
- continue
- }
- if _, err := os.Stat(absDir); os.IsNotExist(err) {
- errs = AppendError(errs, fmt.Errorf("include: directory of %s not exist", f))
- }
- }
- return warnings, errs
- }
- func ValidateAllClientConfig(
- c *v1.ClientCommonConfig,
- proxyCfgs []v1.ProxyConfigurer,
- visitorCfgs []v1.VisitorConfigurer,
- unsafeFeatures v1.UnsafeFeatures,
- ) (Warning, error) {
- var warnings Warning
- if c != nil {
- warning, err := ValidateClientCommonConfig(c, unsafeFeatures)
- warnings = AppendError(warnings, warning)
- if err != nil {
- return warnings, err
- }
- }
- for _, c := range proxyCfgs {
- if err := ValidateProxyConfigurerForClient(c); err != nil {
- return warnings, fmt.Errorf("proxy %s: %v", c.GetBaseConfig().Name, err)
- }
- }
- for _, c := range visitorCfgs {
- if err := ValidateVisitorConfigurer(c); err != nil {
- return warnings, fmt.Errorf("visitor %s: %v", c.GetBaseConfig().Name, err)
- }
- }
- return warnings, nil
- }
|