2015-03-18 20:19:19 +00:00
package vault
import (
2018-01-08 18:31:38 +00:00
"context"
2018-10-15 16:56:24 +00:00
"encoding/base64"
2015-03-18 20:19:19 +00:00
"encoding/json"
2018-05-21 18:05:04 +00:00
"errors"
2015-03-18 20:19:19 +00:00
"fmt"
2018-07-11 19:45:09 +00:00
"net/http"
2015-04-15 21:24:07 +00:00
"regexp"
2015-03-24 22:10:46 +00:00
"strings"
2019-07-01 09:39:54 +00:00
"sync"
"sync/atomic"
2015-03-24 22:10:46 +00:00
"time"
2015-03-18 20:19:19 +00:00
2019-07-01 09:39:54 +00:00
"github.com/armon/go-metrics"
2020-06-23 23:36:24 +00:00
"github.com/armon/go-radix"
2019-07-01 09:39:54 +00:00
"github.com/golang/protobuf/proto"
2018-04-05 15:49:21 +00:00
"github.com/hashicorp/errwrap"
2018-04-03 00:46:59 +00:00
log "github.com/hashicorp/go-hclog"
2019-07-01 09:39:54 +00:00
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/go-sockaddr"
2018-04-17 15:16:26 +00:00
"github.com/hashicorp/vault/helper/identity"
2020-10-13 23:38:21 +00:00
"github.com/hashicorp/vault/helper/metricsutil"
2019-04-13 07:44:06 +00:00
"github.com/hashicorp/vault/helper/namespace"
"github.com/hashicorp/vault/sdk/framework"
2019-04-15 18:10:07 +00:00
"github.com/hashicorp/vault/sdk/helper/base62"
2019-04-13 07:44:06 +00:00
"github.com/hashicorp/vault/sdk/helper/consts"
2019-04-12 21:54:35 +00:00
"github.com/hashicorp/vault/sdk/helper/jsonutil"
"github.com/hashicorp/vault/sdk/helper/locksutil"
"github.com/hashicorp/vault/sdk/helper/parseutil"
2019-04-12 22:08:46 +00:00
"github.com/hashicorp/vault/sdk/helper/policyutil"
2019-04-12 21:54:35 +00:00
"github.com/hashicorp/vault/sdk/helper/salt"
"github.com/hashicorp/vault/sdk/helper/strutil"
2019-06-14 14:17:04 +00:00
"github.com/hashicorp/vault/sdk/helper/tokenutil"
2019-04-12 21:54:35 +00:00
"github.com/hashicorp/vault/sdk/logical"
"github.com/hashicorp/vault/sdk/plugin/pb"
2015-04-07 21:16:35 +00:00
"github.com/mitchellh/mapstructure"
2015-03-18 20:19:19 +00:00
)
const (
2018-09-18 03:03:00 +00:00
// idPrefix is the prefix used to store tokens for their
2015-03-18 20:19:19 +00:00
// primary ID based index
2018-09-18 03:03:00 +00:00
idPrefix = "id/"
2015-03-18 20:19:19 +00:00
2016-03-09 14:05:04 +00:00
// accessorPrefix is the prefix used to store the index from
// Accessor to Token ID
accessorPrefix = "accessor/"
2015-03-18 20:19:19 +00:00
// parentPrefix is the prefix used to store tokens for their
2019-06-14 14:17:04 +00:00
// secondary parent based index
2015-03-18 20:19:19 +00:00
parentPrefix = "parent/"
2015-03-18 21:00:42 +00:00
// tokenSubPath is the sub-path used for the token store
// view. This is nested under the system view.
tokenSubPath = "token/"
2016-03-01 17:33:35 +00:00
// rolesPrefix is the prefix used to store role information
rolesPrefix = "roles/"
2016-12-16 18:11:55 +00:00
2018-05-10 19:50:02 +00:00
// tokenRevocationPending indicates that the token should not be used
// again. If this is encountered during an existing request flow, it means
// that the token is but is currently fulfilling its final use; after this
// request it will not be able to be looked up as being valid.
tokenRevocationPending = - 1
2015-03-18 20:19:19 +00:00
)
2015-04-15 21:24:07 +00:00
var (
2018-11-13 16:16:10 +00:00
// TokenLength is the size of tokens we are currently generating, without
2018-09-18 03:03:00 +00:00
// any namespace information
TokenLength = 24
2015-04-15 21:24:07 +00:00
// displayNameSanitize is used to sanitize a display name given to a token.
displayNameSanitize = regexp . MustCompile ( "[^a-zA-Z0-9-]" )
2016-02-29 18:27:31 +00:00
2016-03-01 20:30:37 +00:00
// pathSuffixSanitize is used to ensure a path suffix in a role is valid.
pathSuffixSanitize = regexp . MustCompile ( "\\w[\\w-.]+\\w" )
2016-12-16 18:11:55 +00:00
2018-09-18 03:03:00 +00:00
destroyCubbyhole = func ( ctx context . Context , ts * TokenStore , te * logical . TokenEntry ) error {
2016-12-16 18:11:55 +00:00
if ts . cubbyholeBackend == nil {
// Should only ever happen in testing
return nil
}
2015-04-15 21:24:07 +00:00
2018-09-18 03:03:00 +00:00
if te == nil {
return errors . New ( "nil token entry" )
}
2018-07-24 20:57:25 +00:00
2021-04-19 21:28:04 +00:00
storage := ts . core . router . MatchingStorageByAPIPath ( ctx , cubbyholeMountPath )
if storage == nil {
return fmt . Errorf ( "no cubby mount entry" )
}
view := storage . ( * BarrierView )
2019-01-09 18:53:41 +00:00
switch {
case te . NamespaceID == namespace . RootNamespaceID && ! strings . HasPrefix ( te . ID , "s." ) :
2018-09-18 03:03:00 +00:00
saltedID , err := ts . SaltID ( ctx , te . ID )
if err != nil {
return err
}
2021-04-19 21:28:04 +00:00
return ts . cubbyholeBackend . revoke ( ctx , view , salt . SaltID ( ts . cubbyholeBackend . saltUUID , saltedID , salt . SHA1Hash ) )
2018-05-31 00:30:50 +00:00
2018-09-18 03:03:00 +00:00
default :
if te . CubbyholeID == "" {
return fmt . Errorf ( "missing cubbyhole ID while destroying" )
}
2021-04-19 21:28:04 +00:00
return ts . cubbyholeBackend . revoke ( ctx , view , te . CubbyholeID )
2018-09-18 03:03:00 +00:00
}
2018-05-31 00:30:50 +00:00
}
2018-09-18 03:03:00 +00:00
)
2018-05-31 00:30:50 +00:00
2018-09-18 03:03:00 +00:00
func ( ts * TokenStore ) paths ( ) [ ] * framework . Path {
2019-06-14 14:17:04 +00:00
p := [ ] * framework . Path {
2018-09-18 03:03:00 +00:00
{
Pattern : "roles/?$" ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ListOperation : ts . tokenStoreRoleList ,
} ,
2015-04-03 18:40:08 +00:00
2018-09-18 03:03:00 +00:00
HelpSynopsis : tokenListRolesHelp ,
HelpDescription : tokenListRolesHelp ,
} ,
2015-09-10 01:58:09 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "accessors/$" ,
2015-10-07 19:30:54 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ListOperation : ts . tokenStoreAccessorList ,
} ,
2016-05-02 07:11:14 +00:00
2018-09-18 03:03:00 +00:00
HelpSynopsis : tokenListAccessorsHelp ,
HelpDescription : tokenListAccessorsHelp ,
} ,
2016-12-16 18:11:55 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "create-orphan$" ,
2015-04-11 23:28:16 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleCreateOrphan ,
2015-04-03 18:40:08 +00:00
} ,
2017-02-17 04:09:39 +00:00
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenCreateOrphanHelp ) ,
HelpDescription : strings . TrimSpace ( tokenCreateOrphanHelp ) ,
2015-04-03 18:40:08 +00:00
} ,
2018-09-18 03:03:00 +00:00
{
Pattern : "create/" + framework . GenericNameRegex ( "role_name" ) ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"role_name" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Name of the role" ,
2016-02-29 18:27:31 +00:00
} ,
2018-09-18 03:03:00 +00:00
} ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleCreateAgainstRole ,
2016-02-29 18:27:31 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenCreateRoleHelp ) ,
HelpDescription : strings . TrimSpace ( tokenCreateRoleHelp ) ,
} ,
2016-07-29 22:20:38 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "create$" ,
2016-08-01 17:07:41 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleCreate ,
2016-07-29 22:20:38 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenCreateHelp ) ,
HelpDescription : strings . TrimSpace ( tokenCreateHelp ) ,
} ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
{
2018-11-19 21:58:19 +00:00
Pattern : "lookup" ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to lookup (POST request body)" ,
} ,
} ,
2016-03-09 16:59:54 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ReadOperation : ts . handleLookup ,
logical . UpdateOperation : ts . handleLookup ,
2016-02-29 18:27:31 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenLookupHelp ) ,
HelpDescription : strings . TrimSpace ( tokenLookupHelp ) ,
} ,
{
2018-11-19 21:58:19 +00:00
Pattern : "lookup-accessor" ,
2015-11-03 20:10:46 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"accessor" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Accessor of the token to look up (request body)" ,
} ,
} ,
2015-11-03 20:10:46 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleUpdateLookupAccessor ,
2015-11-03 20:10:46 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenLookupAccessorHelp ) ,
HelpDescription : strings . TrimSpace ( tokenLookupAccessorHelp ) ,
} ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "lookup-self$" ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to look up (unused, does not need to be set)" ,
2016-02-29 18:27:31 +00:00
} ,
2018-09-18 03:03:00 +00:00
} ,
2016-02-29 18:27:31 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleLookupSelf ,
logical . ReadOperation : ts . handleLookupSelf ,
2016-02-29 18:27:31 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenLookupHelp ) ,
HelpDescription : strings . TrimSpace ( tokenLookupHelp ) ,
} ,
{
2018-11-19 21:58:19 +00:00
Pattern : "revoke-accessor" ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"accessor" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Accessor of the token (request body)" ,
} ,
} ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleUpdateRevokeAccessor ,
2015-03-31 19:48:19 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRevokeAccessorHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRevokeAccessorHelp ) ,
} ,
2015-03-31 19:51:00 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "revoke-self$" ,
2015-03-31 19:51:00 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleRevokeSelf ,
2015-03-31 19:51:00 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRevokeSelfHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRevokeSelfHelp ) ,
} ,
{
2018-11-19 21:58:19 +00:00
Pattern : "revoke" ,
2016-03-08 20:13:29 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to revoke (request body)" ,
} ,
} ,
2016-03-08 20:13:29 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleRevokeTree ,
2016-03-08 20:13:29 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRevokeHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRevokeHelp ) ,
} ,
{
2018-11-19 21:58:19 +00:00
Pattern : "revoke-orphan" ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to revoke (request body)" ,
2015-03-31 19:48:19 +00:00
} ,
2018-09-18 03:03:00 +00:00
} ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleRevokeOrphan ,
2015-03-31 19:48:19 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRevokeOrphanHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRevokeOrphanHelp ) ,
} ,
2019-11-08 16:32:01 +00:00
{
Pattern : "renew-accessor" ,
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"accessor" : {
2019-11-08 16:32:01 +00:00
Type : framework . TypeString ,
Description : "Accessor of the token to renew (request body)" ,
} ,
2021-04-08 16:43:39 +00:00
"increment" : {
2019-11-08 16:32:01 +00:00
Type : framework . TypeDurationSecond ,
Default : 0 ,
Description : "The desired increment in seconds to the token expiration" ,
} ,
} ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleUpdateRenewAccessor ,
} ,
HelpSynopsis : strings . TrimSpace ( tokenRenewAccessorHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRenewAccessorHelp ) ,
} ,
2018-09-18 03:03:00 +00:00
{
Pattern : "renew-self$" ,
2016-03-08 23:07:27 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to renew (unused, does not need to be set)" ,
2016-03-08 20:13:29 +00:00
} ,
2021-04-08 16:43:39 +00:00
"increment" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeDurationSecond ,
Default : 0 ,
Description : "The desired increment in seconds to the token expiration" ,
} ,
} ,
2016-03-08 20:13:29 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleRenewSelf ,
2016-03-08 20:13:29 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRenewSelfHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRenewSelfHelp ) ,
} ,
{
2018-11-19 21:58:19 +00:00
Pattern : "renew" ,
2015-09-17 17:22:30 +00:00
2018-09-18 03:03:00 +00:00
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeString ,
Description : "Token to renew (request body)" ,
} ,
2021-04-08 16:43:39 +00:00
"increment" : {
2018-09-18 03:03:00 +00:00
Type : framework . TypeDurationSecond ,
Default : 0 ,
Description : "The desired increment in seconds to the token expiration" ,
2015-09-17 17:22:30 +00:00
} ,
2018-09-18 03:03:00 +00:00
} ,
2015-09-17 17:22:30 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleRenew ,
2015-09-17 17:22:30 +00:00
} ,
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenRenewHelp ) ,
HelpDescription : strings . TrimSpace ( tokenRenewHelp ) ,
} ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
{
Pattern : "tidy$" ,
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . UpdateOperation : ts . handleTidy ,
2015-03-31 19:48:19 +00:00
} ,
2015-04-03 19:11:49 +00:00
2018-09-18 03:03:00 +00:00
HelpSynopsis : strings . TrimSpace ( tokenTidyHelp ) ,
HelpDescription : strings . TrimSpace ( tokenTidyDesc ) ,
} ,
}
2019-06-14 14:17:04 +00:00
rolesPath := & framework . Path {
Pattern : "roles/" + framework . GenericNameRegex ( "role_name" ) ,
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"role_name" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeString ,
Description : "Name of the role" ,
} ,
2021-04-08 16:43:39 +00:00
"allowed_policies" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeCommaStringSlice ,
Description : tokenAllowedPoliciesHelp ,
} ,
2021-04-08 16:43:39 +00:00
"disallowed_policies" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeCommaStringSlice ,
Description : tokenDisallowedPoliciesHelp ,
} ,
2021-04-08 16:43:39 +00:00
"orphan" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeBool ,
Description : tokenOrphanHelp ,
} ,
2021-04-08 16:43:39 +00:00
"period" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeDurationSecond ,
2019-06-27 18:52:52 +00:00
Description : "Use 'token_period' instead." ,
2019-06-14 14:17:04 +00:00
Deprecated : true ,
} ,
2021-04-08 16:43:39 +00:00
"path_suffix" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeString ,
Description : tokenPathSuffixHelp + pathSuffixSanitize . String ( ) ,
} ,
2021-04-08 16:43:39 +00:00
"explicit_max_ttl" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeDurationSecond ,
2019-06-27 18:52:52 +00:00
Description : "Use 'token_explicit_max_ttl' instead." ,
2019-06-14 14:17:04 +00:00
Deprecated : true ,
} ,
2021-04-08 16:43:39 +00:00
"renewable" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeBool ,
Default : true ,
Description : tokenRenewableHelp ,
} ,
2021-04-08 16:43:39 +00:00
"bound_cidrs" : {
2019-06-14 14:17:04 +00:00
Type : framework . TypeCommaStringSlice ,
2019-06-27 18:52:52 +00:00
Description : "Use 'token_bound_cidrs' instead." ,
2019-06-14 14:17:04 +00:00
Deprecated : true ,
} ,
2019-07-01 09:39:54 +00:00
2021-04-08 16:43:39 +00:00
"allowed_entity_aliases" : {
2019-07-01 09:39:54 +00:00
Type : framework . TypeCommaStringSlice ,
Description : "String or JSON list of allowed entity aliases. If set, specifies the entity aliases which are allowed to be used during token generation. This field supports globbing." ,
} ,
2019-06-14 14:17:04 +00:00
} ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ReadOperation : ts . tokenStoreRoleRead ,
logical . CreateOperation : ts . tokenStoreRoleCreateUpdate ,
logical . UpdateOperation : ts . tokenStoreRoleCreateUpdate ,
logical . DeleteOperation : ts . tokenStoreRoleDelete ,
} ,
ExistenceCheck : ts . tokenStoreRoleExistenceCheck ,
}
tokenutil . AddTokenFieldsWithAllowList ( rolesPath . Fields , [ ] string { "token_bound_cidrs" , "token_explicit_max_ttl" , "token_period" , "token_type" , "token_no_default_policy" , "token_num_uses" } )
p = append ( p , rolesPath )
return p
2018-09-18 03:03:00 +00:00
}
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
// LookupToken returns the properties of the token from the token store. This
// is particularly useful to fetch the accessor of the client token and get it
// populated in the logical request along with the client token. The accessor
// of the client token can get audit logged.
func ( c * Core ) LookupToken ( ctx context . Context , token string ) ( * logical . TokenEntry , error ) {
if c . Sealed ( ) {
return nil , consts . ErrSealed
}
2015-03-31 19:48:19 +00:00
2018-09-18 03:03:00 +00:00
c . stateLock . RLock ( )
defer c . stateLock . RUnlock ( )
2015-04-03 18:40:08 +00:00
2018-09-18 03:03:00 +00:00
if c . standby && ! c . perfStandby {
return nil , consts . ErrStandby
}
2015-10-07 16:49:13 +00:00
2018-09-18 03:03:00 +00:00
// Many tests don't have a token store running
2018-09-25 20:27:57 +00:00
if c . tokenStore == nil || c . tokenStore . expiration == nil {
2018-09-18 03:03:00 +00:00
return nil , nil
}
2015-10-07 16:49:13 +00:00
2018-09-18 03:03:00 +00:00
return c . tokenStore . Lookup ( ctx , token )
}
2015-10-07 16:49:13 +00:00
2018-09-18 03:03:00 +00:00
// TokenStore is used to manage client tokens. Tokens are used for
// clients to authenticate, and each token is mapped to an applicable
// set of policy which is used for authorization.
type TokenStore struct {
* framework . Backend
2015-04-03 19:11:49 +00:00
2018-09-18 03:03:00 +00:00
activeContext context . Context
2015-04-03 19:11:49 +00:00
2018-09-18 03:03:00 +00:00
core * Core
2016-12-16 20:29:27 +00:00
2018-10-15 16:56:24 +00:00
batchTokenEncryptor BarrierEncryptor
2018-09-18 03:03:00 +00:00
baseBarrierView * BarrierView
idBarrierView * BarrierView
accessorBarrierView * BarrierView
parentBarrierView * BarrierView
rolesBarrierView * BarrierView
2016-12-16 20:29:27 +00:00
2020-10-29 23:47:34 +00:00
expiration * ExpirationManager
activityLog * ActivityLog
2018-09-18 03:03:00 +00:00
cubbyholeBackend * CubbyholeBackend
tokenLocks [ ] * locksutil . LockEntry
// tokenPendingDeletion stores tokens that are being revoked. If the token is
// not in the map, it means that there's no deletion in progress. If the value
// is true it means deletion is in progress, and if false it means deletion
// failed. Revocation needs to handle these states accordingly.
tokensPendingDeletion * sync . Map
cubbyholeDestroyer func ( context . Context , * TokenStore , * logical . TokenEntry ) error
logger log . Logger
saltLock sync . RWMutex
salts map [ string ] * salt . Salt
tidyLock * uint32
identityPoliciesDeriverFunc func ( string ) ( * identity . Entity , [ ] string , error )
quitContext context . Context
}
// NewTokenStore is used to construct a token store that is
// backed by the given barrier view.
func NewTokenStore ( ctx context . Context , logger log . Logger , core * Core , config * logical . BackendConfig ) ( * TokenStore , error ) {
// Create a sub-view
view := core . systemBarrierView . SubView ( tokenSubPath )
// Initialize the store
t := & TokenStore {
activeContext : ctx ,
core : core ,
2018-10-15 16:56:24 +00:00
batchTokenEncryptor : core . barrier ,
2018-09-18 03:03:00 +00:00
baseBarrierView : view ,
idBarrierView : view . SubView ( idPrefix ) ,
accessorBarrierView : view . SubView ( accessorPrefix ) ,
parentBarrierView : view . SubView ( parentPrefix ) ,
rolesBarrierView : view . SubView ( rolesPrefix ) ,
cubbyholeDestroyer : destroyCubbyhole ,
logger : logger ,
tokenLocks : locksutil . CreateLocks ( ) ,
tokensPendingDeletion : & sync . Map { } ,
saltLock : sync . RWMutex { } ,
tidyLock : new ( uint32 ) ,
quitContext : core . activeContext ,
salts : make ( map [ string ] * salt . Salt ) ,
}
// Setup the framework endpoints
t . Backend = & framework . Backend {
AuthRenew : t . authRenew ,
PathsSpecial : & logical . Paths {
Root : [ ] string {
"revoke-orphan/*" ,
"accessors*" ,
} ,
2016-12-16 20:29:27 +00:00
2018-09-18 03:03:00 +00:00
// Most token store items are local since tokens are local, but a
// notable exception is roles
LocalStorage : [ ] string {
idPrefix ,
accessorPrefix ,
parentPrefix ,
salt . DefaultLocation ,
2016-12-16 20:29:27 +00:00
} ,
2015-03-31 19:48:19 +00:00
} ,
2018-11-07 01:21:24 +00:00
BackendType : logical . TypeCredential ,
2015-03-31 19:48:19 +00:00
}
2018-09-18 03:03:00 +00:00
t . Backend . Paths = append ( t . Backend . Paths , t . paths ( ) ... )
2018-01-19 06:44:44 +00:00
t . Backend . Setup ( ctx , config )
2015-09-04 20:58:12 +00:00
2015-03-18 20:19:19 +00:00
return t , nil
}
2018-01-19 06:44:44 +00:00
func ( ts * TokenStore ) Invalidate ( ctx context . Context , key string ) {
2017-07-18 16:02:03 +00:00
switch key {
case tokenSubPath + salt . DefaultLocation :
ts . saltLock . Lock ( )
2018-09-18 03:03:00 +00:00
ts . salts = make ( map [ string ] * salt . Salt )
2017-07-18 16:02:03 +00:00
ts . saltLock . Unlock ( )
}
}
2018-03-08 19:21:11 +00:00
func ( ts * TokenStore ) Salt ( ctx context . Context ) ( * salt . Salt , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
2017-07-18 16:02:03 +00:00
ts . saltLock . RLock ( )
2018-09-18 03:03:00 +00:00
if salt , ok := ts . salts [ ns . ID ] ; ok {
2017-07-18 16:02:03 +00:00
defer ts . saltLock . RUnlock ( )
2018-09-18 03:03:00 +00:00
return salt , nil
2017-07-18 16:02:03 +00:00
}
ts . saltLock . RUnlock ( )
ts . saltLock . Lock ( )
defer ts . saltLock . Unlock ( )
2018-09-18 03:03:00 +00:00
if salt , ok := ts . salts [ ns . ID ] ; ok {
return salt , nil
2017-07-18 16:02:03 +00:00
}
2018-09-18 03:03:00 +00:00
salt , err := salt . NewSalt ( ctx , ts . baseView ( ns ) , & salt . Config {
2018-01-26 01:19:27 +00:00
HashFunc : salt . SHA1Hash ,
Location : salt . DefaultLocation ,
} )
2017-07-18 16:02:03 +00:00
if err != nil {
return nil , err
}
2018-09-18 03:03:00 +00:00
ts . salts [ ns . ID ] = salt
2017-07-18 16:02:03 +00:00
return salt , nil
}
2016-02-29 18:27:31 +00:00
// tsRoleEntry contains token store role information
type tsRoleEntry struct {
2019-06-14 14:17:04 +00:00
tokenutil . TokenParams
2016-02-29 18:27:31 +00:00
// The name of the role. Embedded so it can be used for pathing
2016-02-29 19:13:09 +00:00
Name string ` json:"name" mapstructure:"name" structs:"name" `
2016-02-29 18:27:31 +00:00
// The policies that creation functions using this role can assign to a token,
// escaping or further locking down normal subset checking
2016-02-29 19:13:09 +00:00
AllowedPolicies [ ] string ` json:"allowed_policies" mapstructure:"allowed_policies" structs:"allowed_policies" `
2016-02-29 18:27:31 +00:00
2016-08-02 17:33:03 +00:00
// List of policies to be not allowed during token creation using this role
2016-08-02 14:33:50 +00:00
DisallowedPolicies [ ] string ` json:"disallowed_policies" mapstructure:"disallowed_policies" structs:"disallowed_policies" `
2016-02-29 18:27:31 +00:00
// If true, tokens created using this role will be orphans
2016-02-29 19:13:09 +00:00
Orphan bool ` json:"orphan" mapstructure:"orphan" structs:"orphan" `
2016-02-29 18:27:31 +00:00
2019-02-01 16:23:40 +00:00
// If non-zero, tokens created using this role will be able to be renewed
// forever, but will have a fixed renewal period of this value
Period time . Duration ` json:"period" mapstructure:"period" structs:"period" `
2016-03-01 20:30:37 +00:00
// If set, a suffix will be set on the token path, making it easier to
2016-05-11 20:51:18 +00:00
// revoke using 'revoke-prefix'
2016-03-01 20:30:37 +00:00
PathSuffix string ` json:"path_suffix" mapstructure:"path_suffix" structs:"path_suffix" `
2016-05-11 20:51:18 +00:00
2016-06-08 19:17:22 +00:00
// If set, controls whether created tokens are marked as being renewable
Renewable bool ` json:"renewable" mapstructure:"renewable" structs:"renewable" `
2019-02-01 16:23:40 +00:00
// If set, the token entry will have an explicit maximum TTL set, rather
// than deferring to role/mount values
ExplicitMaxTTL time . Duration ` json:"explicit_max_ttl" mapstructure:"explicit_max_ttl" structs:"explicit_max_ttl" `
// The set of CIDRs that tokens generated using this role will be bound to
BoundCIDRs [ ] * sockaddr . SockAddrMarshaler ` json:"bound_cidrs" `
2019-07-01 09:39:54 +00:00
// The set of allowed entity aliases used during token creation
AllowedEntityAliases [ ] string ` json:"allowed_entity_aliases" mapstructure:"allowed_entity_aliases" structs:"allowed_entity_aliases" `
2015-03-18 20:19:19 +00:00
}
2016-07-29 22:20:38 +00:00
type accessorEntry struct {
2018-09-18 03:03:00 +00:00
TokenID string ` json:"token_id" `
AccessorID string ` json:"accessor_id" `
NamespaceID string ` json:"namespace_id" `
2016-07-29 22:20:38 +00:00
}
2015-04-03 18:40:08 +00:00
// SetExpirationManager is used to provide the token store with
// an expiration manager. This is used to manage prefix based revocation
2016-12-16 20:29:27 +00:00
// of tokens and to tidy entries when removed from the token store.
2015-09-18 20:33:52 +00:00
func ( ts * TokenStore ) SetExpirationManager ( exp * ExpirationManager ) {
ts . expiration = exp
2015-04-03 18:40:08 +00:00
}
2020-10-29 23:47:34 +00:00
// SetActivityLog injects the activity log to which all new
// token creation events are reported.
func ( ts * TokenStore ) SetActivityLog ( a * ActivityLog ) {
ts . activityLog = a
}
2016-05-15 16:58:36 +00:00
// SaltID is used to apply a salt and hash to an ID to make sure its not reversible
2018-03-08 19:21:11 +00:00
func ( ts * TokenStore ) SaltID ( ctx context . Context , id string ) ( string , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return "" , namespace . ErrNoNamespace
}
2018-03-08 19:21:11 +00:00
s , err := ts . Salt ( ctx )
2017-07-18 16:02:03 +00:00
if err != nil {
return "" , err
}
2018-10-17 20:23:04 +00:00
// For tokens of older format and belonging to the root namespace, use SHA1
// hash for salting.
if ns . ID == namespace . RootNamespaceID && ! strings . Contains ( id , "." ) {
return s . SaltID ( id ) , nil
2018-09-18 03:03:00 +00:00
}
2018-10-17 20:23:04 +00:00
// For all other tokens, use SHA2-256 HMAC for salting. This includes
// tokens of older format, but belonging to a namespace other than the root
// namespace.
return "h" + s . GetHMAC ( id ) , nil
2015-03-18 20:19:19 +00:00
}
2018-09-18 03:03:00 +00:00
// rootToken is used to generate a new token with root privileges and no parent
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) rootToken ( ctx context . Context ) ( * logical . TokenEntry , error ) {
2018-09-18 03:03:00 +00:00
ctx = namespace . ContextWithNamespace ( ctx , namespace . RootNamespace )
2018-06-08 21:24:27 +00:00
te := & logical . TokenEntry {
2015-09-18 20:33:52 +00:00
Policies : [ ] string { "root" } ,
Path : "auth/token/root" ,
DisplayName : "root" ,
CreationTime : time . Now ( ) . Unix ( ) ,
2018-09-18 03:03:00 +00:00
NamespaceID : namespace . RootNamespaceID ,
2018-10-15 16:56:24 +00:00
Type : logical . TokenTypeService ,
2015-03-24 00:16:37 +00:00
}
2018-01-19 06:44:44 +00:00
if err := ts . create ( ctx , te ) ; err != nil {
2015-03-24 00:16:37 +00:00
return nil , err
}
return te , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreAccessorList ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
nsID := ns . ID
entries , err := ts . accessorView ( ns ) . List ( ctx , "" )
2016-07-29 22:20:38 +00:00
if err != nil {
return nil , err
}
resp := & logical . Response { }
ret := make ( [ ] string , 0 , len ( entries ) )
for _ , entry := range entries {
2018-09-18 03:03:00 +00:00
aEntry , err := ts . lookupByAccessor ( ctx , entry , true , false )
2016-07-29 22:20:38 +00:00
if err != nil {
2019-01-14 17:55:49 +00:00
resp . AddWarning ( fmt . Sprintf ( "Found an accessor entry that could not be successfully decoded; associated error is %q" , err . Error ( ) ) )
2016-07-29 22:20:38 +00:00
continue
}
2018-09-18 03:03:00 +00:00
2016-08-01 17:07:41 +00:00
if aEntry . TokenID == "" {
resp . AddWarning ( fmt . Sprintf ( "Found an accessor entry missing a token: %v" , aEntry . AccessorID ) )
2018-09-18 03:03:00 +00:00
continue
}
if aEntry . NamespaceID == nsID {
2016-08-01 17:07:41 +00:00
ret = append ( ret , aEntry . AccessorID )
}
2016-07-29 22:20:38 +00:00
}
resp . Data = map [ string ] interface { } {
"keys" : ret ,
}
return resp , nil
}
2016-03-09 14:31:09 +00:00
// createAccessor is used to create an identifier for the token ID.
2016-03-09 14:48:32 +00:00
// A storage index, mapping the accessor to the token ID is also created.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) createAccessor ( ctx context . Context , entry * logical . TokenEntry ) error {
2016-03-09 11:23:31 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "createAccessor" } , time . Now ( ) )
2016-03-08 17:51:38 +00:00
2018-09-18 03:03:00 +00:00
var err error
2016-03-09 14:05:04 +00:00
// Create a random accessor
2018-12-20 15:40:01 +00:00
entry . Accessor , err = base62 . Random ( TokenLength )
2018-09-18 03:03:00 +00:00
if err != nil {
return err
}
tokenNS , err := NamespaceByID ( ctx , entry . NamespaceID , ts . core )
2016-03-08 17:51:38 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
if tokenNS == nil {
return namespace . ErrNoNamespace
}
if tokenNS . ID != namespace . RootNamespaceID {
entry . Accessor = fmt . Sprintf ( "%s.%s" , entry . Accessor , tokenNS . ID )
}
2016-03-08 18:12:53 +00:00
2016-03-09 14:31:09 +00:00
// Create index entry, mapping the accessor to the token ID
2018-09-18 03:03:00 +00:00
saltCtx := namespace . ContextWithNamespace ( ctx , tokenNS )
saltID , err := ts . SaltID ( saltCtx , entry . Accessor )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2016-07-29 22:23:55 +00:00
aEntry := & accessorEntry {
2018-09-18 03:03:00 +00:00
TokenID : entry . ID ,
AccessorID : entry . Accessor ,
NamespaceID : entry . NamespaceID ,
2016-07-29 22:23:55 +00:00
}
2018-09-18 03:03:00 +00:00
2016-07-29 22:23:55 +00:00
aEntryBytes , err := jsonutil . EncodeJSON ( aEntry )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to marshal accessor index entry: {{err}}" , err )
2016-07-29 22:23:55 +00:00
}
2018-09-18 03:03:00 +00:00
le := & logical . StorageEntry { Key : saltID , Value : aEntryBytes }
if err := ts . accessorView ( tokenNS ) . Put ( ctx , le ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to persist accessor index entry: {{err}}" , err )
2016-03-08 18:12:53 +00:00
}
2016-03-08 17:51:38 +00:00
return nil
}
2015-03-18 20:19:19 +00:00
// Create is used to create a new token entry. The entry is assigned
2015-03-24 21:22:50 +00:00
// a newly generated ID if not provided.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) create ( ctx context . Context , entry * logical . TokenEntry ) error {
2015-04-08 23:43:17 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "create" } , time . Now ( ) )
2015-12-30 19:30:02 +00:00
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , entry . NamespaceID , ts . core )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
if tokenNS == nil {
return namespace . ErrNoNamespace
}
2018-10-15 16:56:24 +00:00
entry . Policies = policyutil . SanitizePolicies ( entry . Policies , policyutil . DoNotAddDefaultPolicy )
2020-12-04 17:44:04 +00:00
var createRootTokenFlag bool
2019-10-28 16:30:11 +00:00
if len ( entry . Policies ) == 1 && entry . Policies [ 0 ] == "root" {
2020-12-04 17:44:04 +00:00
createRootTokenFlag = true
2019-10-28 16:31:58 +00:00
metrics . IncrCounter ( [ ] string { "token" , "create_root" } , 1 )
2019-10-28 16:30:11 +00:00
}
2018-10-15 16:56:24 +00:00
switch entry . Type {
case logical . TokenTypeDefault , logical . TokenTypeService :
// In case it was default, force to service
entry . Type = logical . TokenTypeService
// Generate an ID if necessary
userSelectedID := true
if entry . ID == "" {
userSelectedID = false
var err error
2020-12-04 17:44:04 +00:00
if createRootTokenFlag {
entry . ID , err = base62 . RandomWithReader ( TokenLength , ts . core . secureRandomReader )
} else {
entry . ID , err = base62 . Random ( TokenLength )
}
2018-09-18 03:03:00 +00:00
if err != nil {
return err
}
}
2020-04-27 16:39:33 +00:00
if userSelectedID {
switch {
case strings . HasPrefix ( entry . ID , "s." ) :
return fmt . Errorf ( "custom token ID cannot have the 's.' prefix" )
case strings . Contains ( entry . ID , "." ) :
return fmt . Errorf ( "custom token ID cannot have a '.' in the value" )
}
2018-10-17 20:23:04 +00:00
}
if ! userSelectedID {
entry . ID = fmt . Sprintf ( "s.%s" , entry . ID )
}
// Attach namespace ID for tokens that are not belonging to the root
// namespace
2018-10-15 16:56:24 +00:00
if tokenNS . ID != namespace . RootNamespaceID {
entry . ID = fmt . Sprintf ( "%s.%s" , entry . ID , tokenNS . ID )
2018-10-17 20:23:04 +00:00
}
if tokenNS . ID != namespace . RootNamespaceID || strings . HasPrefix ( entry . ID , "s." ) {
2018-10-15 16:56:24 +00:00
if entry . CubbyholeID == "" {
2018-12-20 15:40:01 +00:00
cubbyholeID , err := base62 . Random ( TokenLength )
2018-10-15 16:56:24 +00:00
if err != nil {
return err
}
entry . CubbyholeID = cubbyholeID
}
}
2017-06-24 00:52:48 +00:00
2018-10-15 16:56:24 +00:00
// If the user didn't specifically pick the ID, e.g. because they were
// sudo/root, check for collision; otherwise trust the process
if userSelectedID {
exist , _ := ts . lookupInternal ( ctx , entry . ID , false , true )
if exist != nil {
return fmt . Errorf ( "cannot create a token with a duplicate ID" )
}
}
2016-05-13 15:50:00 +00:00
2018-10-15 16:56:24 +00:00
err = ts . createAccessor ( ctx , entry )
if err != nil {
return err
}
2020-10-29 23:47:34 +00:00
// Update the activity log
if ts . activityLog != nil {
ts . activityLog . HandleTokenCreation ( entry )
}
2018-10-15 16:56:24 +00:00
return ts . storeCommon ( ctx , entry , true )
case logical . TokenTypeBatch :
// Ensure fields we don't support/care about are nilled, proto marshal,
// encrypt, skip persistence
entry . ID = ""
pEntry := & pb . TokenEntry {
Parent : entry . Parent ,
Policies : entry . Policies ,
Path : entry . Path ,
Meta : entry . Meta ,
DisplayName : entry . DisplayName ,
CreationTime : entry . CreationTime ,
TTL : int64 ( entry . TTL ) ,
Role : entry . Role ,
EntityID : entry . EntityID ,
NamespaceID : entry . NamespaceID ,
Type : uint32 ( entry . Type ) ,
}
boundCIDRs := make ( [ ] string , len ( entry . BoundCIDRs ) )
for i , cidr := range entry . BoundCIDRs {
boundCIDRs [ i ] = cidr . String ( )
}
pEntry . BoundCIDRs = boundCIDRs
mEntry , err := proto . Marshal ( pEntry )
if err != nil {
return err
}
eEntry , err := ts . batchTokenEncryptor . Encrypt ( ctx , "" , mEntry )
if err != nil {
return err
}
bEntry := base64 . RawURLEncoding . EncodeToString ( eEntry )
entry . ID = fmt . Sprintf ( "b.%s" , bEntry )
if tokenNS . ID != namespace . RootNamespaceID {
entry . ID = fmt . Sprintf ( "%s.%s" , entry . ID , tokenNS . ID )
}
2020-10-29 23:47:34 +00:00
// Update the activity log
if ts . activityLog != nil {
ts . activityLog . HandleTokenCreation ( entry )
}
2018-10-15 16:56:24 +00:00
return nil
default :
return fmt . Errorf ( "cannot create a token of type %d" , entry . Type )
2016-03-08 17:51:38 +00:00
}
2015-12-30 19:30:02 +00:00
}
2016-01-04 21:43:07 +00:00
// Store is used to store an updated token entry without writing the
// secondary index.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) store ( ctx context . Context , entry * logical . TokenEntry ) error {
2015-12-30 19:30:02 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "store" } , time . Now ( ) )
2018-01-19 06:44:44 +00:00
return ts . storeCommon ( ctx , entry , false )
2015-12-30 19:30:02 +00:00
}
// storeCommon handles the actual storage of an entry, possibly generating
// secondary indexes
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) storeCommon ( ctx context . Context , entry * logical . TokenEntry , writeSecondary bool ) error {
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , entry . NamespaceID , ts . core )
if err != nil {
return err
}
if tokenNS == nil {
return namespace . ErrNoNamespace
}
saltCtx := namespace . ContextWithNamespace ( ctx , tokenNS )
saltedID , err := ts . SaltID ( saltCtx , entry . ID )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2015-03-24 21:22:50 +00:00
// Marshal the entry
2015-03-18 20:19:19 +00:00
enc , err := json . Marshal ( entry )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to encode entry: {{err}}" , err )
2015-03-18 20:19:19 +00:00
}
2015-12-30 19:30:02 +00:00
if writeSecondary {
// Write the secondary index if necessary. This is done before the
// primary index because we'd rather have a dangling pointer with
// a missing primary instead of missing the parent index and potentially
// escaping the revocation chain.
if entry . Parent != "" {
// Ensure the parent exists
2018-01-19 06:44:44 +00:00
parent , err := ts . Lookup ( ctx , entry . Parent )
2015-12-30 19:30:02 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to lookup parent: {{err}}" , err )
2015-12-30 19:30:02 +00:00
}
if parent == nil {
return fmt . Errorf ( "parent token not found" )
}
2015-03-18 20:19:19 +00:00
2018-09-18 03:03:00 +00:00
parentNS , err := NamespaceByID ( ctx , parent . NamespaceID , ts . core )
if err != nil {
return err
}
if parentNS == nil {
return namespace . ErrNoNamespace
}
parentCtx := namespace . ContextWithNamespace ( ctx , parentNS )
2015-12-30 19:30:02 +00:00
// Create the index entry
2018-09-18 03:03:00 +00:00
parentSaltedID , err := ts . SaltID ( parentCtx , entry . Parent )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
path := parentSaltedID + "/" + saltedID
if tokenNS . ID != namespace . RootNamespaceID {
path = fmt . Sprintf ( "%s.%s" , path , tokenNS . ID )
}
2015-12-30 19:30:02 +00:00
le := & logical . StorageEntry { Key : path }
2018-09-18 03:03:00 +00:00
if err := ts . parentView ( parentNS ) . Put ( ctx , le ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to persist entry: {{err}}" , err )
2015-12-30 19:30:02 +00:00
}
2015-03-18 20:19:19 +00:00
}
}
// Write the primary ID
2018-09-18 03:03:00 +00:00
le := & logical . StorageEntry { Key : saltedID , Value : enc }
2017-11-06 18:10:36 +00:00
if len ( entry . Policies ) == 1 && entry . Policies [ 0 ] == "root" {
le . SealWrap = true
}
2018-09-18 03:03:00 +00:00
if err := ts . idView ( tokenNS ) . Put ( ctx , le ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to persist entry: {{err}}" , err )
2015-03-18 20:19:19 +00:00
}
return nil
}
2016-05-02 07:11:14 +00:00
// UseToken is used to manage restricted use tokens and decrement their
// available uses. Returns two values: a potentially updated entry or, if the
// token has been revoked, nil; and whether an error was encountered. The
// locking here isn't perfect, as other parts of the code may update an entry,
// but usually none after the entry is already created...so this is pretty
// good.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) UseToken ( ctx context . Context , te * logical . TokenEntry ) ( * logical . TokenEntry , error ) {
2016-05-02 07:11:14 +00:00
if te == nil {
return nil , fmt . Errorf ( "invalid token entry provided for use count decrementing" )
}
2016-05-02 18:57:17 +00:00
// This case won't be hit with a token with restricted uses because we go
// from 1 to -1. So it's a nice optimization to check this without a read
// lock.
2015-04-17 18:51:04 +00:00
if te . NumUses == 0 {
2016-05-02 07:11:14 +00:00
return te , nil
}
2017-11-13 20:31:32 +00:00
// If we are attempting to unwrap a control group request, don't use the token.
// It will be manually revoked by the handler.
if len ( te . Policies ) == 1 && te . Policies [ 0 ] == controlGroupPolicyName {
return te , nil
}
2017-03-07 16:21:32 +00:00
lock := locksutil . LockForKey ( ts . tokenLocks , te . ID )
2016-05-02 07:11:14 +00:00
lock . Lock ( )
defer lock . Unlock ( )
2018-09-18 03:03:00 +00:00
var err error
te , err = ts . lookupInternal ( ctx , te . ID , false , false )
2016-05-02 07:11:14 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to refresh entry: {{err}}" , err )
2016-05-02 07:11:14 +00:00
}
2016-05-16 20:11:33 +00:00
// If it can't be found we shouldn't be trying to use it, so if we get nil
// back, it is because it has been revoked in the interim or will be
// revoked (NumUses is -1)
2016-05-02 07:11:14 +00:00
if te == nil {
2016-05-16 20:11:33 +00:00
return nil , fmt . Errorf ( "token not found or fully used already" )
2015-04-17 18:51:04 +00:00
}
2016-05-02 18:57:17 +00:00
// Decrement the count. If this is our last use count, we need to indicate
// that this is no longer valid, but revocation is deferred to the end of
// the call, so this will make sure that any Lookup that happens doesn't
2016-05-16 20:11:33 +00:00
// return an entry. This essentially acts as a write-ahead lock and is
// especially useful since revocation can end up (via the expiration
// manager revoking children) attempting to acquire the same lock
// repeatedly.
2016-05-02 18:57:17 +00:00
if te . NumUses == 1 {
2018-05-10 19:50:02 +00:00
te . NumUses = tokenRevocationPending
2016-05-02 18:57:17 +00:00
} else {
2018-05-10 19:50:02 +00:00
te . NumUses --
2015-04-17 18:51:04 +00:00
}
2018-05-10 19:50:02 +00:00
err = ts . store ( ctx , te )
2015-04-17 18:51:04 +00:00
if err != nil {
2016-12-16 18:11:55 +00:00
return nil , err
2015-04-17 18:51:04 +00:00
}
2016-05-02 07:11:14 +00:00
return te , nil
2015-04-17 18:51:04 +00:00
}
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) UseTokenByID ( ctx context . Context , id string ) ( * logical . TokenEntry , error ) {
2018-01-19 06:44:44 +00:00
te , err := ts . Lookup ( ctx , id )
2016-09-29 04:01:28 +00:00
if err != nil {
return te , err
}
2018-01-19 06:44:44 +00:00
return ts . UseToken ( ctx , te )
2016-09-29 04:01:28 +00:00
}
2018-09-18 03:03:00 +00:00
// Lookup is used to find a token given its ID. It acquires a read lock, then calls lookupInternal.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) Lookup ( ctx context . Context , id string ) ( * logical . TokenEntry , error ) {
2015-04-08 23:43:17 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "lookup" } , time . Now ( ) )
2015-03-18 20:21:16 +00:00
if id == "" {
return nil , fmt . Errorf ( "cannot lookup blank token" )
}
2016-05-02 07:11:14 +00:00
2018-10-17 20:23:04 +00:00
// If it starts with "b." it's a batch token
if len ( id ) > 2 && strings . HasPrefix ( id , "b." ) {
2018-10-15 16:56:24 +00:00
return ts . lookupBatchToken ( ctx , id )
}
2017-03-07 16:21:32 +00:00
lock := locksutil . LockForKey ( ts . tokenLocks , id )
2016-05-02 07:11:14 +00:00
lock . RLock ( )
defer lock . RUnlock ( )
2018-09-18 03:03:00 +00:00
return ts . lookupInternal ( ctx , id , false , false )
2015-03-18 20:19:19 +00:00
}
2018-10-15 16:56:24 +00:00
// lookupTainted is used to find a token that may or may not be tainted given
// its ID. It acquires a read lock, then calls lookupInternal.
2018-06-08 21:24:27 +00:00
func ( ts * TokenStore ) lookupTainted ( ctx context . Context , id string ) ( * logical . TokenEntry , error ) {
2017-11-13 20:31:32 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "lookup" } , time . Now ( ) )
if id == "" {
return nil , fmt . Errorf ( "cannot lookup blank token" )
}
lock := locksutil . LockForKey ( ts . tokenLocks , id )
lock . RLock ( )
defer lock . RUnlock ( )
2018-09-18 03:03:00 +00:00
return ts . lookupInternal ( ctx , id , false , true )
}
2021-04-16 21:03:22 +00:00
func ( ts * TokenStore ) lookupBatchTokenInternal ( ctx context . Context , id string ) ( * logical . TokenEntry , error ) {
2018-10-15 16:56:24 +00:00
// Strip the b. from the front and namespace ID from the back
bEntry , _ := namespace . SplitIDFromString ( id [ 2 : ] )
eEntry , err := base64 . RawURLEncoding . DecodeString ( bEntry )
if err != nil {
return nil , err
}
mEntry , err := ts . batchTokenEncryptor . Decrypt ( ctx , "" , eEntry )
if err != nil {
return nil , nil
}
pEntry := new ( pb . TokenEntry )
if err := proto . Unmarshal ( mEntry , pEntry ) ; err != nil {
return nil , err
}
te , err := pb . ProtoTokenEntryToLogicalTokenEntry ( pEntry )
if err != nil {
return nil , err
}
2021-04-16 21:03:22 +00:00
te . ID = id
return te , nil
}
func ( ts * TokenStore ) lookupBatchToken ( ctx context . Context , id string ) ( * logical . TokenEntry , error ) {
te , err := ts . lookupBatchTokenInternal ( ctx , id )
if err != nil {
return nil , err
}
2021-04-20 01:26:51 +00:00
if te == nil {
return nil , nil
}
2021-04-16 21:03:22 +00:00
2018-10-15 16:56:24 +00:00
if time . Now ( ) . After ( time . Unix ( te . CreationTime , 0 ) . Add ( te . TTL ) ) {
return nil , nil
}
if te . Parent != "" {
pte , err := ts . Lookup ( ctx , te . Parent )
if err != nil {
return nil , err
}
if pte == nil {
return nil , nil
}
}
return te , nil
}
2018-09-18 03:03:00 +00:00
// lookupInternal is used to find a token given its (possibly salted) ID. If
// tainted is true, entries that are in some revocation state (currently,
// indicated by num uses < 0), the entry will be returned anyways
func ( ts * TokenStore ) lookupInternal ( ctx context . Context , id string , salted , tainted bool ) ( * logical . TokenEntry , error ) {
ns , err := namespace . FromContext ( ctx )
2017-11-13 20:31:32 +00:00
if err != nil {
2018-09-18 03:03:00 +00:00
return nil , errwrap . Wrapf ( "failed to find namespace in context: {{err}}" , err )
2017-11-13 20:31:32 +00:00
}
2018-10-15 16:56:24 +00:00
// If it starts with "b." it's a batch token
2018-10-17 20:23:04 +00:00
if len ( id ) > 2 && strings . HasPrefix ( id , "b." ) {
2018-10-15 16:56:24 +00:00
return ts . lookupBatchToken ( ctx , id )
}
2018-09-18 03:03:00 +00:00
var raw * logical . StorageEntry
lookupID := id
if ! salted {
// If possible, always use the token's namespace. If it doesn't match
// the request namespace, ensure the request namespace is a child
_ , nsID := namespace . SplitIDFromString ( id )
if nsID != "" {
tokenNS , err := NamespaceByID ( ctx , nsID , ts . core )
if err != nil {
return nil , errwrap . Wrapf ( "failed to look up namespace from the token: {{err}}" , err )
}
if tokenNS != nil {
if tokenNS . ID != ns . ID {
ns = tokenNS
ctx = namespace . ContextWithNamespace ( ctx , tokenNS )
}
}
} else {
// Any non-root-ns token should have an accessor and child
// namespaces cannot have custom IDs. If someone omits or tampers
// with it, the lookup in the root namespace simply won't work.
ns = namespace . RootNamespace
ctx = namespace . ContextWithNamespace ( ctx , ns )
}
lookupID , err = ts . SaltID ( ctx , id )
if err != nil {
return nil , err
}
}
raw , err = ts . idView ( ns ) . Get ( ctx , lookupID )
2015-03-18 20:19:19 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to read entry: {{err}}" , err )
2015-03-18 20:19:19 +00:00
}
// Bail if not found
if raw == nil {
return nil , nil
}
// Unmarshal the token
2018-06-08 21:24:27 +00:00
entry := new ( logical . TokenEntry )
2016-07-06 16:25:40 +00:00
if err := jsonutil . DecodeJSON ( raw . Value , entry ) ; err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to decode entry: {{err}}" , err )
2015-03-18 20:19:19 +00:00
}
2016-05-02 07:11:14 +00:00
2016-12-16 18:11:55 +00:00
// This is a token that is awaiting deferred revocation or tainted
if entry . NumUses < 0 && ! tainted {
2016-05-02 07:11:14 +00:00
return nil , nil
}
2018-09-18 03:03:00 +00:00
if entry . NamespaceID == "" {
entry . NamespaceID = namespace . RootNamespaceID
}
2018-10-15 16:56:24 +00:00
// This will be the upgrade case
if entry . Type == logical . TokenTypeDefault {
entry . Type = logical . TokenTypeService
}
2016-09-26 17:38:50 +00:00
persistNeeded := false
// Upgrade the deprecated fields
if entry . DisplayNameDeprecated != "" {
2016-09-26 22:17:50 +00:00
if entry . DisplayName == "" {
2016-09-26 17:38:50 +00:00
entry . DisplayName = entry . DisplayNameDeprecated
}
entry . DisplayNameDeprecated = ""
persistNeeded = true
}
if entry . CreationTimeDeprecated != 0 {
if entry . CreationTime == 0 {
entry . CreationTime = entry . CreationTimeDeprecated
}
entry . CreationTimeDeprecated = 0
persistNeeded = true
}
if entry . ExplicitMaxTTLDeprecated != 0 {
if entry . ExplicitMaxTTL == 0 {
entry . ExplicitMaxTTL = entry . ExplicitMaxTTLDeprecated
}
entry . ExplicitMaxTTLDeprecated = 0
persistNeeded = true
}
if entry . NumUsesDeprecated != 0 {
if entry . NumUses == 0 || entry . NumUsesDeprecated < entry . NumUses {
entry . NumUses = entry . NumUsesDeprecated
}
entry . NumUsesDeprecated = 0
persistNeeded = true
}
2018-06-09 21:39:13 +00:00
// It's a root token with unlimited creation TTL (so never had an
// expiration); this may or may not have a lease (based on when it was
// generated, for later revocation purposes) but it doesn't matter, it's
// allowed. Fast-path this.
if len ( entry . Policies ) == 1 && entry . Policies [ 0 ] == "root" && entry . TTL == 0 {
// If fields are getting upgraded, store the changes
if persistNeeded {
if err := ts . store ( ctx , entry ) ; err != nil {
return nil , errwrap . Wrapf ( "failed to persist token upgrade: {{err}}" , err )
}
}
return entry , nil
}
2018-06-03 22:14:51 +00:00
// Perform these checks on upgraded fields, but before persisting
// If we are still restoring the expiration manager, we want to ensure the
// token is not expired
if ts . expiration == nil {
return nil , errors . New ( "expiration manager is nil on tokenstore" )
}
2018-09-18 03:03:00 +00:00
le , err := ts . expiration . FetchLeaseTimesByToken ( ctx , entry )
2018-06-03 22:14:51 +00:00
if err != nil {
return nil , errwrap . Wrapf ( "failed to fetch lease times: {{err}}" , err )
}
2018-06-08 21:24:27 +00:00
var ret * logical . TokenEntry
2018-06-03 22:14:51 +00:00
switch {
// It's any kind of expiring token with no lease, immediately delete it
case le == nil :
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , entry . NamespaceID , ts . core )
if err != nil {
return nil , err
}
if tokenNS == nil {
return nil , namespace . ErrNoNamespace
}
revokeCtx := namespace . ContextWithNamespace ( ts . quitContext , tokenNS )
leaseID , err := ts . expiration . CreateOrFetchRevocationLeaseByToken ( revokeCtx , entry )
2018-06-03 22:14:51 +00:00
if err != nil {
return nil , err
}
2018-09-18 03:03:00 +00:00
err = ts . expiration . Revoke ( revokeCtx , leaseID )
2018-06-03 22:14:51 +00:00
if err != nil {
return nil , err
}
// Only return if we're not past lease expiration (or if tainted is true),
// otherwise assume expmgr is working on revocation
default :
if ! le . ExpireTime . Before ( time . Now ( ) ) || tainted {
ret = entry
}
}
2016-09-26 17:38:50 +00:00
// If fields are getting upgraded, store the changes
if persistNeeded {
2018-05-10 19:50:02 +00:00
if err := ts . store ( ctx , entry ) ; err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to persist token upgrade: {{err}}" , err )
2016-09-26 17:38:50 +00:00
}
}
2018-06-03 22:14:51 +00:00
return ret , nil
2015-03-18 20:19:19 +00:00
}
// Revoke is used to invalidate a given token, any child tokens
// will be orphaned.
2018-05-10 19:50:02 +00:00
func ( ts * TokenStore ) revokeOrphan ( ctx context . Context , id string ) error {
2015-04-08 23:43:17 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "revoke" } , time . Now ( ) )
2015-03-18 20:21:16 +00:00
if id == "" {
return fmt . Errorf ( "cannot revoke blank token" )
}
2015-09-10 01:58:09 +00:00
2018-03-08 19:21:11 +00:00
saltedID , err := ts . SaltID ( ctx , id )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
return ts . revokeInternal ( ctx , saltedID , false )
2015-03-18 20:19:19 +00:00
}
2018-09-18 03:03:00 +00:00
// revokeInternal is used to invalidate a given salted token, any child tokens
2018-05-18 19:14:42 +00:00
// will be orphaned unless otherwise specified. skipOrphan should be used
// whenever we are revoking the entire tree starting from a particular parent
2018-09-18 03:03:00 +00:00
// (e.g. revokeTreeInternal).
func ( ts * TokenStore ) revokeInternal ( ctx context . Context , saltedID string , skipOrphan bool ) ( ret error ) {
2018-05-10 19:50:02 +00:00
// Check and set the token deletion state. We only proceed with the deletion
// if we don't have a pending deletion (empty), or if the deletion previously
// failed (state is false)
state , loaded := ts . tokensPendingDeletion . LoadOrStore ( saltedID , true )
// If the entry was loaded and its state is true, we short-circuit
if loaded && state == true {
2016-12-16 18:11:55 +00:00
return nil
}
2018-05-10 19:50:02 +00:00
// The map check above should protect use from any concurrent revocations, so
2018-09-18 03:03:00 +00:00
// we do another lookup here to make sure we have the right state
entry , err := ts . lookupInternal ( ctx , saltedID , true , true )
2015-03-18 20:19:19 +00:00
if err != nil {
return err
}
2016-12-16 18:11:55 +00:00
if entry == nil {
return nil
}
2018-05-10 19:50:02 +00:00
if entry . NumUses != tokenRevocationPending {
entry . NumUses = tokenRevocationPending
if err := ts . store ( ctx , entry ) ; err != nil {
// The only real reason for this is an underlying storage error
// which also means that nothing else in this func or expmgr will
// really work either. So we clear revocation state so the user can
// try again.
ts . logger . Error ( "failed to mark token as revoked" )
2018-09-18 03:03:00 +00:00
ts . tokensPendingDeletion . Store ( entry . ID , false )
2018-05-10 19:50:02 +00:00
return err
}
2016-12-16 18:11:55 +00:00
}
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , entry . NamespaceID , ts . core )
if err != nil {
return err
}
if tokenNS == nil {
return namespace . ErrNoNamespace
}
2016-12-16 18:11:55 +00:00
defer func ( ) {
2018-05-10 19:50:02 +00:00
// If we succeeded in all other revocation operations after this defer and
// before we return, we can remove the token store entry
if ret == nil {
2018-09-18 03:03:00 +00:00
if err := ts . idView ( tokenNS ) . Delete ( ctx , saltedID ) ; err != nil {
2018-05-10 19:50:02 +00:00
ret = errwrap . Wrapf ( "failed to delete entry: {{err}}" , err )
2016-12-16 18:11:55 +00:00
}
2018-05-10 19:50:02 +00:00
}
2016-12-16 18:11:55 +00:00
2018-05-10 19:50:02 +00:00
// Check on ret again and update the sync.Map accordingly
if ret != nil {
// If we failed on any of the calls within, we store the state as false
2018-09-18 03:03:00 +00:00
// so that the next call to revokeInternal will retry
2018-05-10 19:50:02 +00:00
ts . tokensPendingDeletion . Store ( saltedID , false )
} else {
ts . tokensPendingDeletion . Delete ( saltedID )
2016-12-16 18:11:55 +00:00
}
} ( )
// Destroy the token's cubby. This should go first as it's a
// security-sensitive item.
2018-09-18 03:03:00 +00:00
err = ts . cubbyholeDestroyer ( ctx , ts , entry )
2016-12-16 18:11:55 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
revokeCtx := namespace . ContextWithNamespace ( ts . quitContext , tokenNS )
if err := ts . expiration . RevokeByToken ( revokeCtx , entry ) ; err != nil {
2016-12-16 18:11:55 +00:00
return err
2015-03-18 20:19:19 +00:00
}
// Clear the secondary index if any
2016-12-16 18:11:55 +00:00
if entry . Parent != "" {
2018-09-18 03:03:00 +00:00
_ , parentNSID := namespace . SplitIDFromString ( entry . Parent )
parentCtx := revokeCtx
parentNS := tokenNS
if parentNSID != tokenNS . ID {
switch {
case parentNSID == "" :
parentNS = namespace . RootNamespace
default :
parentNS , err = NamespaceByID ( ctx , parentNSID , ts . core )
if err != nil {
return errwrap . Wrapf ( "failed to get parent namespace: {{err}}" , err )
}
if parentNS == nil {
return namespace . ErrNoNamespace
}
}
parentCtx = namespace . ContextWithNamespace ( ctx , parentNS )
}
parentSaltedID , err := ts . SaltID ( parentCtx , entry . Parent )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
path := parentSaltedID + "/" + saltedID
if tokenNS . ID != namespace . RootNamespaceID {
path = fmt . Sprintf ( "%s.%s" , path , tokenNS . ID )
}
if err = ts . parentView ( parentNS ) . Delete ( ctx , path ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete entry: {{err}}" , err )
2015-03-18 20:19:19 +00:00
}
}
2015-04-10 22:12:04 +00:00
2016-03-09 14:05:04 +00:00
// Clear the accessor index if any
2016-12-16 18:11:55 +00:00
if entry . Accessor != "" {
2018-09-18 03:03:00 +00:00
accessorSaltedID , err := ts . SaltID ( revokeCtx , entry . Accessor )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2018-09-18 03:03:00 +00:00
if err = ts . accessorView ( tokenNS ) . Delete ( ctx , accessorSaltedID ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete entry: {{err}}" , err )
2016-03-08 19:04:20 +00:00
}
}
2018-05-18 19:14:42 +00:00
if ! skipOrphan {
// Mark all children token as orphan by removing
// their parent index, and clear the parent entry.
//
// Marking the token as orphan should be skipped if it's called by
2018-09-18 03:03:00 +00:00
// revokeTreeInternal to avoid unnecessary view.List operations. Since
2018-05-18 19:14:42 +00:00
// the deletion occurs in a DFS fashion we don't need to perform a delete
// on child prefixes as there will be none (as saltedID entry is a leaf node).
2018-09-18 03:03:00 +00:00
children , err := ts . parentView ( tokenNS ) . List ( ctx , saltedID + "/" )
2018-03-27 15:12:06 +00:00
if err != nil {
2018-05-18 19:14:42 +00:00
return errwrap . Wrapf ( "failed to scan for children: {{err}}" , err )
2018-03-27 15:12:06 +00:00
}
2018-05-18 19:14:42 +00:00
for _ , child := range children {
2018-09-18 03:03:00 +00:00
var childNSID string
childCtx := revokeCtx
child , childNSID = namespace . SplitIDFromString ( child )
if childNSID != "" {
childNS , err := NamespaceByID ( ctx , childNSID , ts . core )
if err != nil {
return errwrap . Wrapf ( "failed to get child token: {{err}}" , err )
}
if childNS == nil {
return namespace . ErrNoNamespace
}
childCtx = namespace . ContextWithNamespace ( ctx , childNS )
}
entry , err := ts . lookupInternal ( childCtx , child , true , true )
2018-05-18 19:14:42 +00:00
if err != nil {
return errwrap . Wrapf ( "failed to get child token: {{err}}" , err )
}
2018-09-18 03:03:00 +00:00
if entry == nil {
// Seems it's already revoked, so nothing to do here except delete the index
err = ts . parentView ( tokenNS ) . Delete ( ctx , child )
if err != nil {
return errwrap . Wrapf ( "failed to delete child entry: {{err}}" , err )
}
continue
}
2018-05-18 19:14:42 +00:00
lock := locksutil . LockForKey ( ts . tokenLocks , entry . ID )
lock . Lock ( )
2018-03-27 15:12:06 +00:00
2018-05-18 19:14:42 +00:00
entry . Parent = ""
2018-09-18 03:03:00 +00:00
err = ts . store ( childCtx , entry )
2018-05-18 19:14:42 +00:00
if err != nil {
lock . Unlock ( )
return errwrap . Wrapf ( "failed to update child token: {{err}}" , err )
}
2018-03-27 15:12:06 +00:00
lock . Unlock ( )
2018-05-18 19:14:42 +00:00
// Delete the the child storage entry after we update the token entry Since
// paths are not deeply nested (i.e. they are simply
// parenPrefix/<parentID>/<childID>), we can simply call view.Delete instead
// of logical.ClearView
2018-09-18 03:03:00 +00:00
err = ts . parentView ( tokenNS ) . Delete ( ctx , child )
2018-05-18 19:14:42 +00:00
if err != nil {
return errwrap . Wrapf ( "failed to delete child entry: {{err}}" , err )
}
2018-03-27 15:12:06 +00:00
}
}
2015-03-18 20:19:19 +00:00
return nil
}
2018-05-10 19:50:02 +00:00
// revokeTree is used to invalidate a given token and all
2015-03-18 20:19:19 +00:00
// child tokens.
2018-09-18 03:03:00 +00:00
func ( ts * TokenStore ) revokeTree ( ctx context . Context , le * leaseEntry ) error {
2015-04-08 23:43:17 +00:00
defer metrics . MeasureSince ( [ ] string { "token" , "revoke-tree" } , time . Now ( ) )
2015-03-18 20:21:16 +00:00
// Verify the token is not blank
2018-09-18 03:03:00 +00:00
if le . ClientToken == "" {
2017-04-26 18:06:45 +00:00
return fmt . Errorf ( "cannot tree-revoke blank token" )
2015-03-18 20:21:16 +00:00
}
2018-09-18 03:03:00 +00:00
// In case lookup fails for some reason for the token itself, set the
// context for the next call from the lease entry's NS. This function is
// only called when a lease for a given token is expiring, so it should run
// in the context of the token namespace
revCtx := namespace . ContextWithNamespace ( ctx , le . namespace )
saltedID , err := ts . SaltID ( revCtx , le . ClientToken )
2017-07-18 16:02:03 +00:00
if err != nil {
return err
}
2015-03-18 20:19:19 +00:00
2015-04-10 22:06:54 +00:00
// Nuke the entire tree recursively
2018-09-18 03:03:00 +00:00
return ts . revokeTreeInternal ( revCtx , saltedID )
2015-03-18 20:19:19 +00:00
}
2018-09-18 03:03:00 +00:00
// revokeTreeInternal is used to invalidate a given token and all
// child tokens.
2017-12-11 21:51:37 +00:00
// Updated to be non-recursive and revoke child tokens
// before parent tokens(DFS).
2018-09-18 03:03:00 +00:00
func ( ts * TokenStore ) revokeTreeInternal ( ctx context . Context , id string ) error {
2018-09-20 21:56:38 +00:00
dfs := [ ] string { id }
seenIDs := make ( map [ string ] struct { } )
2018-09-18 03:03:00 +00:00
var ns * namespace . Namespace
te , err := ts . lookupInternal ( ctx , id , true , true )
if err != nil {
return err
}
if te == nil {
ns , err = namespace . FromContext ( ctx )
if err != nil {
return err
}
} else {
ns , err = NamespaceByID ( ctx , te . NamespaceID , ts . core )
if err != nil {
return err
}
}
if ns == nil {
return fmt . Errorf ( "failed to find namespace for token revocation" )
}
2015-03-18 20:19:19 +00:00
2017-12-11 21:51:37 +00:00
for l := len ( dfs ) ; l > 0 ; l = len ( dfs ) {
2018-09-20 21:56:38 +00:00
id := dfs [ len ( dfs ) - 1 ]
seenIDs [ id ] = struct { } { }
2018-09-18 03:03:00 +00:00
saltedCtx := ctx
saltedNS := ns
saltedID , saltedNSID := namespace . SplitIDFromString ( id )
if saltedNSID != "" {
saltedNS , err = NamespaceByID ( ctx , saltedNSID , ts . core )
if err != nil {
return errwrap . Wrapf ( "failed to find namespace for token revocation: {{err}}" , err )
}
saltedCtx = namespace . ContextWithNamespace ( ctx , saltedNS )
}
path := saltedID + "/"
2018-09-20 21:56:38 +00:00
childrenRaw , err := ts . parentView ( saltedNS ) . List ( saltedCtx , path )
2017-12-11 21:51:37 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to scan for children: {{err}}" , err )
2017-12-11 21:51:37 +00:00
}
2018-09-18 03:03:00 +00:00
2018-09-20 21:56:38 +00:00
// Filter the child list to remove any items that have ever been in the dfs stack.
// This is a robustness check, as a parent/child cycle can lead to an OOM crash.
children := make ( [ ] string , 0 , len ( childrenRaw ) )
for _ , child := range childrenRaw {
if _ , seen := seenIDs [ child ] ; ! seen {
children = append ( children , child )
} else {
if err = ts . parentView ( saltedNS ) . Delete ( saltedCtx , path + child ) ; err != nil {
return errwrap . Wrapf ( "failed to delete entry: {{err}}" , err )
}
ts . Logger ( ) . Warn ( "token cycle found" , "token" , child )
}
}
2017-12-11 21:51:37 +00:00
// If the length of the children array is zero,
// then we are at a leaf node.
if len ( children ) == 0 {
2018-09-18 03:03:00 +00:00
// Whenever revokeInternal is called, the token will be removed immediately and
2018-05-10 19:50:02 +00:00
// any underlying secrets will be handed off to the expiration manager which will
// take care of expiring them. If Vault is restarted, any revoked tokens
// would have been deleted, and any pending leases for deletion will be restored
// by the expiration manager.
2018-09-18 03:03:00 +00:00
if err := ts . revokeInternal ( saltedCtx , saltedID , true ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to revoke entry: {{err}}" , err )
2017-12-11 21:51:37 +00:00
}
// If the length of l is equal to 1, then the last token has been deleted
if l == 1 {
return nil
}
2018-09-20 21:56:38 +00:00
dfs = dfs [ : len ( dfs ) - 1 ]
2017-12-11 21:51:37 +00:00
} else {
2018-09-20 21:56:38 +00:00
// If we make it here, there are children and they must be appended.
dfs = append ( dfs , children ... )
2015-03-18 20:19:19 +00:00
}
}
return nil
}
2018-10-15 16:56:24 +00:00
func ( c * Core ) IsBatchTokenCreationRequest ( ctx context . Context , path string ) ( bool , error ) {
2019-12-16 14:31:32 +00:00
c . stateLock . RLock ( )
defer c . stateLock . RUnlock ( )
if c . tokenStore == nil {
return false , fmt . Errorf ( "no token store" )
}
2018-10-15 16:56:24 +00:00
name := strings . TrimPrefix ( path , "auth/token/create/" )
roleEntry , err := c . tokenStore . tokenStoreRole ( ctx , name )
if err != nil {
return false , err
}
2019-12-16 14:31:32 +00:00
if roleEntry == nil {
return false , fmt . Errorf ( "unknown role" )
}
2018-10-15 16:56:24 +00:00
return roleEntry . TokenType == logical . TokenTypeBatch , nil
}
2016-03-01 20:30:37 +00:00
// handleCreateAgainstRole handles the auth/token/create path for a role
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleCreateAgainstRole ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2016-02-29 18:27:31 +00:00
name := d . Get ( "role_name" ) . ( string )
2018-01-19 06:44:44 +00:00
roleEntry , err := ts . tokenStoreRole ( ctx , name )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
if roleEntry == nil {
return logical . ErrorResponse ( fmt . Sprintf ( "unknown role %s" , name ) ) , nil
}
2018-01-19 06:44:44 +00:00
return ts . handleCreateCommon ( ctx , req , d , false , roleEntry )
2016-02-29 18:27:31 +00:00
}
2018-09-18 03:03:00 +00:00
func ( ts * TokenStore ) lookupByAccessor ( ctx context . Context , id string , salted , tainted bool ) ( accessorEntry , error ) {
var aEntry accessorEntry
ns , err := namespace . FromContext ( ctx )
2017-07-18 16:02:03 +00:00
if err != nil {
2018-09-18 03:03:00 +00:00
return aEntry , err
2017-07-18 16:02:03 +00:00
}
2016-07-29 22:20:38 +00:00
2018-09-18 03:03:00 +00:00
lookupID := id
if ! salted {
_ , nsID := namespace . SplitIDFromString ( id )
if nsID != "" {
accessorNS , err := NamespaceByID ( ctx , nsID , ts . core )
if err != nil {
return aEntry , err
}
if accessorNS != nil {
if accessorNS . ID != ns . ID {
ns = accessorNS
ctx = namespace . ContextWithNamespace ( ctx , accessorNS )
}
}
} else {
// Any non-root-ns token should have an accessor and child
// namespaces cannot have custom IDs. If someone omits or tampers
// with it, the lookup in the root namespace simply won't work.
ns = namespace . RootNamespace
ctx = namespace . ContextWithNamespace ( ctx , ns )
}
lookupID , err = ts . SaltID ( ctx , id )
if err != nil {
return aEntry , err
}
}
entry , err := ts . accessorView ( ns ) . Get ( ctx , lookupID )
2016-03-08 23:07:27 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return aEntry , errwrap . Wrapf ( "failed to read index using accessor: {{err}}" , err )
2016-03-08 23:07:27 +00:00
}
if entry == nil {
2017-02-17 04:09:39 +00:00
return aEntry , & logical . StatusBadRequest { Err : "invalid accessor" }
2016-07-29 22:20:38 +00:00
}
err = jsonutil . DecodeJSON ( entry . Value , & aEntry )
// If we hit an error, assume it's a pre-struct straight token ID
if err != nil {
2018-09-18 03:03:00 +00:00
te , err := ts . lookupInternal ( ctx , string ( entry . Value ) , false , tainted )
2016-07-29 22:20:38 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return accessorEntry { } , errwrap . Wrapf ( "failed to look up token using accessor index: {{err}}" , err )
2016-07-29 22:20:38 +00:00
}
2018-09-18 03:03:00 +00:00
// It's hard to reason about what to do here if te is nil -- it may be
// that the token was revoked async, or that it's an old accessor index
// entry that was somehow not cleared up, or or or. A nonexistent token
// entry on lookup is nil, not an error, so we keep that behavior here
// to be safe...the token ID is simply not filled in.
2016-08-01 17:07:41 +00:00
if te != nil {
2017-05-03 16:36:10 +00:00
aEntry . TokenID = te . ID
2016-08-01 17:07:41 +00:00
aEntry . AccessorID = te . Accessor
2018-09-18 03:03:00 +00:00
aEntry . NamespaceID = te . NamespaceID
2016-08-01 17:07:41 +00:00
}
2016-03-08 23:07:27 +00:00
}
2018-09-18 03:03:00 +00:00
if aEntry . NamespaceID == "" {
aEntry . NamespaceID = namespace . RootNamespaceID
}
2016-07-29 22:20:38 +00:00
return aEntry , nil
2016-03-08 23:07:27 +00:00
}
2016-12-16 20:29:27 +00:00
// handleTidy handles the cleaning up of leaked accessor storage entries and
// cleaning up of leases that are associated to tokens that are expired.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleTidy ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2018-06-16 22:21:33 +00:00
if ! atomic . CompareAndSwapUint32 ( ts . tidyLock , 0 , 1 ) {
resp := & logical . Response { }
resp . AddWarning ( "Tidy operation already in progress." )
return resp , nil
2017-04-27 17:48:29 +00:00
}
2016-12-16 20:29:27 +00:00
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
2019-01-09 18:53:41 +00:00
return nil , errwrap . Wrapf ( "failed to get namespace from context: {{err}}" , err )
2018-09-18 03:03:00 +00:00
}
2018-06-16 22:21:33 +00:00
go func ( ) {
defer atomic . StoreUint32 ( ts . tidyLock , 0 )
2017-04-27 15:20:36 +00:00
2018-06-16 22:21:33 +00:00
logger := ts . logger . Named ( "tidy" )
2017-04-27 15:41:33 +00:00
2018-06-16 22:21:33 +00:00
var tidyErrors * multierror . Error
2018-03-27 15:12:06 +00:00
2018-06-16 22:21:33 +00:00
doTidy := func ( ) error {
ts . logger . Info ( "beginning tidy operation on tokens" )
defer ts . logger . Info ( "finished tidy operation on tokens" )
2018-03-27 15:12:06 +00:00
2018-09-18 03:03:00 +00:00
quitCtx := namespace . ContextWithNamespace ( ts . quitContext , ns )
2018-06-16 22:21:33 +00:00
// List out all the accessors
2018-09-18 03:03:00 +00:00
saltedAccessorList , err := ts . accessorView ( ns ) . List ( quitCtx , "" )
2018-06-16 22:21:33 +00:00
if err != nil {
return errwrap . Wrapf ( "failed to fetch accessor index entries: {{err}}" , err )
2016-12-16 20:29:27 +00:00
}
2018-06-16 22:21:33 +00:00
// First, clean up secondary index entries that are no longer valid
2018-09-18 03:03:00 +00:00
parentList , err := ts . parentView ( ns ) . List ( quitCtx , "" )
2018-06-16 22:21:33 +00:00
if err != nil {
return errwrap . Wrapf ( "failed to fetch secondary index entries: {{err}}" , err )
2018-03-27 15:12:06 +00:00
}
2018-06-16 22:21:33 +00:00
2019-01-09 18:53:41 +00:00
// List all the cubbyhole storage keys
2021-04-19 21:28:04 +00:00
view := ts . core . router . MatchingStorageByAPIPath ( ctx , cubbyholeMountPath )
if view == nil {
return fmt . Errorf ( "no cubby mount entry" )
}
bview := view . ( * BarrierView )
cubbyholeKeys , err := bview . List ( quitCtx , "" )
2019-01-09 18:53:41 +00:00
if err != nil {
return errwrap . Wrapf ( "failed to fetch cubbyhole storage keys: {{err}}" , err )
}
2018-06-16 22:21:33 +00:00
var countParentEntries , deletedCountParentEntries , countParentList , deletedCountParentList int64
// Scan through the secondary index entries; if there is an entry
// with the token's salt ID at the end, remove it
for _ , parent := range parentList {
countParentEntries ++
// Get the children
2018-09-18 03:03:00 +00:00
children , err := ts . parentView ( ns ) . List ( quitCtx , parent )
2017-04-27 15:41:33 +00:00
if err != nil {
2018-06-16 22:21:33 +00:00
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to read secondary index: {{err}}" , err ) )
2018-03-27 15:12:06 +00:00
continue
2017-04-27 15:41:33 +00:00
}
2018-06-16 22:21:33 +00:00
// First check if the salt ID of the parent exists, and if not mark this so
// that deletion of children later with this loop below applies to all
// children
originalChildrenCount := int64 ( len ( children ) )
2018-09-18 03:03:00 +00:00
exists , _ := ts . lookupInternal ( quitCtx , strings . TrimSuffix ( parent , "/" ) , true , true )
2018-06-16 22:21:33 +00:00
if exists == nil {
ts . logger . Debug ( "deleting invalid parent prefix entry" , "index" , parentPrefix + parent )
}
2017-04-27 15:41:33 +00:00
2018-06-16 22:21:33 +00:00
var deletedChildrenCount int64
2020-06-26 19:44:45 +00:00
for index , child := range children {
2018-06-16 22:21:33 +00:00
countParentList ++
if countParentList % 500 == 0 {
2020-07-14 19:28:11 +00:00
percentComplete := float64 ( index ) / float64 ( len ( children ) ) * 100
2020-06-26 19:44:45 +00:00
ts . logger . Info ( "checking validity of tokens in secondary index list" , "progress" , countParentList , "percent_complete" , percentComplete )
2018-06-16 22:21:33 +00:00
}
// Look up tainted entries so we can be sure that if this isn't
// found, it doesn't exist. Doing the following without locking
// since appropriate locks cannot be held with salted token IDs.
// Also perform deletion if the parent doesn't exist any more.
2018-09-18 03:03:00 +00:00
te , _ := ts . lookupInternal ( quitCtx , child , true , true )
2018-06-16 22:21:33 +00:00
// If the child entry is not nil, but the parent doesn't exist, then turn
// that child token into an orphan token. Theres no deletion in this case.
if te != nil && exists == nil {
lock := locksutil . LockForKey ( ts . tokenLocks , te . ID )
lock . Lock ( )
te . Parent = ""
2018-09-18 03:03:00 +00:00
err = ts . store ( quitCtx , te )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to convert child token into an orphan token: {{err}}" , err ) )
}
lock . Unlock ( )
continue
}
// Otherwise, if the entry doesn't exist, or if the parent doesn't exist go
// on with the delete on the secondary index
if te == nil || exists == nil {
2018-09-18 03:03:00 +00:00
index := parent + child
2018-06-16 22:21:33 +00:00
ts . logger . Debug ( "deleting invalid secondary index" , "index" , index )
2018-09-18 03:03:00 +00:00
err = ts . parentView ( ns ) . Delete ( quitCtx , index )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to delete secondary index: {{err}}" , err ) )
continue
}
deletedChildrenCount ++
}
}
// Add current children deleted count to the total count
deletedCountParentList += deletedChildrenCount
// N.B.: We don't call delete on the parent prefix since physical.Backend.Delete
// implementations should be in charge of deleting empty prefixes.
// If we deleted all the children, then add that to our deleted parent entries count.
if originalChildrenCount == deletedChildrenCount {
deletedCountParentEntries ++
}
2017-04-27 17:48:29 +00:00
}
2017-04-27 15:41:33 +00:00
2018-06-16 22:21:33 +00:00
var countAccessorList ,
2019-07-03 03:29:42 +00:00
countCubbyholeKeys ,
deletedCountAccessorEmptyToken ,
deletedCountAccessorInvalidToken ,
deletedCountInvalidTokenInAccessor ,
deletedCountInvalidCubbyholeKey int64
2019-01-09 18:53:41 +00:00
validCubbyholeKeys := make ( map [ string ] bool )
2018-06-16 22:21:33 +00:00
// For each of the accessor, see if the token ID associated with it is
// a valid one. If not, delete the leases associated with that token
// and delete the accessor as well.
2020-06-26 19:44:45 +00:00
for index , saltedAccessor := range saltedAccessorList {
2018-06-16 22:21:33 +00:00
countAccessorList ++
if countAccessorList % 500 == 0 {
2020-07-14 19:28:11 +00:00
percentComplete := float64 ( index ) / float64 ( len ( saltedAccessorList ) ) * 100
2020-06-26 19:44:45 +00:00
ts . logger . Info ( "checking if accessors contain valid tokens" , "progress" , countAccessorList , "percent_complete" , percentComplete )
2018-06-16 22:21:33 +00:00
}
2017-04-27 17:48:29 +00:00
2018-09-18 03:03:00 +00:00
accessorEntry , err := ts . lookupByAccessor ( quitCtx , saltedAccessor , true , true )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to read the accessor index: {{err}}" , err ) )
continue
}
2017-07-26 16:15:54 +00:00
2018-06-16 22:21:33 +00:00
// A valid accessor storage entry should always have a token ID
// in it. If not, it is an invalid accessor entry and needs to
// be deleted.
if accessorEntry . TokenID == "" {
// If deletion of accessor fails, move on to the next
// item since this is just a best-effort operation
2018-09-18 03:03:00 +00:00
err = ts . accessorView ( ns ) . Delete ( quitCtx , saltedAccessor )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to delete the accessor index: {{err}}" , err ) )
continue
}
deletedCountAccessorEmptyToken ++
}
2017-04-27 17:48:29 +00:00
2018-06-16 22:21:33 +00:00
lock := locksutil . LockForKey ( ts . tokenLocks , accessorEntry . TokenID )
lock . RLock ( )
2017-04-27 17:48:29 +00:00
2018-06-16 22:21:33 +00:00
// Look up tainted variants so we only find entries that truly don't
// exist
2018-09-18 03:03:00 +00:00
te , err := ts . lookupInternal ( quitCtx , accessorEntry . TokenID , false , true )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to lookup tainted ID: {{err}}" , err ) )
lock . RUnlock ( )
continue
}
2017-04-27 15:41:33 +00:00
2018-06-16 22:21:33 +00:00
lock . RUnlock ( )
2019-01-09 18:53:41 +00:00
switch {
case te == nil :
// If token entry is not found assume that the token is not valid any
// more and conclude that accessor, leases, and secondary index entries
// for this token should not exist as well.
2018-09-18 03:03:00 +00:00
ts . logger . Info ( "deleting token with nil entry referenced by accessor" , "salted_accessor" , saltedAccessor )
2018-06-16 22:21:33 +00:00
// RevokeByToken expects a '*logical.TokenEntry'. For the
// purposes of tidying, it is sufficient if the token
// entry only has ID set.
tokenEntry := & logical . TokenEntry {
2018-09-18 03:03:00 +00:00
ID : accessorEntry . TokenID ,
NamespaceID : accessorEntry . NamespaceID ,
2018-06-16 22:21:33 +00:00
}
// Attempt to revoke the token. This will also revoke
// the leases associated with the token.
2018-09-18 03:03:00 +00:00
err = ts . expiration . RevokeByToken ( quitCtx , tokenEntry )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to revoke leases of expired token: {{err}}" , err ) )
continue
}
deletedCountInvalidTokenInAccessor ++
// If deletion of accessor fails, move on to the next item since
// this is just a best-effort operation. We do this last so that on
// next run if something above failed we still have the accessor
// entry to try again.
2018-09-18 03:03:00 +00:00
err = ts . accessorView ( ns ) . Delete ( quitCtx , saltedAccessor )
2018-06-16 22:21:33 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to delete accessor entry: {{err}}" , err ) )
continue
}
deletedCountAccessorInvalidToken ++
2019-01-09 18:53:41 +00:00
default :
// Cache the cubbyhole storage key when the token is valid
switch {
case te . NamespaceID == namespace . RootNamespaceID && ! strings . HasPrefix ( te . ID , "s." ) :
saltedID , err := ts . SaltID ( quitCtx , te . ID )
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( "failed to create salted token id: {{err}}" , err ) )
continue
}
validCubbyholeKeys [ salt . SaltID ( ts . cubbyholeBackend . saltUUID , saltedID , salt . SHA1Hash ) ] = true
default :
if te . CubbyholeID == "" {
tidyErrors = multierror . Append ( tidyErrors , fmt . Errorf ( "missing cubbyhole ID for a valid token" ) )
continue
}
validCubbyholeKeys [ te . CubbyholeID ] = true
}
}
}
// Revoke invalid cubbyhole storage keys
2020-06-26 19:44:45 +00:00
for index , key := range cubbyholeKeys {
2019-01-09 18:53:41 +00:00
countCubbyholeKeys ++
if countCubbyholeKeys % 500 == 0 {
2020-07-14 19:28:11 +00:00
percentComplete := float64 ( index ) / float64 ( len ( cubbyholeKeys ) ) * 100
2020-06-26 19:44:45 +00:00
ts . logger . Info ( "checking if there are invalid cubbyholes" , "progress" , countCubbyholeKeys , "percent_complete" , percentComplete )
2019-01-09 18:53:41 +00:00
}
key := strings . TrimSuffix ( key , "/" )
if ! validCubbyholeKeys [ key ] {
ts . logger . Info ( "deleting invalid cubbyhole" , "key" , key )
2021-04-19 21:28:04 +00:00
err = ts . cubbyholeBackend . revoke ( quitCtx , bview , key )
2019-01-09 18:53:41 +00:00
if err != nil {
tidyErrors = multierror . Append ( tidyErrors , errwrap . Wrapf ( fmt . Sprintf ( "failed to revoke cubbyhole key %q: {{err}}" , key ) , err ) )
}
deletedCountInvalidCubbyholeKey ++
2018-06-16 22:21:33 +00:00
}
2017-04-27 17:48:29 +00:00
}
2017-04-27 15:41:33 +00:00
2018-06-16 22:21:33 +00:00
ts . logger . Info ( "number of entries scanned in parent prefix" , "count" , countParentEntries )
ts . logger . Info ( "number of entries deleted in parent prefix" , "count" , deletedCountParentEntries )
ts . logger . Info ( "number of tokens scanned in parent index list" , "count" , countParentList )
ts . logger . Info ( "number of tokens revoked in parent index list" , "count" , deletedCountParentList )
ts . logger . Info ( "number of accessors scanned" , "count" , countAccessorList )
ts . logger . Info ( "number of deleted accessors which had empty tokens" , "count" , deletedCountAccessorEmptyToken )
ts . logger . Info ( "number of revoked tokens which were invalid but present in accessors" , "count" , deletedCountInvalidTokenInAccessor )
ts . logger . Info ( "number of deleted accessors which had invalid tokens" , "count" , deletedCountAccessorInvalidToken )
2019-01-09 18:53:41 +00:00
ts . logger . Info ( "number of deleted cubbyhole keys that were invalid" , "count" , deletedCountInvalidCubbyholeKey )
2017-04-27 17:48:29 +00:00
2018-06-16 22:21:33 +00:00
return tidyErrors . ErrorOrNil ( )
2016-12-16 20:29:27 +00:00
}
2018-06-16 22:21:33 +00:00
if err := doTidy ( ) ; err != nil {
logger . Error ( "error running tidy" , "error" , err )
return
}
} ( )
2017-05-03 14:54:07 +00:00
2018-06-16 22:21:33 +00:00
resp := & logical . Response { }
resp . AddWarning ( "Tidy operation successfully started. Any information from the operation will be printed to Vault's server logs." )
2018-07-11 19:45:09 +00:00
return logical . RespondWithStatusCode ( resp , req , http . StatusAccepted )
2016-12-16 20:29:27 +00:00
}
2016-03-09 14:48:32 +00:00
// handleUpdateLookupAccessor handles the auth/token/lookup-accessor path for returning
2016-03-09 14:05:04 +00:00
// the properties of the token associated with the accessor
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleUpdateLookupAccessor ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-03-09 11:23:31 +00:00
accessor := data . Get ( "accessor" ) . ( string )
if accessor == "" {
2018-11-19 21:58:19 +00:00
return nil , & logical . StatusBadRequest { Err : "missing accessor" }
2016-03-08 22:38:19 +00:00
}
2018-09-18 03:03:00 +00:00
aEntry , err := ts . lookupByAccessor ( ctx , accessor , false , false )
2016-03-08 22:38:19 +00:00
if err != nil {
2016-03-08 23:07:27 +00:00
return nil , err
2016-03-08 22:38:19 +00:00
}
// Prepare the field data required for a lookup call
d := & framework . FieldData {
Raw : map [ string ] interface { } {
2016-07-29 22:20:38 +00:00
"token" : aEntry . TokenID ,
2016-03-08 22:38:19 +00:00
} ,
Schema : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"token" : {
2016-03-08 22:38:19 +00:00
Type : framework . TypeString ,
Description : "Token to lookup" ,
} ,
} ,
}
2018-01-08 18:31:38 +00:00
resp , err := ts . handleLookup ( ctx , req , d )
2016-03-08 22:38:19 +00:00
if err != nil {
return nil , err
}
if resp == nil {
return nil , fmt . Errorf ( "failed to lookup the token" )
}
if resp . IsError ( ) {
return resp , nil
}
// Remove the token ID from the response
2016-03-09 14:05:04 +00:00
if resp . Data != nil {
2016-03-08 22:38:19 +00:00
resp . Data [ "id" ] = ""
}
return resp , nil
2016-03-08 20:13:29 +00:00
}
2019-11-08 16:32:01 +00:00
func ( ts * TokenStore ) handleUpdateRenewAccessor ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
accessor := data . Get ( "accessor" ) . ( string )
if accessor == "" {
return nil , & logical . StatusBadRequest { Err : "missing accessor" }
}
aEntry , err := ts . lookupByAccessor ( ctx , accessor , false , false )
if err != nil {
return nil , err
}
// Prepare the field data required for a lookup call
d := & framework . FieldData {
Raw : map [ string ] interface { } {
"token" : aEntry . TokenID ,
} ,
Schema : map [ string ] * framework . FieldSchema {
"token" : {
Type : framework . TypeString ,
} ,
"increment" : {
Type : framework . TypeDurationSecond ,
} ,
} ,
}
if inc , ok := data . GetOk ( "increment" ) ; ok {
d . Raw [ "increment" ] = inc
}
resp , err := ts . handleRenew ( ctx , req , d )
if err != nil {
return nil , err
}
if resp == nil {
return nil , fmt . Errorf ( "failed to lookup the token" )
}
if resp . IsError ( ) {
return resp , nil
}
// Remove the token ID from the response
if resp . Auth != nil {
resp . Auth . ClientToken = ""
}
return resp , nil
}
2016-03-09 14:48:32 +00:00
// handleUpdateRevokeAccessor handles the auth/token/revoke-accessor path for revoking
2016-03-09 14:05:04 +00:00
// the token associated with the accessor
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleUpdateRevokeAccessor ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-03-09 11:23:31 +00:00
accessor := data . Get ( "accessor" ) . ( string )
if accessor == "" {
2018-11-19 21:58:19 +00:00
return nil , & logical . StatusBadRequest { Err : "missing accessor" }
2016-03-08 23:07:27 +00:00
}
2018-09-18 03:03:00 +00:00
aEntry , err := ts . lookupByAccessor ( ctx , accessor , false , true )
2016-03-08 23:07:27 +00:00
if err != nil {
return nil , err
}
2018-05-10 19:50:02 +00:00
te , err := ts . Lookup ( ctx , aEntry . TokenID )
if err != nil {
return nil , err
}
if te == nil {
return logical . ErrorResponse ( "token not found" ) , logical . ErrInvalidRequest
}
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , te . NamespaceID , ts . core )
if err != nil {
return nil , err
}
if tokenNS == nil {
return nil , namespace . ErrNoNamespace
}
revokeCtx := namespace . ContextWithNamespace ( ts . quitContext , tokenNS )
leaseID , err := ts . expiration . CreateOrFetchRevocationLeaseByToken ( revokeCtx , te )
2018-05-10 19:50:02 +00:00
if err != nil {
return nil , err
}
2018-09-18 03:03:00 +00:00
err = ts . expiration . Revoke ( revokeCtx , leaseID )
2018-05-10 19:50:02 +00:00
if err != nil {
return nil , err
2016-03-08 23:07:27 +00:00
}
2016-08-29 19:15:57 +00:00
2016-03-08 20:13:29 +00:00
return nil , nil
}
2015-11-03 20:10:46 +00:00
// handleCreate handles the auth/token/create path for creation of new orphan
// tokens
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleCreateOrphan ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
return ts . handleCreateCommon ( ctx , req , d , true , nil )
2015-11-03 20:10:46 +00:00
}
// handleCreate handles the auth/token/create path for creation of new non-orphan
// tokens
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleCreate ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
return ts . handleCreateCommon ( ctx , req , d , false , nil )
2015-11-03 20:10:46 +00:00
}
// handleCreateCommon handles the auth/token/create path for creation of new tokens
2018-01-19 06:44:44 +00:00
func ( ts * TokenStore ) handleCreateCommon ( ctx context . Context , req * logical . Request , d * framework . FieldData , orphan bool , role * tsRoleEntry ) ( * logical . Response , error ) {
2015-03-24 22:10:46 +00:00
// Read the parent policy
2018-01-19 06:44:44 +00:00
parent , err := ts . Lookup ( ctx , req . ClientToken )
2018-05-18 16:30:03 +00:00
if err != nil {
2018-05-18 17:14:31 +00:00
return nil , errwrap . Wrapf ( "parent token lookup failed: {{err}}" , err )
2018-05-18 16:30:03 +00:00
}
if parent == nil {
return logical . ErrorResponse ( "parent token lookup failed: no parent found" ) , logical . ErrInvalidRequest
2015-03-24 22:10:46 +00:00
}
2018-10-15 16:56:24 +00:00
if parent . Type == logical . TokenTypeBatch {
return logical . ErrorResponse ( "batch tokens cannot create more tokens" ) , nil
}
2015-03-24 22:10:46 +00:00
2015-04-17 18:34:25 +00:00
// A token with a restricted number of uses cannot create a new token
// otherwise it could escape the restriction count.
if parent . NumUses > 0 {
return logical . ErrorResponse ( "restricted use token cannot generate child tokens" ) ,
logical . ErrInvalidRequest
}
2015-09-21 14:04:03 +00:00
// Check if the client token has sudo/root privileges for the requested path
2019-08-26 14:23:46 +00:00
isSudo := ts . System ( ) . ( extendedSystemView ) . SudoPrivilege ( ctx , req . MountPoint + req . Path , req . ClientToken )
2015-03-24 22:10:46 +00:00
// Read and parse the fields
2015-04-07 21:16:35 +00:00
var data struct {
2015-11-09 22:30:50 +00:00
ID string
Policies [ ] string
Metadata map [ string ] string ` mapstructure:"meta" `
NoParent bool ` mapstructure:"no_parent" `
NoDefaultPolicy bool ` mapstructure:"no_default_policy" `
Lease string
TTL string
2016-06-08 15:14:30 +00:00
Renewable * bool
2016-06-08 18:49:48 +00:00
ExplicitMaxTTL string ` mapstructure:"explicit_max_ttl" `
2015-11-09 22:30:50 +00:00
DisplayName string ` mapstructure:"display_name" `
NumUses int ` mapstructure:"num_uses" `
2016-08-13 01:01:30 +00:00
Period string
2018-10-15 16:56:24 +00:00
Type string ` mapstructure:"type" `
2019-07-01 09:39:54 +00:00
EntityAlias string ` mapstructure:"entity_alias" `
2015-04-07 21:16:35 +00:00
}
if err := mapstructure . WeakDecode ( req . Data , & data ) ; err != nil {
return logical . ErrorResponse ( fmt . Sprintf (
"Error decoding request: %s" , err ) ) , logical . ErrInvalidRequest
}
2015-03-24 22:10:46 +00:00
2018-09-18 03:03:00 +00:00
// If the context's namespace is different from the parent and this is an
// orphan token creation request, then this is an admin token generation for
// the namespace
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
if ns . ID != parent . NamespaceID {
parentNS , err := NamespaceByID ( ctx , parent . NamespaceID , ts . core )
if err != nil {
ts . logger . Error ( "error looking up parent namespace" , "error" , err , "parent_namespace" , parent . NamespaceID )
return nil , ErrInternalError
}
if parentNS == nil {
ts . logger . Error ( "could not find information for parent namespace" , "parent_namespace" , parent . NamespaceID )
return nil , ErrInternalError
}
if ! isSudo {
2019-03-18 13:33:01 +00:00
return logical . ErrorResponse ( "root or sudo privileges required to directly generate a token in a child namespace" ) , logical . ErrInvalidRequest
2018-09-18 03:03:00 +00:00
}
if strutil . StrListContains ( data . Policies , "root" ) {
return logical . ErrorResponse ( "root tokens may not be created from a parent namespace" ) , logical . ErrInvalidRequest
}
}
2018-10-15 16:56:24 +00:00
renewable := true
if data . Renewable != nil {
renewable = * data . Renewable
}
tokenType := logical . TokenTypeService
tokenTypeStr := data . Type
if role != nil {
switch role . TokenType {
2018-11-07 14:45:09 +00:00
case logical . TokenTypeDefault , logical . TokenTypeDefaultService :
// Use the user-given value, but fall back to service
case logical . TokenTypeDefaultBatch :
// Use the user-given value, but fall back to batch
if tokenTypeStr == "" {
tokenTypeStr = logical . TokenTypeBatch . String ( )
}
case logical . TokenTypeService :
2018-10-15 16:56:24 +00:00
tokenTypeStr = logical . TokenTypeService . String ( )
case logical . TokenTypeBatch :
tokenTypeStr = logical . TokenTypeBatch . String ( )
default :
return logical . ErrorResponse ( fmt . Sprintf ( "role being used for token creation contains invalid token type %q" , role . TokenType . String ( ) ) ) , nil
}
}
switch tokenTypeStr {
case "" , "service" :
case "batch" :
var badReason string
switch {
case data . ExplicitMaxTTL != "" :
dur , err := parseutil . ParseDurationSecond ( data . ExplicitMaxTTL )
if err != nil {
return logical . ErrorResponse ( ` "explicit_max_ttl" value could not be parsed ` ) , nil
}
if dur != 0 {
badReason = "explicit_max_ttl"
}
case data . NumUses != 0 :
badReason = "num_uses"
case data . Period != "" :
dur , err := parseutil . ParseDurationSecond ( data . Period )
if err != nil {
return logical . ErrorResponse ( ` "period" value could not be parsed ` ) , nil
}
if dur != 0 {
badReason = "period"
}
}
if badReason != "" {
return logical . ErrorResponse ( fmt . Sprintf ( "batch tokens cannot have %q set" , badReason ) ) , nil
}
tokenType = logical . TokenTypeBatch
renewable = false
default :
return logical . ErrorResponse ( "invalid 'token_type' value" ) , logical . ErrInvalidRequest
}
2015-04-17 18:34:25 +00:00
// Verify the number of uses is positive
if data . NumUses < 0 {
return logical . ErrorResponse ( "number of uses cannot be negative" ) ,
logical . ErrInvalidRequest
}
2019-07-01 09:39:54 +00:00
// Verify the entity alias
var explicitEntityID string
if data . EntityAlias != "" {
// Parameter is only allowed in combination with token role
if role == nil {
return logical . ErrorResponse ( "'entity_alias' is only allowed in combination with token role" ) , logical . ErrInvalidRequest
}
2021-01-27 17:56:54 +00:00
// Convert entity alias to lowercase to match the fact that role.AllowedEntityAliases
// has also been lowercased. An entity alias will keep its case formatting, but be
// treated as lowercase during any value cheek anywhere.
entityAlias := strings . ToLower ( data . EntityAlias )
2019-07-01 09:39:54 +00:00
// Check if there is a concrete match
2021-01-27 17:56:54 +00:00
if ! strutil . StrListContains ( role . AllowedEntityAliases , entityAlias ) &&
! strutil . StrListContainsGlob ( role . AllowedEntityAliases , entityAlias ) {
2019-07-01 09:39:54 +00:00
return logical . ErrorResponse ( "invalid 'entity_alias' value" ) , logical . ErrInvalidRequest
}
// Get mount accessor which is required to lookup entity alias
mountValidationResp := ts . core . router . MatchingMountByAccessor ( req . MountAccessor )
if mountValidationResp == nil {
return logical . ErrorResponse ( "auth token mount accessor not found" ) , nil
}
// Create alias for later processing
alias := & logical . Alias {
Name : data . EntityAlias ,
MountAccessor : mountValidationResp . Accessor ,
MountType : mountValidationResp . Type ,
}
// Create or fetch entity from entity alias
entity , err := ts . core . identityStore . CreateOrFetchEntity ( ctx , alias )
if err != nil {
return nil , err
}
if entity == nil {
return nil , errors . New ( "failed to create or fetch entity from given entity alias" )
}
// Validate that the entity is not disabled
if entity . Disabled {
return logical . ErrorResponse ( "entity from given entity alias is disabled" ) , logical . ErrPermissionDenied
}
// Set new entity id
explicitEntityID = entity . ID
}
2015-03-24 22:10:46 +00:00
// Setup the token entry
2018-06-08 21:24:27 +00:00
te := logical . TokenEntry {
2016-04-07 15:39:46 +00:00
Parent : req . ClientToken ,
// The mount point is always the same since we have only one token
// store; using req.MountPoint causes trouble in tests since they don't
// have an official mount
Path : fmt . Sprintf ( "auth/token/%s" , req . Path ) ,
2015-09-18 20:33:52 +00:00
Meta : data . Metadata ,
DisplayName : "token" ,
NumUses : data . NumUses ,
CreationTime : time . Now ( ) . Unix ( ) ,
2018-09-18 03:03:00 +00:00
NamespaceID : ns . ID ,
2018-10-15 16:56:24 +00:00
Type : tokenType ,
2016-06-08 15:14:30 +00:00
}
2016-03-07 15:07:04 +00:00
// If the role is not nil, we add the role name as part of the token's
// path. This makes it much easier to later revoke tokens that were issued
// by a role (using revoke-prefix). Users can further specify a PathSuffix
// in the role; that way they can use something like "v1", "v2" to indicate
// role revisions, and revoke only tokens issued with a previous revision.
2016-02-29 18:27:31 +00:00
if role != nil {
te . Role = role . Name
2016-06-08 19:17:22 +00:00
// If renewable hasn't been disabled in the call and the role has
// renewability disabled, set renewable false
if renewable && ! role . Renewable {
renewable = false
}
2019-06-14 14:17:04 +00:00
// Update te.NumUses which is equal to req.Data["num_uses"] at this point
// 0 means unlimited so 1 is actually less than 0
switch {
case role . TokenNumUses == 0 :
case te . NumUses == 0 :
te . NumUses = role . TokenNumUses
case role . TokenNumUses < te . NumUses :
te . NumUses = role . TokenNumUses
}
2016-03-01 20:30:37 +00:00
if role . PathSuffix != "" {
te . Path = fmt . Sprintf ( "%s/%s" , te . Path , role . PathSuffix )
2016-02-29 18:27:31 +00:00
}
}
2015-04-15 21:24:07 +00:00
// Attach the given display name if any
if data . DisplayName != "" {
full := "token-" + data . DisplayName
full = displayNameSanitize . ReplaceAllString ( full , "-" )
full = strings . TrimSuffix ( full , "-" )
te . DisplayName = full
2015-03-24 22:10:46 +00:00
}
2015-09-18 23:59:06 +00:00
// Allow specifying the ID of the token if the client has root or sudo privileges
2015-04-07 21:16:35 +00:00
if data . ID != "" {
2015-09-18 23:59:06 +00:00
if ! isSudo {
return logical . ErrorResponse ( "root or sudo privileges required to specify token id" ) ,
2015-03-24 22:10:46 +00:00
logical . ErrInvalidRequest
}
2018-09-18 03:03:00 +00:00
if ns . ID != namespace . RootNamespaceID {
return logical . ErrorResponse ( "token IDs can only be manually specified in the root namespace" ) ,
logical . ErrInvalidRequest
}
2015-04-07 21:16:35 +00:00
te . ID = data . ID
2015-03-24 22:10:46 +00:00
}
2016-08-02 14:33:50 +00:00
resp := & logical . Response { }
2016-12-16 05:36:39 +00:00
var addDefault bool
// N.B.: The logic here uses various calculations as to whether default
// should be added. In the end we decided that if NoDefaultPolicy is set it
// should be stripped out regardless, *but*, the logic of when it should
// and shouldn't be added is kept because we want to do subset comparisons
// based on adding default when it's correct to do so.
2016-02-29 18:27:31 +00:00
switch {
2016-12-16 05:36:39 +00:00
case role != nil && ( len ( role . AllowedPolicies ) > 0 || len ( role . DisallowedPolicies ) > 0 ) :
// Holds the final set of policies as they get munged
var finalPolicies [ ] string
// We don't make use of the global one because roles with allowed or
// disallowed set do their own policy rules
var localAddDefault bool
// If the request doesn't say not to add "default" and if "default"
// isn't in the disallowed list, add it. This is in line with the idea
// that roles, when allowed/disallowed ar set, allow a subset of
// policies to be set disjoint from the parent token's policies.
2019-06-14 14:17:04 +00:00
if ! data . NoDefaultPolicy && ! role . TokenNoDefaultPolicy && ! strutil . StrListContains ( role . DisallowedPolicies , "default" ) {
2016-12-16 05:36:39 +00:00
localAddDefault = true
2016-08-02 14:33:50 +00:00
}
2016-05-11 20:51:18 +00:00
2016-12-16 05:36:39 +00:00
// Start with passed-in policies as a baseline, if they exist
if len ( data . Policies ) > 0 {
finalPolicies = policyutil . SanitizePolicies ( data . Policies , localAddDefault )
2016-02-29 18:27:31 +00:00
}
2016-12-16 05:36:39 +00:00
var sanitizedRolePolicies [ ] string
// First check allowed policies; if policies are specified they will be
// checked, otherwise if an allowed set exists that will be the set
// that is used
if len ( role . AllowedPolicies ) > 0 {
// Note that if "default" is already in allowed, and also in
// disallowed, this will still result in an error later since this
// doesn't strip out default
sanitizedRolePolicies = policyutil . SanitizePolicies ( role . AllowedPolicies , localAddDefault )
if len ( finalPolicies ) == 0 {
finalPolicies = sanitizedRolePolicies
} else {
if ! strutil . StrListSubset ( sanitizedRolePolicies , finalPolicies ) {
2018-06-14 22:19:22 +00:00
return logical . ErrorResponse ( fmt . Sprintf ( "token policies (%q) must be subset of the role's allowed policies (%q)" , finalPolicies , sanitizedRolePolicies ) ) , logical . ErrInvalidRequest
2016-12-16 05:36:39 +00:00
}
}
} else {
2017-01-18 21:11:25 +00:00
// Assign parent policies if none have been requested. As this is a
// role, add default unless explicitly disabled.
2016-12-16 05:36:39 +00:00
if len ( finalPolicies ) == 0 {
finalPolicies = policyutil . SanitizePolicies ( parent . Policies , localAddDefault )
}
2016-08-02 14:33:50 +00:00
}
2016-12-16 05:36:39 +00:00
if len ( role . DisallowedPolicies ) > 0 {
// We don't add the default here because we only want to disallow it if it's explicitly set
2017-04-04 15:54:18 +00:00
sanitizedRolePolicies = strutil . RemoveDuplicates ( role . DisallowedPolicies , true )
2016-08-02 14:33:50 +00:00
2016-12-16 05:36:39 +00:00
for _ , finalPolicy := range finalPolicies {
if strutil . StrListContains ( sanitizedRolePolicies , finalPolicy ) {
return logical . ErrorResponse ( fmt . Sprintf ( "token policy %q is disallowed by this role" , finalPolicy ) ) , logical . ErrInvalidRequest
}
2016-08-02 14:33:50 +00:00
}
}
2016-12-16 05:36:39 +00:00
data . Policies = finalPolicies
2018-09-18 03:03:00 +00:00
// We are creating a token from a parent namespace. We should only use the input
// policies.
case ns . ID != parent . NamespaceID :
addDefault = ! data . NoDefaultPolicy
2016-12-16 05:36:39 +00:00
// No policies specified, inherit parent
2016-02-29 18:27:31 +00:00
case len ( data . Policies ) == 0 :
2016-12-16 05:36:39 +00:00
// Only inherit "default" if the parent already has it, so don't touch addDefault here
data . Policies = policyutil . SanitizePolicies ( parent . Policies , policyutil . DoNotAddDefaultPolicy )
2016-02-29 18:27:31 +00:00
2016-12-16 05:36:39 +00:00
// When a role is not in use or does not specify allowed/disallowed, only
// permit policies to be a subset unless the client has root or sudo
// privileges. Default is added in this case if the parent has it, unless
// the client specified for it not to be added.
2016-05-11 20:51:18 +00:00
case ! isSudo :
// Sanitize passed-in and parent policies before comparison
2016-12-16 05:36:39 +00:00
sanitizedInputPolicies := policyutil . SanitizePolicies ( data . Policies , policyutil . DoNotAddDefaultPolicy )
sanitizedParentPolicies := policyutil . SanitizePolicies ( parent . Policies , policyutil . DoNotAddDefaultPolicy )
2016-05-11 20:51:18 +00:00
if ! strutil . StrListSubset ( sanitizedParentPolicies , sanitizedInputPolicies ) {
return logical . ErrorResponse ( "child policies must be subset of parent" ) , logical . ErrInvalidRequest
}
2016-12-16 05:36:39 +00:00
// If the parent has default, and they haven't requested not to get it,
// add it. Note that if they have explicitly put "default" in
// data.Policies it will still be added because NoDefaultPolicy
// controls *automatic* adding.
if ! data . NoDefaultPolicy && strutil . StrListContains ( parent . Policies , "default" ) {
addDefault = true
}
// Add default by default in this case unless requested not to
case isSudo :
addDefault = ! data . NoDefaultPolicy
2015-03-24 22:10:46 +00:00
}
2015-12-30 20:18:30 +00:00
2016-12-16 05:36:39 +00:00
te . Policies = policyutil . SanitizePolicies ( data . Policies , addDefault )
// Yes, this is a little inefficient to do it like this, but meh
if data . NoDefaultPolicy {
te . Policies = strutil . StrListDelete ( te . Policies , "default" )
}
2015-03-24 22:10:46 +00:00
2016-08-13 01:01:30 +00:00
// Prevent internal policies from being assigned to tokens
for _ , policy := range te . Policies {
if strutil . StrListContains ( nonAssignablePolicies , policy ) {
2016-09-29 04:01:28 +00:00
return logical . ErrorResponse ( fmt . Sprintf ( "cannot assign policy %q" , policy ) ) , nil
2016-08-13 01:01:30 +00:00
}
}
2018-10-15 16:56:24 +00:00
if strutil . StrListContains ( te . Policies , "root" ) {
// Prevent attempts to create a root token without an actual root token as parent.
// This is to thwart privilege escalation by tokens having 'sudo' privileges.
if ! strutil . StrListContains ( parent . Policies , "root" ) {
return logical . ErrorResponse ( "root tokens may not be created without parent token being root" ) , logical . ErrInvalidRequest
}
if te . Type == logical . TokenTypeBatch {
// Batch tokens cannot be revoked so we should never have root batch tokens
return logical . ErrorResponse ( "batch tokens cannot be root tokens" ) , nil
}
2016-08-13 01:01:30 +00:00
}
//
// NOTE: Do not modify policies below this line. We need the checks above
// to be the last checks as they must look at the final policy set.
//
2016-02-29 18:27:31 +00:00
switch {
case role != nil :
if role . Orphan {
te . Parent = ""
}
2019-06-14 14:17:04 +00:00
if len ( role . TokenBoundCIDRs ) > 0 {
te . BoundCIDRs = role . TokenBoundCIDRs
2018-04-21 14:49:16 +00:00
}
2016-02-29 18:27:31 +00:00
case data . NoParent :
// Only allow an orphan token if the client has sudo policy
2015-09-18 23:59:06 +00:00
if ! isSudo {
return logical . ErrorResponse ( "root or sudo privileges required to create orphan token" ) ,
2015-03-24 22:10:46 +00:00
logical . ErrInvalidRequest
}
2015-04-07 21:16:35 +00:00
te . Parent = ""
2016-02-29 18:27:31 +00:00
default :
2015-11-03 20:10:46 +00:00
// This comes from create-orphan, which can be properly ACLd
if orphan {
te . Parent = ""
}
2015-03-24 22:10:46 +00:00
}
2017-10-11 17:21:20 +00:00
// At this point, it is clear whether the token is going to be an orphan or
2019-07-01 09:39:54 +00:00
// not. If setEntityID is set, the entity identifier will be overwritten.
// Otherwise, if the token is not going to be an orphan, inherit the parent's
2019-01-15 15:55:36 +00:00
// entity identifier into the child token.
2019-07-01 09:39:54 +00:00
switch {
case explicitEntityID != "" :
// Overwrite the entity identifier
te . EntityID = explicitEntityID
case te . Parent != "" :
2017-10-11 17:21:20 +00:00
te . EntityID = parent . EntityID
2019-01-15 15:55:36 +00:00
// If the parent has bound CIDRs, copy those into the child. We don't
// do this if role is not nil because then we always use the role's
// bound CIDRs; roles allow escalation of privilege in proper
// circumstances.
if role == nil {
te . BoundCIDRs = parent . BoundCIDRs
}
2017-10-11 17:21:20 +00:00
}
2018-04-03 16:20:20 +00:00
var explicitMaxTTLToUse time . Duration
2016-06-08 18:49:48 +00:00
if data . ExplicitMaxTTL != "" {
2017-03-07 16:21:22 +00:00
dur , err := parseutil . ParseDurationSecond ( data . ExplicitMaxTTL )
2016-06-08 18:49:48 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
2015-03-24 22:10:46 +00:00
}
2016-06-08 18:49:48 +00:00
if dur < 0 {
return logical . ErrorResponse ( "explicit_max_ttl must be positive" ) , logical . ErrInvalidRequest
2016-02-29 18:27:31 +00:00
}
2016-06-08 18:49:48 +00:00
te . ExplicitMaxTTL = dur
2018-04-03 16:20:20 +00:00
explicitMaxTTLToUse = dur
2016-06-08 18:49:48 +00:00
}
2015-09-18 20:33:52 +00:00
2016-08-16 20:47:46 +00:00
var periodToUse time . Duration
2016-08-13 01:01:30 +00:00
if data . Period != "" {
2017-03-07 16:21:22 +00:00
dur , err := parseutil . ParseDurationSecond ( data . Period )
2016-08-13 01:01:30 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
2018-02-01 17:01:46 +00:00
switch {
case dur < 0 :
2016-08-13 01:01:30 +00:00
return logical . ErrorResponse ( "period must be positive" ) , logical . ErrInvalidRequest
2018-02-01 17:01:46 +00:00
case dur == 0 :
default :
if ! isSudo {
return logical . ErrorResponse ( "root or sudo privileges required to create periodic token" ) ,
logical . ErrInvalidRequest
}
te . Period = dur
periodToUse = dur
2016-08-13 01:01:30 +00:00
}
}
2016-06-08 18:49:48 +00:00
// Parse the TTL/lease if any
if data . TTL != "" {
2017-03-07 16:21:22 +00:00
dur , err := parseutil . ParseDurationSecond ( data . TTL )
2016-06-08 18:49:48 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
if dur < 0 {
return logical . ErrorResponse ( "ttl must be positive" ) , logical . ErrInvalidRequest
}
te . TTL = dur
} else if data . Lease != "" {
// This block is compatibility
dur , err := time . ParseDuration ( data . Lease )
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
if dur < 0 {
return logical . ErrorResponse ( "lease must be positive" ) , logical . ErrInvalidRequest
2016-02-29 18:27:31 +00:00
}
2016-06-08 18:49:48 +00:00
te . TTL = dur
2015-03-24 22:10:46 +00:00
}
2018-10-15 16:56:24 +00:00
// Set the lesser period/explicit max TTL if defined both in arguments and
// in role. Batch tokens will error out if not set via role, but here we
// need to explicitly check
if role != nil && te . Type != logical . TokenTypeBatch {
2019-06-14 14:17:04 +00:00
if role . TokenExplicitMaxTTL != 0 {
2016-08-13 01:01:30 +00:00
switch {
2018-04-03 16:20:20 +00:00
case explicitMaxTTLToUse == 0 :
2019-06-14 14:17:04 +00:00
explicitMaxTTLToUse = role . TokenExplicitMaxTTL
2016-08-13 01:01:30 +00:00
default :
2019-06-14 14:17:04 +00:00
if role . TokenExplicitMaxTTL < explicitMaxTTLToUse {
explicitMaxTTLToUse = role . TokenExplicitMaxTTL
2016-08-13 01:01:30 +00:00
}
2018-04-03 16:20:20 +00:00
resp . AddWarning ( fmt . Sprintf ( "Explicit max TTL specified both during creation call and in role; using the lesser value of %d seconds" , int64 ( explicitMaxTTLToUse . Seconds ( ) ) ) )
2016-08-13 01:01:30 +00:00
}
}
2019-06-14 14:17:04 +00:00
if role . TokenPeriod != 0 {
2016-08-13 01:01:30 +00:00
switch {
2016-08-16 20:47:46 +00:00
case periodToUse == 0 :
2019-06-14 14:17:04 +00:00
periodToUse = role . TokenPeriod
2016-08-13 01:01:30 +00:00
default :
2019-06-14 14:17:04 +00:00
if role . TokenPeriod < periodToUse {
periodToUse = role . TokenPeriod
2016-08-13 01:01:30 +00:00
}
2016-08-16 20:47:46 +00:00
resp . AddWarning ( fmt . Sprintf ( "Period specified both during creation call and in role; using the lesser value of %d seconds" , int64 ( periodToUse . Seconds ( ) ) ) )
2016-06-08 18:49:48 +00:00
}
}
}
2016-05-11 20:51:18 +00:00
2019-08-26 14:23:46 +00:00
sysView := ts . System ( ) . ( extendedSystemView )
2016-06-08 18:49:48 +00:00
2018-04-03 16:20:20 +00:00
// Only calculate a TTL if you are A) periodic, B) have a TTL, C) do not have a TTL and are not a root token
if periodToUse > 0 || te . TTL > 0 || ( te . TTL == 0 && ! strutil . StrListContains ( te . Policies , "root" ) ) {
ttl , warnings , err := framework . CalculateTTL ( sysView , 0 , te . TTL , periodToUse , 0 , explicitMaxTTLToUse , time . Unix ( te . CreationTime , 0 ) )
if err != nil {
return nil , err
2016-08-13 01:01:30 +00:00
}
2018-04-03 16:20:20 +00:00
for _ , warning := range warnings {
resp . AddWarning ( warning )
2016-08-13 01:01:30 +00:00
}
2018-04-03 16:20:20 +00:00
te . TTL = ttl
2016-08-13 01:01:30 +00:00
}
2018-04-03 16:20:20 +00:00
// Root tokens are still bound by explicit max TTL
if te . TTL == 0 && explicitMaxTTLToUse > 0 {
te . TTL = explicitMaxTTLToUse
2016-06-08 18:49:48 +00:00
}
2016-05-11 20:51:18 +00:00
2018-04-21 14:49:16 +00:00
// Don't advertise non-expiring root tokens as renewable, as attempts to
// renew them are denied. Don't CIDR-restrict these either.
2016-08-05 15:15:25 +00:00
if te . TTL == 0 {
2016-08-10 00:32:40 +00:00
if parent . TTL != 0 {
return logical . ErrorResponse ( "expiring root tokens cannot create non-expiring root tokens" ) , logical . ErrInvalidRequest
}
2016-08-05 15:15:25 +00:00
renewable = false
2018-04-21 14:49:16 +00:00
te . BoundCIDRs = nil
2016-08-05 15:15:25 +00:00
}
2018-10-17 20:23:04 +00:00
if te . ID != "" {
resp . AddWarning ( "Supplying a custom ID for the token uses the weaker SHA1 hashing instead of the more secure SHA2-256 HMAC for token obfuscation. SHA1 hashed tokens on the wire leads to less secure lookups." )
}
2016-08-08 20:44:29 +00:00
// Create the token
2018-01-19 06:44:44 +00:00
if err := ts . create ( ctx , & te ) ; err != nil {
2016-08-08 20:44:29 +00:00
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
2020-06-02 18:40:54 +00:00
// Count the successful token creation.
ttl_label := metricsutil . TTLBucket ( te . TTL )
2020-07-14 19:28:11 +00:00
mountPointWithoutNs := ns . TrimmedPath ( req . MountPoint )
2020-06-02 18:40:54 +00:00
ts . core . metricSink . IncrCounterWithLabels (
[ ] string { "token" , "creation" } ,
1 ,
[ ] metrics . Label {
2020-10-13 23:38:21 +00:00
metricsutil . NamespaceLabel ( ns ) ,
2020-06-02 18:40:54 +00:00
{ "auth_method" , "token" } ,
2020-07-14 19:28:11 +00:00
{ "mount_point" , mountPointWithoutNs } , // path, not accessor
2020-06-02 18:40:54 +00:00
{ "creation_ttl" , ttl_label } ,
{ "token_type" , tokenType . String ( ) } ,
} ,
)
2015-03-24 22:10:46 +00:00
// Generate the response
2016-05-11 20:51:18 +00:00
resp . Auth = & logical . Auth {
2017-03-08 22:36:50 +00:00
NumUses : te . NumUses ,
2016-05-11 20:51:18 +00:00
DisplayName : te . DisplayName ,
Policies : te . Policies ,
Metadata : te . Meta ,
LeaseOptions : logical . LeaseOptions {
TTL : te . TTL ,
2016-06-08 15:14:30 +00:00
Renewable : renewable ,
2015-03-24 22:10:46 +00:00
} ,
2018-04-03 16:20:20 +00:00
ClientToken : te . ID ,
Accessor : te . Accessor ,
EntityID : te . EntityID ,
Period : periodToUse ,
ExplicitMaxTTL : explicitMaxTTLToUse ,
2018-06-03 22:14:51 +00:00
CreationPath : te . Path ,
2018-10-15 16:56:24 +00:00
TokenType : te . Type ,
2019-03-01 23:55:58 +00:00
Orphan : te . Parent == "" ,
2015-03-24 22:10:46 +00:00
}
2015-03-31 03:26:39 +00:00
2018-09-18 03:03:00 +00:00
for _ , p := range te . Policies {
policy , err := ts . core . policyStore . GetPolicy ( ctx , p , PolicyTypeToken )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "could not look up policy %s" , p ) ) , nil
}
if policy == nil {
resp . AddWarning ( fmt . Sprintf ( "Policy %q does not exist" , p ) )
2015-10-07 19:30:54 +00:00
}
}
2015-03-24 22:10:46 +00:00
return resp , nil
}
2015-09-17 17:22:30 +00:00
// handleRevokeSelf handles the auth/token/revoke-self path for revocation of tokens
// in a way that revokes all child tokens. Normally, using sys/revoke/leaseID will revoke
// the token and all children anyways, but that is only available when there is a lease.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleRevokeSelf ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2018-10-15 16:56:24 +00:00
return ts . revokeCommon ( ctx , req , data , req . ClientToken )
2015-09-17 17:22:30 +00:00
}
2015-03-24 22:30:09 +00:00
// handleRevokeTree handles the auth/token/revoke/id path for revocation of tokens
2015-04-08 20:35:32 +00:00
// in a way that revokes all child tokens. Normally, using sys/revoke/leaseID will revoke
2015-03-24 22:30:09 +00:00
// the token and all children anyways, but that is only available when there is a lease.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleRevokeTree ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-03-31 19:48:19 +00:00
id := data . Get ( "token" ) . ( string )
2015-03-24 22:30:09 +00:00
if id == "" {
2018-11-19 21:58:19 +00:00
return logical . ErrorResponse ( "missing token ID" ) , logical . ErrInvalidRequest
2015-03-24 22:30:09 +00:00
}
2018-10-15 16:56:24 +00:00
if resp , err := ts . revokeCommon ( ctx , req , data , id ) ; resp != nil || err != nil {
return resp , err
}
return nil , nil
}
func ( ts * TokenStore ) revokeCommon ( ctx context . Context , req * logical . Request , data * framework . FieldData , id string ) ( * logical . Response , error ) {
2018-05-10 19:50:02 +00:00
te , err := ts . Lookup ( ctx , id )
if err != nil {
return nil , err
}
if te == nil {
2018-09-18 03:03:00 +00:00
return nil , nil
2018-05-10 19:50:02 +00:00
}
2018-10-15 16:56:24 +00:00
if te . Type == logical . TokenTypeBatch {
return logical . ErrorResponse ( "batch tokens cannot be revoked" ) , nil
}
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , te . NamespaceID , ts . core )
2018-05-10 19:50:02 +00:00
if err != nil {
return nil , err
}
2018-09-18 03:03:00 +00:00
if tokenNS == nil {
return nil , namespace . ErrNoNamespace
}
2018-05-10 19:50:02 +00:00
2018-09-18 03:03:00 +00:00
revokeCtx := namespace . ContextWithNamespace ( ts . quitContext , tokenNS )
leaseID , err := ts . expiration . CreateOrFetchRevocationLeaseByToken ( revokeCtx , te )
if err != nil {
return nil , err
}
err = ts . expiration . Revoke ( revokeCtx , leaseID )
2018-05-10 19:50:02 +00:00
if err != nil {
return nil , err
2015-03-24 22:30:09 +00:00
}
2016-08-29 19:15:57 +00:00
2015-03-24 22:30:09 +00:00
return nil , nil
}
2015-03-24 22:10:46 +00:00
// handleRevokeOrphan handles the auth/token/revoke-orphan/id path for revocation of tokens
2015-04-08 20:35:32 +00:00
// in a way that leaves child tokens orphaned. Normally, using sys/revoke/leaseID will revoke
2015-03-24 22:10:46 +00:00
// the token and all children.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleRevokeOrphan ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-03-24 22:30:09 +00:00
// Parse the id
2015-03-31 19:48:19 +00:00
id := data . Get ( "token" ) . ( string )
2015-03-24 22:30:09 +00:00
if id == "" {
2018-11-19 21:58:19 +00:00
return logical . ErrorResponse ( "missing token ID" ) , logical . ErrInvalidRequest
2015-03-24 22:30:09 +00:00
}
2015-09-21 14:04:03 +00:00
// Check if the client token has sudo/root privileges for the requested path
2019-08-26 14:23:46 +00:00
isSudo := ts . System ( ) . ( extendedSystemView ) . SudoPrivilege ( ctx , req . MountPoint + req . Path , req . ClientToken )
2015-09-16 13:22:15 +00:00
2015-09-18 23:59:06 +00:00
if ! isSudo {
return logical . ErrorResponse ( "root or sudo privileges required to revoke and orphan" ) ,
2015-09-16 13:22:15 +00:00
logical . ErrInvalidRequest
}
2018-09-18 03:03:00 +00:00
// Do a lookup. Among other things, that will ensure that this is either
// running in the same namespace or a parent.
te , err := ts . Lookup ( ctx , id )
if err != nil {
return nil , errwrap . Wrapf ( "error when looking up token to revoke: {{err}}" , err )
}
if te == nil {
return logical . ErrorResponse ( "token to revoke not found" ) , logical . ErrInvalidRequest
}
2018-10-15 16:56:24 +00:00
if te . Type == logical . TokenTypeBatch {
return logical . ErrorResponse ( "batch tokens cannot be revoked" ) , nil
}
2015-03-24 22:30:09 +00:00
// Revoke and orphan
2018-05-10 19:50:02 +00:00
if err := ts . revokeOrphan ( ctx , id ) ; err != nil {
2015-03-24 22:30:09 +00:00
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
2016-08-29 19:15:57 +00:00
2015-03-20 20:54:57 +00:00
return nil , nil
}
2015-03-24 22:10:46 +00:00
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleLookupSelf ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-04-28 19:15:37 +00:00
data . Raw [ "token" ] = req . ClientToken
2018-01-08 18:31:38 +00:00
return ts . handleLookup ( ctx , req , data )
2016-04-28 19:15:37 +00:00
}
2015-03-24 22:39:33 +00:00
// handleLookup handles the auth/token/lookup/id path for querying information about
// a particular token. This can be used to see which policies are applicable.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleLookup ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-03-31 19:48:19 +00:00
id := data . Get ( "token" ) . ( string )
2015-03-31 19:50:07 +00:00
if id == "" {
id = req . ClientToken
}
2015-03-24 22:39:33 +00:00
if id == "" {
return logical . ErrorResponse ( "missing token ID" ) , logical . ErrInvalidRequest
}
2017-03-07 16:21:32 +00:00
lock := locksutil . LockForKey ( ts . tokenLocks , id )
2016-12-16 18:11:55 +00:00
lock . RLock ( )
defer lock . RUnlock ( )
2018-09-18 03:03:00 +00:00
out , err := ts . lookupInternal ( ctx , id , false , true )
2015-03-24 22:39:33 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
if out == nil {
2015-06-19 01:30:18 +00:00
return logical . ErrorResponse ( "bad token" ) , logical . ErrPermissionDenied
2015-03-24 22:39:33 +00:00
}
// Generate a response. We purposely omit the parent reference otherwise
2015-10-02 17:33:19 +00:00
// you could escalate your privileges.
2015-03-24 22:39:33 +00:00
resp := & logical . Response {
Data : map [ string ] interface { } {
2016-05-11 20:51:18 +00:00
"id" : out . ID ,
"accessor" : out . Accessor ,
"policies" : out . Policies ,
"path" : out . Path ,
"meta" : out . Meta ,
"display_name" : out . DisplayName ,
"num_uses" : out . NumUses ,
"orphan" : false ,
"creation_time" : int64 ( out . CreationTime ) ,
"creation_ttl" : int64 ( out . TTL . Seconds ( ) ) ,
2017-05-04 02:03:42 +00:00
"expire_time" : nil ,
2016-05-11 20:51:18 +00:00
"ttl" : int64 ( 0 ) ,
"explicit_max_ttl" : int64 ( out . ExplicitMaxTTL . Seconds ( ) ) ,
2017-10-11 17:21:20 +00:00
"entity_id" : out . EntityID ,
2018-10-15 16:56:24 +00:00
"type" : out . Type . String ( ) ,
2015-03-24 22:39:33 +00:00
} ,
}
2015-11-09 18:19:59 +00:00
if out . Parent == "" {
resp . Data [ "orphan" ] = true
}
2016-08-13 01:01:30 +00:00
if out . Role != "" {
resp . Data [ "role" ] = out . Role
2016-08-16 20:47:46 +00:00
}
2018-04-21 14:49:16 +00:00
2016-08-16 20:47:46 +00:00
if out . Period != 0 {
2016-08-13 01:01:30 +00:00
resp . Data [ "period" ] = int64 ( out . Period . Seconds ( ) )
}
2018-04-21 14:49:16 +00:00
if len ( out . BoundCIDRs ) > 0 {
resp . Data [ "bound_cidrs" ] = out . BoundCIDRs
}
2018-09-18 03:03:00 +00:00
tokenNS , err := NamespaceByID ( ctx , out . NamespaceID , ts . core )
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
if tokenNS == nil {
return nil , namespace . ErrNoNamespace
}
if out . NamespaceID != namespace . RootNamespaceID {
resp . Data [ "namespace_path" ] = tokenNS . Path
}
2016-01-04 21:43:07 +00:00
// Fetch the last renewal time
2018-09-18 03:03:00 +00:00
leaseTimes , err := ts . expiration . FetchLeaseTimesByToken ( ctx , out )
2016-01-04 21:43:07 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , logical . ErrInvalidRequest
}
2016-02-01 16:16:32 +00:00
if leaseTimes != nil {
if ! leaseTimes . LastRenewalTime . IsZero ( ) {
resp . Data [ "last_renewal_time" ] = leaseTimes . LastRenewalTime . Unix ( )
2017-05-04 02:03:42 +00:00
resp . Data [ "last_renewal" ] = leaseTimes . LastRenewalTime
2016-02-01 16:16:32 +00:00
}
if ! leaseTimes . ExpireTime . IsZero ( ) {
2017-05-04 02:03:42 +00:00
resp . Data [ "expire_time" ] = leaseTimes . ExpireTime
resp . Data [ "ttl" ] = leaseTimes . ttl ( )
2016-06-01 21:30:31 +00:00
}
2017-05-04 02:03:42 +00:00
renewable , _ := leaseTimes . renewable ( )
resp . Data [ "renewable" ] = renewable
resp . Data [ "issue_time" ] = leaseTimes . IssueTime
2016-01-04 21:43:07 +00:00
}
2018-04-17 15:16:26 +00:00
if out . EntityID != "" {
2018-09-18 03:03:00 +00:00
_ , identityPolicies , err := ts . core . fetchEntityAndDerivedPolicies ( ctx , tokenNS , out . EntityID )
2018-04-17 15:16:26 +00:00
if err != nil {
return nil , err
}
if len ( identityPolicies ) != 0 {
2018-09-18 03:03:00 +00:00
resp . Data [ "identity_policies" ] = identityPolicies [ out . NamespaceID ]
delete ( identityPolicies , out . NamespaceID )
resp . Data [ "external_namespace_policies" ] = identityPolicies
2018-04-17 15:16:26 +00:00
}
}
2015-03-24 22:39:33 +00:00
return resp , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleRenewSelf ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-10-07 16:49:13 +00:00
data . Raw [ "token" ] = req . ClientToken
2018-01-08 18:31:38 +00:00
return ts . handleRenew ( ctx , req , data )
2015-10-07 16:49:13 +00:00
}
2015-04-03 19:11:49 +00:00
// handleRenew handles the auth/token/renew/id path for renewal of tokens.
// This is used to prevent token expiration and revocation.
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) handleRenew ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-04-03 19:11:49 +00:00
id := data . Get ( "token" ) . ( string )
if id == "" {
2018-11-19 21:58:19 +00:00
return logical . ErrorResponse ( "missing token ID" ) , logical . ErrInvalidRequest
2015-04-03 19:11:49 +00:00
}
2015-04-09 21:23:37 +00:00
incrementRaw := data . Get ( "increment" ) . ( int )
// Convert the increment
increment := time . Duration ( incrementRaw ) * time . Second
2015-04-03 19:11:49 +00:00
// Lookup the token
2018-01-19 06:44:44 +00:00
te , err := ts . Lookup ( ctx , id )
2015-04-03 19:11:49 +00:00
if err != nil {
2018-09-18 03:03:00 +00:00
return nil , errwrap . Wrapf ( "error looking up token to renew: {{err}}" , err )
2015-04-03 19:11:49 +00:00
}
2015-12-30 19:30:02 +00:00
if te == nil {
2015-04-03 19:11:49 +00:00
return logical . ErrorResponse ( "token not found" ) , logical . ErrInvalidRequest
}
2018-10-15 16:56:24 +00:00
var resp * logical . Response
if te . Type == logical . TokenTypeBatch {
return logical . ErrorResponse ( "batch tokens cannot be renewed" ) , nil
}
2015-10-09 21:11:31 +00:00
// Renew the token and its children
2018-10-15 16:56:24 +00:00
resp , err = ts . expiration . RenewToken ( ctx , req , te , increment )
2016-08-29 19:15:57 +00:00
return resp , err
2015-04-03 19:11:49 +00:00
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) authRenew ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2016-02-29 18:27:31 +00:00
if req . Auth == nil {
return nil , fmt . Errorf ( "request auth is nil" )
}
2016-01-29 22:44:09 +00:00
2018-01-19 06:44:44 +00:00
te , err := ts . Lookup ( ctx , req . Auth . ClientToken )
2016-02-29 18:27:31 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "error looking up token: {{err}}" , err )
2016-02-29 18:27:31 +00:00
}
if te == nil {
return nil , fmt . Errorf ( "no token entry found during lookup" )
}
if te . Role == "" {
2018-04-03 16:20:20 +00:00
req . Auth . Period = te . Period
req . Auth . ExplicitMaxTTL = te . ExplicitMaxTTL
return & logical . Response { Auth : req . Auth } , nil
2016-02-29 18:27:31 +00:00
}
2018-01-19 06:44:44 +00:00
role , err := ts . tokenStoreRole ( ctx , te . Role )
2016-02-29 18:27:31 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( fmt . Sprintf ( "error looking up role %q: {{err}}" , te . Role ) , err )
2016-02-29 18:27:31 +00:00
}
if role == nil {
2018-04-05 15:49:21 +00:00
return nil , fmt . Errorf ( "original token role %q could not be found, not renewing" , te . Role )
2016-02-29 18:27:31 +00:00
}
2019-06-14 14:17:04 +00:00
req . Auth . Period = role . TokenPeriod
req . Auth . ExplicitMaxTTL = role . TokenExplicitMaxTTL
2018-04-03 16:20:20 +00:00
return & logical . Response { Auth : req . Auth } , nil
2016-01-29 22:44:09 +00:00
}
2018-01-19 06:44:44 +00:00
func ( ts * TokenStore ) tokenStoreRole ( ctx context . Context , name string ) ( * tsRoleEntry , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
entry , err := ts . rolesView ( ns ) . Get ( ctx , name )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
if entry == nil {
return nil , nil
}
var result tsRoleEntry
if err := entry . DecodeJSON ( & result ) ; err != nil {
return nil , err
}
2018-11-07 14:45:09 +00:00
if result . TokenType == logical . TokenTypeDefault {
result . TokenType = logical . TokenTypeDefaultService
}
2019-06-14 14:17:04 +00:00
// Token field upgrades. We preserve the original value for read
// compatibility.
if result . Period > 0 && result . TokenPeriod == 0 {
result . TokenPeriod = result . Period
}
if result . ExplicitMaxTTL > 0 && result . TokenExplicitMaxTTL == 0 {
result . TokenExplicitMaxTTL = result . ExplicitMaxTTL
}
if len ( result . BoundCIDRs ) > 0 && len ( result . TokenBoundCIDRs ) == 0 {
result . TokenBoundCIDRs = result . BoundCIDRs
}
2016-02-29 18:27:31 +00:00
return & result , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreRoleList ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
entries , err := ts . rolesView ( ns ) . List ( ctx , "" )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
2016-02-29 19:13:09 +00:00
ret := make ( [ ] string , len ( entries ) )
for i , entry := range entries {
2016-03-01 17:33:35 +00:00
ret [ i ] = strings . TrimPrefix ( entry , rolesPrefix )
2016-02-29 19:13:09 +00:00
}
return logical . ListResponse ( ret ) , nil
2016-02-29 18:27:31 +00:00
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreRoleDelete ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
err = ts . rolesView ( ns ) . Delete ( ctx , data . Get ( "role_name" ) . ( string ) )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
return nil , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreRoleRead ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
role , err := ts . tokenStoreRole ( ctx , data . Get ( "role_name" ) . ( string ) )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
if role == nil {
return nil , nil
}
2019-06-14 14:17:04 +00:00
// TODO (1.4): Remove "period" and "explicit_max_ttl" if they're zero
2016-02-29 18:27:31 +00:00
resp := & logical . Response {
2016-05-11 20:51:18 +00:00
Data : map [ string ] interface { } {
2019-06-14 14:17:04 +00:00
"period" : int64 ( role . Period . Seconds ( ) ) ,
"token_period" : int64 ( role . TokenPeriod . Seconds ( ) ) ,
"explicit_max_ttl" : int64 ( role . ExplicitMaxTTL . Seconds ( ) ) ,
"token_explicit_max_ttl" : int64 ( role . TokenExplicitMaxTTL . Seconds ( ) ) ,
"disallowed_policies" : role . DisallowedPolicies ,
"allowed_policies" : role . AllowedPolicies ,
"name" : role . Name ,
"orphan" : role . Orphan ,
"path_suffix" : role . PathSuffix ,
"renewable" : role . Renewable ,
"token_type" : role . TokenType . String ( ) ,
2019-07-01 09:39:54 +00:00
"allowed_entity_aliases" : role . AllowedEntityAliases ,
2016-05-11 20:51:18 +00:00
} ,
2016-04-14 10:10:22 +00:00
}
2019-06-14 14:17:04 +00:00
if len ( role . TokenBoundCIDRs ) > 0 {
resp . Data [ "token_bound_cidrs" ] = role . TokenBoundCIDRs
}
2018-04-21 14:49:16 +00:00
if len ( role . BoundCIDRs ) > 0 {
resp . Data [ "bound_cidrs" ] = role . BoundCIDRs
}
2019-06-14 14:17:04 +00:00
if role . TokenNumUses > 0 {
resp . Data [ "token_num_uses" ] = role . TokenNumUses
}
2018-04-21 14:49:16 +00:00
2016-02-29 18:27:31 +00:00
return resp , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreRoleExistenceCheck ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( bool , error ) {
2016-03-09 16:59:54 +00:00
name := data . Get ( "role_name" ) . ( string )
if name == "" {
return false , fmt . Errorf ( "role name cannot be empty" )
}
2018-01-19 06:44:44 +00:00
role , err := ts . tokenStoreRole ( ctx , name )
2016-03-09 16:59:54 +00:00
if err != nil {
return false , err
}
return role != nil , nil
}
2018-01-08 18:31:38 +00:00
func ( ts * TokenStore ) tokenStoreRoleCreateUpdate ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-02-29 18:27:31 +00:00
name := data . Get ( "role_name" ) . ( string )
if name == "" {
return logical . ErrorResponse ( "role name cannot be empty" ) , nil
}
2018-01-19 06:44:44 +00:00
entry , err := ts . tokenStoreRole ( ctx , name )
2016-03-09 16:59:54 +00:00
if err != nil {
return nil , err
}
2016-02-29 18:27:31 +00:00
2016-03-09 16:59:54 +00:00
// Due to the existence check, entry will only be nil if it's a create
// operation, so just create a new one
if entry == nil {
entry = & tsRoleEntry {
Name : name ,
2016-02-29 18:27:31 +00:00
}
}
2019-06-14 14:17:04 +00:00
// First parse fields not duplicated by the token helper
{
orphanInt , ok := data . GetOk ( "orphan" )
if ok {
entry . Orphan = orphanInt . ( bool )
} else if req . Operation == logical . CreateOperation {
entry . Orphan = data . Get ( "orphan" ) . ( bool )
}
2016-02-29 18:27:31 +00:00
2019-06-14 14:17:04 +00:00
renewableInt , ok := data . GetOk ( "renewable" )
if ok {
entry . Renewable = renewableInt . ( bool )
} else if req . Operation == logical . CreateOperation {
entry . Renewable = data . Get ( "renewable" ) . ( bool )
}
2016-06-08 19:17:22 +00:00
2019-06-14 14:17:04 +00:00
pathSuffixInt , ok := data . GetOk ( "path_suffix" )
if ok {
pathSuffix := pathSuffixInt . ( string )
switch {
case pathSuffix != "" :
matched := pathSuffixSanitize . MatchString ( pathSuffix )
if ! matched {
return logical . ErrorResponse ( fmt . Sprintf (
"given role path suffix contains invalid characters; must match %s" ,
pathSuffixSanitize . String ( ) ) ) , nil
2018-04-21 14:49:16 +00:00
}
}
2019-06-14 14:17:04 +00:00
entry . PathSuffix = pathSuffix
} else if req . Operation == logical . CreateOperation {
entry . PathSuffix = data . Get ( "path_suffix" ) . ( string )
2018-04-21 14:49:16 +00:00
}
2019-06-14 14:17:04 +00:00
if strings . Contains ( entry . PathSuffix , ".." ) {
return logical . ErrorResponse ( fmt . Sprintf ( "error registering path suffix: %s" , consts . ErrPathContainsParentReferences ) ) , nil
}
2016-05-11 20:51:18 +00:00
2019-06-14 14:17:04 +00:00
allowedPoliciesRaw , ok := data . GetOk ( "allowed_policies" )
if ok {
entry . AllowedPolicies = policyutil . SanitizePolicies ( allowedPoliciesRaw . ( [ ] string ) , policyutil . DoNotAddDefaultPolicy )
} else if req . Operation == logical . CreateOperation {
entry . AllowedPolicies = policyutil . SanitizePolicies ( data . Get ( "allowed_policies" ) . ( [ ] string ) , policyutil . DoNotAddDefaultPolicy )
}
disallowedPoliciesRaw , ok := data . GetOk ( "disallowed_policies" )
if ok {
entry . DisallowedPolicies = strutil . RemoveDuplicates ( disallowedPoliciesRaw . ( [ ] string ) , true )
} else if req . Operation == logical . CreateOperation {
entry . DisallowedPolicies = strutil . RemoveDuplicates ( data . Get ( "disallowed_policies" ) . ( [ ] string ) , true )
}
2016-05-11 20:51:18 +00:00
}
2019-07-03 03:29:42 +00:00
// We handle token type a bit differently than tokenutil does so we need to
// cache and handle it after
var tokenTypeStr * string
2019-07-03 04:11:51 +00:00
oldEntryTokenType := entry . TokenType
2019-07-03 03:29:42 +00:00
if tokenTypeRaw , ok := data . Raw [ "token_type" ] ; ok {
tokenTypeStr = new ( string )
* tokenTypeStr = tokenTypeRaw . ( string )
delete ( data . Raw , "token_type" )
2019-07-03 04:11:51 +00:00
entry . TokenType = logical . TokenTypeDefault
2019-07-03 03:29:42 +00:00
}
2019-06-14 14:17:04 +00:00
// Next parse token fields from the helper
if err := entry . ParseTokenFields ( req , data ) ; err != nil {
return logical . ErrorResponse ( errwrap . Wrapf ( "error parsing role fields: {{err}}" , err ) . Error ( ) ) , nil
}
2019-07-03 04:11:51 +00:00
entry . TokenType = oldEntryTokenType
if entry . TokenType == logical . TokenTypeDefault {
entry . TokenType = logical . TokenTypeDefaultService
2019-07-03 03:29:42 +00:00
}
if tokenTypeStr != nil {
switch * tokenTypeStr {
case "service" :
entry . TokenType = logical . TokenTypeService
case "batch" :
entry . TokenType = logical . TokenTypeBatch
case "default-service" :
entry . TokenType = logical . TokenTypeDefaultService
case "default-batch" :
entry . TokenType = logical . TokenTypeDefaultBatch
default :
return logical . ErrorResponse ( fmt . Sprintf ( "invalid 'token_type' value %q" , * tokenTypeStr ) ) , nil
}
}
2019-06-14 14:17:04 +00:00
var resp * logical . Response
// Now handle backwards compat. Prefer token_ fields over others if both
// are set. We set the original fields here so that on read of token role
// we can return the same values that were set. We clear out the Token*
// values because otherwise when we read the role back we'll read stale
// data since if they're not emptied they'll take precedence.
periodRaw , ok := data . GetOk ( "token_period" )
if ! ok {
periodRaw , ok = data . GetOk ( "period" )
if ok {
entry . Period = time . Second * time . Duration ( periodRaw . ( int ) )
2019-06-30 18:24:41 +00:00
entry . TokenPeriod = entry . Period
2019-06-14 14:17:04 +00:00
}
} else {
_ , ok = data . GetOk ( "period" )
if ok {
2016-05-11 20:51:18 +00:00
if resp == nil {
resp = & logical . Response { }
}
2019-06-14 14:17:04 +00:00
resp . AddWarning ( "Both 'token_period' and deprecated 'period' value supplied, ignoring the deprecated value" )
2016-05-11 20:51:18 +00:00
}
2019-06-14 14:17:04 +00:00
entry . Period = 0
2016-05-11 20:51:18 +00:00
}
2019-06-14 14:17:04 +00:00
boundCIDRsRaw , ok := data . GetOk ( "token_bound_cidrs" )
if ! ok {
boundCIDRsRaw , ok = data . GetOk ( "bound_cidrs" )
if ok {
boundCIDRs , err := parseutil . ParseAddrs ( boundCIDRsRaw . ( [ ] string ) )
if err != nil {
return logical . ErrorResponse ( errwrap . Wrapf ( "error parsing bound_cidrs: {{err}}" , err ) . Error ( ) ) , nil
2016-03-09 16:59:54 +00:00
}
2019-06-14 14:17:04 +00:00
entry . BoundCIDRs = boundCIDRs
2019-06-30 18:24:41 +00:00
entry . TokenBoundCIDRs = entry . BoundCIDRs
2016-03-09 16:59:54 +00:00
}
2019-06-14 14:17:04 +00:00
} else {
_ , ok = data . GetOk ( "bound_cidrs" )
if ok {
if resp == nil {
resp = & logical . Response { }
}
resp . AddWarning ( "Both 'token_bound_cidrs' and deprecated 'bound_cidrs' value supplied, ignoring the deprecated value" )
}
entry . BoundCIDRs = nil
2017-05-12 17:52:33 +00:00
}
2019-06-14 14:17:04 +00:00
finalExplicitMaxTTL := entry . TokenExplicitMaxTTL
explicitMaxTTLRaw , ok := data . GetOk ( "token_explicit_max_ttl" )
if ! ok {
explicitMaxTTLRaw , ok = data . GetOk ( "explicit_max_ttl" )
if ok {
entry . ExplicitMaxTTL = time . Second * time . Duration ( explicitMaxTTLRaw . ( int ) )
2019-06-30 18:24:41 +00:00
entry . TokenExplicitMaxTTL = entry . ExplicitMaxTTL
2019-06-14 14:17:04 +00:00
}
finalExplicitMaxTTL = entry . ExplicitMaxTTL
} else {
_ , ok = data . GetOk ( "explicit_max_ttl" )
if ok {
if resp == nil {
resp = & logical . Response { }
}
resp . AddWarning ( "Both 'token_explicit_max_ttl' and deprecated 'explicit_max_ttl' value supplied, ignoring the deprecated value" )
}
entry . ExplicitMaxTTL = 0
2016-08-02 14:33:50 +00:00
}
2019-06-14 14:17:04 +00:00
if finalExplicitMaxTTL != 0 {
sysView := ts . System ( )
2016-08-02 14:33:50 +00:00
2019-06-14 14:17:04 +00:00
if sysView . MaxLeaseTTL ( ) != time . Duration ( 0 ) && finalExplicitMaxTTL > sysView . MaxLeaseTTL ( ) {
if resp == nil {
resp = & logical . Response { }
}
resp . AddWarning ( fmt . Sprintf (
"Given explicit max TTL of %d is greater than system/mount allowed value of %d seconds; until this is fixed attempting to create tokens against this role will result in an error" ,
int64 ( finalExplicitMaxTTL . Seconds ( ) ) , int64 ( sysView . MaxLeaseTTL ( ) . Seconds ( ) ) ) )
}
2016-02-29 18:27:31 +00:00
}
2019-06-14 14:17:04 +00:00
// no legacy version without the token_ prefix to check for
tokenNumUses , ok := data . GetOk ( "token_num_uses" )
2018-10-15 16:56:24 +00:00
if ok {
2019-06-14 14:17:04 +00:00
entry . TokenNumUses = tokenNumUses . ( int )
2018-10-15 16:56:24 +00:00
}
2019-06-14 14:17:04 +00:00
// Run validity checks on token type
2018-10-15 16:56:24 +00:00
if entry . TokenType == logical . TokenTypeBatch {
if ! entry . Orphan {
return logical . ErrorResponse ( "'token_type' cannot be 'batch' when role is set to generate non-orphan tokens" ) , nil
}
2019-06-14 14:17:04 +00:00
if entry . Period != 0 || entry . TokenPeriod != 0 {
2018-10-15 16:56:24 +00:00
return logical . ErrorResponse ( "'token_type' cannot be 'batch' when role is set to generate periodic tokens" ) , nil
}
if entry . Renewable {
return logical . ErrorResponse ( "'token_type' cannot be 'batch' when role is set to generate renewable tokens" ) , nil
}
2019-06-14 14:17:04 +00:00
if entry . ExplicitMaxTTL != 0 || entry . TokenExplicitMaxTTL != 0 {
2018-10-15 16:56:24 +00:00
return logical . ErrorResponse ( "'token_type' cannot be 'batch' when role is set to generate tokens with an explicit max TTL" ) , nil
}
}
2019-07-01 09:39:54 +00:00
allowedEntityAliasesRaw , ok := data . GetOk ( "allowed_entity_aliases" )
if ok {
entry . AllowedEntityAliases = strutil . RemoveDuplicates ( allowedEntityAliasesRaw . ( [ ] string ) , true )
}
2018-09-18 03:03:00 +00:00
ns , err := namespace . FromContext ( ctx )
if err != nil {
return nil , err
}
2016-02-29 18:27:31 +00:00
// Store it
2018-09-18 03:03:00 +00:00
jsonEntry , err := logical . StorageEntryJSON ( name , entry )
2016-02-29 18:27:31 +00:00
if err != nil {
return nil , err
}
2018-09-18 03:03:00 +00:00
if err := ts . rolesView ( ns ) . Put ( ctx , jsonEntry ) ; err != nil {
2016-02-29 18:27:31 +00:00
return nil , err
}
2016-05-11 20:51:18 +00:00
return resp , nil
2016-02-29 18:27:31 +00:00
}
2020-06-23 23:36:24 +00:00
func suppressRestoreModeError ( err error ) error {
if err != nil {
if strings . Contains ( err . Error ( ) , ErrInRestoreMode . Error ( ) ) {
return nil
}
}
return err
}
2020-06-15 23:54:36 +00:00
// gaugeCollector is responsible for counting the number of tokens by
// namespace. Separate versions cover the other two counts; this is somewhat
// less efficient than doing just one pass over the tokens and can
// be fixed later.
func ( ts * TokenStore ) gaugeCollector ( ctx context . Context ) ( [ ] metricsutil . GaugeLabelValues , error ) {
if ts . expiration == nil {
return [ ] metricsutil . GaugeLabelValues { } , errors . New ( "expiration manager is nil" )
}
allNamespaces := ts . core . collectNamespaces ( )
values := make ( [ ] metricsutil . GaugeLabelValues , len ( allNamespaces ) )
namespacePosition := make ( map [ string ] int )
// If we increment the float32 value by 1.0 each time, then we cap out
// at around 16 million. So, we should keep a separate integer array
// to potentially handle a larger number of tokens.
intValues := make ( [ ] int , len ( allNamespaces ) )
for i , ns := range allNamespaces {
2020-10-13 23:38:21 +00:00
values [ i ] . Labels = [ ] metrics . Label { metricsutil . NamespaceLabel ( ns ) }
2020-06-15 23:54:36 +00:00
namespacePosition [ ns . ID ] = i
}
2020-06-23 23:36:24 +00:00
err := ts . expiration . WalkTokens ( func ( leaseID string , auth * logical . Auth , path string ) bool {
2020-06-15 23:54:36 +00:00
select {
// Abort and return empty collection if it's taking too much time, nonblocking check.
case <- ctx . Done ( ) :
return false
default :
_ , nsID := namespace . SplitIDFromString ( leaseID )
if nsID == "" {
nsID = namespace . RootNamespaceID
}
// A new namespace could be created while
// we're counting, ignore it until the next iteration.
pos , ok := namespacePosition [ nsID ]
if ok {
intValues [ pos ] += 1
}
return true
}
} )
2020-06-23 23:36:24 +00:00
if err != nil {
return [ ] metricsutil . GaugeLabelValues { } , suppressRestoreModeError ( err )
}
2020-06-15 23:54:36 +00:00
// If collection was cancelled, return an empty array.
select {
case <- ctx . Done ( ) :
return [ ] metricsutil . GaugeLabelValues { } , nil
2020-06-23 23:36:24 +00:00
default :
break
2020-06-15 23:54:36 +00:00
}
for i := range values {
values [ i ] . Value = float32 ( intValues [ i ] )
}
return values , nil
}
2020-06-23 23:36:24 +00:00
func ( ts * TokenStore ) gaugeCollectorByPolicy ( ctx context . Context ) ( [ ] metricsutil . GaugeLabelValues , error ) {
if ts . expiration == nil {
return [ ] metricsutil . GaugeLabelValues { } , errors . New ( "expiration manager is nil" )
}
allNamespaces := ts . core . collectNamespaces ( )
byNsAndPolicy := make ( map [ string ] map [ string ] int )
err := ts . expiration . WalkTokens ( func ( leaseID string , auth * logical . Auth , path string ) bool {
select {
// Abort and return empty collection if it's taking too much time, nonblocking check.
case <- ctx . Done ( ) :
return false
default :
_ , nsID := namespace . SplitIDFromString ( leaseID )
if nsID == "" {
nsID = namespace . RootNamespaceID
}
policyMap , ok := byNsAndPolicy [ nsID ]
if ! ok {
policyMap = make ( map [ string ] int )
byNsAndPolicy [ nsID ] = policyMap
}
for _ , policy := range auth . Policies {
policyMap [ policy ] = policyMap [ policy ] + 1
}
return true
}
} )
if err != nil {
return [ ] metricsutil . GaugeLabelValues { } , suppressRestoreModeError ( err )
}
// If collection was cancelled, return an empty array.
select {
case <- ctx . Done ( ) :
return [ ] metricsutil . GaugeLabelValues { } , nil
default :
break
}
// TODO: can we estimate the needed size?
flattenedResults := make ( [ ] metricsutil . GaugeLabelValues , 0 )
for _ , ns := range allNamespaces {
for policy , count := range byNsAndPolicy [ ns . ID ] {
flattenedResults = append ( flattenedResults ,
metricsutil . GaugeLabelValues {
Labels : [ ] metrics . Label {
2020-10-13 23:38:21 +00:00
metricsutil . NamespaceLabel ( ns ) ,
2020-06-23 23:36:24 +00:00
{ "policy" , policy } ,
} ,
Value : float32 ( count ) ,
} )
}
}
return flattenedResults , nil
}
func ( ts * TokenStore ) gaugeCollectorByTtl ( ctx context . Context ) ( [ ] metricsutil . GaugeLabelValues , error ) {
if ts . expiration == nil {
return [ ] metricsutil . GaugeLabelValues { } , errors . New ( "expiration manager is nil" )
}
allNamespaces := ts . core . collectNamespaces ( )
byNsAndBucket := make ( map [ string ] map [ string ] int )
err := ts . expiration . WalkTokens ( func ( leaseID string , auth * logical . Auth , path string ) bool {
select {
// Abort and return empty collection if it's taking too much time, nonblocking check.
case <- ctx . Done ( ) :
return false
default :
if auth == nil {
return true
}
_ , nsID := namespace . SplitIDFromString ( leaseID )
if nsID == "" {
nsID = namespace . RootNamespaceID
}
bucketMap , ok := byNsAndBucket [ nsID ]
if ! ok {
bucketMap = make ( map [ string ] int )
byNsAndBucket [ nsID ] = bucketMap
}
bucket := metricsutil . TTLBucket ( auth . TTL )
// Zero is a special value in this context
if auth . TTL == time . Duration ( 0 ) {
bucket = metricsutil . OverflowBucket
}
bucketMap [ bucket ] = bucketMap [ bucket ] + 1
return true
}
} )
if err != nil {
return [ ] metricsutil . GaugeLabelValues { } , suppressRestoreModeError ( err )
}
// If collection was cancelled, return an empty array.
select {
case <- ctx . Done ( ) :
return [ ] metricsutil . GaugeLabelValues { } , nil
default :
break
}
// 10 different time buckets, at the moment, though many should
// be unused.
flattenedResults := make ( [ ] metricsutil . GaugeLabelValues , 0 , len ( allNamespaces ) * 10 )
for _ , ns := range allNamespaces {
for bucket , count := range byNsAndBucket [ ns . ID ] {
flattenedResults = append ( flattenedResults ,
metricsutil . GaugeLabelValues {
Labels : [ ] metrics . Label {
2020-10-13 23:38:21 +00:00
metricsutil . NamespaceLabel ( ns ) ,
2020-06-23 23:36:24 +00:00
{ "creation_ttl" , bucket } ,
} ,
Value : float32 ( count ) ,
} )
}
}
return flattenedResults , nil
}
func ( ts * TokenStore ) gaugeCollectorByMethod ( ctx context . Context ) ( [ ] metricsutil . GaugeLabelValues , error ) {
if ts . expiration == nil {
return [ ] metricsutil . GaugeLabelValues { } , errors . New ( "expiration manager is nil" )
}
rootContext := namespace . RootContext ( ctx )
allNamespaces := ts . core . collectNamespaces ( )
byNsAndMethod := make ( map [ string ] map [ string ] int )
// Cache the prefixes that we find locally rather than
// hitting the shared mount table every time
prefixTree := radix . New ( )
pathToPrefix := func ( nsID string , path string ) string {
ns , err := NamespaceByID ( rootContext , nsID , ts . core )
if ns == nil || err != nil {
return "unknown"
}
ctx := namespace . ContextWithNamespace ( rootContext , ns )
key := ns . Path + path
_ , method , ok := prefixTree . LongestPrefix ( key )
if ok {
return method . ( string )
}
// Look up the path from the lease within the correct namespace
// Need to hold stateLock while accessing the router.
ts . core . stateLock . RLock ( )
defer ts . core . stateLock . RUnlock ( )
mountEntry := ts . core . router . MatchingMountEntry ( ctx , path )
if mountEntry == nil {
return "unknown"
}
// mountEntry.Path lacks the "auth/" prefix; perhaps we should
// refactor router to provide a method that returns both the matching
// path *and* the the mount entry?
// Or we could just always add "auth/"?
matchingMount := ts . core . router . MatchingMount ( ctx , path )
if matchingMount == "" {
// Shouldn't happen, but a race is possible?
return mountEntry . Type
}
key = ns . Path + matchingMount
prefixTree . Insert ( key , mountEntry . Type )
return mountEntry . Type
}
err := ts . expiration . WalkTokens ( func ( leaseID string , auth * logical . Auth , path string ) bool {
select {
// Abort and return empty collection if it's taking too much time, nonblocking check.
case <- ctx . Done ( ) :
return false
default :
_ , nsID := namespace . SplitIDFromString ( leaseID )
if nsID == "" {
nsID = namespace . RootNamespaceID
}
methodMap , ok := byNsAndMethod [ nsID ]
if ! ok {
methodMap = make ( map [ string ] int )
byNsAndMethod [ nsID ] = methodMap
}
method := pathToPrefix ( nsID , path )
methodMap [ method ] = methodMap [ method ] + 1
return true
}
} )
if err != nil {
return [ ] metricsutil . GaugeLabelValues { } , suppressRestoreModeError ( err )
}
// If collection was cancelled, return an empty array.
select {
case <- ctx . Done ( ) :
return [ ] metricsutil . GaugeLabelValues { } , nil
default :
break
}
// TODO: how can we estimate the needed size?
flattenedResults := make ( [ ] metricsutil . GaugeLabelValues , 0 )
for _ , ns := range allNamespaces {
for method , count := range byNsAndMethod [ ns . ID ] {
flattenedResults = append ( flattenedResults ,
metricsutil . GaugeLabelValues {
Labels : [ ] metrics . Label {
2020-10-13 23:38:21 +00:00
metricsutil . NamespaceLabel ( ns ) ,
2020-06-23 23:36:24 +00:00
{ "auth_method" , method } ,
} ,
Value : float32 ( count ) ,
} )
}
}
return flattenedResults , nil
}
2015-03-24 22:10:46 +00:00
const (
2016-12-16 20:29:27 +00:00
tokenTidyHelp = `
This endpoint performs cleanup tasks that can be run if certain error
conditions have occurred .
`
tokenTidyDesc = `
This endpoint performs cleanup tasks that can be run to clean up token and
lease entries after certain error conditions . Usually running this is not
necessary , and is only required if upgrade notes or support personnel suggest
it .
`
2015-03-24 22:10:46 +00:00
tokenBackendHelp = ` The token credential backend is always enabled and builtin to Vault .
Client tokens are used to identify a client and to allow Vault to associate policies and ACLs
which are enforced on every request . This backend also allows for generating sub - tokens as well
2015-09-12 01:08:32 +00:00
as revocation of tokens . The tokens are renewable if associated with a lease . `
2016-03-03 16:04:05 +00:00
tokenCreateHelp = ` The token create path is used to create new tokens. `
tokenCreateOrphanHelp = ` The token create path is used to create new orphan tokens. `
tokenCreateRoleHelp = ` This token create path is used to create new tokens adhering to the given role. `
tokenListRolesHelp = ` This endpoint lists configured roles. `
2016-03-09 22:23:34 +00:00
tokenLookupAccessorHelp = ` This endpoint will lookup a token associated with the given accessor and its properties. Response will not contain the token ID. `
2019-11-08 16:32:01 +00:00
tokenRenewAccessorHelp = ` This endpoint will renew a token associated with the given accessor and its properties. Response will not contain the token ID. `
2016-03-03 16:04:05 +00:00
tokenLookupHelp = ` This endpoint will lookup a token and its properties. `
tokenPathRolesHelp = ` This endpoint allows creating, reading, and deleting roles. `
2016-03-09 22:23:34 +00:00
tokenRevokeAccessorHelp = ` This endpoint will delete the token associated with the accessor and all of its child tokens. `
2016-03-03 16:04:05 +00:00
tokenRevokeHelp = ` This endpoint will delete the given token and all of its child tokens. `
tokenRevokeSelfHelp = ` This endpoint will delete the token used to call it and all of its child tokens. `
tokenRevokeOrphanHelp = ` This endpoint will delete the token and orphan its child tokens. `
tokenRenewHelp = ` This endpoint will renew the given token and prevent expiration. `
tokenRenewSelfHelp = ` This endpoint will renew the token used to call it and prevent expiration. `
2016-08-02 20:33:22 +00:00
tokenAllowedPoliciesHelp = ` If set , tokens can be created with any subset of the policies in this
list , rather than the normal semantics of tokens being a subset of the
calling token ' s policies . The parameter is a comma - delimited string of
2016-12-16 05:36:39 +00:00
policy names . `
2016-08-02 20:33:22 +00:00
tokenDisallowedPoliciesHelp = ` If set , successful token creation via this role will require that
2016-12-16 05:36:39 +00:00
no policies in the given list are requested . The parameter is a comma - delimited string of policy names . `
2016-03-07 15:07:04 +00:00
tokenOrphanHelp = ` If true , tokens created via this role
will be orphan tokens ( have no parent ) `
2016-03-03 16:04:05 +00:00
tokenPeriodHelp = ` If set , tokens created via this role
will have no max lifetime ; instead , their
renewal period will be fixed to this value .
This takes an integer number of seconds ,
or a string duration ( e . g . "24h" ) . `
tokenPathSuffixHelp = ` If set , tokens created via this role
will contain the given suffix as a part of
their path . This can be used to assist use
of the ' revoke - prefix ' endpoint later on .
The given suffix must match the regular
2016-05-11 20:51:18 +00:00
expression . `
tokenExplicitMaxTTLHelp = ` If set , tokens created via this role
carry an explicit maximum TTL . During renewal ,
the current maximum TTL values of the role
and the mount are not checked for changes ,
and any updates to these values will have
no effect on the token being renewed . `
2016-06-08 19:17:22 +00:00
tokenRenewableHelp = ` Tokens created via this role will be
renewable or not according to this value .
Defaults to "true" . `
2016-08-01 17:07:41 +00:00
tokenListAccessorsHelp = ` List token accessors , which can then be
2018-03-20 18:54:10 +00:00
be used to iterate and discover their properties
2016-08-01 17:07:41 +00:00
or revoke them . Because this can be used to
cause a denial of service , this endpoint
requires ' sudo ' capability in addition to
' list ' . `
2015-03-24 22:10:46 +00:00
)