2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-10-09 17:00:01 -04:00
|
|
|
|
|
|
|
package iampolicy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2020-01-27 17:12:34 -05:00
|
|
|
"github.com/minio/minio/pkg/bucket/policy"
|
|
|
|
"github.com/minio/minio/pkg/bucket/policy/condition"
|
2018-10-09 17:00:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Statement - iam policy statement.
|
|
|
|
type Statement struct {
|
|
|
|
SID policy.ID `json:"Sid,omitempty"`
|
|
|
|
Effect policy.Effect `json:"Effect"`
|
|
|
|
Actions ActionSet `json:"Action"`
|
2019-11-19 05:03:18 -05:00
|
|
|
Resources ResourceSet `json:"Resource,omitempty"`
|
2018-10-09 17:00:01 -04:00
|
|
|
Conditions condition.Functions `json:"Condition,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsAllowed - checks given policy args is allowed to continue the Rest API.
|
|
|
|
func (statement Statement) IsAllowed(args Args) bool {
|
|
|
|
check := func() bool {
|
|
|
|
if !statement.Actions.Match(args.Action) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
resource := args.BucketName
|
|
|
|
if args.ObjectName != "" {
|
|
|
|
if !strings.HasPrefix(args.ObjectName, "/") {
|
|
|
|
resource += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource += args.ObjectName
|
2018-10-13 03:18:43 -04:00
|
|
|
} else {
|
|
|
|
resource += "/"
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
2019-11-19 05:03:18 -05:00
|
|
|
// For admin statements, resource match can be ignored.
|
|
|
|
if !statement.Resources.Match(resource, args.ConditionValues) && !statement.isAdmin() {
|
2018-10-09 17:00:01 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return statement.Conditions.Evaluate(args.ConditionValues)
|
|
|
|
}
|
|
|
|
|
|
|
|
return statement.Effect.IsAllowed(check())
|
|
|
|
}
|
2019-11-19 05:03:18 -05:00
|
|
|
func (statement Statement) isAdmin() bool {
|
|
|
|
for action := range statement.Actions {
|
2020-05-10 13:55:28 -04:00
|
|
|
if AdminAction(action).IsValid() {
|
|
|
|
return true
|
2019-11-19 05:03:18 -05:00
|
|
|
}
|
|
|
|
}
|
2020-05-10 13:55:28 -04:00
|
|
|
return false
|
2019-11-19 05:03:18 -05:00
|
|
|
}
|
2018-10-09 17:00:01 -04:00
|
|
|
|
|
|
|
// isValid - checks whether statement is valid or not.
|
|
|
|
func (statement Statement) isValid() error {
|
|
|
|
if !statement.Effect.IsValid() {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("invalid Effect %v", statement.Effect)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(statement.Actions) == 0 {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("Action must not be empty")
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
2019-11-19 05:03:18 -05:00
|
|
|
if statement.isAdmin() {
|
2020-05-10 13:55:28 -04:00
|
|
|
if err := statement.Actions.ValidateAdmin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-19 05:03:18 -05:00
|
|
|
for action := range statement.Actions {
|
|
|
|
keys := statement.Conditions.Keys()
|
|
|
|
keyDiff := keys.Difference(adminActionConditionKeyMap[action])
|
|
|
|
if !keyDiff.IsEmpty() {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("unsupported condition keys '%v' used for action '%v'", keyDiff, action)
|
2019-11-19 05:03:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-10 13:55:28 -04:00
|
|
|
if !statement.SID.IsValid() {
|
|
|
|
return Errorf("invalid SID %v", statement.SID)
|
|
|
|
}
|
|
|
|
|
2018-10-09 17:00:01 -04:00
|
|
|
if len(statement.Resources) == 0 {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("Resource must not be empty")
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := statement.Resources.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-05-10 13:55:28 -04:00
|
|
|
if err := statement.Actions.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-09 17:00:01 -04:00
|
|
|
for action := range statement.Actions {
|
|
|
|
if !statement.Resources.objectResourceExists() && !statement.Resources.bucketResourceExists() {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("unsupported Resource found %v for action %v", statement.Resources, action)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
keys := statement.Conditions.Keys()
|
2021-02-16 14:56:45 -05:00
|
|
|
keyDiff := keys.Difference(iamActionConditionKeyMap.Lookup(action))
|
2018-10-09 17:00:01 -04:00
|
|
|
if !keyDiff.IsEmpty() {
|
2020-01-03 14:28:52 -05:00
|
|
|
return Errorf("unsupported condition keys '%v' used for action '%v'", keyDiff, action)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate - validates Statement is for given bucket or not.
|
|
|
|
func (statement Statement) Validate() error {
|
|
|
|
return statement.isValid()
|
|
|
|
}
|
|
|
|
|
2021-03-16 11:50:36 -04:00
|
|
|
// Equals checks if two statements are equal
|
|
|
|
func (statement Statement) Equals(st Statement) bool {
|
|
|
|
if statement.Effect != st.Effect {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !statement.Actions.Equals(st.Actions) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !statement.Resources.Equals(st.Resources) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !statement.Conditions.Equals(st.Conditions) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone clones Statement structure
|
|
|
|
func (statement Statement) Clone() Statement {
|
|
|
|
return NewStatement(statement.Effect, statement.Actions.Clone(),
|
|
|
|
statement.Resources.Clone(), statement.Conditions.Clone())
|
|
|
|
}
|
|
|
|
|
2018-10-09 17:00:01 -04:00
|
|
|
// NewStatement - creates new statement.
|
|
|
|
func NewStatement(effect policy.Effect, actionSet ActionSet, resourceSet ResourceSet, conditions condition.Functions) Statement {
|
|
|
|
return Statement{
|
|
|
|
Effect: effect,
|
|
|
|
Actions: actionSet,
|
|
|
|
Resources: resourceSet,
|
|
|
|
Conditions: conditions,
|
|
|
|
}
|
|
|
|
}
|