2017-10-11 17:21:20 +00:00
package vault
import (
2018-01-19 06:44:44 +00:00
"context"
2017-10-11 17:21:20 +00:00
"fmt"
"strings"
"sync"
"github.com/golang/protobuf/ptypes"
2018-04-05 15:49:21 +00:00
"github.com/hashicorp/errwrap"
2017-10-11 17:21:20 +00:00
memdb "github.com/hashicorp/go-memdb"
uuid "github.com/hashicorp/go-uuid"
"github.com/hashicorp/vault/helper/consts"
"github.com/hashicorp/vault/helper/identity"
"github.com/hashicorp/vault/helper/storagepacker"
"github.com/hashicorp/vault/helper/strutil"
2017-11-02 20:05:48 +00:00
"github.com/hashicorp/vault/logical"
2017-10-11 17:21:20 +00:00
)
2018-01-19 06:44:44 +00:00
func ( c * Core ) loadIdentityStoreArtifacts ( ctx context . Context ) error {
2017-10-11 17:21:20 +00:00
var err error
if c . identityStore == nil {
2018-04-25 03:10:22 +00:00
c . logger . Warn ( "identity store is not setup, skipping loading" )
return nil
2017-10-11 17:21:20 +00:00
}
2018-01-19 06:44:44 +00:00
err = c . identityStore . loadEntities ( ctx )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
2018-01-19 06:44:44 +00:00
err = c . identityStore . loadGroups ( ctx )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
return nil
}
2018-01-19 06:44:44 +00:00
func ( i * IdentityStore ) loadGroups ( ctx context . Context ) error {
2017-10-11 17:21:20 +00:00
i . logger . Debug ( "identity loading groups" )
2018-01-19 06:44:44 +00:00
existing , err := i . groupPacker . View ( ) . List ( ctx , groupBucketsPrefix )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to scan for groups: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
2018-04-03 00:46:59 +00:00
i . logger . Debug ( "groups collected" , "num_existing" , len ( existing ) )
2017-10-11 17:21:20 +00:00
for _ , key := range existing {
bucket , err := i . groupPacker . GetBucket ( i . groupPacker . BucketPath ( key ) )
if err != nil {
return err
}
if bucket == nil {
continue
}
for _ , item := range bucket . Items {
group , err := i . parseGroupFromBucketItem ( item )
if err != nil {
return err
}
if group == nil {
continue
}
2018-04-03 00:46:59 +00:00
if i . logger . IsDebug ( ) {
i . logger . Debug ( "loading group" , "name" , group . Name , "id" , group . ID )
2017-10-11 17:21:20 +00:00
}
txn := i . db . Txn ( true )
2018-06-24 11:45:53 +00:00
err = i . UpsertGroupInTxn ( txn , group , false )
2017-10-11 17:21:20 +00:00
if err != nil {
2017-11-01 18:14:21 +00:00
txn . Abort ( )
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to update group in memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
txn . Commit ( )
}
}
if i . logger . IsInfo ( ) {
2018-04-03 00:46:59 +00:00
i . logger . Info ( "groups restored" )
2017-10-11 17:21:20 +00:00
}
return nil
}
2018-01-19 06:44:44 +00:00
func ( i * IdentityStore ) loadEntities ( ctx context . Context ) error {
2017-10-11 17:21:20 +00:00
// Accumulate existing entities
2018-04-03 00:46:59 +00:00
i . logger . Debug ( "loading entities" )
2018-01-19 06:44:44 +00:00
existing , err := i . entityPacker . View ( ) . List ( ctx , storagepacker . StoragePackerBucketsPrefix )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to scan for entities: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
2018-04-03 00:46:59 +00:00
i . logger . Debug ( "entities collected" , "num_existing" , len ( existing ) )
2017-10-11 17:21:20 +00:00
// Make the channels used for the worker pool
broker := make ( chan string )
quit := make ( chan bool )
// Buffer these channels to prevent deadlocks
errs := make ( chan error , len ( existing ) )
result := make ( chan * storagepacker . Bucket , len ( existing ) )
// Use a wait group
wg := & sync . WaitGroup { }
// Create 64 workers to distribute work to
for j := 0 ; j < consts . ExpirationRestoreWorkerCount ; j ++ {
wg . Add ( 1 )
go func ( ) {
defer wg . Done ( )
for {
select {
case bucketKey , ok := <- broker :
// broker has been closed, we are done
if ! ok {
return
}
bucket , err := i . entityPacker . GetBucket ( i . entityPacker . BucketPath ( bucketKey ) )
if err != nil {
errs <- err
continue
}
// Write results out to the result channel
result <- bucket
// quit early
case <- quit :
return
}
}
} ( )
}
// Distribute the collected keys to the workers in a go routine
wg . Add ( 1 )
go func ( ) {
defer wg . Done ( )
for j , bucketKey := range existing {
if j % 500 == 0 {
2018-04-03 00:46:59 +00:00
i . logger . Debug ( "entities loading" , "progress" , j )
2017-10-11 17:21:20 +00:00
}
select {
case <- quit :
return
default :
broker <- bucketKey
}
}
// Close the broker, causing worker routines to exit
close ( broker )
} ( )
// Restore each key by pulling from the result chan
for j := 0 ; j < len ( existing ) ; j ++ {
select {
case err := <- errs :
// Close all go routines
close ( quit )
return err
case bucket := <- result :
// If there is no entry, nothing to restore
if bucket == nil {
continue
}
for _ , item := range bucket . Items {
2018-04-03 02:17:33 +00:00
entity , err := i . parseEntityFromBucketItem ( ctx , item )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if entity == nil {
continue
}
// Only update MemDB and don't hit the storage again
err = i . upsertEntity ( entity , nil , false )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to update entity in MemDB: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
}
}
}
// Let all go routines finish
wg . Wait ( )
if i . logger . IsInfo ( ) {
2018-04-03 00:46:59 +00:00
i . logger . Info ( "entities restored" )
2017-10-11 17:21:20 +00:00
}
return nil
}
// upsertEntityInTxn either creates or updates an existing entity. The
// operations will be updated in both MemDB and storage. If 'persist' is set to
2017-11-02 20:05:48 +00:00
// false, then storage will not be updated. When an alias is transferred from
2017-10-11 17:21:20 +00:00
// one entity to another, both the source and destination entities should get
// updated, in which case, callers should send in both entity and
// previousEntity.
2018-07-25 02:01:58 +00:00
func ( i * IdentityStore ) upsertEntityInTxn ( txn * memdb . Txn , entity * identity . Entity , previousEntity * identity . Entity , persist bool ) error {
2017-10-11 17:21:20 +00:00
var err error
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
if entity == nil {
return fmt . Errorf ( "entity is nil" )
}
for _ , alias := range entity . Aliases {
// Verify that alias is not associated to a different one already
2017-11-02 20:05:48 +00:00
aliasByFactors , err := i . MemDBAliasByFactors ( alias . MountAccessor , alias . Name , false , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
2017-11-02 20:05:48 +00:00
if aliasByFactors != nil && aliasByFactors . CanonicalID != entity . ID {
2018-08-09 20:37:36 +00:00
i . logger . Warn ( "alias is already tied to a different entity; these entities are being merged" , "alias_id" , alias . ID , "other_entity_id" , aliasByFactors . CanonicalID )
respErr , intErr := i . mergeEntity ( txn , entity , [ ] string { aliasByFactors . CanonicalID } , true , false , true )
switch {
case respErr != nil :
return respErr
case intErr != nil :
return intErr
}
// The entity and aliases will be loaded into memdb and persisted
// as a result of the merge so we are done here
return nil
2017-10-11 17:21:20 +00:00
}
// Insert or update alias in MemDB using the transaction created above
2017-11-02 20:05:48 +00:00
err = i . MemDBUpsertAliasInTxn ( txn , alias , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
}
// If previous entity is set, update it in MemDB and persist it
if previousEntity != nil && persist {
2017-11-02 20:05:48 +00:00
err = i . MemDBUpsertEntityInTxn ( txn , previousEntity )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
// Persist the previous entity object
marshaledPreviousEntity , err := ptypes . MarshalAny ( previousEntity )
if err != nil {
return err
}
err = i . entityPacker . PutItem ( & storagepacker . Item {
ID : previousEntity . ID ,
Message : marshaledPreviousEntity ,
} )
if err != nil {
return err
}
}
// Insert or update entity in MemDB using the transaction created above
2017-11-02 20:05:48 +00:00
err = i . MemDBUpsertEntityInTxn ( txn , entity )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if persist {
entityAsAny , err := ptypes . MarshalAny ( entity )
if err != nil {
return err
}
item := & storagepacker . Item {
ID : entity . ID ,
Message : entityAsAny ,
}
// Persist the entity object
err = i . entityPacker . PutItem ( item )
if err != nil {
return err
}
}
return nil
}
// upsertEntity either creates or updates an existing entity. The operations
// will be updated in both MemDB and storage. If 'persist' is set to false,
2017-11-02 20:05:48 +00:00
// then storage will not be updated. When an alias is transferred from one
2017-10-11 17:21:20 +00:00
// entity to another, both the source and destination entities should get
// updated, in which case, callers should send in both entity and
// previousEntity.
func ( i * IdentityStore ) upsertEntity ( entity * identity . Entity , previousEntity * identity . Entity , persist bool ) error {
// Create a MemDB transaction to update both alias and entity
txn := i . db . Txn ( true )
defer txn . Abort ( )
2018-07-25 02:01:58 +00:00
err := i . upsertEntityInTxn ( txn , entity , previousEntity , persist )
2018-06-24 11:54:00 +00:00
if err != nil {
return err
}
txn . Commit ( )
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBUpsertAliasInTxn ( txn * memdb . Txn , alias * identity . Alias , groupAlias bool ) error {
2017-10-11 17:21:20 +00:00
if txn == nil {
return fmt . Errorf ( "nil txn" )
}
if alias == nil {
return fmt . Errorf ( "alias is nil" )
}
2017-11-02 20:05:48 +00:00
tableName := entityAliasesTable
if groupAlias {
tableName = groupAliasesTable
}
aliasRaw , err := txn . First ( tableName , "id" , alias . ID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to lookup alias from memdb using alias ID: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if aliasRaw != nil {
2017-11-02 20:05:48 +00:00
err = txn . Delete ( tableName , aliasRaw )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete alias from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
}
2017-11-02 20:05:48 +00:00
if err := txn . Insert ( tableName , alias ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to update alias into memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBAliasByIDInTxn ( txn * memdb . Txn , aliasID string , clone bool , groupAlias bool ) ( * identity . Alias , error ) {
2017-10-11 17:21:20 +00:00
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
tableName := entityAliasesTable
if groupAlias {
tableName = groupAliasesTable
}
aliasRaw , err := txn . First ( tableName , "id" , aliasID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch alias from memdb using alias ID: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if aliasRaw == nil {
return nil , nil
}
alias , ok := aliasRaw . ( * identity . Alias )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched alias" )
}
if clone {
return alias . Clone ( )
}
return alias , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBAliasByID ( aliasID string , clone bool , groupAlias bool ) ( * identity . Alias , error ) {
2017-10-11 17:21:20 +00:00
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBAliasByIDInTxn ( txn , aliasID , clone , groupAlias )
2017-10-11 17:21:20 +00:00
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBAliasByFactors ( mountAccessor , aliasName string , clone bool , groupAlias bool ) ( * identity . Alias , error ) {
2017-10-11 17:21:20 +00:00
if aliasName == "" {
return nil , fmt . Errorf ( "missing alias name" )
}
if mountAccessor == "" {
return nil , fmt . Errorf ( "missing mount accessor" )
}
2018-02-09 15:40:56 +00:00
txn := i . db . Txn ( false )
return i . MemDBAliasByFactorsInTxn ( txn , mountAccessor , aliasName , clone , groupAlias )
}
func ( i * IdentityStore ) MemDBAliasByFactorsInTxn ( txn * memdb . Txn , mountAccessor , aliasName string , clone bool , groupAlias bool ) ( * identity . Alias , error ) {
if txn == nil {
return nil , fmt . Errorf ( "nil txn" )
}
if aliasName == "" {
return nil , fmt . Errorf ( "missing alias name" )
}
if mountAccessor == "" {
return nil , fmt . Errorf ( "missing mount accessor" )
}
2017-11-02 20:05:48 +00:00
tableName := entityAliasesTable
if groupAlias {
tableName = groupAliasesTable
}
aliasRaw , err := txn . First ( tableName , "factors" , mountAccessor , aliasName )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch alias from memdb using factors: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if aliasRaw == nil {
return nil , nil
}
alias , ok := aliasRaw . ( * identity . Alias )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched alias" )
}
if clone {
return alias . Clone ( )
}
return alias , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBDeleteAliasByIDInTxn ( txn * memdb . Txn , aliasID string , groupAlias bool ) error {
2017-10-11 17:21:20 +00:00
if aliasID == "" {
return nil
}
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
alias , err := i . MemDBAliasByIDInTxn ( txn , aliasID , false , groupAlias )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if alias == nil {
return nil
}
2017-11-02 20:05:48 +00:00
tableName := entityAliasesTable
if groupAlias {
tableName = groupAliasesTable
}
err = txn . Delete ( tableName , alias )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete alias from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBAliases ( ws memdb . WatchSet , groupAlias bool ) ( memdb . ResultIterator , error ) {
2017-10-11 17:21:20 +00:00
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
tableName := entityAliasesTable
if groupAlias {
tableName = groupAliasesTable
}
iter , err := txn . Get ( tableName , "id" )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
ws . Add ( iter . WatchCh ( ) )
return iter , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBUpsertEntityInTxn ( txn * memdb . Txn , entity * identity . Entity ) error {
2017-10-11 17:21:20 +00:00
if txn == nil {
return fmt . Errorf ( "nil txn" )
}
if entity == nil {
return fmt . Errorf ( "entity is nil" )
}
2017-11-02 20:05:48 +00:00
entityRaw , err := txn . First ( entitiesTable , "id" , entity . ID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to lookup entity from memdb using entity id: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if entityRaw != nil {
2017-11-02 20:05:48 +00:00
err = txn . Delete ( entitiesTable , entityRaw )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete entity from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
}
2017-11-02 20:05:48 +00:00
if err := txn . Insert ( entitiesTable , entity ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to update entity into memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBEntityByIDInTxn ( txn * memdb . Txn , entityID string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if entityID == "" {
return nil , fmt . Errorf ( "missing entity id" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
entityRaw , err := txn . First ( entitiesTable , "id" , entityID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch entity from memdb using entity id: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if entityRaw == nil {
return nil , nil
}
entity , ok := entityRaw . ( * identity . Entity )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched entity" )
}
if clone {
return entity . Clone ( )
}
return entity , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBEntityByID ( entityID string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if entityID == "" {
return nil , fmt . Errorf ( "missing entity id" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBEntityByIDInTxn ( txn , entityID , clone )
2017-10-11 17:21:20 +00:00
}
2018-06-24 11:45:53 +00:00
func ( i * IdentityStore ) MemDBEntityByName ( entityName string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if entityName == "" {
return nil , fmt . Errorf ( "missing entity name" )
}
2018-06-24 11:45:53 +00:00
txn := i . db . Txn ( false )
2017-10-11 17:21:20 +00:00
2017-11-02 20:05:48 +00:00
entityRaw , err := txn . First ( entitiesTable , "name" , entityName )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch entity from memdb using entity name: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if entityRaw == nil {
return nil , nil
}
entity , ok := entityRaw . ( * identity . Entity )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched entity" )
}
if clone {
return entity . Clone ( )
}
return entity , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBEntitiesByBucketEntryKeyHashInTxn ( txn * memdb . Txn , hashValue string ) ( [ ] * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if txn == nil {
return nil , fmt . Errorf ( "nil txn" )
}
if hashValue == "" {
return nil , fmt . Errorf ( "empty hash value" )
}
2017-11-02 20:05:48 +00:00
entitiesIter , err := txn . Get ( entitiesTable , "bucket_key_hash" , hashValue )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to lookup entities using bucket entry key hash: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
var entities [ ] * identity . Entity
for entity := entitiesIter . Next ( ) ; entity != nil ; entity = entitiesIter . Next ( ) {
entities = append ( entities , entity . ( * identity . Entity ) )
}
return entities , nil
}
2018-06-24 11:45:53 +00:00
func ( i * IdentityStore ) MemDBEntityByMergedEntityID ( mergedEntityID string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if mergedEntityID == "" {
return nil , fmt . Errorf ( "missing merged entity id" )
}
2018-06-24 11:45:53 +00:00
txn := i . db . Txn ( false )
2017-10-11 17:21:20 +00:00
2017-11-02 20:05:48 +00:00
entityRaw , err := txn . First ( entitiesTable , "merged_entity_ids" , mergedEntityID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch entity from memdb using merged entity id: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if entityRaw == nil {
return nil , nil
}
entity , ok := entityRaw . ( * identity . Entity )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched entity" )
}
if clone {
return entity . Clone ( )
}
return entity , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBEntityByAliasIDInTxn ( txn * memdb . Txn , aliasID string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
alias , err := i . MemDBAliasByIDInTxn ( txn , aliasID , false , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
if alias == nil {
return nil , nil
}
2017-11-02 20:05:48 +00:00
return i . MemDBEntityByIDInTxn ( txn , alias . CanonicalID , clone )
2017-10-11 17:21:20 +00:00
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBEntityByAliasID ( aliasID string , clone bool ) ( * identity . Entity , error ) {
2017-10-11 17:21:20 +00:00
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBEntityByAliasIDInTxn ( txn , aliasID , clone )
2017-10-11 17:21:20 +00:00
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBDeleteEntityByID ( entityID string ) error {
2017-10-11 17:21:20 +00:00
if entityID == "" {
return nil
}
txn := i . db . Txn ( true )
defer txn . Abort ( )
2017-11-02 20:05:48 +00:00
err := i . MemDBDeleteEntityByIDInTxn ( txn , entityID )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
txn . Commit ( )
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBDeleteEntityByIDInTxn ( txn * memdb . Txn , entityID string ) error {
2017-10-11 17:21:20 +00:00
if entityID == "" {
return nil
}
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
entity , err := i . MemDBEntityByIDInTxn ( txn , entityID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if entity == nil {
return nil
}
2017-11-02 20:05:48 +00:00
err = txn . Delete ( entitiesTable , entity )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete entity from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
func ( i * IdentityStore ) sanitizeAlias ( alias * identity . Alias ) error {
var err error
if alias == nil {
return fmt . Errorf ( "alias is nil" )
}
2017-11-02 20:05:48 +00:00
// Alias must always be tied to a canonical object
if alias . CanonicalID == "" {
return fmt . Errorf ( "missing canonical ID" )
2017-10-11 17:21:20 +00:00
}
// Alias must have a name
if alias . Name == "" {
return fmt . Errorf ( "missing alias name %q" , alias . Name )
}
// Alias metadata should always be map[string]string
err = validateMetadata ( alias . Metadata )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "invalid alias metadata: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
// Create an ID if there isn't one already
if alias . ID == "" {
alias . ID , err = uuid . GenerateUUID ( )
if err != nil {
return fmt . Errorf ( "failed to generate alias ID" )
}
}
// Set the creation and last update times
if alias . CreationTime == nil {
alias . CreationTime = ptypes . TimestampNow ( )
alias . LastUpdateTime = alias . CreationTime
} else {
alias . LastUpdateTime = ptypes . TimestampNow ( )
}
return nil
}
func ( i * IdentityStore ) sanitizeEntity ( entity * identity . Entity ) error {
var err error
if entity == nil {
return fmt . Errorf ( "entity is nil" )
}
// Create an ID if there isn't one already
if entity . ID == "" {
entity . ID , err = uuid . GenerateUUID ( )
if err != nil {
return fmt . Errorf ( "failed to generate entity id" )
}
// Set the hash value of the storage bucket key in entity
entity . BucketKeyHash = i . entityPacker . BucketKeyHashByItemID ( entity . ID )
}
// Create a name if there isn't one already
if entity . Name == "" {
entity . Name , err = i . generateName ( "entity" )
if err != nil {
return fmt . Errorf ( "failed to generate entity name" )
}
}
// Entity metadata should always be map[string]string
err = validateMetadata ( entity . Metadata )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "invalid entity metadata: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
// Set the creation and last update times
if entity . CreationTime == nil {
entity . CreationTime = ptypes . TimestampNow ( )
entity . LastUpdateTime = entity . CreationTime
} else {
entity . LastUpdateTime = ptypes . TimestampNow ( )
}
return nil
}
func ( i * IdentityStore ) sanitizeAndUpsertGroup ( group * identity . Group , memberGroupIDs [ ] string ) error {
var err error
if group == nil {
return fmt . Errorf ( "group is nil" )
}
// Create an ID if there isn't one already
if group . ID == "" {
group . ID , err = uuid . GenerateUUID ( )
if err != nil {
return fmt . Errorf ( "failed to generate group id" )
}
// Set the hash value of the storage bucket key in group
group . BucketKeyHash = i . groupPacker . BucketKeyHashByItemID ( group . ID )
}
// Create a name if there isn't one already
if group . Name == "" {
group . Name , err = i . generateName ( "group" )
if err != nil {
return fmt . Errorf ( "failed to generate group name" )
}
}
// Entity metadata should always be map[string]string
err = validateMetadata ( group . Metadata )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "invalid group metadata: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
// Set the creation and last update times
if group . CreationTime == nil {
group . CreationTime = ptypes . TimestampNow ( )
group . LastUpdateTime = group . CreationTime
} else {
group . LastUpdateTime = ptypes . TimestampNow ( )
}
// Remove duplicate entity IDs and check if all IDs are valid
group . MemberEntityIDs = strutil . RemoveDuplicates ( group . MemberEntityIDs , false )
for _ , entityID := range group . MemberEntityIDs {
2018-06-24 11:45:53 +00:00
entity , err := i . MemDBEntityByID ( entityID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-06-24 11:45:53 +00:00
return errwrap . Wrapf ( fmt . Sprintf ( "failed to validate entity ID %q: {{err}}" , entityID ) , err )
}
if entity == nil {
return fmt . Errorf ( "invalid entity ID %q" , entityID )
2017-10-11 17:21:20 +00:00
}
}
txn := i . db . Txn ( true )
defer txn . Abort ( )
memberGroupIDs = strutil . RemoveDuplicates ( memberGroupIDs , false )
// After the group lock is held, make membership updates to all the
// relevant groups
for _ , memberGroupID := range memberGroupIDs {
2017-11-02 20:05:48 +00:00
memberGroup , err := i . MemDBGroupByID ( memberGroupID , true )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if memberGroup == nil {
return fmt . Errorf ( "invalid member group ID %q" , memberGroupID )
}
// Skip if memberGroupID is already a member of group.ID
if strutil . StrListContains ( memberGroup . ParentGroupIDs , group . ID ) {
continue
}
// Ensure that adding memberGroupID does not lead to cyclic
// relationships
2018-06-24 11:45:53 +00:00
// Detect self loop
if group . ID == memberGroupID {
return fmt . Errorf ( "member group ID %q is same as the ID of the group" , group . ID )
}
groupByID , err := i . MemDBGroupByID ( group . ID , true )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
2018-06-24 11:45:53 +00:00
// If group is nil, that means that a group doesn't already exist and its
// okay to add any group as its member group.
if groupByID != nil {
// If adding the memberGroupID to groupID creates a cycle, then groupID must
// be a hop in that loop. Start a DFS traversal from memberGroupID and see if
// it reaches back to groupID. If it does, then it's a loop.
// Created a visited set
visited := make ( map [ string ] bool )
cycleDetected , err := i . detectCycleDFS ( visited , groupByID . ID , memberGroupID )
if err != nil {
return fmt . Errorf ( "failed to perform cyclic relationship detection for member group ID %q" , memberGroupID )
}
if cycleDetected {
return fmt . Errorf ( "cyclic relationship detected for member group ID %q" , memberGroupID )
}
}
2017-10-11 17:21:20 +00:00
memberGroup . ParentGroupIDs = append ( memberGroup . ParentGroupIDs , group . ID )
2018-06-24 11:45:53 +00:00
// This technically is not upsert. It is only update, only the method
// name is upsert here.
err = i . UpsertGroupInTxn ( txn , memberGroup , true )
2017-10-11 17:21:20 +00:00
if err != nil {
// Ideally we would want to revert the whole operation in case of
// errors while persisting in member groups. But there is no
// storage transaction support yet. When we do have it, this will need
// an update.
return err
2018-06-24 11:45:53 +00:00
}
2017-10-11 17:21:20 +00:00
}
2018-06-24 11:45:53 +00:00
// Sanitize the group alias
if group . Alias != nil {
group . Alias . CanonicalID = group . ID
2017-10-11 17:21:20 +00:00
2018-06-24 11:45:53 +00:00
err = i . sanitizeAlias ( group . Alias )
if err != nil {
return err
}
2017-10-11 17:21:20 +00:00
2018-06-24 11:45:53 +00:00
err = i . MemDBUpsertAliasInTxn ( txn , group . Alias , true )
if err != nil {
return err
}
2017-10-11 17:21:20 +00:00
}
2018-06-24 11:45:53 +00:00
err = i . UpsertGroupInTxn ( txn , group , true )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-06-24 11:45:53 +00:00
return err
2017-10-11 17:21:20 +00:00
}
2018-06-24 11:45:53 +00:00
txn . Commit ( )
2017-10-11 17:21:20 +00:00
return nil
}
func ( i * IdentityStore ) deleteAliasesInEntityInTxn ( txn * memdb . Txn , entity * identity . Entity , aliases [ ] * identity . Alias ) error {
if entity == nil {
return fmt . Errorf ( "entity is nil" )
}
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
var remainList [ ] * identity . Alias
var removeList [ ] * identity . Alias
for _ , item := range aliases {
for _ , alias := range entity . Aliases {
if alias . ID == item . ID {
removeList = append ( removeList , alias )
} else {
remainList = append ( remainList , alias )
}
}
}
// Remove identity indices from aliases table for those that needs to
// be removed
for _ , alias := range removeList {
2017-11-02 20:05:48 +00:00
aliasToBeRemoved , err := i . MemDBAliasByIDInTxn ( txn , alias . ID , false , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if aliasToBeRemoved == nil {
return fmt . Errorf ( "alias was not indexed" )
}
2017-11-02 20:05:48 +00:00
err = i . MemDBDeleteAliasByIDInTxn ( txn , aliasToBeRemoved . ID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
}
// Update the entity with remaining items
entity . Aliases = remainList
return nil
}
// validateMeta validates a set of key/value pairs from the agent config
func validateMetadata ( meta map [ string ] string ) error {
if len ( meta ) > metaMaxKeyPairs {
return fmt . Errorf ( "metadata cannot contain more than %d key/value pairs" , metaMaxKeyPairs )
}
for key , value := range meta {
if err := validateMetaPair ( key , value ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( fmt . Sprintf ( "failed to load metadata pair (%q, %q): {{err}}" , key , value ) , err )
2017-10-11 17:21:20 +00:00
}
}
return nil
}
// validateMetaPair checks that the given key/value pair is in a valid format
func validateMetaPair ( key , value string ) error {
if key == "" {
return fmt . Errorf ( "key cannot be blank" )
}
if ! metaKeyFormatRegEx ( key ) {
return fmt . Errorf ( "key contains invalid characters" )
}
if len ( key ) > metaKeyMaxLength {
return fmt . Errorf ( "key is too long (limit: %d characters)" , metaKeyMaxLength )
}
if strings . HasPrefix ( key , metaKeyReservedPrefix ) {
return fmt . Errorf ( "key prefix %q is reserved for internal use" , metaKeyReservedPrefix )
}
if len ( value ) > metaValueMaxLength {
return fmt . Errorf ( "value is too long (limit: %d characters)" , metaValueMaxLength )
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupByNameInTxn ( txn * memdb . Txn , groupName string , clone bool ) ( * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if groupName == "" {
return nil , fmt . Errorf ( "missing group name" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
groupRaw , err := txn . First ( groupsTable , "name" , groupName )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch group from memdb using group name: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if groupRaw == nil {
return nil , nil
}
group , ok := groupRaw . ( * identity . Group )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched group" )
}
if clone {
return group . Clone ( )
}
return group , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupByName ( groupName string , clone bool ) ( * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if groupName == "" {
return nil , fmt . Errorf ( "missing group name" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBGroupByNameInTxn ( txn , groupName , clone )
}
func ( i * IdentityStore ) UpsertGroup ( group * identity . Group , persist bool ) error {
txn := i . db . Txn ( true )
defer txn . Abort ( )
2018-06-24 11:45:53 +00:00
err := i . UpsertGroupInTxn ( txn , group , true )
2017-11-02 20:05:48 +00:00
if err != nil {
return err
}
txn . Commit ( )
2018-06-24 11:45:53 +00:00
2017-11-02 20:05:48 +00:00
return nil
2017-10-11 17:21:20 +00:00
}
2018-06-24 11:45:53 +00:00
func ( i * IdentityStore ) UpsertGroupInTxn ( txn * memdb . Txn , group * identity . Group , persist bool ) error {
2017-10-11 17:21:20 +00:00
var err error
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
if group == nil {
return fmt . Errorf ( "group is nil" )
}
// Increment the modify index of the group
group . ModifyIndex ++
// Insert or update group in MemDB using the transaction created above
2017-11-02 20:05:48 +00:00
err = i . MemDBUpsertGroupInTxn ( txn , group )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if persist {
groupAsAny , err := ptypes . MarshalAny ( group )
if err != nil {
return err
}
item := & storagepacker . Item {
ID : group . ID ,
Message : groupAsAny ,
}
err = i . groupPacker . PutItem ( item )
if err != nil {
return err
}
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBUpsertGroupInTxn ( txn * memdb . Txn , group * identity . Group ) error {
2017-10-11 17:21:20 +00:00
if txn == nil {
return fmt . Errorf ( "nil txn" )
}
if group == nil {
return fmt . Errorf ( "group is nil" )
}
2017-11-02 20:05:48 +00:00
groupRaw , err := txn . First ( groupsTable , "id" , group . ID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to lookup group from memdb using group id: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if groupRaw != nil {
2017-11-02 20:05:48 +00:00
err = txn . Delete ( groupsTable , groupRaw )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete group from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
}
2017-11-02 20:05:48 +00:00
if err := txn . Insert ( groupsTable , group ) ; err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to update group into memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBDeleteGroupByIDInTxn ( txn * memdb . Txn , groupID string ) error {
2017-10-11 17:21:20 +00:00
if groupID == "" {
return nil
}
if txn == nil {
return fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
group , err := i . MemDBGroupByIDInTxn ( txn , groupID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return err
}
if group == nil {
return nil
}
err = txn . Delete ( "groups" , group )
if err != nil {
2018-04-05 15:49:21 +00:00
return errwrap . Wrapf ( "failed to delete group from memdb: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
return nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupByIDInTxn ( txn * memdb . Txn , groupID string , clone bool ) ( * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if groupID == "" {
return nil , fmt . Errorf ( "missing group ID" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
2017-11-02 20:05:48 +00:00
groupRaw , err := txn . First ( groupsTable , "id" , groupID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to fetch group from memdb using group ID: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
if groupRaw == nil {
return nil , nil
}
group , ok := groupRaw . ( * identity . Group )
if ! ok {
return nil , fmt . Errorf ( "failed to declare the type of fetched group" )
}
if clone {
return group . Clone ( )
}
return group , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupByID ( groupID string , clone bool ) ( * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if groupID == "" {
return nil , fmt . Errorf ( "missing group ID" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBGroupByIDInTxn ( txn , groupID , clone )
2017-10-11 17:21:20 +00:00
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupsByParentGroupIDInTxn ( txn * memdb . Txn , memberGroupID string , clone bool ) ( [ ] * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if memberGroupID == "" {
return nil , fmt . Errorf ( "missing member group ID" )
}
2017-11-02 20:05:48 +00:00
groupsIter , err := txn . Get ( groupsTable , "parent_group_ids" , memberGroupID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to lookup groups using member group ID: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
var groups [ ] * identity . Group
for group := groupsIter . Next ( ) ; group != nil ; group = groupsIter . Next ( ) {
entry := group . ( * identity . Group )
if clone {
entry , err = entry . Clone ( )
if err != nil {
return nil , err
}
}
groups = append ( groups , entry )
}
return groups , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupsByParentGroupID ( memberGroupID string , clone bool ) ( [ ] * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if memberGroupID == "" {
return nil , fmt . Errorf ( "missing member group ID" )
}
txn := i . db . Txn ( false )
2017-11-02 20:05:48 +00:00
return i . MemDBGroupsByParentGroupIDInTxn ( txn , memberGroupID , clone )
2017-10-11 17:21:20 +00:00
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupsByMemberEntityID ( entityID string , clone bool , externalOnly bool ) ( [ ] * identity . Group , error ) {
txn := i . db . Txn ( false )
defer txn . Abort ( )
return i . MemDBGroupsByMemberEntityIDInTxn ( txn , entityID , clone , externalOnly )
}
func ( i * IdentityStore ) MemDBGroupsByMemberEntityIDInTxn ( txn * memdb . Txn , entityID string , clone bool , externalOnly bool ) ( [ ] * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if entityID == "" {
return nil , fmt . Errorf ( "missing entity ID" )
}
2017-11-02 20:05:48 +00:00
groupsIter , err := txn . Get ( groupsTable , "member_entity_ids" , entityID )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to lookup groups using entity ID: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
var groups [ ] * identity . Group
for group := groupsIter . Next ( ) ; group != nil ; group = groupsIter . Next ( ) {
entry := group . ( * identity . Group )
2017-11-02 20:05:48 +00:00
if externalOnly && entry . Type == groupTypeInternal {
continue
}
2017-10-11 17:21:20 +00:00
if clone {
entry , err = entry . Clone ( )
if err != nil {
return nil , err
}
}
groups = append ( groups , entry )
}
return groups , nil
}
func ( i * IdentityStore ) groupPoliciesByEntityID ( entityID string ) ( [ ] string , error ) {
if entityID == "" {
return nil , fmt . Errorf ( "empty entity ID" )
}
2017-11-02 20:05:48 +00:00
groups , err := i . MemDBGroupsByMemberEntityID ( entityID , false , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
visited := make ( map [ string ] bool )
var policies [ ] string
for _ , group := range groups {
2017-11-03 11:19:29 +00:00
groupPolicies , err := i . collectPoliciesReverseDFS ( group , visited , nil )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
2017-11-03 11:19:29 +00:00
policies = append ( policies , groupPolicies ... )
2017-10-11 17:21:20 +00:00
}
return strutil . RemoveDuplicates ( policies , false ) , nil
}
2017-11-06 18:01:48 +00:00
func ( i * IdentityStore ) groupsByEntityID ( entityID string ) ( [ ] * identity . Group , [ ] * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if entityID == "" {
2017-11-06 18:01:48 +00:00
return nil , nil , fmt . Errorf ( "empty entity ID" )
2017-10-11 17:21:20 +00:00
}
2017-11-06 18:01:48 +00:00
groups , err := i . MemDBGroupsByMemberEntityID ( entityID , true , false )
2017-10-11 17:21:20 +00:00
if err != nil {
2017-11-06 18:01:48 +00:00
return nil , nil , err
2017-10-11 17:21:20 +00:00
}
visited := make ( map [ string ] bool )
var tGroups [ ] * identity . Group
for _ , group := range groups {
2017-11-03 15:26:22 +00:00
gGroups , err := i . collectGroupsReverseDFS ( group , visited , nil )
2017-10-11 17:21:20 +00:00
if err != nil {
2017-11-06 18:01:48 +00:00
return nil , nil , err
2017-10-11 17:21:20 +00:00
}
2017-11-03 15:26:22 +00:00
tGroups = append ( tGroups , gGroups ... )
2017-10-11 17:21:20 +00:00
}
// Remove duplicates
groupMap := make ( map [ string ] * identity . Group )
for _ , group := range tGroups {
groupMap [ group . ID ] = group
}
2017-11-03 15:26:22 +00:00
tGroups = make ( [ ] * identity . Group , 0 , len ( groupMap ) )
2017-10-11 17:21:20 +00:00
for _ , group := range groupMap {
tGroups = append ( tGroups , group )
}
2017-11-06 18:01:48 +00:00
diff := diffGroups ( groups , tGroups )
// For sanity
// There should not be any group that gets deleted
if len ( diff . Deleted ) != 0 {
return nil , nil , fmt . Errorf ( "failed to diff group memberships" )
}
return diff . Unmodified , diff . New , nil
2017-10-11 17:21:20 +00:00
}
func ( i * IdentityStore ) collectGroupsReverseDFS ( group * identity . Group , visited map [ string ] bool , groups [ ] * identity . Group ) ( [ ] * identity . Group , error ) {
if group == nil {
return nil , fmt . Errorf ( "nil group" )
}
// If traversal for a groupID is performed before, skip it
if visited [ group . ID ] {
return groups , nil
}
visited [ group . ID ] = true
groups = append ( groups , group )
// Traverse all the parent groups
for _ , parentGroupID := range group . ParentGroupIDs {
2017-11-02 20:05:48 +00:00
parentGroup , err := i . MemDBGroupByID ( parentGroupID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
2018-06-27 14:16:12 +00:00
if parentGroup == nil {
continue
}
2017-11-03 15:26:22 +00:00
pGroups , err := i . collectGroupsReverseDFS ( parentGroup , visited , groups )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , fmt . Errorf ( "failed to collect group at parent group ID %q" , parentGroup . ID )
}
2017-11-03 15:26:22 +00:00
groups = append ( groups , pGroups ... )
2017-10-11 17:21:20 +00:00
}
return groups , nil
}
func ( i * IdentityStore ) collectPoliciesReverseDFS ( group * identity . Group , visited map [ string ] bool , policies [ ] string ) ( [ ] string , error ) {
if group == nil {
return nil , fmt . Errorf ( "nil group" )
}
// If traversal for a groupID is performed before, skip it
if visited [ group . ID ] {
return policies , nil
}
visited [ group . ID ] = true
policies = append ( policies , group . Policies ... )
// Traverse all the parent groups
for _ , parentGroupID := range group . ParentGroupIDs {
2017-11-02 20:05:48 +00:00
parentGroup , err := i . MemDBGroupByID ( parentGroupID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
2018-06-27 14:16:12 +00:00
if parentGroup == nil {
continue
}
2017-11-03 15:26:22 +00:00
parentPolicies , err := i . collectPoliciesReverseDFS ( parentGroup , visited , policies )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , fmt . Errorf ( "failed to collect policies at parent group ID %q" , parentGroup . ID )
}
2017-11-03 15:26:22 +00:00
policies = append ( policies , parentPolicies ... )
2017-10-11 17:21:20 +00:00
}
2017-11-03 15:26:22 +00:00
return strutil . RemoveDuplicates ( policies , false ) , nil
2017-10-11 17:21:20 +00:00
}
func ( i * IdentityStore ) detectCycleDFS ( visited map [ string ] bool , startingGroupID , groupID string ) ( bool , error ) {
// If the traversal reaches the startingGroupID, a loop is detected
if startingGroupID == groupID {
return true , nil
}
// If traversal for a groupID is performed before, skip it
if visited [ groupID ] {
return false , nil
}
visited [ groupID ] = true
2017-11-02 20:05:48 +00:00
group , err := i . MemDBGroupByID ( groupID , true )
2017-10-11 17:21:20 +00:00
if err != nil {
return false , err
}
if group == nil {
return false , nil
}
// Fetch all groups in which groupID is present as a ParentGroupID. In
// other words, find all the subgroups of groupID.
2017-11-02 20:05:48 +00:00
memberGroups , err := i . MemDBGroupsByParentGroupID ( groupID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return false , err
}
// DFS traverse the member groups
for _ , memberGroup := range memberGroups {
cycleDetected , err := i . detectCycleDFS ( visited , startingGroupID , memberGroup . ID )
if err != nil {
return false , fmt . Errorf ( "failed to perform cycle detection at member group ID %q" , memberGroup . ID )
}
if cycleDetected {
return true , fmt . Errorf ( "cycle detected at member group ID %q" , memberGroup . ID )
}
}
return false , nil
}
func ( i * IdentityStore ) memberGroupIDsByID ( groupID string ) ( [ ] string , error ) {
var memberGroupIDs [ ] string
2017-11-02 20:05:48 +00:00
memberGroups , err := i . MemDBGroupsByParentGroupID ( groupID , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return nil , err
}
for _ , memberGroup := range memberGroups {
memberGroupIDs = append ( memberGroupIDs , memberGroup . ID )
}
return memberGroupIDs , nil
}
func ( i * IdentityStore ) generateName ( entryType string ) ( string , error ) {
var name string
OUTER :
for {
randBytes , err := uuid . GenerateRandomBytes ( 4 )
if err != nil {
return "" , err
}
name = fmt . Sprintf ( "%s_%s" , entryType , fmt . Sprintf ( "%08x" , randBytes [ 0 : 4 ] ) )
switch entryType {
case "entity" :
2017-11-02 20:05:48 +00:00
entity , err := i . MemDBEntityByName ( name , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return "" , err
}
if entity == nil {
break OUTER
}
case "group" :
2017-11-02 20:05:48 +00:00
group , err := i . MemDBGroupByName ( name , false )
2017-10-11 17:21:20 +00:00
if err != nil {
return "" , err
}
if group == nil {
break OUTER
}
default :
return "" , fmt . Errorf ( "unrecognized type %q" , entryType )
}
}
return name , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupsByBucketEntryKeyHashInTxn ( txn * memdb . Txn , hashValue string ) ( [ ] * identity . Group , error ) {
2017-10-11 17:21:20 +00:00
if txn == nil {
return nil , fmt . Errorf ( "nil txn" )
}
if hashValue == "" {
return nil , fmt . Errorf ( "empty hash value" )
}
2017-11-02 20:05:48 +00:00
groupsIter , err := txn . Get ( groupsTable , "bucket_key_hash" , hashValue )
2017-10-11 17:21:20 +00:00
if err != nil {
2018-04-05 15:49:21 +00:00
return nil , errwrap . Wrapf ( "failed to lookup groups using bucket entry key hash: {{err}}" , err )
2017-10-11 17:21:20 +00:00
}
var groups [ ] * identity . Group
for group := groupsIter . Next ( ) ; group != nil ; group = groupsIter . Next ( ) {
groups = append ( groups , group . ( * identity . Group ) )
}
return groups , nil
}
2017-11-02 20:05:48 +00:00
func ( i * IdentityStore ) MemDBGroupByAliasIDInTxn ( txn * memdb . Txn , aliasID string , clone bool ) ( * identity . Group , error ) {
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
if txn == nil {
return nil , fmt . Errorf ( "txn is nil" )
}
alias , err := i . MemDBAliasByIDInTxn ( txn , aliasID , false , true )
if err != nil {
return nil , err
}
if alias == nil {
return nil , nil
}
return i . MemDBGroupByIDInTxn ( txn , alias . CanonicalID , clone )
}
func ( i * IdentityStore ) MemDBGroupByAliasID ( aliasID string , clone bool ) ( * identity . Group , error ) {
if aliasID == "" {
return nil , fmt . Errorf ( "missing alias ID" )
}
txn := i . db . Txn ( false )
return i . MemDBGroupByAliasIDInTxn ( txn , aliasID , clone )
}
2018-08-23 01:53:04 +00:00
func ( i * IdentityStore ) refreshExternalGroupMembershipsByEntityID ( entityID string , groupAliases [ ] * logical . Alias ) ( [ ] * logical . Alias , error ) {
2017-11-02 20:05:48 +00:00
if entityID == "" {
2018-08-23 01:53:04 +00:00
return nil , fmt . Errorf ( "empty entity ID" )
2017-11-02 20:05:48 +00:00
}
i . groupLock . Lock ( )
defer i . groupLock . Unlock ( )
txn := i . db . Txn ( true )
defer txn . Abort ( )
oldGroups , err := i . MemDBGroupsByMemberEntityIDInTxn ( txn , entityID , true , true )
if err != nil {
2018-08-23 01:53:04 +00:00
return nil , err
2017-11-02 20:05:48 +00:00
}
2018-04-17 16:01:43 +00:00
mountAccessor := ""
if len ( groupAliases ) != 0 {
mountAccessor = groupAliases [ 0 ] . MountAccessor
}
2017-11-02 20:05:48 +00:00
var newGroups [ ] * identity . Group
2018-08-23 01:53:04 +00:00
var validAliases [ ] * logical . Alias
2017-11-02 20:05:48 +00:00
for _ , alias := range groupAliases {
aliasByFactors , err := i . MemDBAliasByFactors ( alias . MountAccessor , alias . Name , true , true )
if err != nil {
2018-08-23 01:53:04 +00:00
return nil , err
2017-11-02 20:05:48 +00:00
}
if aliasByFactors == nil {
continue
}
mappingGroup , err := i . MemDBGroupByAliasID ( aliasByFactors . ID , true )
if err != nil {
2018-08-23 01:53:04 +00:00
return nil , err
2017-11-02 20:05:48 +00:00
}
if mappingGroup == nil {
2018-08-23 01:53:04 +00:00
return nil , fmt . Errorf ( "group unavailable for a valid alias ID %q" , aliasByFactors . ID )
2017-11-02 20:05:48 +00:00
}
newGroups = append ( newGroups , mappingGroup )
2018-08-23 01:53:04 +00:00
validAliases = append ( validAliases , alias )
2017-11-02 20:05:48 +00:00
}
diff := diffGroups ( oldGroups , newGroups )
// Add the entity ID to all the new groups
for _ , group := range diff . New {
if group . Type != groupTypeExternal {
continue
}
i . logger . Debug ( "adding member entity ID to external group" , "member_entity_id" , entityID , "group_id" , group . ID )
group . MemberEntityIDs = append ( group . MemberEntityIDs , entityID )
2018-06-24 11:45:53 +00:00
err = i . UpsertGroupInTxn ( txn , group , true )
2017-11-02 20:05:48 +00:00
if err != nil {
2018-08-23 01:53:04 +00:00
return nil , err
2017-11-02 20:05:48 +00:00
}
}
// Remove the entity ID from all the deleted groups
for _ , group := range diff . Deleted {
if group . Type != groupTypeExternal {
continue
}
2018-04-17 16:01:43 +00:00
// If the external group is from a different mount, don't remove the
// entity ID from it.
if mountAccessor != "" && group . Alias . MountAccessor != mountAccessor {
continue
}
2017-11-02 20:05:48 +00:00
i . logger . Debug ( "removing member entity ID from external group" , "member_entity_id" , entityID , "group_id" , group . ID )
group . MemberEntityIDs = strutil . StrListDelete ( group . MemberEntityIDs , entityID )
2018-06-24 11:45:53 +00:00
err = i . UpsertGroupInTxn ( txn , group , true )
2017-11-02 20:05:48 +00:00
if err != nil {
2018-08-23 01:53:04 +00:00
return nil , err
2017-11-02 20:05:48 +00:00
}
}
txn . Commit ( )
2018-08-23 01:53:04 +00:00
return validAliases , nil
2017-11-02 20:05:48 +00:00
}
// diffGroups is used to diff two sets of groups
func diffGroups ( old , new [ ] * identity . Group ) * groupDiff {
diff := & groupDiff { }
existing := make ( map [ string ] * identity . Group )
for _ , group := range old {
existing [ group . ID ] = group
}
for _ , group := range new {
// Check if the entry in new is present in the old
_ , ok := existing [ group . ID ]
// If its not present, then its a new entry
if ! ok {
diff . New = append ( diff . New , group )
continue
}
// If its present, it means that its unmodified
diff . Unmodified = append ( diff . Unmodified , group )
// By deleting the unmodified from the old set, we could determine the
// ones that are stale by looking at the remaining ones.
delete ( existing , group . ID )
}
// Any remaining entries must have been deleted
for _ , me := range existing {
diff . Deleted = append ( diff . Deleted , me )
}
return diff
}