1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
// 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/>.
package policy
import (
"bytes"
"strings"
"sync"
"github.com/minio/pkg/v3/policy/condition"
)
// Statement - iam policy statement.
type Statement struct {
SID ID `json:"Sid,omitempty"`
Effect Effect `json:"Effect"`
Actions ActionSet `json:"Action"`
NotActions ActionSet `json:"NotAction,omitempty"`
Resources ResourceSet `json:"Resource,omitempty"`
NotResources ResourceSet `json:"NotResource,omitempty"`
Conditions condition.Functions `json:"Condition,omitempty"`
}
// smallBufPool should always return a non-nil *bytes.Buffer
var smallBufPool = sync.Pool{
New: func() interface{} { return &bytes.Buffer{} },
}
// 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) && !statement.Actions.IsEmpty()) ||
statement.NotActions.Match(args.Action) {
return false
}
resource := smallBufPool.Get().(*bytes.Buffer)
defer smallBufPool.Put(resource)
resource.Reset()
resource.WriteString(args.BucketName)
if args.ObjectName != "" {
if !strings.HasPrefix(args.ObjectName, "/") {
resource.WriteByte('/')
}
resource.WriteString(args.ObjectName)
} else {
resource.WriteByte('/')
}
if statement.isKMS() {
if resource.Len() == 1 && resource.String() == "/" || len(statement.Resources) == 0 {
// In previous MinIO versions, KMS statements ignored Resources, so if len(statement.Resources) == 0,
// allow backward compatibility by not trying to Match.
// When resource is "/", this allows evaluating KMS statements while explicitly excluding Resource,
// by passing Args with empty BucketName and ObjectName. This is useful when doing a
// two-phase authorization of a request.
return statement.Conditions.Evaluate(args.ConditionValues)
}
}
// For some admin statements, resource match can be ignored.
ignoreResourceMatch := statement.isAdmin() || statement.isSTS()
if !ignoreResourceMatch && len(statement.Resources) > 0 && !statement.Resources.Match(resource.String(), args.ConditionValues) {
return false
}
if !ignoreResourceMatch && len(statement.NotResources) > 0 && statement.NotResources.Match(resource.String(), args.ConditionValues) {
return false
}
return statement.Conditions.Evaluate(args.ConditionValues)
}
return statement.Effect.IsAllowed(check())
}
func (statement Statement) isAdmin() bool {
for action := range statement.Actions {
if AdminAction(action).IsValid() {
return true
}
}
return false
}
func (statement Statement) isSTS() bool {
for action := range statement.Actions {
if STSAction(action).IsValid() {
return true
}
}
return false
}
func (statement Statement) isKMS() bool {
for action := range statement.Actions {
if KMSAction(action).IsValid() {
return true
}
}
return false
}
// isValid - checks whether statement is valid or not.
func (statement Statement) isValid() error {
if !statement.Effect.IsValid() {
return Errorf("invalid Effect %v", statement.Effect)
}
if len(statement.Actions) == 0 && len(statement.NotActions) == 0 {
return Errorf("Action must not be empty")
}
if len(statement.Actions) > 0 && len(statement.NotActions) > 0 {
return Errorf("Action and NotAction cannot be specified in the same statement")
}
if statement.isAdmin() {
if err := statement.Actions.ValidateAdmin(); err != nil {
return err
}
for action := range statement.Actions {
keys := statement.Conditions.Keys()
keyDiff := keys.Difference(adminActionConditionKeyMap[action])
if !keyDiff.IsEmpty() {
return Errorf("unsupported condition keys '%v' used for action '%v'", keyDiff, action)
}
}
return nil
}
if statement.isSTS() {
if err := statement.Actions.ValidateSTS(); err != nil {
return err
}
for action := range statement.Actions {
keys := statement.Conditions.Keys()
keyDiff := keys.Difference(stsActionConditionKeyMap[action])
if !keyDiff.IsEmpty() {
return Errorf("unsupported condition keys '%v' used for action '%v'", keyDiff, action)
}
}
return nil
}
if statement.isKMS() {
if err := statement.Actions.ValidateKMS(); err != nil {
return err
}
if err := statement.Resources.ValidateKMS(); err != nil {
return err
}
if err := statement.NotResources.ValidateKMS(); err != nil {
return err
}
return nil
}
if !statement.SID.IsValid() {
return Errorf("invalid SID %v", statement.SID)
}
if len(statement.Resources) == 0 && len(statement.NotResources) == 0 {
return Errorf("Resource must not be empty")
}
if len(statement.Resources) > 0 && len(statement.NotResources) > 0 {
return Errorf("Resource and NotResource cannot be specified in the same statement")
}
if err := statement.Resources.ValidateS3(); err != nil {
return err
}
if err := statement.NotResources.ValidateS3(); err != nil {
return err
}
if err := statement.Actions.Validate(); err != nil {
return err
}
for action := range statement.Actions {
if len(statement.Resources) > 0 && !statement.Resources.ObjectResourceExists() && !statement.Resources.BucketResourceExists() {
return Errorf("unsupported Resource found %v for action %v", statement.Resources, action)
}
if len(statement.NotResources) > 0 && !statement.NotResources.ObjectResourceExists() && !statement.NotResources.BucketResourceExists() {
return Errorf("unsupported NotResource found %v for action %v", statement.NotResources, action)
}
keys := statement.Conditions.Keys()
keyDiff := keys.Difference(IAMActionConditionKeyMap.Lookup(action))
if !keyDiff.IsEmpty() {
return Errorf("unsupported condition keys '%v' used for action '%v'", keyDiff, action)
}
}
return nil
}
// Validate - validates Statement is for given bucket or not.
func (statement Statement) Validate() error {
return statement.isValid()
}
// 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.NotActions.Equals(st.NotActions) {
return false
}
if !statement.Resources.Equals(st.Resources) {
return false
}
if !statement.NotResources.Equals(st.NotResources) {
return false
}
if !statement.Conditions.Equals(st.Conditions) {
return false
}
return true
}
// Clone clones Statement structure
func (statement Statement) Clone() Statement {
return Statement{
SID: statement.SID,
Effect: statement.Effect,
Actions: statement.Actions.Clone(),
NotActions: statement.NotActions.Clone(),
Resources: statement.Resources.Clone(),
NotResources: statement.NotResources.Clone(),
Conditions: statement.Conditions.Clone(),
}
}
// NewStatement - creates new statement.
func NewStatement(sid ID, effect Effect, actionSet ActionSet, resourceSet ResourceSet, conditions condition.Functions) Statement {
return Statement{
SID: sid,
Effect: effect,
Actions: actionSet,
Resources: resourceSet,
Conditions: conditions,
}
}
// NewStatementWithNotResource - creates new statement with NotAction.
func NewStatementWithNotResource(sid ID, effect Effect, actions ActionSet, notResources ResourceSet, conditions condition.Functions) Statement {
return Statement{
SID: sid,
Effect: effect,
Actions: actions,
NotResources: notResources,
Conditions: conditions,
}
}
// NewStatementWithNotAction - creates new statement with NotAction.
func NewStatementWithNotAction(sid ID, effect Effect, notActions ActionSet, resources ResourceSet, conditions condition.Functions) Statement {
return Statement{
SID: sid,
Effect: effect,
NotActions: notActions,
Resources: resources,
Conditions: conditions,
}
}
|