|
|
@ -1703,27 +1703,41 @@ func (sys *IAMSys) PolicyDBGet(name string, isGroup bool) ([]string, error) { |
|
|
|
// This call assumes that caller has the sys.RLock()
|
|
|
|
// This call assumes that caller has the sys.RLock()
|
|
|
|
func (sys *IAMSys) policyDBGet(name string, isGroup bool) ([]string, error) { |
|
|
|
func (sys *IAMSys) policyDBGet(name string, isGroup bool) ([]string, error) { |
|
|
|
if isGroup { |
|
|
|
if isGroup { |
|
|
|
if _, ok := sys.iamGroupsMap[name]; !ok { |
|
|
|
g, ok := sys.iamGroupsMap[name] |
|
|
|
|
|
|
|
if !ok { |
|
|
|
return nil, errNoSuchGroup |
|
|
|
return nil, errNoSuchGroup |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Group is disabled, so we return no policy - this
|
|
|
|
|
|
|
|
// ensures the request is denied.
|
|
|
|
|
|
|
|
if g.Status == statusDisabled { |
|
|
|
|
|
|
|
return nil, nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
mp := sys.iamGroupPolicyMap[name] |
|
|
|
mp := sys.iamGroupPolicyMap[name] |
|
|
|
return mp.toSlice(), nil |
|
|
|
return mp.toSlice(), nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// When looking for a user's policies, we also check if the
|
|
|
|
// When looking for a user's policies, we also check if the
|
|
|
|
// user and the groups they are member of are enabled.
|
|
|
|
// user and the groups they are member of are enabled.
|
|
|
|
if u, ok := sys.iamUsersMap[name]; !ok { |
|
|
|
u, ok := sys.iamUsersMap[name] |
|
|
|
|
|
|
|
if !ok { |
|
|
|
return nil, errNoSuchUser |
|
|
|
return nil, errNoSuchUser |
|
|
|
} else if u.Status == statusDisabled { |
|
|
|
} |
|
|
|
// User is disabled, so we return no policy - this
|
|
|
|
|
|
|
|
// ensures the request is denied.
|
|
|
|
if !u.IsValid() { |
|
|
|
return nil, nil |
|
|
|
return nil, nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var policies []string |
|
|
|
var policies []string |
|
|
|
|
|
|
|
|
|
|
|
mp := sys.iamUserPolicyMap[name] |
|
|
|
mp, ok := sys.iamUserPolicyMap[name] |
|
|
|
|
|
|
|
if !ok { |
|
|
|
|
|
|
|
if u.ParentUser != "" { |
|
|
|
|
|
|
|
mp = sys.iamUserPolicyMap[u.ParentUser] |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// returned policy could be empty
|
|
|
|
// returned policy could be empty
|
|
|
|
policies = append(policies, mp.toSlice()...) |
|
|
|
policies = append(policies, mp.toSlice()...) |
|
|
|
|
|
|
|
|
|
|
|