2019-04-26 17:49:28 +00:00
|
|
|
package testauth
|
|
|
|
|
|
|
|
import (
|
2020-05-01 22:35:28 +00:00
|
|
|
"context"
|
2019-04-26 17:49:28 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
|
|
|
"github.com/hashicorp/consul/agent/consul/authmethod"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2020-05-01 20:55:26 +00:00
|
|
|
"github.com/hashicorp/go-hclog"
|
2019-04-26 17:49:28 +00:00
|
|
|
"github.com/hashicorp/go-uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
authmethod.Register("testing", newValidator)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
tokenDatabaseMu sync.Mutex
|
|
|
|
tokenDatabase map[string]map[string]map[string]string // session => token => fieldmap
|
|
|
|
)
|
|
|
|
|
|
|
|
func StartSession() string {
|
|
|
|
sessionID, err := uuid.GenerateUUID()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return sessionID
|
|
|
|
}
|
|
|
|
|
|
|
|
func ResetSession(sessionID string) {
|
|
|
|
tokenDatabaseMu.Lock()
|
|
|
|
defer tokenDatabaseMu.Unlock()
|
|
|
|
if tokenDatabase != nil {
|
|
|
|
delete(tokenDatabase, sessionID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func InstallSessionToken(sessionID string, token string, namespace, name, uid string) {
|
|
|
|
fields := map[string]string{
|
|
|
|
serviceAccountNamespaceField: namespace,
|
|
|
|
serviceAccountNameField: name,
|
|
|
|
serviceAccountUIDField: uid,
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenDatabaseMu.Lock()
|
|
|
|
defer tokenDatabaseMu.Unlock()
|
|
|
|
if tokenDatabase == nil {
|
|
|
|
tokenDatabase = make(map[string]map[string]map[string]string)
|
|
|
|
}
|
|
|
|
sdb, ok := tokenDatabase[sessionID]
|
|
|
|
if !ok {
|
|
|
|
sdb = make(map[string]map[string]string)
|
|
|
|
tokenDatabase[sessionID] = sdb
|
|
|
|
}
|
|
|
|
sdb[token] = fields
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSessionToken(sessionID string, token string) (map[string]string, bool) {
|
|
|
|
tokenDatabaseMu.Lock()
|
|
|
|
defer tokenDatabaseMu.Unlock()
|
|
|
|
if tokenDatabase == nil {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
sdb, ok := tokenDatabase[sessionID]
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
fields, ok := sdb[token]
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
fmCopy := make(map[string]string)
|
|
|
|
for k, v := range fields {
|
|
|
|
fmCopy[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmCopy, true
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
2020-05-11 19:21:17 +00:00
|
|
|
SessionID string // unique identifier for this set of tokens in the database
|
|
|
|
Data map[string]string `json:",omitempty"` // random data for testing
|
2020-01-14 15:09:29 +00:00
|
|
|
|
|
|
|
enterpriseConfig `mapstructure:",squash"`
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 20:55:26 +00:00
|
|
|
func newValidator(logger hclog.Logger, method *structs.ACLAuthMethod) (authmethod.Validator, error) {
|
2019-04-26 17:49:28 +00:00
|
|
|
if method.Type != "testing" {
|
|
|
|
return nil, fmt.Errorf("%q is not a testing auth method", method.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
var config Config
|
|
|
|
if err := authmethod.ParseConfig(method.Config, &config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.SessionID == "" {
|
|
|
|
// If you don't explicitly create one, we create a random one but you
|
|
|
|
// won't have access to it. Useful if you are testing everything EXCEPT
|
|
|
|
// ValidateToken().
|
|
|
|
config.SessionID = StartSession()
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Validator{
|
|
|
|
name: method.Name,
|
|
|
|
config: &config,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Validator struct {
|
|
|
|
name string
|
|
|
|
config *Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validator) Name() string { return v.name }
|
|
|
|
|
2020-05-01 22:35:28 +00:00
|
|
|
func (v *Validator) Stop() {}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
// ValidateLogin takes raw user-provided auth method metadata and ensures it is
|
|
|
|
// sane, provably correct, and currently valid. Relevant identifying data is
|
|
|
|
// extracted and returned for immediate use by the role binding process.
|
|
|
|
//
|
|
|
|
// Depending upon the method, it may make sense to use these calls to continue
|
|
|
|
// to extend the life of the underlying token.
|
|
|
|
//
|
|
|
|
// Returns auth method specific metadata suitable for the Role Binding process.
|
2020-05-01 22:35:28 +00:00
|
|
|
func (v *Validator) ValidateLogin(ctx context.Context, loginToken string) (*authmethod.Identity, error) {
|
2019-04-26 17:49:28 +00:00
|
|
|
fields, valid := GetSessionToken(v.config.SessionID, loginToken)
|
|
|
|
if !valid {
|
2020-05-01 22:35:28 +00:00
|
|
|
return nil, acl.ErrNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
id := v.NewIdentity()
|
|
|
|
id.SelectableFields = &selectableVars{
|
|
|
|
ServiceAccount: selectableServiceAccount{
|
|
|
|
Namespace: fields[serviceAccountNamespaceField],
|
|
|
|
Name: fields[serviceAccountNameField],
|
|
|
|
UID: fields[serviceAccountUIDField],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for k, val := range fields {
|
|
|
|
id.ProjectedVars[k] = val
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
2020-05-01 22:35:28 +00:00
|
|
|
id.EnterpriseMeta = v.testAuthEntMetaFromFields(fields)
|
2019-04-26 17:49:28 +00:00
|
|
|
|
2020-05-01 22:35:28 +00:00
|
|
|
return id, nil
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 22:35:28 +00:00
|
|
|
func (v *Validator) NewIdentity() *authmethod.Identity {
|
|
|
|
id := &authmethod.Identity{
|
|
|
|
SelectableFields: &selectableVars{},
|
|
|
|
ProjectedVars: map[string]string{},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range availableFields {
|
|
|
|
id.ProjectedVars[f] = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return id
|
|
|
|
}
|
2019-04-26 17:49:28 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
serviceAccountNamespaceField = "serviceaccount.namespace"
|
|
|
|
serviceAccountNameField = "serviceaccount.name"
|
|
|
|
serviceAccountUIDField = "serviceaccount.uid"
|
|
|
|
)
|
|
|
|
|
|
|
|
var availableFields = []string{
|
|
|
|
serviceAccountNamespaceField,
|
|
|
|
serviceAccountNameField,
|
|
|
|
serviceAccountUIDField,
|
|
|
|
}
|
|
|
|
|
|
|
|
type selectableVars struct {
|
|
|
|
ServiceAccount selectableServiceAccount `bexpr:"serviceaccount"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type selectableServiceAccount struct {
|
|
|
|
Namespace string `bexpr:"namespace"`
|
|
|
|
Name string `bexpr:"name"`
|
|
|
|
UID string `bexpr:"uid"`
|
|
|
|
}
|