2016-06-01 14:10:12 +00:00
package awsec2
2016-05-03 16:14:07 +00:00
import (
"fmt"
"strings"
"time"
"github.com/fatih/structs"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/vault/helper/policyutil"
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func pathRole ( b * backend ) * framework . Path {
return & framework . Path {
2016-05-13 18:31:13 +00:00
Pattern : "role/" + framework . GenericNameRegex ( "role" ) ,
2016-05-03 16:14:07 +00:00
Fields : map [ string ] * framework . FieldSchema {
2016-08-09 21:29:45 +00:00
"role" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeString ,
Description : "Name of the role." ,
} ,
2016-08-09 21:29:45 +00:00
"bound_ami_id" : {
2016-05-12 11:19:29 +00:00
Type : framework . TypeString ,
Description : ` If set , defines a constraint on the EC2 instances that they should be
using the AMI ID specified by this parameter . ` ,
2016-05-03 16:14:07 +00:00
} ,
2016-08-09 21:29:45 +00:00
"bound_account_id" : {
2016-06-14 15:58:19 +00:00
Type : framework . TypeString ,
Description : ` If set , defines a constraint on the EC2 instances that the account ID
in its identity document to match the one specified by this parameter . ` ,
2016-09-23 16:47:35 +00:00
} ,
"bound_iam_role_arn" : {
Type : framework . TypeString ,
2016-09-28 22:30:32 +00:00
Description : ` If set , defines a constraint on the authenticating EC2 instance
that it must match the IAM role ARN specified by this parameter .
The value is prefix - matched ( as though it were a glob ending in
'*' ) . The configured IAM user or EC2 instance role must be allowed
to execute the ' iam : GetInstanceProfile ' action if this is
specified . ` ,
2016-06-14 15:58:19 +00:00
} ,
2016-09-23 15:22:23 +00:00
"bound_iam_instance_profile_arn" : {
Type : framework . TypeString ,
2016-09-28 22:30:32 +00:00
Description : ` If set , defines a constraint on the EC2 instances to be associated
with an IAM instance profile ARN which has a prefix that matches
the value specified by this parameter . The value is prefix - matched
( as though it were a glob ending in '*' ) . ` ,
2016-06-14 14:49:36 +00:00
} ,
2016-08-09 21:29:45 +00:00
"role_tag" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeString ,
Default : "" ,
2016-05-13 18:31:13 +00:00
Description : "If set, enables the role tags for this role. The value set for this field should be the 'key' of the tag on the EC2 instance. The 'value' of the tag should be generated using 'role/<role>/tag' endpoint. Defaults to an empty string, meaning that role tags are disabled." ,
2016-05-03 16:14:07 +00:00
} ,
2017-02-02 18:28:01 +00:00
"period" : & framework . FieldSchema {
Type : framework . TypeDurationSecond ,
Default : 0 ,
Description : `
If set , indicates that the token generated using this role should never expire . The token should be renewed within the duration specified by this value . At each renewal , the token ' s TTL will be set to the value of this parameter . ` ,
} ,
2016-08-09 21:29:45 +00:00
"ttl" : {
Type : framework . TypeDurationSecond ,
Default : 0 ,
Description : ` Duration in seconds after which the issued token should expire . Defaults
to 0 , in which case the value will fallback to the system / mount defaults . ` ,
} ,
"max_ttl" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeDurationSecond ,
Default : 0 ,
2016-05-12 11:19:29 +00:00
Description : "The maximum allowed lifetime of tokens issued using this role." ,
2016-05-03 16:14:07 +00:00
} ,
2016-08-09 21:29:45 +00:00
"policies" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeString ,
Default : "default" ,
2016-05-12 11:19:29 +00:00
Description : "Policies to be set on tokens issued using this role." ,
2016-05-03 16:14:07 +00:00
} ,
2016-08-09 21:29:45 +00:00
"allow_instance_migration" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeBool ,
Default : false ,
Description : "If set, allows migration of the underlying instance where the client resides. This keys off of pendingTime in the metadata document, so essentially, this disables the client nonce check whenever the instance is migrated to a new host and pendingTime is newer than the previously-remembered time. Use with caution." ,
} ,
2016-08-09 21:29:45 +00:00
"disallow_reauthentication" : {
2016-05-03 16:14:07 +00:00
Type : framework . TypeBool ,
Default : false ,
2016-05-29 14:55:06 +00:00
Description : "If set, only allows a single token to be granted per instance ID. In order to perform a fresh login, the entry in whitelist for the instance ID needs to be cleared using 'auth/aws-ec2/identity-whitelist/<instance_id>' endpoint." ,
2016-05-03 16:14:07 +00:00
} ,
} ,
ExistenceCheck : b . pathRoleExistenceCheck ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . CreateOperation : b . pathRoleCreateUpdate ,
logical . UpdateOperation : b . pathRoleCreateUpdate ,
logical . ReadOperation : b . pathRoleRead ,
logical . DeleteOperation : b . pathRoleDelete ,
} ,
HelpSynopsis : pathRoleSyn ,
HelpDescription : pathRoleDesc ,
}
}
2016-05-05 18:51:09 +00:00
func pathListRole ( b * backend ) * framework . Path {
return & framework . Path {
Pattern : "role/?" ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ListOperation : b . pathRoleList ,
} ,
HelpSynopsis : pathListRolesHelpSyn ,
HelpDescription : pathListRolesHelpDesc ,
}
}
2016-05-03 16:14:07 +00:00
func pathListRoles ( b * backend ) * framework . Path {
return & framework . Path {
Pattern : "roles/?" ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ListOperation : b . pathRoleList ,
} ,
HelpSynopsis : pathListRolesHelpSyn ,
HelpDescription : pathListRolesHelpDesc ,
}
}
// Establishes dichotomy of request operation between CreateOperation and UpdateOperation.
// Returning 'true' forces an UpdateOperation, CreateOperation otherwise.
func ( b * backend ) pathRoleExistenceCheck ( req * logical . Request , data * framework . FieldData ) ( bool , error ) {
2016-05-18 00:39:24 +00:00
entry , err := b . lockedAWSRole ( req . Storage , strings . ToLower ( data . Get ( "role" ) . ( string ) ) )
2016-05-03 16:14:07 +00:00
if err != nil {
return false , err
}
return entry != nil , nil
}
2016-09-23 15:22:23 +00:00
// lockedAWSRole returns the properties set on the given role. This method
// acquires the read lock before reading the role from the storage.
func ( b * backend ) lockedAWSRole ( s logical . Storage , roleName string ) ( * awsRoleEntry , error ) {
if roleName == "" {
return nil , fmt . Errorf ( "missing role name" )
}
2016-05-05 18:51:09 +00:00
b . roleMutex . RLock ( )
defer b . roleMutex . RUnlock ( )
2016-09-23 15:22:23 +00:00
return b . nonLockedAWSRole ( s , roleName )
}
// lockedSetAWSRole creates or updates a role in the storage. This method
// acquires the write lock before creating or updating the role at the storage.
func ( b * backend ) lockedSetAWSRole ( s logical . Storage , roleName string , roleEntry * awsRoleEntry ) error {
if roleName == "" {
return fmt . Errorf ( "missing role name" )
}
if roleEntry == nil {
return fmt . Errorf ( "nil role entry" )
}
b . roleMutex . Lock ( )
defer b . roleMutex . Unlock ( )
return b . nonLockedSetAWSRole ( s , roleName , roleEntry )
}
// nonLockedSetAWSRole creates or updates a role in the storage. This method
// does not acquire the write lock before reading the role from the storage. If
// locking is desired, use lockedSetAWSRole instead.
func ( b * backend ) nonLockedSetAWSRole ( s logical . Storage , roleName string ,
roleEntry * awsRoleEntry ) error {
if roleName == "" {
return fmt . Errorf ( "missing role name" )
}
if roleEntry == nil {
return fmt . Errorf ( "nil role entry" )
}
entry , err := logical . StorageEntryJSON ( "role/" + strings . ToLower ( roleName ) , roleEntry )
if err != nil {
return err
}
if err := s . Put ( entry ) ; err != nil {
return err
}
return nil
2016-05-05 18:51:09 +00:00
}
2016-09-23 15:22:23 +00:00
// nonLockedAWSRole returns the properties set on the given role. This method
// does not acquire the read lock before reading the role from the storage. If
// locking is desired, use lockedAWSRole instead.
func ( b * backend ) nonLockedAWSRole ( s logical . Storage , roleName string ) ( * awsRoleEntry , error ) {
if roleName == "" {
return nil , fmt . Errorf ( "missing role name" )
}
entry , err := s . Get ( "role/" + strings . ToLower ( roleName ) )
2016-05-03 16:14:07 +00:00
if err != nil {
return nil , err
}
if entry == nil {
return nil , nil
}
var result awsRoleEntry
if err := entry . DecodeJSON ( & result ) ; err != nil {
return nil , err
}
2016-09-23 15:22:23 +00:00
2016-09-23 16:47:35 +00:00
// Check if the value held by role ARN field is actually an instance profile ARN
if result . BoundIamRoleARN != "" && strings . Contains ( result . BoundIamRoleARN , ":instance-profile/" ) {
// If yes, move it to the correct field
result . BoundIamInstanceProfileARN = result . BoundIamRoleARN
2016-09-23 15:22:23 +00:00
// Reset the old field
2016-09-23 16:47:35 +00:00
result . BoundIamRoleARN = ""
2016-09-23 15:22:23 +00:00
// Save the update
if err = b . nonLockedSetAWSRole ( s , roleName , & result ) ; err != nil {
2016-09-23 16:47:35 +00:00
return nil , fmt . Errorf ( "failed to move instance profile ARN to bound_iam_instance_profile_arn field" )
2016-09-23 15:22:23 +00:00
}
}
2016-05-03 16:14:07 +00:00
return & result , nil
}
// pathRoleDelete is used to delete the information registered for a given AMI ID.
func ( b * backend ) pathRoleDelete (
req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-05-13 18:31:13 +00:00
roleName := data . Get ( "role" ) . ( string )
2016-05-03 16:14:07 +00:00
if roleName == "" {
2016-05-13 18:31:13 +00:00
return logical . ErrorResponse ( "missing role" ) , nil
2016-05-03 16:14:07 +00:00
}
2016-05-05 18:51:09 +00:00
b . roleMutex . Lock ( )
defer b . roleMutex . Unlock ( )
2016-05-03 16:14:07 +00:00
return nil , req . Storage . Delete ( "role/" + strings . ToLower ( roleName ) )
}
// pathRoleList is used to list all the AMI IDs registered with Vault.
func ( b * backend ) pathRoleList (
req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-05-05 18:51:09 +00:00
b . roleMutex . RLock ( )
defer b . roleMutex . RUnlock ( )
2016-05-03 16:14:07 +00:00
roles , err := req . Storage . List ( "role/" )
if err != nil {
return nil , err
}
return logical . ListResponse ( roles ) , nil
}
// pathRoleRead is used to view the information registered for a given AMI ID.
func ( b * backend ) pathRoleRead (
req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-05-18 00:39:24 +00:00
roleEntry , err := b . lockedAWSRole ( req . Storage , strings . ToLower ( data . Get ( "role" ) . ( string ) ) )
2016-05-03 16:14:07 +00:00
if err != nil {
return nil , err
}
if roleEntry == nil {
return nil , nil
}
// Prepare the map of all the entries in the roleEntry.
respData := structs . New ( roleEntry ) . Map ( )
// HMAC key belonging to the role should NOT be exported.
delete ( respData , "hmac_key" )
2016-08-09 21:29:45 +00:00
// Display the ttl in seconds.
respData [ "ttl" ] = roleEntry . TTL / time . Second
2016-05-03 16:14:07 +00:00
// Display the max_ttl in seconds.
respData [ "max_ttl" ] = roleEntry . MaxTTL / time . Second
2016-09-23 16:47:35 +00:00
return & logical . Response {
Data : respData ,
} , nil
2016-05-03 16:14:07 +00:00
}
// pathRoleCreateUpdate is used to associate Vault policies to a given AMI ID.
func ( b * backend ) pathRoleCreateUpdate (
req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2016-05-13 18:31:13 +00:00
roleName := strings . ToLower ( data . Get ( "role" ) . ( string ) )
2016-05-03 16:14:07 +00:00
if roleName == "" {
2016-05-13 18:31:13 +00:00
return logical . ErrorResponse ( "missing role" ) , nil
2016-05-03 16:14:07 +00:00
}
2016-05-05 18:51:09 +00:00
b . roleMutex . Lock ( )
defer b . roleMutex . Unlock ( )
2016-05-18 00:39:24 +00:00
roleEntry , err := b . nonLockedAWSRole ( req . Storage , roleName )
2016-05-03 16:14:07 +00:00
if err != nil {
return nil , err
}
if roleEntry == nil {
roleEntry = & awsRoleEntry { }
}
2016-09-23 16:47:35 +00:00
// Fetch and set the bound parameters. There can't be default values
// for these.
2016-06-14 15:58:19 +00:00
if boundAmiIDRaw , ok := data . GetOk ( "bound_ami_id" ) ; ok {
roleEntry . BoundAmiID = boundAmiIDRaw . ( string )
}
if boundAccountIDRaw , ok := data . GetOk ( "bound_account_id" ) ; ok {
roleEntry . BoundAccountID = boundAccountIDRaw . ( string )
2016-05-03 16:14:07 +00:00
}
2016-09-23 16:47:35 +00:00
if boundIamRoleARNRaw , ok := data . GetOk ( "bound_iam_role_arn" ) ; ok {
roleEntry . BoundIamRoleARN = boundIamRoleARNRaw . ( string )
}
2016-09-23 15:22:23 +00:00
if boundIamInstanceProfileARNRaw , ok := data . GetOk ( "bound_iam_instance_profile_arn" ) ; ok {
roleEntry . BoundIamInstanceProfileARN = boundIamInstanceProfileARNRaw . ( string )
2016-06-14 18:46:08 +00:00
}
2016-06-14 15:58:19 +00:00
// Ensure that at least one bound is set on the role
2016-06-17 16:35:44 +00:00
switch {
case roleEntry . BoundAccountID != "" :
case roleEntry . BoundAmiID != "" :
2016-09-23 15:22:23 +00:00
case roleEntry . BoundIamInstanceProfileARN != "" :
2016-09-23 16:47:35 +00:00
case roleEntry . BoundIamRoleARN != "" :
2016-06-17 16:35:44 +00:00
default :
2016-06-14 15:58:19 +00:00
return logical . ErrorResponse ( "at least be one bound parameter should be specified on the role" ) , nil
2016-05-03 16:14:07 +00:00
}
policiesStr , ok := data . GetOk ( "policies" )
if ok {
roleEntry . Policies = policyutil . ParsePolicies ( policiesStr . ( string ) )
} else if req . Operation == logical . CreateOperation {
roleEntry . Policies = [ ] string { "default" }
}
disallowReauthenticationBool , ok := data . GetOk ( "disallow_reauthentication" )
if ok {
roleEntry . DisallowReauthentication = disallowReauthenticationBool . ( bool )
} else if req . Operation == logical . CreateOperation {
roleEntry . DisallowReauthentication = data . Get ( "disallow_reauthentication" ) . ( bool )
}
allowInstanceMigrationBool , ok := data . GetOk ( "allow_instance_migration" )
if ok {
roleEntry . AllowInstanceMigration = allowInstanceMigrationBool . ( bool )
} else if req . Operation == logical . CreateOperation {
roleEntry . AllowInstanceMigration = data . Get ( "allow_instance_migration" ) . ( bool )
}
2016-05-05 19:32:14 +00:00
var resp logical . Response
2016-08-09 21:29:45 +00:00
ttlRaw , ok := data . GetOk ( "ttl" )
if ok {
ttl := time . Duration ( ttlRaw . ( int ) ) * time . Second
defaultLeaseTTL := b . System ( ) . DefaultLeaseTTL ( )
if ttl > defaultLeaseTTL {
resp . AddWarning ( fmt . Sprintf ( "Given ttl of %d seconds greater than current mount/system default of %d seconds; ttl will be capped at login time" , ttl / time . Second , defaultLeaseTTL / time . Second ) )
}
roleEntry . TTL = ttl
} else if req . Operation == logical . CreateOperation {
roleEntry . TTL = time . Duration ( data . Get ( "ttl" ) . ( int ) ) * time . Second
}
2016-05-03 16:14:07 +00:00
maxTTLInt , ok := data . GetOk ( "max_ttl" )
if ok {
maxTTL := time . Duration ( maxTTLInt . ( int ) ) * time . Second
systemMaxTTL := b . System ( ) . MaxLeaseTTL ( )
if maxTTL > systemMaxTTL {
2016-08-09 21:29:45 +00:00
resp . AddWarning ( fmt . Sprintf ( "Given max_ttl of %d seconds greater than current mount/system default of %d seconds; max_ttl will be capped at login time" , maxTTL / time . Second , systemMaxTTL / time . Second ) )
2016-05-03 16:14:07 +00:00
}
if maxTTL < time . Duration ( 0 ) {
return logical . ErrorResponse ( "max_ttl cannot be negative" ) , nil
}
roleEntry . MaxTTL = maxTTL
} else if req . Operation == logical . CreateOperation {
roleEntry . MaxTTL = time . Duration ( data . Get ( "max_ttl" ) . ( int ) ) * time . Second
}
2016-08-09 21:45:42 +00:00
if roleEntry . MaxTTL != 0 && roleEntry . MaxTTL < roleEntry . TTL {
2016-08-09 21:29:45 +00:00
return logical . ErrorResponse ( "ttl should be shorter than max_ttl" ) , nil
}
2017-02-02 18:28:01 +00:00
periodRaw , ok := data . GetOk ( "period" )
if ok {
roleEntry . Period = time . Second * time . Duration ( periodRaw . ( int ) )
} else if req . Operation == logical . CreateOperation {
roleEntry . Period = time . Second * time . Duration ( data . Get ( "period" ) . ( int ) )
}
if roleEntry . Period > b . System ( ) . MaxLeaseTTL ( ) {
return logical . ErrorResponse ( fmt . Sprintf ( "'period' of '%s' is greater than the backend's maximum lease TTL of '%s'" , roleEntry . Period . String ( ) , b . System ( ) . MaxLeaseTTL ( ) . String ( ) ) ) , nil
}
2016-05-03 16:14:07 +00:00
roleTagStr , ok := data . GetOk ( "role_tag" )
if ok {
roleEntry . RoleTag = roleTagStr . ( string )
// There is a limit of 127 characters on the tag key for AWS EC2 instances.
// Complying to that requirement, do not allow the value of 'key' to be more than that.
if len ( roleEntry . RoleTag ) > 127 {
2016-05-05 18:51:09 +00:00
return logical . ErrorResponse ( "length of role tag exceeds the EC2 key limit of 127 characters" ) , nil
2016-05-03 16:14:07 +00:00
}
} else if req . Operation == logical . CreateOperation {
roleEntry . RoleTag = data . Get ( "role_tag" ) . ( string )
}
2016-05-05 18:51:09 +00:00
if roleEntry . HMACKey == "" {
roleEntry . HMACKey , err = uuid . GenerateUUID ( )
if err != nil {
return nil , fmt . Errorf ( "failed to generate role HMAC key: %v" , err )
}
2016-05-03 16:14:07 +00:00
}
2016-09-23 15:22:23 +00:00
if err := b . nonLockedSetAWSRole ( req . Storage , roleName , roleEntry ) ; err != nil {
2016-05-03 16:14:07 +00:00
return nil , err
}
2016-05-05 19:32:14 +00:00
if len ( resp . Warnings ( ) ) == 0 {
return nil , nil
}
return & resp , nil
2016-05-03 16:14:07 +00:00
}
// Struct to hold the information associated with an AMI ID in Vault.
type awsRoleEntry struct {
2016-09-23 15:22:23 +00:00
BoundAmiID string ` json:"bound_ami_id" structs:"bound_ami_id" mapstructure:"bound_ami_id" `
BoundAccountID string ` json:"bound_account_id" structs:"bound_account_id" mapstructure:"bound_account_id" `
2016-09-23 16:47:35 +00:00
BoundIamRoleARN string ` json:"bound_iam_role_arn" structs:"bound_iam_role_arn" mapstructure:"bound_iam_role_arn" `
2016-09-23 15:22:23 +00:00
BoundIamInstanceProfileARN string ` json:"bound_iam_instance_profile_arn" structs:"bound_iam_instance_profile_arn" mapstructure:"bound_iam_instance_profile_arn" `
RoleTag string ` json:"role_tag" structs:"role_tag" mapstructure:"role_tag" `
AllowInstanceMigration bool ` json:"allow_instance_migration" structs:"allow_instance_migration" mapstructure:"allow_instance_migration" `
TTL time . Duration ` json:"ttl" structs:"ttl" mapstructure:"ttl" `
MaxTTL time . Duration ` json:"max_ttl" structs:"max_ttl" mapstructure:"max_ttl" `
Policies [ ] string ` json:"policies" structs:"policies" mapstructure:"policies" `
DisallowReauthentication bool ` json:"disallow_reauthentication" structs:"disallow_reauthentication" mapstructure:"disallow_reauthentication" `
HMACKey string ` json:"hmac_key" structs:"hmac_key" mapstructure:"hmac_key" `
2017-02-02 18:28:01 +00:00
Period time . Duration ` json:"period" mapstructure:"period" structs:"period" `
2016-05-03 16:14:07 +00:00
}
const pathRoleSyn = `
Create a role and associate policies to it .
`
const pathRoleDesc = `
A precondition for login is that a role should be created in the backend .
The login endpoint takes in the role name against which the instance
should be validated . After authenticating the instance , the authorization
for the instance to access Vault ' s resources is determined by the policies
that are associated to the role though this endpoint .
When the instances require only a subset of policies on the role , then
' role_tag ' option on the role can be enabled to create a role tag via the
2016-05-13 18:31:13 +00:00
endpoint ' role / < role > / tag ' . This tag then needs to be applied on the
2016-05-03 16:14:07 +00:00
instance before it attempts a login . The policies on the tag should be a
subset of policies that are associated to the role . In order to enable
login using tags , ' role_tag ' option should be set while creating a role .
Also , a ' max_ttl ' can be configured in this endpoint that determines the maximum
2016-05-05 18:51:09 +00:00
duration for which a login can be renewed . Note that the ' max_ttl ' has an upper
2016-05-03 16:14:07 +00:00
limit of the ' max_ttl ' value on the backend ' s mount .
`
const pathListRolesHelpSyn = `
Lists all the roles that are registered with Vault .
`
const pathListRolesHelpDesc = `
Roles will be listed by their respective role names .
`