mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
107 lines
2.8 KiB
Go
107 lines
2.8 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package kerberos
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/go-secure-stdlib/parseutil"
|
|
kerberos "github.com/hashicorp/vault-plugin-auth-kerberos"
|
|
"github.com/hashicorp/vault/api"
|
|
"github.com/hashicorp/vault/command/agentproxyshared/auth"
|
|
"github.com/jcmturner/gokrb5/v8/spnego"
|
|
)
|
|
|
|
type kerberosMethod struct {
|
|
logger hclog.Logger
|
|
mountPath string
|
|
loginCfg *kerberos.LoginCfg
|
|
}
|
|
|
|
func NewKerberosAuthMethod(conf *auth.AuthConfig) (auth.AuthMethod, error) {
|
|
if conf == nil {
|
|
return nil, errors.New("empty config")
|
|
}
|
|
if conf.Config == nil {
|
|
return nil, errors.New("empty config data")
|
|
}
|
|
username, err := read("username", conf.Config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
service, err := read("service", conf.Config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
realm, err := read("realm", conf.Config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
keytabPath, err := read("keytab_path", conf.Config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
krb5ConfPath, err := read("krb5conf_path", conf.Config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
disableFast := false
|
|
disableFastRaw, ok := conf.Config["disable_fast_negotiation"]
|
|
if ok {
|
|
disableFast, err = parseutil.ParseBool(disableFastRaw)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing 'disable_fast_negotiation': %s", err)
|
|
}
|
|
}
|
|
|
|
return &kerberosMethod{
|
|
logger: conf.Logger,
|
|
mountPath: conf.MountPath,
|
|
loginCfg: &kerberos.LoginCfg{
|
|
Username: username,
|
|
Service: service,
|
|
Realm: realm,
|
|
KeytabPath: keytabPath,
|
|
Krb5ConfPath: krb5ConfPath,
|
|
DisableFASTNegotiation: disableFast,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (k *kerberosMethod) Authenticate(context.Context, *api.Client) (string, http.Header, map[string]interface{}, error) {
|
|
k.logger.Trace("beginning authentication")
|
|
authHeaderVal, err := kerberos.GetAuthHeaderVal(k.loginCfg)
|
|
if err != nil {
|
|
return "", nil, nil, err
|
|
}
|
|
var header http.Header
|
|
header = make(map[string][]string)
|
|
header.Set(spnego.HTTPHeaderAuthRequest, authHeaderVal)
|
|
return k.mountPath + "/login", header, make(map[string]interface{}), nil
|
|
}
|
|
|
|
// These functions are implemented to meet the AuthHandler interface,
|
|
// but we don't need to take advantage of them.
|
|
func (k *kerberosMethod) NewCreds() chan struct{} { return nil }
|
|
func (k *kerberosMethod) CredSuccess() {}
|
|
func (k *kerberosMethod) Shutdown() {}
|
|
|
|
// read reads a key from a map and convert its value to a string.
|
|
func read(key string, m map[string]interface{}) (string, error) {
|
|
raw, ok := m[key]
|
|
if !ok {
|
|
return "", fmt.Errorf("%q is required", key)
|
|
}
|
|
v, ok := raw.(string)
|
|
if !ok {
|
|
return "", fmt.Errorf("%q must be a string", key)
|
|
}
|
|
return v, nil
|
|
}
|