115 lines
2.5 KiB
Go
115 lines
2.5 KiB
Go
package kubeauth
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
)
|
|
|
|
const (
|
|
configPath string = "config"
|
|
rolePrefix string = "role/"
|
|
)
|
|
|
|
// kubeAuthBackend implements logical.Backend
|
|
type kubeAuthBackend struct {
|
|
*framework.Backend
|
|
|
|
// reviewFactory is used to configure the strategy for doing a token review.
|
|
// Currently the only options are using the kubernetes API or mocking the
|
|
// review. Mocks should only be used in tests.
|
|
reviewFactory tokenReviewFactory
|
|
|
|
l sync.RWMutex
|
|
}
|
|
|
|
// Factory returns a new backend as logical.Backend.
|
|
func Factory(conf *logical.BackendConfig) (logical.Backend, error) {
|
|
b := Backend()
|
|
if err := b.Setup(conf); err != nil {
|
|
return nil, err
|
|
}
|
|
return b, nil
|
|
}
|
|
|
|
func Backend() *kubeAuthBackend {
|
|
b := &kubeAuthBackend{}
|
|
|
|
b.Backend = &framework.Backend{
|
|
AuthRenew: b.pathLoginRenew,
|
|
BackendType: logical.TypeCredential,
|
|
Help: backendHelp,
|
|
PathsSpecial: &logical.Paths{
|
|
Unauthenticated: []string{
|
|
"login",
|
|
},
|
|
},
|
|
Paths: framework.PathAppend(
|
|
[]*framework.Path{
|
|
pathConfig(b),
|
|
pathLogin(b),
|
|
},
|
|
pathsRole(b),
|
|
),
|
|
}
|
|
|
|
// Set the review factory to default to calling into the kubernetes API.
|
|
b.reviewFactory = tokenReviewAPIFactory
|
|
|
|
return b
|
|
}
|
|
|
|
// config takes a storage object and returns a kubeConfig object
|
|
func (b *kubeAuthBackend) config(s logical.Storage) (*kubeConfig, error) {
|
|
raw, err := s.Get(configPath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if raw == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
conf := &kubeConfig{}
|
|
if err := json.Unmarshal(raw.Value, conf); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Parse the public keys from the CertificatesBytes
|
|
conf.PublicKeys = make([]interface{}, len(conf.PEMKeys))
|
|
for i, cert := range conf.PEMKeys {
|
|
conf.PublicKeys[i], err = parsePublicKeyPEM([]byte(cert))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return conf, nil
|
|
}
|
|
|
|
// role takes a storage backend and the name and returns the role's storage
|
|
// entry
|
|
func (b *kubeAuthBackend) role(s logical.Storage, name string) (*roleStorageEntry, error) {
|
|
raw, err := s.Get(fmt.Sprintf("%s%s", rolePrefix, strings.ToLower(name)))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if raw == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
role := &roleStorageEntry{}
|
|
if err := json.Unmarshal(raw.Value, role); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return role, nil
|
|
}
|
|
|
|
var backendHelp string = `
|
|
The Kubernetes Auth Backend allows authentication for Kubernetes service accounts.
|
|
`
|