mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-10 05:11:09 +01:00
* Fix unsetting sys tunable values (on ent). * Remove commented test, add GoDoc for test. * Handle empty slices better (PR feedback). * Fetch Auth endpoint without listing (PR feedback). * Fatal vs. Error * Add GetAuth instead of ListAuth * Fix error format error. Oops! * One more list->get auth. Remove extra check. * Updated TuneMountWithContextAllowNil to use a struct (with all pointers). * Allow setting empty values for userLockoutConfig too - use new struct. * Extra pointer. * Remove useless functions. * Simple test to ensure any field we can set we can update and vice-versa. * Add json tag checks. Co-authored-by: Kit Haines <khaines@mit.edu>
366 lines
11 KiB
Go
366 lines
11 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/hashicorp/cli"
|
|
"github.com/hashicorp/vault/api"
|
|
"github.com/posener/complete"
|
|
)
|
|
|
|
var (
|
|
_ cli.Command = (*AuthTuneCommand)(nil)
|
|
_ cli.CommandAutocomplete = (*AuthTuneCommand)(nil)
|
|
)
|
|
|
|
type AuthTuneCommand struct {
|
|
*BaseCommand
|
|
|
|
flagAuditNonHMACRequestKeys []string
|
|
flagAuditNonHMACResponseKeys []string
|
|
flagDefaultLeaseTTL time.Duration
|
|
flagDescription string
|
|
flagListingVisibility string
|
|
flagMaxLeaseTTL time.Duration
|
|
flagPassthroughRequestHeaders []string
|
|
flagAllowedResponseHeaders []string
|
|
flagOptions map[string]string
|
|
flagTokenType string
|
|
flagVersion int
|
|
flagPluginVersion string
|
|
flagUserLockoutThreshold uint
|
|
flagUserLockoutDuration time.Duration
|
|
flagUserLockoutCounterResetDuration time.Duration
|
|
flagUserLockoutDisable bool
|
|
flagIdentityTokenKey string
|
|
flagTrimRequestTrailingSlashes BoolPtr
|
|
}
|
|
|
|
func (c *AuthTuneCommand) Synopsis() string {
|
|
return "Tunes an auth method configuration"
|
|
}
|
|
|
|
func (c *AuthTuneCommand) Help() string {
|
|
helpText := `
|
|
Usage: vault auth tune [options] PATH
|
|
|
|
Tunes the configuration options for the auth method at the given PATH. The
|
|
argument corresponds to the PATH where the auth method is enabled, not the
|
|
TYPE!
|
|
|
|
Tune the default lease for the github auth method:
|
|
|
|
$ vault auth tune -default-lease-ttl=72h github/
|
|
|
|
` + c.Flags().Help()
|
|
|
|
return strings.TrimSpace(helpText)
|
|
}
|
|
|
|
func (c *AuthTuneCommand) Flags() *FlagSets {
|
|
set := c.flagSet(FlagSetHTTP)
|
|
|
|
f := set.NewFlagSet("Command Options")
|
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
Name: flagNameAuditNonHMACRequestKeys,
|
|
Target: &c.flagAuditNonHMACRequestKeys,
|
|
Usage: "Key that will not be HMAC'd by audit devices in the request data " +
|
|
"object. To specify multiple values, specify this flag multiple times.",
|
|
})
|
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
Name: flagNameAuditNonHMACResponseKeys,
|
|
Target: &c.flagAuditNonHMACResponseKeys,
|
|
Usage: "Key that will not be HMAC'd by audit devices in the response data " +
|
|
"object. To specify multiple values, specify this flag multiple times.",
|
|
})
|
|
|
|
f.DurationVar(&DurationVar{
|
|
Name: "default-lease-ttl",
|
|
Target: &c.flagDefaultLeaseTTL,
|
|
Default: 0,
|
|
EnvVar: "",
|
|
Completion: complete.PredictAnything,
|
|
Usage: "The default lease TTL for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured default lease TTL, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.StringVar(&StringVar{
|
|
Name: flagNameDescription,
|
|
Target: &c.flagDescription,
|
|
Usage: "Human-friendly description of the this auth method. This overrides " +
|
|
"the current stored value, if any.",
|
|
})
|
|
|
|
f.StringVar(&StringVar{
|
|
Name: flagNameListingVisibility,
|
|
Target: &c.flagListingVisibility,
|
|
Usage: "Determines the visibility of the mount in the UI-specific listing " +
|
|
"endpoint.",
|
|
})
|
|
|
|
f.DurationVar(&DurationVar{
|
|
Name: "max-lease-ttl",
|
|
Target: &c.flagMaxLeaseTTL,
|
|
Default: 0,
|
|
EnvVar: "",
|
|
Completion: complete.PredictAnything,
|
|
Usage: "The maximum lease TTL for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured maximum lease TTL, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
Name: flagNamePassthroughRequestHeaders,
|
|
Target: &c.flagPassthroughRequestHeaders,
|
|
Usage: "Request header value that will be sent to the plugin. To specify " +
|
|
"multiple values, specify this flag multiple times.",
|
|
})
|
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
Name: flagNameAllowedResponseHeaders,
|
|
Target: &c.flagAllowedResponseHeaders,
|
|
Usage: "Response header value that plugins will be allowed to set. To specify " +
|
|
"multiple values, specify this flag multiple times.",
|
|
})
|
|
|
|
f.StringMapVar(&StringMapVar{
|
|
Name: "options",
|
|
Target: &c.flagOptions,
|
|
Completion: complete.PredictAnything,
|
|
Usage: "Key-value pair provided as key=value for the mount options. " +
|
|
"This can be specified multiple times.",
|
|
})
|
|
|
|
f.StringVar(&StringVar{
|
|
Name: flagNameTokenType,
|
|
Target: &c.flagTokenType,
|
|
Usage: "Sets a forced token type for the mount.",
|
|
})
|
|
|
|
f.IntVar(&IntVar{
|
|
Name: "version",
|
|
Target: &c.flagVersion,
|
|
Default: 0,
|
|
Usage: "Select the version of the auth method to run. Not supported by all auth methods.",
|
|
})
|
|
|
|
f.UintVar(&UintVar{
|
|
Name: flagNameUserLockoutThreshold,
|
|
Target: &c.flagUserLockoutThreshold,
|
|
Usage: "The threshold for user lockout for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured user lockout threshold, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.DurationVar(&DurationVar{
|
|
Name: flagNameUserLockoutDuration,
|
|
Target: &c.flagUserLockoutDuration,
|
|
Completion: complete.PredictAnything,
|
|
Usage: "The user lockout duration for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured user lockout duration, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.DurationVar(&DurationVar{
|
|
Name: flagNameUserLockoutCounterResetDuration,
|
|
Target: &c.flagUserLockoutCounterResetDuration,
|
|
Completion: complete.PredictAnything,
|
|
Usage: "The user lockout counter reset duration for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured user lockout counter reset duration, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.BoolVar(&BoolVar{
|
|
Name: flagNameUserLockoutDisable,
|
|
Target: &c.flagUserLockoutDisable,
|
|
Default: false,
|
|
Usage: "Disable user lockout for this auth method. If unspecified, this " +
|
|
"defaults to the Vault server's globally configured user lockout disable, " +
|
|
"or a previously configured value for the auth method.",
|
|
})
|
|
|
|
f.StringVar(&StringVar{
|
|
Name: flagNamePluginVersion,
|
|
Target: &c.flagPluginVersion,
|
|
Default: "",
|
|
Usage: "Select the semantic version of the plugin to run. The new version must be registered in " +
|
|
"the plugin catalog, and will not start running until the plugin is reloaded.",
|
|
})
|
|
f.BoolPtrVar(&BoolPtrVar{
|
|
Name: flagNameTrimRequestTrailingSlashes,
|
|
Target: &c.flagTrimRequestTrailingSlashes,
|
|
Usage: "Whether to trim trailing slashes for incoming requests to this mount",
|
|
})
|
|
|
|
f.StringVar(&StringVar{
|
|
Name: flagNameIdentityTokenKey,
|
|
Target: &c.flagIdentityTokenKey,
|
|
Default: "default",
|
|
Usage: "Select the key used to sign plugin identity tokens.",
|
|
})
|
|
|
|
return set
|
|
}
|
|
|
|
func (c *AuthTuneCommand) AutocompleteArgs() complete.Predictor {
|
|
return c.PredictVaultAuths()
|
|
}
|
|
|
|
func (c *AuthTuneCommand) AutocompleteFlags() complete.Flags {
|
|
return c.Flags().Completions()
|
|
}
|
|
|
|
func (c *AuthTuneCommand) Run(args []string) int {
|
|
f := c.Flags()
|
|
|
|
if err := f.Parse(args); err != nil {
|
|
c.UI.Error(err.Error())
|
|
return 1
|
|
}
|
|
|
|
args = f.Args()
|
|
switch {
|
|
case len(args) < 1:
|
|
c.UI.Error(fmt.Sprintf("Not enough arguments (expected 1, got %d)", len(args)))
|
|
return 1
|
|
case len(args) > 1:
|
|
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
|
|
return 1
|
|
}
|
|
|
|
client, err := c.Client()
|
|
if err != nil {
|
|
c.UI.Error(err.Error())
|
|
return 2
|
|
}
|
|
|
|
if c.flagVersion > 0 {
|
|
if c.flagOptions == nil {
|
|
c.flagOptions = make(map[string]string)
|
|
}
|
|
c.flagOptions["version"] = strconv.Itoa(c.flagVersion)
|
|
}
|
|
|
|
defaultLeaseTtl := ttlToAPI(c.flagDefaultLeaseTTL)
|
|
maxLeaseTtl := ttlToAPI(c.flagMaxLeaseTTL)
|
|
options := c.flagOptions
|
|
tuneMountInput := api.TuneMountConfigInput{
|
|
DefaultLeaseTTL: &defaultLeaseTtl,
|
|
MaxLeaseTTL: &maxLeaseTtl,
|
|
Options: &options,
|
|
}
|
|
|
|
userLockoutConfig := api.TuneUserLockoutConfigInput{}
|
|
userLockoutConfigSet := false
|
|
|
|
// Set these values only if they are provided in the CLI
|
|
f.Visit(func(fl *flag.Flag) {
|
|
if fl.Name == flagNameAuditNonHMACRequestKeys {
|
|
if len(c.flagAuditNonHMACRequestKeys) == 1 && c.flagAuditNonHMACRequestKeys[0] == "" {
|
|
emptyList := []string{}
|
|
tuneMountInput.AuditNonHMACRequestKeys = &emptyList
|
|
} else {
|
|
tuneMountInput.AuditNonHMACRequestKeys = &c.flagAuditNonHMACRequestKeys
|
|
}
|
|
}
|
|
|
|
if fl.Name == flagNameAuditNonHMACResponseKeys {
|
|
if len(c.flagAuditNonHMACResponseKeys) == 1 && c.flagAuditNonHMACResponseKeys[0] == "" {
|
|
emptyList := []string{}
|
|
tuneMountInput.AuditNonHMACResponseKeys = &emptyList
|
|
} else {
|
|
tuneMountInput.AuditNonHMACResponseKeys = &c.flagAuditNonHMACResponseKeys
|
|
}
|
|
}
|
|
|
|
if fl.Name == flagNameDescription {
|
|
tuneMountInput.Description = &c.flagDescription
|
|
}
|
|
|
|
if fl.Name == flagNameListingVisibility {
|
|
tuneMountInput.ListingVisibility = &c.flagListingVisibility
|
|
}
|
|
|
|
if fl.Name == flagNamePassthroughRequestHeaders {
|
|
if len(c.flagPassthroughRequestHeaders) == 1 && c.flagPassthroughRequestHeaders[0] == "" {
|
|
emptyList := []string{}
|
|
tuneMountInput.PassthroughRequestHeaders = &emptyList
|
|
} else {
|
|
tuneMountInput.PassthroughRequestHeaders = &c.flagPassthroughRequestHeaders
|
|
}
|
|
}
|
|
|
|
if fl.Name == flagNameAllowedResponseHeaders {
|
|
if len(c.flagAllowedResponseHeaders) == 1 && c.flagAllowedResponseHeaders[0] == "" {
|
|
emptyList := []string{}
|
|
tuneMountInput.AllowedResponseHeaders = &emptyList
|
|
} else {
|
|
tuneMountInput.AllowedResponseHeaders = &c.flagAllowedResponseHeaders
|
|
}
|
|
}
|
|
|
|
if fl.Name == flagNameTokenType {
|
|
tuneMountInput.TokenType = &c.flagTokenType
|
|
}
|
|
|
|
switch fl.Name {
|
|
case flagNameUserLockoutThreshold, flagNameUserLockoutDuration, flagNameUserLockoutCounterResetDuration, flagNameUserLockoutDisable:
|
|
userLockoutConfigSet = true
|
|
}
|
|
if fl.Name == flagNameUserLockoutThreshold {
|
|
lockoutThreshold := strconv.FormatUint(uint64(c.flagUserLockoutThreshold), 10)
|
|
userLockoutConfig.LockoutThreshold = &lockoutThreshold
|
|
}
|
|
if fl.Name == flagNameUserLockoutDuration {
|
|
lockoutDuration := ttlToAPI(c.flagUserLockoutDuration)
|
|
userLockoutConfig.LockoutDuration = &lockoutDuration
|
|
}
|
|
if fl.Name == flagNameUserLockoutCounterResetDuration {
|
|
lockoutCounterResetDuration := ttlToAPI(c.flagUserLockoutCounterResetDuration)
|
|
userLockoutConfig.LockoutCounterResetDuration = &lockoutCounterResetDuration
|
|
}
|
|
if fl.Name == flagNameUserLockoutDisable {
|
|
userLockoutConfig.DisableLockout = &c.flagUserLockoutDisable
|
|
}
|
|
|
|
if fl.Name == flagNamePluginVersion {
|
|
tuneMountInput.PluginVersion = &c.flagPluginVersion
|
|
}
|
|
|
|
if fl.Name == flagNameIdentityTokenKey {
|
|
tuneMountInput.IdentityTokenKey = &c.flagIdentityTokenKey
|
|
}
|
|
|
|
if fl.Name == flagNameTrimRequestTrailingSlashes && c.flagTrimRequestTrailingSlashes.IsSet() {
|
|
val := c.flagTrimRequestTrailingSlashes.Get()
|
|
tuneMountInput.TrimRequestTrailingSlashes = &val
|
|
}
|
|
})
|
|
|
|
if userLockoutConfigSet {
|
|
tuneMountInput.UserLockoutConfig = &userLockoutConfig
|
|
}
|
|
|
|
// Append /auth (since that's where auths live) and a trailing slash to
|
|
// indicate it's a path in output
|
|
mountPath := ensureTrailingSlash(sanitizePath(args[0]))
|
|
|
|
if err := client.Sys().TuneMountAllowNil("/auth/"+mountPath, tuneMountInput); err != nil {
|
|
c.UI.Error(fmt.Sprintf("Error tuning auth method %s: %s", mountPath, err))
|
|
return 2
|
|
}
|
|
|
|
c.UI.Output(fmt.Sprintf("Success! Tuned the auth method at: %s", mountPath))
|
|
return 0
|
|
}
|