allow service accounts and temp credentials site-level healing (#14829)

This PR introduces support for site level

- service account healing
- temporary credentials healing
This commit is contained in:
Harshavardhana 2022-04-28 02:39:00 -07:00 committed by GitHub
parent 990fbeb3a4
commit 01a71c366d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 138 additions and 24 deletions

View File

@ -1697,6 +1697,24 @@ func (store *IAMStoreSys) UpdateServiceAccount(ctx context.Context, accessKey st
return nil return nil
} }
// ListTempAccounts - lists only temporary accounts from the cache.
func (store *IAMStoreSys) ListTempAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) {
cache := store.rlock()
defer store.runlock()
var tempAccounts []auth.Credentials
for _, v := range cache.iamUsersMap {
if v.IsTemp() && v.ParentUser == accessKey {
// Hide secret key & session key here
v.SecretKey = ""
v.SessionToken = ""
tempAccounts = append(tempAccounts, v)
}
}
return tempAccounts, nil
}
// ListServiceAccounts - lists only service accounts from the cache. // ListServiceAccounts - lists only service accounts from the cache.
func (store *IAMStoreSys) ListServiceAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) { func (store *IAMStoreSys) ListServiceAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) {
cache := store.rlock() cache := store.rlock()

View File

@ -939,6 +939,20 @@ func (sys *IAMSys) ListServiceAccounts(ctx context.Context, accessKey string) ([
} }
} }
// ListTempAccounts - lists all services accounts associated to a specific user
func (sys *IAMSys) ListTempAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) {
if !sys.Initialized() {
return nil, errServerNotInitialized
}
select {
case <-sys.configLoaded:
return sys.store.ListTempAccounts(ctx, accessKey)
case <-ctx.Done():
return nil, ctx.Err()
}
}
// GetServiceAccount - wrapper method to get information about a service account // GetServiceAccount - wrapper method to get information about a service account
func (sys *IAMSys) GetServiceAccount(ctx context.Context, accessKey string) (auth.Credentials, *iampolicy.Policy, error) { func (sys *IAMSys) GetServiceAccount(ctx context.Context, accessKey string) (auth.Credentials, *iampolicy.Policy, error) {
sa, embeddedPolicy, err := sys.getServiceAccount(ctx, accessKey) sa, embeddedPolicy, err := sys.getServiceAccount(ctx, accessKey)

View File

@ -180,6 +180,8 @@ type srStateData struct {
// Init - initialize the site replication manager. // Init - initialize the site replication manager.
func (c *SiteReplicationSys) Init(ctx context.Context, objAPI ObjectLayer) error { func (c *SiteReplicationSys) Init(ctx context.Context, objAPI ObjectLayer) error {
go c.startHealRoutine(ctx, objAPI)
err := c.loadFromDisk(ctx, objAPI) err := c.loadFromDisk(ctx, objAPI)
if err == errConfigNotFound { if err == errConfigNotFound {
return nil return nil
@ -191,8 +193,6 @@ func (c *SiteReplicationSys) Init(ctx context.Context, objAPI ObjectLayer) error
logger.Info("Cluster replication initialized") logger.Info("Cluster replication initialized")
} }
go c.startHealRoutine(ctx, objAPI)
return err return err
} }
@ -318,7 +318,6 @@ func (c *SiteReplicationSys) AddPeerClusters(ctx context.Context, psites []madmi
currDeploymentIDsSet = set.NewStringSet() currDeploymentIDsSet = set.NewStringSet()
err error err error
) )
if c.enabled {
currSites, err = c.GetClusterInfo(ctx) currSites, err = c.GetClusterInfo(ctx)
if err != nil { if err != nil {
return madmin.ReplicateAddStatus{}, errSRBackendIssue(err) return madmin.ReplicateAddStatus{}, errSRBackendIssue(err)
@ -326,7 +325,6 @@ func (c *SiteReplicationSys) AddPeerClusters(ctx context.Context, psites []madmi
for _, v := range currSites.Sites { for _, v := range currSites.Sites {
currDeploymentIDsSet.Add(v.DeploymentID) currDeploymentIDsSet.Add(v.DeploymentID)
} }
}
deploymentIDsSet := set.NewStringSet() deploymentIDsSet := set.NewStringSet()
localHasBuckets := false localHasBuckets := false
nonLocalPeerWithBuckets := "" nonLocalPeerWithBuckets := ""
@ -347,7 +345,7 @@ func (c *SiteReplicationSys) AddPeerClusters(ctx context.Context, psites []madmi
nonLocalPeerWithBuckets = v.Name nonLocalPeerWithBuckets = v.Name
} }
} }
if c.enabled { if !currDeploymentIDsSet.IsEmpty() {
// If current cluster is already SR enabled and no new site being added ,fail. // If current cluster is already SR enabled and no new site being added ,fail.
if currDeploymentIDsSet.Equals(deploymentIDsSet) { if currDeploymentIDsSet.Equals(deploymentIDsSet) {
return madmin.ReplicateAddStatus{}, errSRCannotJoin return madmin.ReplicateAddStatus{}, errSRCannotJoin
@ -2194,7 +2192,7 @@ func (c *SiteReplicationSys) siteReplicationStatus(ctx context.Context, objAPI O
sris := make([]madmin.SRInfo, len(c.state.Peers)) sris := make([]madmin.SRInfo, len(c.state.Peers))
depIdx := make(map[string]int, len(c.state.Peers)) depIdx := make(map[string]int, len(c.state.Peers))
var depIDs []string depIDs := make([]string, 0, len(c.state.Peers))
i := 0 i := 0
for d := range c.state.Peers { for d := range c.state.Peers {
depIDs = append(depIDs, d) depIDs = append(depIDs, d)
@ -2205,9 +2203,11 @@ func (c *SiteReplicationSys) siteReplicationStatus(ctx context.Context, objAPI O
metaInfoConcErr := c.concDo( metaInfoConcErr := c.concDo(
func() error { func() error {
srInfo, err := c.SiteReplicationMetaInfo(ctx, objAPI, opts) srInfo, err := c.SiteReplicationMetaInfo(ctx, objAPI, opts)
k := depIdx[globalDeploymentID] if err != nil {
sris[k] = srInfo
return err return err
}
sris[depIdx[globalDeploymentID]] = srInfo
return nil
}, },
func(deploymentID string, p madmin.PeerInfo) error { func(deploymentID string, p madmin.PeerInfo) error {
admClient, err := c.getAdminClient(ctx, deploymentID) admClient, err := c.getAdminClient(ctx, deploymentID)
@ -2215,9 +2215,11 @@ func (c *SiteReplicationSys) siteReplicationStatus(ctx context.Context, objAPI O
return err return err
} }
srInfo, err := admClient.SRMetaInfo(ctx, opts) srInfo, err := admClient.SRMetaInfo(ctx, opts)
k := depIdx[deploymentID] if err != nil {
sris[k] = srInfo
return err return err
}
sris[depIdx[deploymentID]] = srInfo
return nil
}, },
) )
@ -2895,7 +2897,7 @@ func (c *SiteReplicationSys) SiteReplicationMetaInfo(ctx context.Context, objAPI
if opts.Entity == madmin.SRBucketEntity { if opts.Entity == madmin.SRBucketEntity {
bi, err := objAPI.GetBucketInfo(ctx, opts.EntityValue) bi, err := objAPI.GetBucketInfo(ctx, opts.EntityValue)
if err != nil { if err != nil {
return info, nil return info, errSRBackendIssue(err)
} }
buckets = append(buckets, bi) buckets = append(buckets, bi)
} else { } else {
@ -3081,15 +3083,34 @@ func (c *SiteReplicationSys) SiteReplicationMetaInfo(ctx context.Context, objAPI
} }
} else { } else {
// get users/group info on local. // get users/group info on local.
userInfoMap, errU := globalIAMSys.ListUsers(ctx) userInfoMap, err := globalIAMSys.ListUsers(ctx)
if errU != nil { if err != nil {
return info, errSRBackendIssue(errU) return info, errSRBackendIssue(err)
} }
for user, ui := range userInfoMap { for user, ui := range userInfoMap {
info.UserInfoMap[user] = ui info.UserInfoMap[user] = ui
svcAccts, err := globalIAMSys.ListServiceAccounts(ctx, user)
if err != nil {
return info, errSRBackendIssue(err)
}
for _, svcAcct := range svcAccts {
info.UserInfoMap[svcAcct.AccessKey] = madmin.UserInfo{
Status: madmin.AccountStatus(svcAcct.Status),
}
}
tempAccts, err := globalIAMSys.ListTempAccounts(ctx, user)
if err != nil {
return info, errSRBackendIssue(err)
}
for _, tempAcct := range tempAccts {
info.UserInfoMap[tempAcct.AccessKey] = madmin.UserInfo{
Status: madmin.AccountStatus(tempAcct.Status),
} }
} }
} }
}
}
if opts.Groups || opts.Entity == madmin.SRGroupEntity { if opts.Groups || opts.Entity == madmin.SRGroupEntity {
// Replicate policy mappings on local to all peers. // Replicate policy mappings on local to all peers.
groupPolicyMap := make(map[string]MappedPolicy) groupPolicyMap := make(map[string]MappedPolicy)
@ -4076,15 +4097,76 @@ func (c *SiteReplicationSys) healUsers(ctx context.Context, objAPI ObjectLayer,
if isUserInfoEqual(latestUserStat.userInfo.UserInfo, uStatus.userInfo.UserInfo) { if isUserInfoEqual(latestUserStat.userInfo.UserInfo, uStatus.userInfo.UserInfo) {
continue continue
} }
peerName := info.Sites[dID].Name
creds, ok := globalIAMSys.GetUser(ctx, user) creds, ok := globalIAMSys.GetUser(ctx, user)
if !ok { if !ok {
continue continue
} }
// heal only the user accounts that are local users // heal only the user accounts that are local users
if creds.IsServiceAccount() || creds.IsTemp() { if creds.IsServiceAccount() {
claims, err := globalIAMSys.GetClaimsForSvcAcc(ctx, creds.AccessKey)
if err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing service account %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
continue
}
_, policy, err := globalIAMSys.GetServiceAccount(ctx, creds.AccessKey)
if err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing service account %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
continue
}
var policyJSON []byte
if policy != nil {
policyJSON, err = json.Marshal(policy)
if err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing service account %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
continue
}
}
if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{
Type: madmin.SRIAMItemSvcAcc,
SvcAccChange: &madmin.SRSvcAccChange{
Create: &madmin.SRSvcAccCreate{
Parent: creds.ParentUser,
AccessKey: creds.AccessKey,
SecretKey: creds.SecretKey,
Groups: creds.Groups,
Claims: claims,
SessionPolicy: json.RawMessage(policyJSON),
Status: creds.Status,
},
},
}); err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing service account %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
}
continue
}
if creds.IsTemp() && !creds.IsExpired() {
u, err := globalIAMSys.GetUserInfo(ctx, creds.ParentUser)
if err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing temporary credentials %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
continue
}
// Call hook for site replication.
if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{
Type: madmin.SRIAMItemSTSAcc,
STSCredential: &madmin.SRSTSCredential{
AccessKey: creds.AccessKey,
SecretKey: creds.SecretKey,
SessionToken: creds.SessionToken,
ParentUser: creds.ParentUser,
ParentPolicyMapping: u.PolicyName,
},
}); err != nil {
logger.LogIf(ctx, fmt.Errorf("Error healing temporary credentials %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
}
continue continue
} }
peerName := info.Sites[dID].Name
if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{ if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{
Type: madmin.SRIAMItemIAMUser, Type: madmin.SRIAMItemIAMUser,
IAMUser: &madmin.SRIAMUser{ IAMUser: &madmin.SRIAMUser{