mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
152 lines
4.3 KiB
Go
152 lines
4.3 KiB
Go
|
// Copyright 2020 guylewin, guy@lewin.co.il
|
||
|
//
|
||
|
// 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 auth
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/fatedier/frp/models/consts"
|
||
|
"github.com/fatedier/frp/models/msg"
|
||
|
|
||
|
"github.com/vaughan0/go-ini"
|
||
|
)
|
||
|
|
||
|
type baseConfig struct {
|
||
|
// AuthenticationMethod specifies what authentication method to use to
|
||
|
// authenticate frpc with frps. If "token" is specified - token will be
|
||
|
// read into login message. If "oidc" is specified - OIDC (Open ID Connect)
|
||
|
// token will be issued using OIDC settings. By default, this value is "token".
|
||
|
AuthenticationMethod string `json:"authentication_method"`
|
||
|
// AuthenticateHeartBeats specifies whether to include authentication token in
|
||
|
// heartbeats sent to frps. By default, this value is false.
|
||
|
AuthenticateHeartBeats bool `json:"authenticate_heartbeats"`
|
||
|
// AuthenticateNewWorkConns specifies whether to include authentication token in
|
||
|
// new work connections sent to frps. By default, this value is false.
|
||
|
AuthenticateNewWorkConns bool `json:"authenticate_new_work_conns"`
|
||
|
}
|
||
|
|
||
|
func getDefaultBaseConf() baseConfig {
|
||
|
return baseConfig{
|
||
|
AuthenticationMethod: "token",
|
||
|
AuthenticateHeartBeats: false,
|
||
|
AuthenticateNewWorkConns: false,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func unmarshalBaseConfFromIni(conf ini.File) baseConfig {
|
||
|
var (
|
||
|
tmpStr string
|
||
|
ok bool
|
||
|
)
|
||
|
|
||
|
cfg := getDefaultBaseConf()
|
||
|
|
||
|
if tmpStr, ok = conf.Get("common", "authentication_method"); ok {
|
||
|
cfg.AuthenticationMethod = tmpStr
|
||
|
}
|
||
|
|
||
|
if tmpStr, ok = conf.Get("common", "authenticate_heartbeats"); ok && tmpStr == "true" {
|
||
|
cfg.AuthenticateHeartBeats = true
|
||
|
} else {
|
||
|
cfg.AuthenticateHeartBeats = false
|
||
|
}
|
||
|
|
||
|
if tmpStr, ok = conf.Get("common", "authenticate_new_work_conns"); ok && tmpStr == "true" {
|
||
|
cfg.AuthenticateNewWorkConns = true
|
||
|
} else {
|
||
|
cfg.AuthenticateNewWorkConns = false
|
||
|
}
|
||
|
|
||
|
return cfg
|
||
|
}
|
||
|
|
||
|
type AuthClientConfig struct {
|
||
|
baseConfig
|
||
|
oidcClientConfig
|
||
|
tokenConfig
|
||
|
}
|
||
|
|
||
|
func GetDefaultAuthClientConf() AuthClientConfig {
|
||
|
return AuthClientConfig{
|
||
|
baseConfig: getDefaultBaseConf(),
|
||
|
oidcClientConfig: getDefaultOidcClientConf(),
|
||
|
tokenConfig: getDefaultTokenConf(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func UnmarshalAuthClientConfFromIni(conf ini.File) (cfg AuthClientConfig) {
|
||
|
cfg.baseConfig = unmarshalBaseConfFromIni(conf)
|
||
|
cfg.oidcClientConfig = unmarshalOidcClientConfFromIni(conf)
|
||
|
cfg.tokenConfig = unmarshalTokenConfFromIni(conf)
|
||
|
return cfg
|
||
|
}
|
||
|
|
||
|
type AuthServerConfig struct {
|
||
|
baseConfig
|
||
|
oidcServerConfig
|
||
|
tokenConfig
|
||
|
}
|
||
|
|
||
|
func GetDefaultAuthServerConf() AuthServerConfig {
|
||
|
return AuthServerConfig{
|
||
|
baseConfig: getDefaultBaseConf(),
|
||
|
oidcServerConfig: getDefaultOidcServerConf(),
|
||
|
tokenConfig: getDefaultTokenConf(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func UnmarshalAuthServerConfFromIni(conf ini.File) (cfg AuthServerConfig) {
|
||
|
cfg.baseConfig = unmarshalBaseConfFromIni(conf)
|
||
|
cfg.oidcServerConfig = unmarshalOidcServerConfFromIni(conf)
|
||
|
cfg.tokenConfig = unmarshalTokenConfFromIni(conf)
|
||
|
return cfg
|
||
|
}
|
||
|
|
||
|
type Setter interface {
|
||
|
SetLogin(*msg.Login) error
|
||
|
SetPing(*msg.Ping) error
|
||
|
SetNewWorkConn(*msg.NewWorkConn) error
|
||
|
}
|
||
|
|
||
|
func NewAuthSetter(cfg AuthClientConfig) (authProvider Setter) {
|
||
|
switch cfg.AuthenticationMethod {
|
||
|
case consts.TokenAuthMethod:
|
||
|
authProvider = NewTokenAuth(cfg.baseConfig, cfg.tokenConfig)
|
||
|
case consts.OidcAuthMethod:
|
||
|
authProvider = NewOidcAuthSetter(cfg.baseConfig, cfg.oidcClientConfig)
|
||
|
default:
|
||
|
panic(fmt.Sprintf("wrong authentication method: '%s'", cfg.AuthenticationMethod))
|
||
|
}
|
||
|
|
||
|
return authProvider
|
||
|
}
|
||
|
|
||
|
type Verifier interface {
|
||
|
VerifyLogin(*msg.Login) error
|
||
|
VerifyPing(*msg.Ping) error
|
||
|
VerifyNewWorkConn(*msg.NewWorkConn) error
|
||
|
}
|
||
|
|
||
|
func NewAuthVerifier(cfg AuthServerConfig) (authVerifier Verifier) {
|
||
|
switch cfg.AuthenticationMethod {
|
||
|
case consts.TokenAuthMethod:
|
||
|
authVerifier = NewTokenAuth(cfg.baseConfig, cfg.tokenConfig)
|
||
|
case consts.OidcAuthMethod:
|
||
|
authVerifier = NewOidcAuthVerifier(cfg.baseConfig, cfg.oidcServerConfig)
|
||
|
}
|
||
|
|
||
|
return authVerifier
|
||
|
}
|