@ -709,6 +709,27 @@ func GetConditionEvaluator(operator string) (ConditionEvaluator, error) {
// ExistingObjectTagPrefix is the prefix for S3 policy condition keys
const ExistingObjectTagPrefix = "s3:ExistingObjectTag/"
// getConditionContextValue resolves the value(s) for a condition key.
// For s3:ExistingObjectTag/<key> conditions, it looks up the tag in objectEntry.
// For other condition keys, it looks up the value in contextValues.
func getConditionContextValue ( key string , contextValues map [ string ] [ ] string , objectEntry map [ string ] [ ] byte ) [ ] string {
if strings . HasPrefix ( key , ExistingObjectTagPrefix ) {
tagKey := key [ len ( ExistingObjectTagPrefix ) : ]
metadataKey := s3_constants . AmzObjectTaggingPrefix + tagKey
if objectEntry != nil {
if tagValue , exists := objectEntry [ metadataKey ] ; exists {
return [ ] string { string ( tagValue ) }
}
}
return [ ] string { }
}
if vals , exists := contextValues [ key ] ; exists {
return vals
}
return [ ] string { }
}
// EvaluateConditions evaluates all conditions in a policy statement
// objectEntry is the object's metadata from entry.Extended (can be nil)
func EvaluateConditions ( conditions PolicyConditions , contextValues map [ string ] [ ] string , objectEntry map [ string ] [ ] byte ) bool {
@ -724,29 +745,7 @@ func EvaluateConditions(conditions PolicyConditions, contextValues map[string][]
}
for key , value := range conditionMap {
var contextVals [ ] string
// Handle s3:ExistingObjectTag/<tag-key> condition keys
// These refer to tags that already exist on the object
if strings . HasPrefix ( key , ExistingObjectTagPrefix ) {
// Extract tag value from entry.Extended using the tag prefix
tagKey := key [ len ( ExistingObjectTagPrefix ) : ]
metadataKey := s3_constants . AmzObjectTaggingPrefix + tagKey
if objectEntry != nil {
if tagValue , exists := objectEntry [ metadataKey ] ; exists {
contextVals = [ ] string { string ( tagValue ) }
}
}
// If tag doesn't exist, contextVals remains empty
} else {
// Regular condition key lookup
var exists bool
contextVals , exists = contextValues [ key ]
if ! exists {
contextVals = [ ] string { }
}
}
contextVals := getConditionContextValue ( key , contextValues , objectEntry )
if ! conditionEvaluator . Evaluate ( value . Strings ( ) , contextVals ) {
return false // If any condition fails, the whole condition block fails
}
@ -777,25 +776,7 @@ func EvaluateConditionsLegacy(conditions map[string]interface{}, contextValues m
}
for key , value := range conditionMapTyped {
var contextVals [ ] string
// Handle s3:ExistingObjectTag/<tag-key> condition keys
if strings . HasPrefix ( key , ExistingObjectTagPrefix ) {
tagKey := key [ len ( ExistingObjectTagPrefix ) : ]
metadataKey := s3_constants . AmzObjectTaggingPrefix + tagKey
if objectEntry != nil {
if tagValue , exists := objectEntry [ metadataKey ] ; exists {
contextVals = [ ] string { string ( tagValue ) }
}
}
} else {
var exists bool
contextVals , exists = contextValues [ key ]
if ! exists {
contextVals = [ ] string { }
}
}
contextVals := getConditionContextValue ( key , contextValues , objectEntry )
if ! conditionEvaluator . Evaluate ( value , contextVals ) {
return false // If any condition fails, the whole condition block fails
}