123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- // 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
- }
|