mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-08 15:41:15 +02:00
* s3: keep a non-S3 action out of the request-shape resolver
ResolveS3Action reads the request shape before it looks at the base action, so
an iam: or sts: action on a request that happens to carry an S3 query parameter
came back as the S3 action for that parameter. An action that already names its
service is resolved; there is no S3 request shape to read for it.
* iam: authorize the standalone IAM server's actions as IAM, not as S3
The standalone `weed iam` server wrapped its single POST / route in the generic
S3 Auth middleware with ACTION_ADMIN. The route has no {bucket}, so the check
ran with an empty bucket and resolved to a coarse S3 action rather than the IAM
one. The embedded IAM surface checks iam:<Action>; the standalone one was never
updated to match.
Both now go through one authorization function, so they cannot drift apart
again. It also rejects the anonymous identity, which has no user of its own to
run a self-service action against, and reads UserName from the body only, where
the handlers read it from.
141 lines
4.4 KiB
Go
141 lines
4.4 KiB
Go
package s3api
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
|
)
|
|
|
|
// TestMapBaseActionToS3Format_ServicePrefixPassthrough verifies that actions
|
|
// with known service prefixes (s3:, iam:, sts:) are returned unchanged.
|
|
func TestMapBaseActionToS3Format_ServicePrefixPassthrough(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input string
|
|
expect string
|
|
}{
|
|
{"s3 prefix", "s3:GetObject", "s3:GetObject"},
|
|
{"iam prefix", "iam:CreateUser", "iam:CreateUser"},
|
|
{"sts:AssumeRole", "sts:AssumeRole", "sts:AssumeRole"},
|
|
{"sts:GetFederationToken", "sts:GetFederationToken", "sts:GetFederationToken"},
|
|
{"sts:GetCallerIdentity", "sts:GetCallerIdentity", "sts:GetCallerIdentity"},
|
|
{"coarse Read maps to s3:GetObject", "Read", s3_constants.S3_ACTION_GET_OBJECT},
|
|
{"coarse Write maps to s3:PutObject", "Write", s3_constants.S3_ACTION_PUT_OBJECT},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got := mapBaseActionToS3Format(tt.input)
|
|
if got != tt.expect {
|
|
t.Errorf("mapBaseActionToS3Format(%q) = %q, want %q", tt.input, got, tt.expect)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// TestResolveS3Action_STSActionsPassthrough verifies that STS actions flow
|
|
// through ResolveS3Action unchanged, both with and without an HTTP request.
|
|
func TestResolveS3Action_STSActionsPassthrough(t *testing.T) {
|
|
stsActions := []string{
|
|
"sts:AssumeRole",
|
|
"sts:GetFederationToken",
|
|
"sts:GetCallerIdentity",
|
|
}
|
|
|
|
for _, action := range stsActions {
|
|
t.Run("nil_request_"+action, func(t *testing.T) {
|
|
got := ResolveS3Action(nil, action, "", "")
|
|
if got != action {
|
|
t.Errorf("ResolveS3Action(nil, %q) = %q, want %q", action, got, action)
|
|
}
|
|
})
|
|
t.Run("with_request_"+action, func(t *testing.T) {
|
|
r, _ := http.NewRequest(http.MethodPost, "http://localhost/", nil)
|
|
got := ResolveS3Action(r, action, "", "")
|
|
if got != action {
|
|
t.Errorf("ResolveS3Action(r, %q) = %q, want %q", action, got, action)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestResolveS3Action_AttributesBeforeVersionId(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
query string
|
|
method string
|
|
baseAction string
|
|
object string
|
|
want string
|
|
}{
|
|
{
|
|
name: "attributes only",
|
|
query: "attributes",
|
|
method: http.MethodGet,
|
|
baseAction: s3_constants.ACTION_READ,
|
|
object: "key",
|
|
want: s3_constants.S3_ACTION_GET_OBJECT_ATTRIBUTES,
|
|
},
|
|
{
|
|
name: "attributes with versionId",
|
|
query: "attributes&versionId=abc123",
|
|
method: http.MethodGet,
|
|
baseAction: s3_constants.ACTION_READ,
|
|
object: "key",
|
|
want: s3_constants.S3_ACTION_GET_OBJECT_ATTRIBUTES,
|
|
},
|
|
{
|
|
name: "versionId only GET",
|
|
query: "versionId=abc123",
|
|
method: http.MethodGet,
|
|
baseAction: s3_constants.ACTION_READ,
|
|
object: "key",
|
|
want: s3_constants.S3_ACTION_GET_OBJECT_VERSION,
|
|
},
|
|
{
|
|
name: "versionId only DELETE",
|
|
query: "versionId=abc123",
|
|
method: http.MethodDelete,
|
|
baseAction: s3_constants.ACTION_WRITE,
|
|
object: "key",
|
|
want: s3_constants.S3_ACTION_DELETE_OBJECT_VERSION,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
r, _ := http.NewRequest(tt.method, "http://localhost/bucket/"+tt.object+"?"+tt.query, nil)
|
|
got := ResolveS3Action(r, tt.baseAction, "bucket", tt.object)
|
|
if got != tt.want {
|
|
t.Errorf("ResolveS3Action() = %q, want %q", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// A base action naming another service carries no S3 request shape, so a query
|
|
// parameter on the request must not redirect it to an S3 action.
|
|
func TestResolveS3ActionKeepsNonS3Service(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
method string
|
|
url string
|
|
baseAction string
|
|
}{
|
|
{"iam action with batch delete query", http.MethodPost, "http://localhost/?delete", "iam:CreateUser"},
|
|
{"iam action with acl query", http.MethodPut, "http://localhost/?acl", "iam:AttachUserPolicy"},
|
|
{"iam action with tagging query", http.MethodGet, "http://localhost/?tagging", "iam:ListUsers"},
|
|
{"sts action with batch delete query", http.MethodPost, "http://localhost/?delete", "sts:AssumeRole"},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
r, _ := http.NewRequest(tt.method, tt.url, nil)
|
|
if got := ResolveS3Action(r, tt.baseAction, "", ""); got != tt.baseAction {
|
|
t.Errorf("ResolveS3Action() = %q, want %q", got, tt.baseAction)
|
|
}
|
|
})
|
|
}
|
|
}
|