mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 12:51:17 +00:00
115 lines
2.8 KiB
Go
115 lines
2.8 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"sync"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const mfaLoginFieldName = "mfa-token"
|
|
|
|
var mfaLoginField = loginField{
|
|
Label: "MFA Token",
|
|
Name: mfaLoginFieldName,
|
|
Placeholder: "(optional)",
|
|
Type: "text",
|
|
}
|
|
|
|
type mfaConfig struct {
|
|
Provider string `yaml:"provider"`
|
|
Attributes map[string]interface{} `yaml:"attributes"`
|
|
}
|
|
|
|
func newMFAConfig(provider string, attrs map[string]interface{}) mfaConfig {
|
|
return mfaConfig{Provider: provider, Attributes: attrs}
|
|
}
|
|
|
|
func (m mfaConfig) AttributeString(key string) string {
|
|
if v, ok := m.Attributes[key]; ok {
|
|
if sv, ok := v.(string); ok {
|
|
return sv
|
|
}
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
type mfaProvider interface {
|
|
// ProviderID needs to return an unique string to identify
|
|
// this special MFA provider
|
|
ProviderID() (id string)
|
|
|
|
// Configure loads the configuration for the Authenticator from the
|
|
// global config.yaml file which is passed as a byte-slice.
|
|
// If no configuration for the Authenticator is supplied the function
|
|
// needs to return the errProviderUnconfigured
|
|
Configure(yamlSource []byte) (err error)
|
|
|
|
// ValidateMFA takes the user from the login cookie and performs a
|
|
// validation against the provided MFA configuration for this user
|
|
ValidateMFA(res http.ResponseWriter, r *http.Request, user string, mfaCfgs []mfaConfig) error
|
|
}
|
|
|
|
var (
|
|
mfaRegistry = []mfaProvider{}
|
|
mfaRegistryMutex sync.RWMutex
|
|
|
|
activeMFAProviders = []mfaProvider{}
|
|
)
|
|
|
|
func registerMFAProvider(m mfaProvider) {
|
|
mfaRegistryMutex.Lock()
|
|
defer mfaRegistryMutex.Unlock()
|
|
|
|
mfaRegistry = append(mfaRegistry, m)
|
|
}
|
|
|
|
func initializeMFAProviders(yamlSource []byte) error {
|
|
mfaRegistryMutex.Lock()
|
|
defer mfaRegistryMutex.Unlock()
|
|
|
|
for _, m := range mfaRegistry {
|
|
err := m.Configure(yamlSource)
|
|
|
|
switch err {
|
|
case nil:
|
|
activeMFAProviders = append(activeMFAProviders, m)
|
|
log.WithFields(log.Fields{"mfa_provider": m.ProviderID()}).Debug("Activated MFA provider")
|
|
case errProviderUnconfigured:
|
|
log.WithFields(log.Fields{"mfa_provider": m.ProviderID()}).Debug("MFA provider unconfigured")
|
|
// This is okay.
|
|
default:
|
|
return fmt.Errorf("MFA provider configuration caused an error: %s", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func validateMFA(res http.ResponseWriter, r *http.Request, user string, mfaCfgs []mfaConfig) error {
|
|
if mfaCfgs == nil || len(mfaCfgs) == 0 {
|
|
// User has no configured MFA devices, their MFA is automatically valid
|
|
return nil
|
|
}
|
|
|
|
mfaRegistryMutex.RLock()
|
|
defer mfaRegistryMutex.RUnlock()
|
|
|
|
for _, m := range activeMFAProviders {
|
|
err := m.ValidateMFA(res, r, user, mfaCfgs)
|
|
switch err {
|
|
case nil:
|
|
// Validated successfully
|
|
return nil
|
|
case errNoValidUserFound:
|
|
// This is fine for now
|
|
default:
|
|
return err
|
|
}
|
|
}
|
|
|
|
// No method could verify the user
|
|
return errNoValidUserFound
|
|
}
|