mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-22 07:06:51 +00:00
* feat(iam): support caller-supplied AccessKeyId and SecretAccessKey in CreateAccessKey Both IAM implementations (standalone and embedded) now check for caller-supplied AccessKeyId and SecretAccessKey form parameters before generating random credentials. If provided, the caller-supplied values are used. If empty, random keys are generated as before. This enables programmatic identity provisioning where the caller needs to control the S3 credentials. Backward-compatible: no behavior change for callers that omit these parameters. * refactor(iam): extract shared caller-supplied credential validation Move the AccessKeyId/SecretAccessKey format checks and the in-memory collision scan into weed/iam so the standalone IAM API, the embedded IAM in s3api, and the admin dashboard all enforce the same rules. - ValidateCallerSuppliedAccessKeyId: 4-128 alphanumeric (rejects SigV4-breaking characters like '/' and '='). - ValidateCallerSuppliedSecretAccessKey: 8-128 chars. - FindAccessKeyOwner: scans identities and service accounts and returns the owning entity type + name for debug logging, without exposing the owner in caller-facing error messages. The admin dashboard previously only length-checked caller-supplied keys; it now enforces the same alphanumeric rule, which matches what SigV4 actually accepts anyway. * fix(iam): reject partial caller-supplied AccessKeyId/SecretAccessKey Previously, if a caller supplied only one of AccessKeyId or SecretAccessKey, CreateAccessKey logged a warning and auto-generated the missing half. That silently returns a credential the caller did not fully choose, which is surprising and easy to miss in a response they expected to echo back their input. Return ErrCodeInvalidInputException instead: either both are supplied or neither is. Updates the mixed-supply tests in weed/iamapi and weed/s3api to assert the rejection. * chore(iam): centralize and broaden sensitive form redaction DoActions and ExecuteAction both had an inline loop that redacted SecretAccessKey from their debug-level request log. Replace the two copies with iam.RedactSensitiveFormValues, backed by an explicit sensitive-keys set. The set now also covers Password, OldPassword, NewPassword, PrivateKey, and SessionToken. None of those parameters are used by today's IAM actions, but naming them here makes the log-safety guarantee survive future additions such as LoginProfile / STS. * test(iam): cover the upper length bound for CreateAccessKey TestCreateAccessKeyBoundary / TestEmbeddedIamCreateAccessKeyBoundary only exercised the 3/4-char lower edge. Add cases for 128 (accepted) and 129 (rejected) for AccessKeyId, plus 7 / 128 / 129-char cases for SecretAccessKey, so both ends of the validator are locked in at the handler level (the pure validators in weed/iam already cover this). * fix(s3api/iam): verify user existence before RNG and collision scan In the embedded IAM CreateAccessKey, the user lookup ran last: a request for a non-existent user still walked the whole identity / service-account list for collisions and, if no caller-supplied keys were present, generated fresh random credentials with crypto/rand before the NoSuchEntity error finally surfaced. Reorder: validate inputs, then find the target identity, then do the collision scan, then generate keys. A missing user now fails fast and consumes no entropy, and the handler returns NoSuchEntity instead of a misleading EntityAlreadyExists when both the user is missing and the supplied AccessKeyId happens to collide with another identity's key. Add TestEmbeddedIamCreateAccessKeyRejectsMissingUser to lock in the "no mutation on unknown user" guarantee. The standalone iamapi CreateAccessKey intentionally keeps its pre-existing "create-or-attach" semantics where a missing user is implicitly provisioned — that is a behavior change beyond the scope of this PR. * test(iam): tighten collision leak assertion and cover 8-char secret - Rename the collision-owner identity in TestCreateAccessKeyRejectsCollision (both iamapi and the embedded s3api test) from "existing" / "ExistingUser" to "ownerAlpha". The old assert.NotContains check was effectively a no-op because the error message never contained those substrings; a distinctive name shared with no part of the expected error body makes the leak guard actually meaningful if the wording ever drifts. The embedded test also adds a NotContains assertion that was previously missing entirely. - Add an explicit 8-char SecretAccessKey pass case to both boundary tests so the lower edge of the validator is locked in at the handler level alongside the 7 / 128 / 129-char cases. * fix(iamapi): enforce both-or-none before the collision lookup In the standalone IAM CreateAccessKey, FindAccessKeyOwner ran before the partial-credential check. If a caller supplied only AccessKeyId and it happened to collide with an existing key, the response was EntityAlreadyExists instead of the more fundamental InvalidInput for omitting SecretAccessKey — wrong error class, and leaked the fact that the probed key is already in use. Swap the order: validate both-or-none first, then do the collision scan. Matches the embedded IAM path and AWS behavior. Add a case to TestCreateAccessKeyRejectsPartialSupply that combines partial supply with a collision to lock in the ordering. * fix(admin): reject partial caller-supplied AccessKey/SecretKey The admin dashboard path silently generated the missing half when a caller supplied only one of AccessKey or SecretKey, while the IAM API and embedded IAM paths now reject this. Align the three: if exactly one is provided, return ErrInvalidInput. Also simplifies the generator block — either both are provided or neither is, so there is no mixed path to handle. * test(s3api/iam): guard dereferences in caller-supplied-keys test TestEmbeddedIamCreateAccessKeyWithCallerSuppliedKeys dereferenced *AccessKeyId/*SecretAccessKey/*UserName and indexed Identities[0].Credentials[0] without first verifying shape, so any future regression that returns a partial response or skips the config mutation would panic mid-assertion instead of failing with a clear message. Add require.NotNil on the response pointers and require.Len on the identities/credentials slices before the asserts. * test(iamapi): exercise the service-account branch of the collision check FindAccessKeyOwner scans both Identities[*].Credentials and ServiceAccounts[*].Credential, but TestCreateAccessKeyRejectsCollision only covered the identity branch. Split the test into two subtests — one per branch — so a future refactor that drops the service-account scan (or mutates the existing credential) trips a failure. Also asserts the existing service-account credential is not mutated and no credential is attached to the target identity on rejection. * test(iam): isolate 129-char secret subcase from prior credential In both TestCreateAccessKeyBoundary (iamapi) and TestEmbeddedIamCreateAccessKeyBoundary (s3api), the 129-char SecretAccessKey subcase reused the "validkey" AccessKeyId that the preceding 8-char subcase had just persisted into the config. The test still asserted the right outcome because the handler validates secret length before running the collision scan — but if the two checks ever swap, the subcase would pass (or fail) for the wrong reason. Reset the in-memory credentials before the 129-char subcase, matching the pattern already used by the 3/128/129-char AccessKeyId and 7-char secret subcases. No behavior change; purely test isolation. --------- Co-authored-by: Chris Lu <chris.lu@gmail.com>
2463 lines
90 KiB
Go
2463 lines
90 KiB
Go
package s3api
|
|
|
|
// This file provides IAM API functionality embedded in the S3 server.
|
|
// Common IAM types and helpers are imported from the shared weed/iam package.
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/service/iam"
|
|
"github.com/seaweedfs/seaweedfs/weed/credential"
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
iamlib "github.com/seaweedfs/seaweedfs/weed/iam"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/policy_engine"
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
|
. "github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3err"
|
|
"github.com/seaweedfs/seaweedfs/weed/util/request_id"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// EmbeddedIamApi provides IAM API functionality embedded in the S3 server.
|
|
// This allows running a single server that handles both S3 and IAM requests.
|
|
type EmbeddedIamApi struct {
|
|
credentialManager *credential.CredentialManager
|
|
iam *IdentityAccessManagement
|
|
policyLock sync.RWMutex
|
|
// Test hook
|
|
getS3ApiConfigurationFunc func(*iam_pb.S3ApiConfiguration) error
|
|
putS3ApiConfigurationFunc func(*iam_pb.S3ApiConfiguration) error
|
|
reloadConfigurationFunc func() error
|
|
readOnly bool
|
|
}
|
|
|
|
// NewEmbeddedIamApi creates a new embedded IAM API handler.
|
|
func NewEmbeddedIamApi(credentialManager *credential.CredentialManager, iam *IdentityAccessManagement, readOnly bool) *EmbeddedIamApi {
|
|
return &EmbeddedIamApi{
|
|
credentialManager: credentialManager,
|
|
iam: iam,
|
|
readOnly: readOnly,
|
|
}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) refreshIAMConfiguration() error {
|
|
if e.reloadConfigurationFunc != nil {
|
|
return e.reloadConfigurationFunc()
|
|
}
|
|
if e.iam == nil {
|
|
return nil
|
|
}
|
|
if err := e.iam.LoadS3ApiConfigurationFromCredentialManager(); err != nil {
|
|
return fmt.Errorf("failed to refresh IAM configuration: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Constants for service account identifiers
|
|
const (
|
|
ServiceAccountIDLength = 12 // Length of the service account ID
|
|
AccessKeyLength = 20 // AWS standard access key length
|
|
SecretKeyLength = 40 // AWS standard secret key length (base64 encoded)
|
|
ServiceAccountIDPrefix = "sa"
|
|
ServiceAccountKeyPrefix = "ABIA" // Service account access keys start with ABIA
|
|
UserAccessKeyPrefix = "AKIA" // User access keys start with AKIA
|
|
|
|
// Operational limits (AWS IAM compatible)
|
|
MaxServiceAccountsPerUser = 100 // Maximum service accounts per user
|
|
MaxDescriptionLength = 1000 // Maximum description length in characters
|
|
MaxManagedPoliciesPerUser = 10 // Maximum managed policies attached to a user
|
|
)
|
|
|
|
// Type aliases for IAM response types from shared package
|
|
type (
|
|
iamListUsersResponse = iamlib.ListUsersResponse
|
|
iamListAccessKeysResponse = iamlib.ListAccessKeysResponse
|
|
iamDeleteAccessKeyResponse = iamlib.DeleteAccessKeyResponse
|
|
iamCreatePolicyResponse = iamlib.CreatePolicyResponse
|
|
iamDeletePolicyResponse = iamlib.DeletePolicyResponse
|
|
iamListPoliciesResponse = iamlib.ListPoliciesResponse
|
|
iamGetPolicyResponse = iamlib.GetPolicyResponse
|
|
iamListPolicyVersionsResponse = iamlib.ListPolicyVersionsResponse
|
|
iamGetPolicyVersionResponse = iamlib.GetPolicyVersionResponse
|
|
iamCreateUserResponse = iamlib.CreateUserResponse
|
|
iamDeleteUserResponse = iamlib.DeleteUserResponse
|
|
iamGetUserResponse = iamlib.GetUserResponse
|
|
iamUpdateUserResponse = iamlib.UpdateUserResponse
|
|
iamCreateAccessKeyResponse = iamlib.CreateAccessKeyResponse
|
|
iamPutUserPolicyResponse = iamlib.PutUserPolicyResponse
|
|
iamDeleteUserPolicyResponse = iamlib.DeleteUserPolicyResponse
|
|
iamGetUserPolicyResponse = iamlib.GetUserPolicyResponse
|
|
iamListUserPoliciesResponse = iamlib.ListUserPoliciesResponse
|
|
iamAttachUserPolicyResponse = iamlib.AttachUserPolicyResponse
|
|
iamDetachUserPolicyResponse = iamlib.DetachUserPolicyResponse
|
|
iamListAttachedUserPoliciesResponse = iamlib.ListAttachedUserPoliciesResponse
|
|
iamSetUserStatusResponse = iamlib.SetUserStatusResponse
|
|
iamUpdateAccessKeyResponse = iamlib.UpdateAccessKeyResponse
|
|
iamErrorResponse = iamlib.ErrorResponse
|
|
iamError = iamlib.Error
|
|
// Service account response types
|
|
iamServiceAccountInfo = iamlib.ServiceAccountInfo
|
|
iamCreateServiceAccountResponse = iamlib.CreateServiceAccountResponse
|
|
iamDeleteServiceAccountResponse = iamlib.DeleteServiceAccountResponse
|
|
iamListServiceAccountsResponse = iamlib.ListServiceAccountsResponse
|
|
iamGetServiceAccountResponse = iamlib.GetServiceAccountResponse
|
|
iamUpdateServiceAccountResponse = iamlib.UpdateServiceAccountResponse
|
|
// Group response types
|
|
iamCreateGroupResponse = iamlib.CreateGroupResponse
|
|
iamDeleteGroupResponse = iamlib.DeleteGroupResponse
|
|
iamUpdateGroupResponse = iamlib.UpdateGroupResponse
|
|
iamGetGroupResponse = iamlib.GetGroupResponse
|
|
iamListGroupsResponse = iamlib.ListGroupsResponse
|
|
iamAddUserToGroupResponse = iamlib.AddUserToGroupResponse
|
|
iamRemoveUserFromGroupResponse = iamlib.RemoveUserFromGroupResponse
|
|
iamAttachGroupPolicyResponse = iamlib.AttachGroupPolicyResponse
|
|
iamDetachGroupPolicyResponse = iamlib.DetachGroupPolicyResponse
|
|
iamListAttachedGroupPoliciesResponse = iamlib.ListAttachedGroupPoliciesResponse
|
|
iamPutGroupPolicyResponse = iamlib.PutGroupPolicyResponse
|
|
iamGetGroupPolicyResponse = iamlib.GetGroupPolicyResponse
|
|
iamDeleteGroupPolicyResponse = iamlib.DeleteGroupPolicyResponse
|
|
iamListGroupPoliciesResponse = iamlib.ListGroupPoliciesResponse
|
|
iamListGroupsForUserResponse = iamlib.ListGroupsForUserResponse
|
|
)
|
|
|
|
// Helper function wrappers using shared package
|
|
func iamHash(s *string) string {
|
|
return iamlib.Hash(s)
|
|
}
|
|
|
|
func iamStringWithCharset(length int, charset string) (string, error) {
|
|
return iamlib.GenerateRandomString(length, charset)
|
|
}
|
|
|
|
func iamStringSlicesEqual(a, b []string) bool {
|
|
return iamlib.StringSlicesEqual(a, b)
|
|
}
|
|
|
|
func iamMapToStatementAction(action string) string {
|
|
return iamlib.MapToStatementAction(action)
|
|
}
|
|
|
|
func iamMapToIdentitiesAction(action string) string {
|
|
return iamlib.MapToIdentitiesAction(action)
|
|
}
|
|
|
|
// iamValidateStatus validates that status is either Active or Inactive.
|
|
func iamValidateStatus(status string) error {
|
|
switch status {
|
|
case iamAccessKeyStatusActive, iamAccessKeyStatusInactive:
|
|
return nil
|
|
case "":
|
|
return fmt.Errorf("Status parameter is required")
|
|
default:
|
|
return fmt.Errorf("Status must be '%s' or '%s'", iamAccessKeyStatusActive, iamAccessKeyStatusInactive)
|
|
}
|
|
}
|
|
|
|
// Constants from shared package
|
|
const (
|
|
iamCharsetUpper = iamlib.CharsetUpper
|
|
iamCharset = iamlib.Charset
|
|
iamPolicyDocumentVersion = iamlib.PolicyDocumentVersion
|
|
iamUserDoesNotExist = iamlib.UserDoesNotExist
|
|
iamAccessKeyStatusActive = iamlib.AccessKeyStatusActive
|
|
iamAccessKeyStatusInactive = iamlib.AccessKeyStatusInactive
|
|
)
|
|
|
|
func newIamErrorResponse(errCode string, errMsg string, requestID string) iamErrorResponse {
|
|
errorResp := iamErrorResponse{}
|
|
errorResp.Error.Type = "Sender"
|
|
errorResp.Error.Code = &errCode
|
|
errorResp.Error.Message = &errMsg
|
|
errorResp.SetRequestId(requestID)
|
|
return errorResp
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) writeIamErrorResponse(w http.ResponseWriter, r *http.Request, reqID string, iamErr *iamError) {
|
|
if iamErr == nil {
|
|
glog.Errorf("writeIamErrorResponse called with nil error")
|
|
internalResp := newIamErrorResponse(iam.ErrCodeServiceFailureException, "Internal server error", reqID)
|
|
s3err.WriteXMLResponse(w, r, http.StatusInternalServerError, internalResp)
|
|
return
|
|
}
|
|
|
|
errCode := iamErr.Code
|
|
errMsg := iamErr.Error.Error()
|
|
glog.Errorf("IAM Response %+v", errMsg)
|
|
|
|
errorResp := newIamErrorResponse(errCode, errMsg, reqID)
|
|
internalErrorResponse := newIamErrorResponse(iam.ErrCodeServiceFailureException, "Internal server error", reqID)
|
|
|
|
switch errCode {
|
|
case iam.ErrCodeNoSuchEntityException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusNotFound, errorResp)
|
|
case iam.ErrCodeEntityAlreadyExistsException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusConflict, errorResp)
|
|
case iam.ErrCodeMalformedPolicyDocumentException, iam.ErrCodeInvalidInputException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusBadRequest, errorResp)
|
|
case "AccessDenied", iam.ErrCodeLimitExceededException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusForbidden, errorResp)
|
|
case iam.ErrCodeServiceFailureException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusInternalServerError, internalErrorResponse)
|
|
case "NotImplemented":
|
|
s3err.WriteXMLResponse(w, r, http.StatusNotImplemented, errorResp)
|
|
case iam.ErrCodeDeleteConflictException:
|
|
s3err.WriteXMLResponse(w, r, http.StatusConflict, errorResp)
|
|
default:
|
|
s3err.WriteXMLResponse(w, r, http.StatusInternalServerError, internalErrorResponse)
|
|
}
|
|
}
|
|
|
|
// GetS3ApiConfiguration loads the S3 API configuration from the credential manager.
|
|
// The credential manager automatically includes static identities in the result.
|
|
func (e *EmbeddedIamApi) GetS3ApiConfiguration(s3cfg *iam_pb.S3ApiConfiguration) error {
|
|
if e.getS3ApiConfigurationFunc != nil {
|
|
return e.getS3ApiConfigurationFunc(s3cfg)
|
|
}
|
|
config, err := e.credentialManager.LoadConfiguration(context.Background())
|
|
if err != nil {
|
|
return fmt.Errorf("failed to load configuration: %w", err)
|
|
}
|
|
proto.Merge(s3cfg, config)
|
|
return nil
|
|
}
|
|
|
|
// PutS3ApiConfiguration saves the S3 API configuration to the credential manager.
|
|
// The credential manager automatically filters out static identities before saving.
|
|
func (e *EmbeddedIamApi) PutS3ApiConfiguration(s3cfg *iam_pb.S3ApiConfiguration) error {
|
|
if e.putS3ApiConfigurationFunc != nil {
|
|
return e.putS3ApiConfigurationFunc(s3cfg)
|
|
}
|
|
return e.credentialManager.SaveConfiguration(context.Background(), s3cfg)
|
|
}
|
|
|
|
// ReloadConfiguration reloads the IAM configuration from the credential manager.
|
|
func (e *EmbeddedIamApi) ReloadConfiguration() error {
|
|
glog.V(4).Infof("IAM: reloading configuration via EmbeddedIamApi")
|
|
if e.reloadConfigurationFunc != nil {
|
|
return e.reloadConfigurationFunc()
|
|
}
|
|
return e.iam.LoadS3ApiConfigurationFromCredentialManager()
|
|
}
|
|
|
|
// ListUsers lists all IAM users.
|
|
func (e *EmbeddedIamApi) ListUsers(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) *iamListUsersResponse {
|
|
resp := &iamListUsersResponse{}
|
|
for _, ident := range s3cfg.Identities {
|
|
resp.ListUsersResult.Users = append(resp.ListUsersResult.Users, &iam.User{UserName: &ident.Name})
|
|
}
|
|
return resp
|
|
}
|
|
|
|
// ListAccessKeys lists access keys for a user.
|
|
func (e *EmbeddedIamApi) ListAccessKeys(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) *iamListAccessKeysResponse {
|
|
resp := &iamListAccessKeysResponse{}
|
|
userName := values.Get("UserName")
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName != "" && userName != ident.Name {
|
|
continue
|
|
}
|
|
for _, cred := range ident.Credentials {
|
|
// Return actual status from credential, default to Active if not set
|
|
status := cred.Status
|
|
if status == "" {
|
|
status = iamAccessKeyStatusActive
|
|
}
|
|
// Capture copies to avoid loop variable pointer aliasing
|
|
identName := ident.Name
|
|
accessKey := cred.AccessKey
|
|
statusCopy := status
|
|
resp.ListAccessKeysResult.AccessKeyMetadata = append(resp.ListAccessKeysResult.AccessKeyMetadata,
|
|
&iam.AccessKeyMetadata{UserName: &identName, AccessKeyId: &accessKey, Status: &statusCopy},
|
|
)
|
|
}
|
|
}
|
|
return resp
|
|
}
|
|
|
|
// CreateUser creates a new IAM user.
|
|
func (e *EmbeddedIamApi) CreateUser(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamCreateUserResponse, *iamError) {
|
|
resp := &iamCreateUserResponse{}
|
|
userName := values.Get("UserName")
|
|
|
|
// Validate UserName is not empty
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
|
|
// Check for duplicate user
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("user %s already exists", userName)}
|
|
}
|
|
}
|
|
|
|
resp.CreateUserResult.User.UserName = &userName
|
|
s3cfg.Identities = append(s3cfg.Identities, &iam_pb.Identity{Name: userName}) // Disabled defaults to false (enabled)
|
|
return resp, nil
|
|
}
|
|
|
|
// DeleteUser deletes an IAM user.
|
|
func (e *EmbeddedIamApi) DeleteUser(s3cfg *iam_pb.S3ApiConfiguration, userName string) (*iamDeleteUserResponse, *iamError) {
|
|
resp := &iamDeleteUserResponse{}
|
|
for i, ident := range s3cfg.Identities {
|
|
if userName == ident.Name {
|
|
// AWS IAM behavior: prevent deletion if user has service accounts
|
|
// This ensures explicit cleanup and prevents orphaned resources
|
|
if len(ident.ServiceAccountIds) > 0 {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeDeleteConflictException,
|
|
Error: fmt.Errorf("cannot delete user %s: user has %d service account(s). Delete service accounts first",
|
|
userName, len(ident.ServiceAccountIds)),
|
|
}
|
|
}
|
|
s3cfg.Identities = append(s3cfg.Identities[:i], s3cfg.Identities[i+1:]...)
|
|
// Remove user from all groups
|
|
for _, g := range s3cfg.Groups {
|
|
for j, m := range g.Members {
|
|
if m == userName {
|
|
g.Members = append(g.Members[:j], g.Members[j+1:]...)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// GetUser gets an IAM user.
|
|
func (e *EmbeddedIamApi) GetUser(s3cfg *iam_pb.S3ApiConfiguration, userName string) (*iamGetUserResponse, *iamError) {
|
|
resp := &iamGetUserResponse{}
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName == ident.Name {
|
|
resp.GetUserResult.User = iam.User{UserName: &ident.Name}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// UpdateUser updates an IAM user.
|
|
func (e *EmbeddedIamApi) UpdateUser(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamUpdateUserResponse, *iamError) {
|
|
resp := &iamUpdateUserResponse{}
|
|
userName := values.Get("UserName")
|
|
newUserName := values.Get("NewUserName")
|
|
if newUserName == "" {
|
|
return resp, nil
|
|
}
|
|
|
|
// Find the source identity first
|
|
var sourceIdent *iam_pb.Identity
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
sourceIdent = ident
|
|
break
|
|
}
|
|
}
|
|
if sourceIdent == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// No-op if renaming to the same name
|
|
if newUserName == userName {
|
|
return resp, nil
|
|
}
|
|
|
|
// Check for name collision before renaming
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == newUserName {
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("user %s already exists", newUserName)}
|
|
}
|
|
}
|
|
|
|
sourceIdent.Name = newUserName
|
|
// Update group membership references
|
|
for _, g := range s3cfg.Groups {
|
|
for j, m := range g.Members {
|
|
if m == userName {
|
|
g.Members[j] = newUserName
|
|
break
|
|
}
|
|
}
|
|
}
|
|
// Update service account parent references
|
|
for _, sa := range s3cfg.ServiceAccounts {
|
|
if sa.ParentUser == userName {
|
|
sa.ParentUser = newUserName
|
|
}
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// CreateAccessKey creates an access key for a user.
|
|
func (e *EmbeddedIamApi) CreateAccessKey(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamCreateAccessKeyResponse, *iamError) {
|
|
resp := &iamCreateAccessKeyResponse{}
|
|
userName := values.Get("UserName")
|
|
status := iam.StatusTypeActive
|
|
|
|
accessKeyId := values.Get("AccessKeyId")
|
|
secretAccessKey := values.Get("SecretAccessKey")
|
|
if accessKeyId != "" {
|
|
if err := iamlib.ValidateCallerSuppliedAccessKeyId(accessKeyId); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
}
|
|
if secretAccessKey != "" {
|
|
if err := iamlib.ValidateCallerSuppliedSecretAccessKey(secretAccessKey); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
}
|
|
if (accessKeyId != "") != (secretAccessKey != "") {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("AccessKeyId and SecretAccessKey must be supplied together")}
|
|
}
|
|
|
|
// Find the target user before touching the RNG or scanning for collisions,
|
|
// so a missing user fails fast without consuming entropy.
|
|
var target *iam_pb.Identity
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName == ident.Name {
|
|
target = ident
|
|
break
|
|
}
|
|
}
|
|
if target == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
if owner := iamlib.FindAccessKeyOwner(s3cfg, accessKeyId); owner != nil {
|
|
glog.V(4).Infof("CreateAccessKey: supplied AccessKeyId already in use by %s %s", owner.Type, owner.Name)
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("AccessKeyId is already in use")}
|
|
}
|
|
if accessKeyId == "" {
|
|
randomPart, err := iamStringWithCharset(AccessKeyLength-len(UserAccessKeyPrefix), iamCharsetUpper)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to generate access key: %w", err)}
|
|
}
|
|
accessKeyId = UserAccessKeyPrefix + randomPart
|
|
}
|
|
if secretAccessKey == "" {
|
|
var err error
|
|
secretAccessKey, err = iamStringWithCharset(SecretKeyLength, iamCharset)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to generate secret key: %w", err)}
|
|
}
|
|
}
|
|
resp.CreateAccessKeyResult.AccessKey.AccessKeyId = &accessKeyId
|
|
resp.CreateAccessKeyResult.AccessKey.SecretAccessKey = &secretAccessKey
|
|
resp.CreateAccessKeyResult.AccessKey.UserName = &userName
|
|
resp.CreateAccessKeyResult.AccessKey.Status = &status
|
|
|
|
target.Credentials = append(target.Credentials,
|
|
&iam_pb.Credential{AccessKey: accessKeyId, SecretKey: secretAccessKey, Status: iamAccessKeyStatusActive})
|
|
return resp, nil
|
|
}
|
|
|
|
// DeleteAccessKey deletes an access key for a user.
|
|
func (e *EmbeddedIamApi) DeleteAccessKey(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) *iamDeleteAccessKeyResponse {
|
|
resp := &iamDeleteAccessKeyResponse{}
|
|
userName := values.Get("UserName")
|
|
accessKeyId := values.Get("AccessKeyId")
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName == ident.Name {
|
|
for i, cred := range ident.Credentials {
|
|
if cred.AccessKey == accessKeyId {
|
|
ident.Credentials = append(ident.Credentials[:i], ident.Credentials[i+1:]...)
|
|
break
|
|
}
|
|
}
|
|
break
|
|
}
|
|
}
|
|
return resp
|
|
}
|
|
|
|
// GetPolicyDocument parses a policy document string.
|
|
func (e *EmbeddedIamApi) GetPolicyDocument(policy *string) (policy_engine.PolicyDocument, error) {
|
|
var policyDocument policy_engine.PolicyDocument
|
|
if err := json.Unmarshal([]byte(*policy), &policyDocument); err != nil {
|
|
return policy_engine.PolicyDocument{}, err
|
|
}
|
|
return policyDocument, nil
|
|
}
|
|
|
|
// CreatePolicy validates and creates a new IAM managed policy.
|
|
func (e *EmbeddedIamApi) CreatePolicy(ctx context.Context, values url.Values) (*iamCreatePolicyResponse, *iamError) {
|
|
resp := &iamCreatePolicyResponse{}
|
|
policyName := values.Get("PolicyName")
|
|
policyDocumentString := values.Get("PolicyDocument")
|
|
if policyName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("PolicyName is required")}
|
|
}
|
|
if policyDocumentString == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("PolicyDocument is required")}
|
|
}
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
policyDocument, err := e.GetPolicyDocument(&policyDocumentString)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeMalformedPolicyDocumentException, Error: err}
|
|
}
|
|
existing, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if existing != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("policy %s already exists", policyName)}
|
|
}
|
|
if err := e.credentialManager.CreatePolicy(ctx, policyName, policyDocument); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
|
|
policyId := iamHash(&policyName)
|
|
arn := iamPolicyArn(policyName)
|
|
resp.CreatePolicyResult.Policy.PolicyName = &policyName
|
|
resp.CreatePolicyResult.Policy.Arn = &arn
|
|
resp.CreatePolicyResult.Policy.PolicyId = &policyId
|
|
path := "/"
|
|
defaultVersionId := "v1"
|
|
isAttachable := true
|
|
resp.CreatePolicyResult.Policy.Path = &path
|
|
resp.CreatePolicyResult.Policy.DefaultVersionId = &defaultVersionId
|
|
resp.CreatePolicyResult.Policy.IsAttachable = &isAttachable
|
|
return resp, nil
|
|
}
|
|
|
|
// DeletePolicy deletes a managed policy by ARN.
|
|
func (e *EmbeddedIamApi) DeletePolicy(ctx context.Context, values url.Values) (*iamDeletePolicyResponse, *iamError) {
|
|
resp := &iamDeletePolicyResponse{}
|
|
policyArn := values.Get("PolicyArn")
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
users, err := e.credentialManager.ListUsers(ctx)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
for _, user := range users {
|
|
attachedPolicies, err := e.credentialManager.ListAttachedUserPolicies(ctx, user)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
for _, attached := range attachedPolicies {
|
|
if attached == policyName {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeDeleteConflictException,
|
|
Error: fmt.Errorf("policy %s is attached to user %s", policyName, user),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// Check if policy is attached to any group
|
|
groupNames, err := e.credentialManager.ListGroups(ctx)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
for _, gn := range groupNames {
|
|
g, err := e.credentialManager.GetGroup(ctx, gn)
|
|
if err != nil {
|
|
if errors.Is(err, credential.ErrGroupNotFound) {
|
|
continue
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to get group %s: %w", gn, err)}
|
|
}
|
|
for _, pn := range g.PolicyNames {
|
|
if pn == policyName {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeDeleteConflictException,
|
|
Error: fmt.Errorf("policy %s is attached to group %s", policyName, gn),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if err := e.credentialManager.DeletePolicy(ctx, policyName); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// ListPolicies lists managed policies.
|
|
func (e *EmbeddedIamApi) ListPolicies(ctx context.Context, values url.Values) (*iamListPoliciesResponse, *iamError) {
|
|
resp := &iamListPoliciesResponse{}
|
|
pathPrefix := values.Get("PathPrefix")
|
|
if pathPrefix == "" {
|
|
pathPrefix = "/"
|
|
}
|
|
maxItems := 0
|
|
if maxItemsStr := values.Get("MaxItems"); maxItemsStr != "" {
|
|
parsedMaxItems, err := strconv.Atoi(maxItemsStr)
|
|
if err != nil || parsedMaxItems <= 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("MaxItems must be a positive integer")}
|
|
}
|
|
maxItems = parsedMaxItems
|
|
}
|
|
marker := values.Get("Marker")
|
|
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
|
|
if pathPrefix != "/" {
|
|
return resp, &iamError{Code: "NotImplemented", Error: fmt.Errorf("PathPrefix filtering is not supported yet")}
|
|
}
|
|
|
|
policyNames, err := e.credentialManager.ListPolicyNames(ctx)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
sort.Strings(policyNames)
|
|
|
|
if marker != "" {
|
|
i := sort.SearchStrings(policyNames, marker)
|
|
if i < len(policyNames) && policyNames[i] == marker {
|
|
policyNames = policyNames[i+1:]
|
|
} else if i < len(policyNames) {
|
|
policyNames = policyNames[i:]
|
|
} else {
|
|
policyNames = nil
|
|
}
|
|
}
|
|
|
|
// Policy paths are not tracked in the current configuration, so PathPrefix filtering is not supported yet.
|
|
for _, name := range policyNames {
|
|
policyNameCopy := name
|
|
policyArnCopy := iamPolicyArn(name)
|
|
policyId := iamHash(&policyNameCopy)
|
|
path := "/"
|
|
defaultVersionId := "v1"
|
|
isAttachable := true
|
|
resp.ListPoliciesResult.Policies = append(resp.ListPoliciesResult.Policies, &iam.Policy{
|
|
PolicyName: &policyNameCopy,
|
|
Arn: &policyArnCopy,
|
|
PolicyId: &policyId,
|
|
Path: &path,
|
|
DefaultVersionId: &defaultVersionId,
|
|
IsAttachable: &isAttachable,
|
|
})
|
|
}
|
|
|
|
if maxItems > 0 && len(resp.ListPoliciesResult.Policies) > maxItems {
|
|
resp.ListPoliciesResult.Policies = resp.ListPoliciesResult.Policies[:maxItems]
|
|
resp.ListPoliciesResult.IsTruncated = true
|
|
if name := resp.ListPoliciesResult.Policies[maxItems-1].PolicyName; name != nil {
|
|
resp.ListPoliciesResult.Marker = *name
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
resp.ListPoliciesResult.IsTruncated = false
|
|
return resp, nil
|
|
}
|
|
|
|
// GetPolicy returns metadata for a managed policy.
|
|
func (e *EmbeddedIamApi) GetPolicy(ctx context.Context, values url.Values) (*iamGetPolicyResponse, *iamError) {
|
|
resp := &iamGetPolicyResponse{}
|
|
policyArn := values.Get("PolicyArn")
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
|
|
policyNameCopy := policyName
|
|
policyArnCopy := iamPolicyArn(policyName)
|
|
policyId := iamHash(&policyNameCopy)
|
|
path := "/"
|
|
defaultVersionId := "v1"
|
|
isAttachable := true
|
|
resp.GetPolicyResult.Policy = iam.Policy{
|
|
PolicyName: &policyNameCopy,
|
|
Arn: &policyArnCopy,
|
|
PolicyId: &policyId,
|
|
Path: &path,
|
|
DefaultVersionId: &defaultVersionId,
|
|
IsAttachable: &isAttachable,
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// ListPolicyVersions lists versions for a managed policy.
|
|
// Current SeaweedFS implementation stores one version per policy (v1).
|
|
func (e *EmbeddedIamApi) ListPolicyVersions(ctx context.Context, values url.Values) (*iamListPolicyVersionsResponse, *iamError) {
|
|
resp := &iamListPolicyVersionsResponse{}
|
|
policyArn := values.Get("PolicyArn")
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
|
|
versionID := "v1"
|
|
isDefaultVersion := true
|
|
resp.ListPolicyVersionsResult.Versions = []*iam.PolicyVersion{{
|
|
VersionId: &versionID,
|
|
IsDefaultVersion: &isDefaultVersion,
|
|
}}
|
|
resp.ListPolicyVersionsResult.IsTruncated = false
|
|
return resp, nil
|
|
}
|
|
|
|
// GetPolicyVersion returns the document for a specific policy version.
|
|
// Current SeaweedFS implementation stores one version per policy (v1).
|
|
func (e *EmbeddedIamApi) GetPolicyVersion(ctx context.Context, values url.Values) (*iamGetPolicyVersionResponse, *iamError) {
|
|
resp := &iamGetPolicyVersionResponse{}
|
|
policyArn := values.Get("PolicyArn")
|
|
versionID := values.Get("VersionId")
|
|
if versionID == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("VersionId is required")}
|
|
}
|
|
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
if versionID != "v1" {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy version %s not found", versionID)}
|
|
}
|
|
policyDocumentJSON, err := json.Marshal(policy)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
|
|
isDefaultVersion := true
|
|
document := string(policyDocumentJSON)
|
|
resp.GetPolicyVersionResult.PolicyVersion = iam.PolicyVersion{
|
|
VersionId: &versionID,
|
|
IsDefaultVersion: &isDefaultVersion,
|
|
Document: &document,
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
func iamPolicyNameFromArn(policyArn string) (string, error) {
|
|
const policyPathDelimiter = ":policy/"
|
|
idx := strings.Index(policyArn, policyPathDelimiter)
|
|
if idx < 0 {
|
|
return "", fmt.Errorf("invalid policy arn: %s", policyArn)
|
|
}
|
|
|
|
policyPath := strings.Trim(policyArn[idx+len(policyPathDelimiter):], "/")
|
|
if policyPath == "" {
|
|
return "", fmt.Errorf("invalid policy arn: %s", policyArn)
|
|
}
|
|
|
|
parts := strings.Split(policyPath, "/")
|
|
policyName := parts[len(parts)-1]
|
|
if policyName == "" {
|
|
return "", fmt.Errorf("invalid policy arn: %s", policyArn)
|
|
}
|
|
|
|
return policyName, nil
|
|
}
|
|
|
|
func iamPolicyArn(policyName string) string {
|
|
return fmt.Sprintf("arn:aws:iam:::policy/%s", policyName)
|
|
}
|
|
|
|
// getActions extracts actions from a policy document.
|
|
// S3 ARN format: arn:aws:s3:::bucket or arn:aws:s3:::bucket/path/*
|
|
// res[5] contains the bucket and optional path after :::
|
|
func (e *EmbeddedIamApi) getActions(policy *policy_engine.PolicyDocument) ([]string, error) {
|
|
var actions []string
|
|
|
|
for _, statement := range policy.Statement {
|
|
if statement.Effect != policy_engine.PolicyEffectAllow {
|
|
return nil, fmt.Errorf("not a valid effect: '%s'. Only 'Allow' is possible", statement.Effect)
|
|
}
|
|
for _, resource := range statement.Resource.Strings() {
|
|
res := strings.Split(resource, ":")
|
|
if len(res) != 6 || res[0] != "arn" || res[1] != "aws" || res[2] != "s3" {
|
|
continue
|
|
}
|
|
for _, action := range statement.Action.Strings() {
|
|
act := strings.Split(action, ":")
|
|
if len(act) != 2 || act[0] != "s3" {
|
|
continue
|
|
}
|
|
statementAction := iamMapToStatementAction(act[1])
|
|
if statementAction == "" {
|
|
return nil, fmt.Errorf("not a valid action: '%s'", act[1])
|
|
}
|
|
|
|
resourcePath := res[5]
|
|
if resourcePath == "*" {
|
|
// Wildcard - applies to all buckets
|
|
actions = append(actions, statementAction)
|
|
continue
|
|
}
|
|
|
|
// Parse bucket and optional object path
|
|
// Examples: "mybucket", "mybucket/*", "mybucket/prefix/*"
|
|
bucket, objectPath, hasSep := strings.Cut(resourcePath, "/")
|
|
if bucket == "" {
|
|
continue // Invalid: empty bucket name
|
|
}
|
|
|
|
if !hasSep || objectPath == "" || objectPath == "*" {
|
|
// Bucket-level or bucket/* - use just bucket name
|
|
actions = append(actions, fmt.Sprintf("%s:%s", statementAction, bucket))
|
|
} else {
|
|
// Path-specific: bucket/path/* -> Action:bucket/path
|
|
// Remove trailing /* if present for cleaner action format
|
|
objectPath = strings.TrimSuffix(objectPath, "/*")
|
|
objectPath = strings.TrimSuffix(objectPath, "*")
|
|
if objectPath == "" {
|
|
actions = append(actions, fmt.Sprintf("%s:%s", statementAction, bucket))
|
|
} else {
|
|
actions = append(actions, fmt.Sprintf("%s:%s/%s", statementAction, bucket, objectPath))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(actions) == 0 {
|
|
return nil, fmt.Errorf("no valid actions found in policy document")
|
|
}
|
|
return actions, nil
|
|
}
|
|
|
|
// recomputeActions aggregates ident.Actions from all stored inline policies
|
|
// for a user. Returns (nil, nil) when the credential manager is unavailable
|
|
// (caller should keep existing actions). Returns a non-nil error on store
|
|
// failures so callers can abort the mutation.
|
|
func (e *EmbeddedIamApi) recomputeActions(ctx context.Context, userName string) ([]string, error) {
|
|
if e.credentialManager == nil {
|
|
return nil, nil
|
|
}
|
|
policyNames, err := e.credentialManager.ListUserInlinePolicies(ctx, userName)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("list inline policies for user %s: %w", userName, err)
|
|
}
|
|
if len(policyNames) == 0 {
|
|
return nil, nil
|
|
}
|
|
actionSet := make(map[string]bool)
|
|
var aggregated []string
|
|
for _, name := range policyNames {
|
|
doc, err := e.credentialManager.GetUserInlinePolicy(ctx, userName, name)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("read inline policy %q for user %s: %w", name, userName, err)
|
|
}
|
|
if doc == nil {
|
|
continue
|
|
}
|
|
actions, err := e.getActions(doc)
|
|
if err != nil {
|
|
glog.Warningf("recomputeActions: failed to parse inline policy %q for user %s: %v", name, userName, err)
|
|
continue
|
|
}
|
|
for _, a := range actions {
|
|
if !actionSet[a] {
|
|
actionSet[a] = true
|
|
aggregated = append(aggregated, a)
|
|
}
|
|
}
|
|
}
|
|
return aggregated, nil
|
|
}
|
|
|
|
// PutUserPolicy attaches a policy to a user.
|
|
func (e *EmbeddedIamApi) PutUserPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamPutUserPolicyResponse, *iamError) {
|
|
resp := &iamPutUserPolicyResponse{}
|
|
userName := values.Get("UserName")
|
|
policyName := values.Get("PolicyName")
|
|
if policyName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("PolicyName is required")}
|
|
}
|
|
policyDocumentString := values.Get("PolicyDocument")
|
|
policyDocument, err := e.GetPolicyDocument(&policyDocumentString)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeMalformedPolicyDocumentException, Error: err}
|
|
}
|
|
actions, err := e.getActions(&policyDocument)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeMalformedPolicyDocumentException, Error: err}
|
|
}
|
|
glog.V(3).Infof("PutUserPolicy: actions=%v", actions)
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName != ident.Name {
|
|
continue
|
|
}
|
|
|
|
// Persist the original policy document for lossless round-trip via GetUserPolicy.
|
|
// This must succeed before updating ident.Actions to keep both in sync.
|
|
ctx := context.Background()
|
|
if e.credentialManager != nil {
|
|
if storeErr := e.credentialManager.PutUserInlinePolicy(ctx, userName, policyName, policyDocument); storeErr != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: storeErr}
|
|
}
|
|
}
|
|
|
|
// Recompute ident.Actions from ALL stored inline policies so that
|
|
// multiple policies are properly aggregated for enforcement.
|
|
aggregated, recomputeErr := e.recomputeActions(ctx, userName)
|
|
if recomputeErr != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: recomputeErr}
|
|
}
|
|
if aggregated != nil {
|
|
ident.Actions = aggregated
|
|
} else {
|
|
ident.Actions = actions
|
|
}
|
|
return resp, nil
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("the user with name %s cannot be found", userName)}
|
|
}
|
|
|
|
// GetUserPolicy gets the policy attached to a user.
|
|
func (e *EmbeddedIamApi) GetUserPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamGetUserPolicyResponse, *iamError) {
|
|
resp := &iamGetUserPolicyResponse{}
|
|
userName := values.Get("UserName")
|
|
policyName := values.Get("PolicyName")
|
|
for _, ident := range s3cfg.Identities {
|
|
if userName != ident.Name {
|
|
continue
|
|
}
|
|
|
|
resp.GetUserPolicyResult.UserName = userName
|
|
resp.GetUserPolicyResult.PolicyName = policyName
|
|
|
|
// Try to retrieve the stored inline policy document for a lossless round-trip
|
|
if e.credentialManager != nil {
|
|
ctx := context.Background()
|
|
storedDoc, storeErr := e.credentialManager.GetUserInlinePolicy(ctx, userName, policyName)
|
|
if storeErr != nil {
|
|
glog.Warningf("GetUserPolicy: failed to read stored inline policy %q for user %s: %v; falling back to reconstruction", policyName, userName, storeErr)
|
|
}
|
|
if storeErr == nil && storedDoc != nil {
|
|
policyDocumentJSON, err := json.Marshal(storedDoc)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
resp.GetUserPolicyResult.PolicyDocument = string(policyDocumentJSON)
|
|
return resp, nil
|
|
}
|
|
}
|
|
|
|
// Fallback: reconstruct from ident.Actions (lossy - fine-grained actions
|
|
// collapse to wildcards like s3:Get*, s3:Put*, s3:List*)
|
|
if len(ident.Actions) == 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: errors.New("no actions found")}
|
|
}
|
|
|
|
policyDocument := policy_engine.PolicyDocument{Version: iamPolicyDocumentVersion}
|
|
statements := make(map[string][]string)
|
|
seenAction := make(map[string]map[string]bool)
|
|
for _, action := range ident.Actions {
|
|
// Action format: "ActionType" (global) or "ActionType:bucket" or "ActionType:bucket/path"
|
|
// Use SplitN so the path component (which may contain ':') is preserved intact.
|
|
act := strings.SplitN(action, ":", 2)
|
|
|
|
resource := "*"
|
|
if len(act) == 2 {
|
|
// Preserve the stored path verbatim so bucket-level and
|
|
// object-level resources remain distinguishable.
|
|
resource = fmt.Sprintf("arn:aws:s3:::%s", act[1])
|
|
}
|
|
s3Action := fmt.Sprintf("s3:%s", iamMapToIdentitiesAction(act[0]))
|
|
// Dedupe actions per resource
|
|
if seenAction[resource] == nil {
|
|
seenAction[resource] = make(map[string]bool)
|
|
}
|
|
if seenAction[resource][s3Action] {
|
|
continue
|
|
}
|
|
seenAction[resource][s3Action] = true
|
|
statements[resource] = append(statements[resource], s3Action)
|
|
}
|
|
for resource, actions := range statements {
|
|
isEqAction := false
|
|
for i, statement := range policyDocument.Statement {
|
|
if iamStringSlicesEqual(statement.Action.Strings(), actions) {
|
|
policyDocument.Statement[i].Resource = policy_engine.NewStringOrStringSlicePtr(append(
|
|
policyDocument.Statement[i].Resource.Strings(), resource)...)
|
|
isEqAction = true
|
|
break
|
|
}
|
|
}
|
|
if isEqAction {
|
|
continue
|
|
}
|
|
policyDocumentStatement := policy_engine.PolicyStatement{
|
|
Effect: policy_engine.PolicyEffectAllow,
|
|
Action: policy_engine.NewStringOrStringSlice(actions...),
|
|
Resource: policy_engine.NewStringOrStringSlicePtr(resource),
|
|
}
|
|
policyDocument.Statement = append(policyDocument.Statement, policyDocumentStatement)
|
|
}
|
|
policyDocumentJSON, err := json.Marshal(policyDocument)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
resp.GetUserPolicyResult.PolicyDocument = string(policyDocumentJSON)
|
|
return resp, nil
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// DeleteUserPolicy removes the inline policy from a user.
|
|
func (e *EmbeddedIamApi) DeleteUserPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamDeleteUserPolicyResponse, *iamError) {
|
|
resp := &iamDeleteUserPolicyResponse{}
|
|
userName := values.Get("UserName")
|
|
policyName := values.Get("PolicyName")
|
|
if policyName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("PolicyName is required")}
|
|
}
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
ctx := context.Background()
|
|
|
|
// Remove the stored inline policy document.
|
|
// Must succeed before updating ident.Actions to keep both in sync.
|
|
if e.credentialManager != nil {
|
|
if err := e.credentialManager.DeleteUserInlinePolicy(ctx, userName, policyName); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
}
|
|
|
|
// Recompute ident.Actions from remaining inline policies
|
|
aggregated, recomputeErr := e.recomputeActions(ctx, userName)
|
|
if recomputeErr != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: recomputeErr}
|
|
}
|
|
if aggregated != nil {
|
|
ident.Actions = aggregated
|
|
} else {
|
|
ident.Actions = nil
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// ListUserPolicies lists the names of inline policies attached to a user.
|
|
// https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserPolicies.html
|
|
func (e *EmbeddedIamApi) ListUserPolicies(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamListUserPoliciesResponse, *iamError) {
|
|
resp := &iamListUserPoliciesResponse{}
|
|
userName := values.Get("UserName")
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
// Try to list stored inline policy names
|
|
if e.credentialManager != nil {
|
|
ctx := context.Background()
|
|
if names, err := e.credentialManager.ListUserInlinePolicies(ctx, userName); err == nil && len(names) > 0 {
|
|
resp.ListUserPoliciesResult.PolicyNames = names
|
|
resp.ListUserPoliciesResult.IsTruncated = false
|
|
return resp, nil
|
|
}
|
|
}
|
|
// Fallback: infer a single policy name from actions
|
|
if len(ident.Actions) > 0 {
|
|
resp.ListUserPoliciesResult.PolicyNames = []string{userName + "_policy"}
|
|
}
|
|
resp.ListUserPoliciesResult.IsTruncated = false
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// AttachUserPolicy attaches a managed policy to a user.
|
|
func (e *EmbeddedIamApi) AttachUserPolicy(ctx context.Context, values url.Values) (*iamAttachUserPolicyResponse, *iamError) {
|
|
resp := &iamAttachUserPolicyResponse{}
|
|
|
|
userName := values.Get("UserName")
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
|
|
policyArn := values.Get("PolicyArn")
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
|
|
attachedPolicies, err := e.credentialManager.ListAttachedUserPolicies(ctx, userName)
|
|
if err != nil {
|
|
if errors.Is(err, credential.ErrUserNotFound) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
for _, attached := range attachedPolicies {
|
|
if attached == policyName {
|
|
return resp, nil
|
|
}
|
|
}
|
|
if len(attachedPolicies) >= MaxManagedPoliciesPerUser {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeLimitExceededException,
|
|
Error: fmt.Errorf("cannot attach more than %d managed policies to user %s", MaxManagedPoliciesPerUser, userName),
|
|
}
|
|
}
|
|
|
|
if err := e.credentialManager.AttachUserPolicy(ctx, userName, policyName); err != nil {
|
|
if errors.Is(err, credential.ErrUserNotFound) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
if errors.Is(err, credential.ErrPolicyNotFound) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
if errors.Is(err, credential.ErrPolicyAlreadyAttached) {
|
|
// AWS IAM is idempotent for AttachUserPolicy
|
|
return resp, nil
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
|
|
// Best-effort refresh: log any failures but don't fail the API call since the mutation succeeded
|
|
if err := e.refreshIAMConfiguration(); err != nil {
|
|
glog.Warningf("Failed to refresh IAM configuration after attaching policy %s to user %s: %v", policyName, userName, err)
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// DetachUserPolicy detaches a managed policy from a user.
|
|
func (e *EmbeddedIamApi) DetachUserPolicy(ctx context.Context, values url.Values) (*iamDetachUserPolicyResponse, *iamError) {
|
|
resp := &iamDetachUserPolicyResponse{}
|
|
|
|
userName := values.Get("UserName")
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
|
|
policyArn := values.Get("PolicyArn")
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
|
|
policy, err := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
|
|
if err := e.credentialManager.DetachUserPolicy(ctx, userName, policyName); err != nil {
|
|
if errors.Is(err, credential.ErrUserNotFound) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
if errors.Is(err, credential.ErrPolicyNotAttached) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not attached to user %s", policyName, userName)}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
|
|
// Best-effort refresh: log any failures but don't fail the API call since the mutation succeeded
|
|
if err := e.refreshIAMConfiguration(); err != nil {
|
|
glog.Warningf("Failed to refresh IAM configuration after detaching policy %s from user %s: %v", policyName, userName, err)
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// ListAttachedUserPolicies lists managed policies attached to a user.
|
|
func (e *EmbeddedIamApi) ListAttachedUserPolicies(ctx context.Context, values url.Values) (*iamListAttachedUserPoliciesResponse, *iamError) {
|
|
resp := &iamListAttachedUserPoliciesResponse{}
|
|
|
|
userName := values.Get("UserName")
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
|
|
pathPrefix := values.Get("PathPrefix")
|
|
if pathPrefix == "" {
|
|
pathPrefix = "/"
|
|
}
|
|
|
|
maxItems := 0
|
|
if maxItemsStr := values.Get("MaxItems"); maxItemsStr != "" {
|
|
parsedMaxItems, err := strconv.Atoi(maxItemsStr)
|
|
if err != nil || parsedMaxItems <= 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("MaxItems must be a positive integer")}
|
|
}
|
|
maxItems = parsedMaxItems
|
|
}
|
|
marker := values.Get("Marker")
|
|
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not configured")}
|
|
}
|
|
|
|
policyNames, err := e.credentialManager.ListAttachedUserPolicies(ctx, userName)
|
|
if err != nil {
|
|
if errors.Is(err, credential.ErrUserNotFound) {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
|
|
var attachedPolicies []*iam.AttachedPolicy
|
|
for _, attachedPolicyName := range policyNames {
|
|
// Policy paths are not tracked in the current configuration, so PathPrefix
|
|
// filtering is not supported yet. Always return the policy for now.
|
|
policyNameCopy := attachedPolicyName
|
|
policyArn := iamPolicyArn(attachedPolicyName)
|
|
policyArnCopy := policyArn
|
|
attachedPolicies = append(attachedPolicies, &iam.AttachedPolicy{
|
|
PolicyName: &policyNameCopy,
|
|
PolicyArn: &policyArnCopy,
|
|
})
|
|
}
|
|
|
|
start := 0
|
|
markerFound := false
|
|
if marker != "" {
|
|
for i, p := range attachedPolicies {
|
|
if p.PolicyName != nil && *p.PolicyName == marker {
|
|
start = i + 1
|
|
markerFound = true
|
|
break
|
|
}
|
|
}
|
|
if !markerFound && len(attachedPolicies) > 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("marker %s not found", marker)}
|
|
}
|
|
}
|
|
if start > 0 && start < len(attachedPolicies) {
|
|
attachedPolicies = attachedPolicies[start:]
|
|
} else if start >= len(attachedPolicies) {
|
|
attachedPolicies = nil
|
|
}
|
|
|
|
if maxItems > 0 && len(attachedPolicies) > maxItems {
|
|
resp.ListAttachedUserPoliciesResult.AttachedPolicies = attachedPolicies[:maxItems]
|
|
resp.ListAttachedUserPoliciesResult.IsTruncated = true
|
|
if name := resp.ListAttachedUserPoliciesResult.AttachedPolicies[maxItems-1].PolicyName; name != nil {
|
|
resp.ListAttachedUserPoliciesResult.Marker = *name
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
resp.ListAttachedUserPoliciesResult.AttachedPolicies = attachedPolicies
|
|
resp.ListAttachedUserPoliciesResult.IsTruncated = false
|
|
return resp, nil
|
|
}
|
|
|
|
// SetUserStatus enables or disables a user without deleting them.
|
|
// This is a SeaweedFS extension for temporary user suspension, offboarding, etc.
|
|
// When a user is disabled, all API requests using their credentials will return AccessDenied.
|
|
func (e *EmbeddedIamApi) SetUserStatus(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamSetUserStatusResponse, *iamError) {
|
|
resp := &iamSetUserStatusResponse{}
|
|
userName := values.Get("UserName")
|
|
status := values.Get("Status")
|
|
|
|
// Validate UserName
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
|
|
// Validate Status - must be "Active" or "Inactive"
|
|
if err := iamValidateStatus(status); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
// Set disabled based on status: Active = not disabled, Inactive = disabled
|
|
ident.Disabled = (status == iamAccessKeyStatusInactive)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// UpdateAccessKey updates the status of an access key (Active or Inactive).
|
|
// This allows key rotation workflows where old keys are deactivated before deletion.
|
|
func (e *EmbeddedIamApi) UpdateAccessKey(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamUpdateAccessKeyResponse, *iamError) {
|
|
resp := &iamUpdateAccessKeyResponse{}
|
|
userName := values.Get("UserName")
|
|
accessKeyId := values.Get("AccessKeyId")
|
|
status := values.Get("Status")
|
|
|
|
// Validate required parameters
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
if accessKeyId == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("AccessKeyId is required")}
|
|
}
|
|
if err := iamValidateStatus(status); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name != userName {
|
|
continue
|
|
}
|
|
for _, cred := range ident.Credentials {
|
|
if cred.AccessKey == accessKeyId {
|
|
cred.Status = status
|
|
return resp, nil
|
|
}
|
|
}
|
|
// User found but access key not found
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("the access key with id %s for user %s cannot be found", accessKeyId, userName)}
|
|
}
|
|
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, userName)}
|
|
}
|
|
|
|
// findIdentityByName is a helper function to find an identity by name.
|
|
// Returns the identity or nil if not found.
|
|
func findIdentityByName(s3cfg *iam_pb.S3ApiConfiguration, name string) *iam_pb.Identity {
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == name {
|
|
return ident
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// CreateServiceAccount creates a new service account for a user.
|
|
func (e *EmbeddedIamApi) CreateServiceAccount(s3cfg *iam_pb.S3ApiConfiguration, values url.Values, createdBy string) (*iamCreateServiceAccountResponse, *iamError) {
|
|
resp := &iamCreateServiceAccountResponse{}
|
|
parentUser := values.Get("ParentUser")
|
|
description := values.Get("Description")
|
|
expirationStr := values.Get("Expiration") // Unix timestamp as string
|
|
|
|
if parentUser == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("ParentUser is required")}
|
|
}
|
|
|
|
// Validate description length
|
|
if len(description) > MaxDescriptionLength {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeInvalidInputException,
|
|
Error: fmt.Errorf("description exceeds maximum length of %d characters", MaxDescriptionLength),
|
|
}
|
|
}
|
|
|
|
// Verify parent user exists
|
|
parentIdent := findIdentityByName(s3cfg, parentUser)
|
|
if parentIdent == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf(iamUserDoesNotExist, parentUser)}
|
|
}
|
|
|
|
// Check service account limit per user
|
|
if len(parentIdent.ServiceAccountIds) >= MaxServiceAccountsPerUser {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeLimitExceededException,
|
|
Error: fmt.Errorf("user %s has reached the maximum limit of %d service accounts",
|
|
parentUser, MaxServiceAccountsPerUser),
|
|
}
|
|
}
|
|
|
|
// Generate a unique service account ID in the format required by
|
|
// credential.ValidateServiceAccountId: sa:<parent>:<uuid>. 16 bytes of
|
|
// randomness (hex-encoded) matches the shell command's generator.
|
|
var idBytes [16]byte
|
|
if _, err := rand.Read(idBytes[:]); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to generate ID: %w", err)}
|
|
}
|
|
saId := fmt.Sprintf("%s:%s:%s", ServiceAccountIDPrefix, parentUser, hex.EncodeToString(idBytes[:]))
|
|
|
|
// Fail closed if the generated ID wouldn't pass the persistence-layer
|
|
// validator — better a 400 here than an opaque 500 at save time. This
|
|
// guards against parent-user values that slipped past earlier
|
|
// validation (e.g., containing `:` or whitespace).
|
|
if err := credential.ValidateServiceAccountId(saId); err != nil {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeInvalidInputException,
|
|
Error: fmt.Errorf("generated invalid service account ID %q: %w", saId, err),
|
|
}
|
|
}
|
|
|
|
// Generate access key ID with correct length (20 chars total including prefix)
|
|
// AWS access keys are always 20 characters: 4-char prefix (ABIA) + 16 random chars
|
|
accessKeyId, err := iamStringWithCharset(AccessKeyLength-len(ServiceAccountKeyPrefix), iamCharsetUpper)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to generate access key: %w", err)}
|
|
}
|
|
accessKeyId = ServiceAccountKeyPrefix + accessKeyId
|
|
|
|
secretAccessKey, err := iamStringWithCharset(SecretKeyLength, iamCharset)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to generate secret key: %w", err)}
|
|
}
|
|
|
|
// Parse expiration if provided
|
|
var expiration int64
|
|
if expirationStr != "" {
|
|
var err error
|
|
expiration, err = strconv.ParseInt(expirationStr, 10, 64)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("invalid expiration format: %w", err)}
|
|
}
|
|
if expiration > 0 && expiration < time.Now().Unix() {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("expiration must be in the future")}
|
|
}
|
|
}
|
|
|
|
now := time.Now()
|
|
|
|
// Copy parent's actions to avoid shared slice reference
|
|
actions := make([]string, len(parentIdent.Actions))
|
|
copy(actions, parentIdent.Actions)
|
|
|
|
sa := &iam_pb.ServiceAccount{
|
|
Id: saId,
|
|
ParentUser: parentUser,
|
|
Description: description,
|
|
Credential: &iam_pb.Credential{
|
|
AccessKey: accessKeyId,
|
|
SecretKey: secretAccessKey,
|
|
Status: iamAccessKeyStatusActive,
|
|
},
|
|
Actions: actions, // Independent copy of parent's actions
|
|
Expiration: expiration,
|
|
Disabled: false,
|
|
CreatedAt: now.Unix(),
|
|
CreatedBy: createdBy,
|
|
}
|
|
|
|
s3cfg.ServiceAccounts = append(s3cfg.ServiceAccounts, sa)
|
|
parentIdent.ServiceAccountIds = append(parentIdent.ServiceAccountIds, saId)
|
|
|
|
// Build response
|
|
resp.CreateServiceAccountResult.ServiceAccount = iamServiceAccountInfo{
|
|
ServiceAccountId: saId,
|
|
ParentUser: parentUser,
|
|
Description: description,
|
|
AccessKeyId: accessKeyId,
|
|
SecretAccessKey: &secretAccessKey,
|
|
Status: iamAccessKeyStatusActive,
|
|
CreateDate: now.Format(time.RFC3339),
|
|
}
|
|
if expiration > 0 {
|
|
expStr := time.Unix(expiration, 0).Format(time.RFC3339)
|
|
resp.CreateServiceAccountResult.ServiceAccount.Expiration = &expStr
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// DeleteServiceAccount deletes a service account.
|
|
func (e *EmbeddedIamApi) DeleteServiceAccount(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamDeleteServiceAccountResponse, *iamError) {
|
|
resp := &iamDeleteServiceAccountResponse{}
|
|
saId := values.Get("ServiceAccountId")
|
|
|
|
if saId == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("ServiceAccountId is required")}
|
|
}
|
|
|
|
// Find and remove the service account
|
|
for i, sa := range s3cfg.ServiceAccounts {
|
|
if sa.Id == saId {
|
|
// Remove from parent's list
|
|
if parentIdent := findIdentityByName(s3cfg, sa.ParentUser); parentIdent != nil {
|
|
// Remove service account ID from parent's list using filter pattern
|
|
// This avoids mutating the slice during iteration
|
|
filtered := parentIdent.ServiceAccountIds[:0]
|
|
for _, id := range parentIdent.ServiceAccountIds {
|
|
if id != saId {
|
|
filtered = append(filtered, id)
|
|
}
|
|
}
|
|
parentIdent.ServiceAccountIds = filtered
|
|
}
|
|
// Remove service account
|
|
s3cfg.ServiceAccounts = append(s3cfg.ServiceAccounts[:i], s3cfg.ServiceAccounts[i+1:]...)
|
|
return resp, nil
|
|
}
|
|
}
|
|
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("service account %s not found", saId)}
|
|
}
|
|
|
|
// ListServiceAccounts lists service accounts, optionally filtered by parent user.
|
|
func (e *EmbeddedIamApi) ListServiceAccounts(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) *iamListServiceAccountsResponse {
|
|
resp := &iamListServiceAccountsResponse{}
|
|
parentUser := values.Get("ParentUser") // Optional filter
|
|
|
|
for _, sa := range s3cfg.ServiceAccounts {
|
|
if parentUser != "" && sa.ParentUser != parentUser {
|
|
continue
|
|
}
|
|
if sa.Credential == nil {
|
|
glog.Warningf("Service account %s has nil credential, skipping", sa.Id)
|
|
continue
|
|
}
|
|
status := iamAccessKeyStatusActive
|
|
if sa.Disabled {
|
|
status = iamAccessKeyStatusInactive
|
|
}
|
|
info := &iamServiceAccountInfo{
|
|
ServiceAccountId: sa.Id,
|
|
ParentUser: sa.ParentUser,
|
|
Description: sa.Description,
|
|
AccessKeyId: sa.Credential.AccessKey,
|
|
Status: status,
|
|
CreateDate: time.Unix(sa.CreatedAt, 0).Format(time.RFC3339),
|
|
}
|
|
if sa.Expiration > 0 {
|
|
expStr := time.Unix(sa.Expiration, 0).Format(time.RFC3339)
|
|
info.Expiration = &expStr
|
|
}
|
|
resp.ListServiceAccountsResult.ServiceAccounts = append(resp.ListServiceAccountsResult.ServiceAccounts, info)
|
|
}
|
|
|
|
return resp
|
|
}
|
|
|
|
// GetServiceAccount retrieves a service account by ID.
|
|
func (e *EmbeddedIamApi) GetServiceAccount(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamGetServiceAccountResponse, *iamError) {
|
|
resp := &iamGetServiceAccountResponse{}
|
|
saId := values.Get("ServiceAccountId")
|
|
|
|
if saId == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("ServiceAccountId is required")}
|
|
}
|
|
|
|
for _, sa := range s3cfg.ServiceAccounts {
|
|
if sa.Id == saId {
|
|
if sa.Credential == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("service account %s has no credentials", saId)}
|
|
}
|
|
status := iamAccessKeyStatusActive
|
|
if sa.Disabled {
|
|
status = iamAccessKeyStatusInactive
|
|
}
|
|
resp.GetServiceAccountResult.ServiceAccount = iamServiceAccountInfo{
|
|
ServiceAccountId: sa.Id,
|
|
ParentUser: sa.ParentUser,
|
|
Description: sa.Description,
|
|
AccessKeyId: sa.Credential.AccessKey,
|
|
Status: status,
|
|
CreateDate: time.Unix(sa.CreatedAt, 0).Format(time.RFC3339),
|
|
}
|
|
if sa.Expiration > 0 {
|
|
expStr := time.Unix(sa.Expiration, 0).Format(time.RFC3339)
|
|
resp.GetServiceAccountResult.ServiceAccount.Expiration = &expStr
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("service account %s not found", saId)}
|
|
}
|
|
|
|
// UpdateServiceAccount updates a service account's status, description, or expiration.
|
|
func (e *EmbeddedIamApi) UpdateServiceAccount(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamUpdateServiceAccountResponse, *iamError) {
|
|
resp := &iamUpdateServiceAccountResponse{}
|
|
saId := values.Get("ServiceAccountId")
|
|
newStatus := values.Get("Status")
|
|
newDescription := values.Get("Description")
|
|
newExpirationStr := values.Get("Expiration")
|
|
|
|
if saId == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("ServiceAccountId is required")}
|
|
}
|
|
|
|
for _, sa := range s3cfg.ServiceAccounts {
|
|
if sa.Id == saId {
|
|
// Update status if provided
|
|
if newStatus != "" {
|
|
if err := iamValidateStatus(newStatus); err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
sa.Disabled = (newStatus == iamAccessKeyStatusInactive)
|
|
}
|
|
// Update description if provided (check for key existence to allow clearing)
|
|
if _, hasDescription := values["Description"]; hasDescription {
|
|
if len(newDescription) > MaxDescriptionLength {
|
|
return resp, &iamError{
|
|
Code: iam.ErrCodeInvalidInputException,
|
|
Error: fmt.Errorf("description exceeds maximum length of %d characters", MaxDescriptionLength),
|
|
}
|
|
}
|
|
sa.Description = newDescription
|
|
}
|
|
// Update expiration if provided (check for key existence to allow clearing to 0)
|
|
if _, hasExpiration := values["Expiration"]; hasExpiration {
|
|
if newExpirationStr != "" {
|
|
newExpiration, err := strconv.ParseInt(newExpirationStr, 10, 64)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("invalid expiration format: %w", err)}
|
|
}
|
|
// Validate expiration value
|
|
if newExpiration < 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("expiration must not be negative")}
|
|
}
|
|
if newExpiration > 0 && newExpiration < time.Now().Unix() {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("expiration must be in the future")}
|
|
}
|
|
// 0 is explicitly allowed to clear expiration
|
|
sa.Expiration = newExpiration
|
|
} else {
|
|
// Empty string means clear expiration (set to 0 = no expiration)
|
|
sa.Expiration = 0
|
|
}
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("service account %s not found", saId)}
|
|
}
|
|
|
|
// Group Management Handlers
|
|
|
|
func (e *EmbeddedIamApi) CreateGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamCreateGroupResponse, *iamError) {
|
|
resp := &iamCreateGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("group %s already exists", groupName)}
|
|
}
|
|
}
|
|
s3cfg.Groups = append(s3cfg.Groups, &iam_pb.Group{Name: groupName})
|
|
resp.CreateGroupResult.Group.GroupName = &groupName
|
|
return resp, nil
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) DeleteGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamDeleteGroupResponse, *iamError) {
|
|
resp := &iamDeleteGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
for i, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
if len(g.Members) > 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeDeleteConflictException, Error: fmt.Errorf("cannot delete group %s: group has %d member(s). Remove all members first", groupName, len(g.Members))}
|
|
}
|
|
if len(g.PolicyNames) > 0 {
|
|
return resp, &iamError{Code: iam.ErrCodeDeleteConflictException, Error: fmt.Errorf("cannot delete group %s: group has %d attached policy(ies). Detach all policies first", groupName, len(g.PolicyNames))}
|
|
}
|
|
s3cfg.Groups = append(s3cfg.Groups[:i], s3cfg.Groups[i+1:]...)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) UpdateGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamUpdateGroupResponse, *iamError) {
|
|
resp := &iamUpdateGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
if disabled := values.Get("Disabled"); disabled != "" {
|
|
if disabled != "true" && disabled != "false" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("Disabled must be 'true' or 'false'")}
|
|
}
|
|
g.Disabled = disabled == "true"
|
|
}
|
|
if newName := values.Get("NewGroupName"); newName != "" && newName != g.Name {
|
|
for _, other := range s3cfg.Groups {
|
|
if other.Name == newName {
|
|
return resp, &iamError{Code: iam.ErrCodeEntityAlreadyExistsException, Error: fmt.Errorf("group %s already exists", newName)}
|
|
}
|
|
}
|
|
g.Name = newName
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) GetGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamGetGroupResponse, *iamError) {
|
|
resp := &iamGetGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
resp.GetGroupResult.Group.GroupName = &g.Name
|
|
for _, member := range g.Members {
|
|
memberName := member
|
|
resp.GetGroupResult.Users = append(resp.GetGroupResult.Users, &iam.User{UserName: &memberName})
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) ListGroups(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) *iamListGroupsResponse {
|
|
resp := &iamListGroupsResponse{}
|
|
for _, g := range s3cfg.Groups {
|
|
name := g.Name
|
|
resp.ListGroupsResult.Groups = append(resp.ListGroupsResult.Groups, &iam.Group{GroupName: &name})
|
|
}
|
|
return resp
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) AddUserToGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamAddUserToGroupResponse, *iamError) {
|
|
resp := &iamAddUserToGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
userName := values.Get("UserName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
// Verify user exists
|
|
userFound := false
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
userFound = true
|
|
break
|
|
}
|
|
}
|
|
if !userFound {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("user %s does not exist", userName)}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
// Check if already a member (idempotent)
|
|
for _, m := range g.Members {
|
|
if m == userName {
|
|
return resp, nil
|
|
}
|
|
}
|
|
g.Members = append(g.Members, userName)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) RemoveUserFromGroup(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamRemoveUserFromGroupResponse, *iamError) {
|
|
resp := &iamRemoveUserFromGroupResponse{}
|
|
groupName := values.Get("GroupName")
|
|
userName := values.Get("UserName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
for i, m := range g.Members {
|
|
if m == userName {
|
|
g.Members = append(g.Members[:i], g.Members[i+1:]...)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("user %s is not a member of group %s", userName, groupName)}
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) AttachGroupPolicy(ctx context.Context, s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamAttachGroupPolicyResponse, *iamError) {
|
|
resp := &iamAttachGroupPolicyResponse{}
|
|
groupName := values.Get("GroupName")
|
|
policyArn := values.Get("PolicyArn")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
// Verify policy exists via credential manager
|
|
if e.credentialManager == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("credential manager not available to validate policy %s", policyName)}
|
|
}
|
|
policy, pErr := e.credentialManager.GetPolicy(ctx, policyName)
|
|
if pErr != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeServiceFailureException, Error: fmt.Errorf("failed to look up policy %s: %w", policyName, pErr)}
|
|
}
|
|
if policy == nil {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s not found", policyName)}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
// Check if already attached (idempotent)
|
|
for _, p := range g.PolicyNames {
|
|
if p == policyName {
|
|
return resp, nil
|
|
}
|
|
}
|
|
g.PolicyNames = append(g.PolicyNames, policyName)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) DetachGroupPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamDetachGroupPolicyResponse, *iamError) {
|
|
resp := &iamDetachGroupPolicyResponse{}
|
|
groupName := values.Get("GroupName")
|
|
policyArn := values.Get("PolicyArn")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
policyName, err := iamPolicyNameFromArn(policyArn)
|
|
if err != nil {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: err}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
for i, p := range g.PolicyNames {
|
|
if p == policyName {
|
|
g.PolicyNames = append(g.PolicyNames[:i], g.PolicyNames[i+1:]...)
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("policy %s is not attached to group %s", policyName, groupName)}
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) ListAttachedGroupPolicies(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamListAttachedGroupPoliciesResponse, *iamError) {
|
|
resp := &iamListAttachedGroupPoliciesResponse{}
|
|
groupName := values.Get("GroupName")
|
|
if groupName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("GroupName is required")}
|
|
}
|
|
for _, g := range s3cfg.Groups {
|
|
if g.Name == groupName {
|
|
for _, policyName := range g.PolicyNames {
|
|
pn := policyName
|
|
policyArn := fmt.Sprintf("arn:aws:iam:::policy/%s", policyName)
|
|
resp.ListAttachedGroupPoliciesResult.AttachedPolicies = append(resp.ListAttachedGroupPoliciesResult.AttachedPolicies, &iam.AttachedPolicy{
|
|
PolicyName: &pn,
|
|
PolicyArn: &policyArn,
|
|
})
|
|
}
|
|
return resp, nil
|
|
}
|
|
}
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("group %s does not exist", groupName)}
|
|
}
|
|
|
|
func (e *EmbeddedIamApi) ListGroupsForUser(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamListGroupsForUserResponse, *iamError) {
|
|
resp := &iamListGroupsForUserResponse{}
|
|
userName := values.Get("UserName")
|
|
if userName == "" {
|
|
return resp, &iamError{Code: iam.ErrCodeInvalidInputException, Error: fmt.Errorf("UserName is required")}
|
|
}
|
|
// Verify user exists
|
|
userFound := false
|
|
for _, ident := range s3cfg.Identities {
|
|
if ident.Name == userName {
|
|
userFound = true
|
|
break
|
|
}
|
|
}
|
|
if !userFound {
|
|
return resp, &iamError{Code: iam.ErrCodeNoSuchEntityException, Error: fmt.Errorf("user %s does not exist", userName)}
|
|
}
|
|
// Build from s3cfg.Groups for consistency with freshly loaded config
|
|
for _, g := range s3cfg.Groups {
|
|
for _, m := range g.Members {
|
|
if m == userName {
|
|
name := g.Name
|
|
resp.ListGroupsForUserResult.Groups = append(resp.ListGroupsForUserResult.Groups, &iam.Group{GroupName: &name})
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// notImplementedError returns a NotImplemented IAM error for the embedded server.
|
|
func notImplementedGroupInlineError() *iamError {
|
|
return &iamError{Code: s3err.GetAPIError(s3err.ErrNotImplemented).Code, Error: fmt.Errorf("group inline policies are not supported in embedded IAM mode; use the standalone IAM server or managed policies (AttachGroupPolicy)")}
|
|
}
|
|
|
|
// PutGroupPolicy is not supported in embedded IAM mode.
|
|
func (e *EmbeddedIamApi) PutGroupPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamPutGroupPolicyResponse, *iamError) {
|
|
return &iamPutGroupPolicyResponse{}, notImplementedGroupInlineError()
|
|
}
|
|
|
|
// GetGroupPolicy is not supported in embedded IAM mode.
|
|
func (e *EmbeddedIamApi) GetGroupPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamGetGroupPolicyResponse, *iamError) {
|
|
return &iamGetGroupPolicyResponse{}, notImplementedGroupInlineError()
|
|
}
|
|
|
|
// DeleteGroupPolicy is not supported in embedded IAM mode.
|
|
func (e *EmbeddedIamApi) DeleteGroupPolicy(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamDeleteGroupPolicyResponse, *iamError) {
|
|
return &iamDeleteGroupPolicyResponse{}, notImplementedGroupInlineError()
|
|
}
|
|
|
|
// ListGroupPolicies is not supported in embedded IAM mode.
|
|
func (e *EmbeddedIamApi) ListGroupPolicies(s3cfg *iam_pb.S3ApiConfiguration, values url.Values) (*iamListGroupPoliciesResponse, *iamError) {
|
|
return &iamListGroupPoliciesResponse{}, notImplementedGroupInlineError()
|
|
}
|
|
|
|
// handleImplicitUsername adds username who signs the request to values if 'username' is not specified.
|
|
// According to AWS documentation: "If you do not specify a user name, IAM determines the user name
|
|
// implicitly based on the Amazon Web Services access key ID signing the request."
|
|
// This function extracts the AccessKeyId from the SigV4 credential and looks up the corresponding
|
|
// identity name in the credential store.
|
|
func (e *EmbeddedIamApi) handleImplicitUsername(r *http.Request, values url.Values) {
|
|
if len(r.Header["Authorization"]) == 0 || values.Get("UserName") != "" {
|
|
return
|
|
}
|
|
// Log presence of auth header without exposing sensitive signature material
|
|
glog.V(4).Infof("Authorization header present, extracting access key")
|
|
// Parse AWS SigV4 Authorization header format:
|
|
// "AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20130524/us-east-1/iam/aws4_request, ..."
|
|
s := strings.Split(r.Header["Authorization"][0], "Credential=")
|
|
if len(s) < 2 {
|
|
return
|
|
}
|
|
s = strings.Split(s[1], ",")
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
s = strings.Split(s[0], "/")
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
// s[0] is the AccessKeyId
|
|
accessKeyId := s[0]
|
|
if accessKeyId == "" {
|
|
return
|
|
}
|
|
// Nil-guard: ensure iam is initialized before lookup
|
|
if e.iam == nil {
|
|
glog.V(4).Infof("IAM not initialized, cannot look up access key")
|
|
return
|
|
}
|
|
// Look up the identity by access key to get the username
|
|
identity, _, found := e.iam.LookupByAccessKey(accessKeyId)
|
|
if !found {
|
|
// Mask access key in logs - show only first 4 chars
|
|
maskedKey := accessKeyId
|
|
if len(accessKeyId) > 4 {
|
|
maskedKey = accessKeyId[:4] + "***"
|
|
}
|
|
glog.V(4).Infof("Access key %s not found in credential store", maskedKey)
|
|
return
|
|
}
|
|
values.Set("UserName", identity.Name)
|
|
}
|
|
|
|
// iamSelfServiceActions are actions that users can perform on their own resources without admin rights.
|
|
// According to AWS IAM, users can manage their own access keys without requiring full admin permissions.
|
|
var iamSelfServiceActions = map[string]bool{
|
|
"CreateAccessKey": true,
|
|
"DeleteAccessKey": true,
|
|
"ListAccessKeys": true,
|
|
"GetUser": true,
|
|
"UpdateAccessKey": true,
|
|
}
|
|
|
|
// iamRequiresAdminForOthers returns true if the action requires admin rights when operating on other users.
|
|
func iamRequiresAdminForOthers(action string) bool {
|
|
return iamSelfServiceActions[action]
|
|
}
|
|
|
|
// AuthIam provides IAM-specific authentication that allows self-service operations.
|
|
// Users can manage their own access keys without admin rights, but need admin for operations on other users.
|
|
// The action parameter is accepted for interface compatibility with cb.Limit but is not used
|
|
// since IAM permission checking is done based on the IAM Action parameter in the request.
|
|
func (e *EmbeddedIamApi) AuthIam(f http.HandlerFunc, _ Action) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
// If auth is not enabled, allow all
|
|
if !e.iam.isEnabled() {
|
|
f(w, r)
|
|
return
|
|
}
|
|
|
|
// Authenticate BEFORE parsing form.
|
|
// ParseForm() reads and consumes the request body, but signature verification
|
|
// needs to hash the body for IAM requests (service != "s3").
|
|
// The streamHashRequestBody function in auth_signature_v4.go preserves the body
|
|
// after reading it, so ParseForm() will work correctly after authentication.
|
|
identity, errCode := e.iam.AuthSignatureOnly(r)
|
|
if errCode != s3err.ErrNone {
|
|
s3err.WriteErrorResponse(w, r, errCode)
|
|
return
|
|
}
|
|
|
|
// Now parse form to get Action and UserName (body was preserved by auth)
|
|
if err := r.ParseForm(); err != nil {
|
|
s3err.WriteErrorResponse(w, r, s3err.ErrInvalidRequest)
|
|
return
|
|
}
|
|
|
|
action := r.Form.Get("Action")
|
|
targetUserName := r.PostForm.Get("UserName")
|
|
|
|
// IAM API requests must be authenticated - reject nil identity
|
|
// (can happen for authTypePostPolicy or authTypeStreamingUnsigned)
|
|
if identity == nil {
|
|
s3err.WriteErrorResponse(w, r, s3err.ErrAccessDenied)
|
|
return
|
|
}
|
|
|
|
// Store identity in context
|
|
if identity != nil && identity.Name != "" {
|
|
ctx := SetIdentityNameInContext(r.Context(), identity.Name)
|
|
ctx = SetIdentityInContext(ctx, identity)
|
|
r = r.WithContext(ctx)
|
|
}
|
|
|
|
// Check permissions based on action type
|
|
if iamRequiresAdminForOthers(action) {
|
|
// Self-service action: allow if operating on own resources or no target specified
|
|
if targetUserName == "" || targetUserName == identity.Name {
|
|
// Self-service: allowed
|
|
f(w, r)
|
|
return
|
|
}
|
|
// Operating on another user: require admin or permission
|
|
if !identity.isAdmin() {
|
|
if e.iam.VerifyActionPermission(r, identity, Action("iam:"+action), "arn:aws:iam:::*", "") != s3err.ErrNone {
|
|
s3err.WriteErrorResponse(w, r, s3err.ErrAccessDenied)
|
|
return
|
|
}
|
|
}
|
|
} else {
|
|
// All other IAM actions require admin or permission
|
|
if !identity.isAdmin() {
|
|
if e.iam.VerifyActionPermission(r, identity, Action("iam:"+action), "arn:aws:iam:::*", "") != s3err.ErrNone {
|
|
s3err.WriteErrorResponse(w, r, s3err.ErrAccessDenied)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
f(w, r)
|
|
}
|
|
}
|
|
|
|
// ExecuteAction executes an IAM action with the given values.
|
|
// If skipPersist is true, the changed configuration is not saved to the persistent store.
|
|
// reqID is set on the response; if empty, a new request ID is generated.
|
|
func (e *EmbeddedIamApi) ExecuteAction(ctx context.Context, values url.Values, skipPersist bool, reqID string) (iamlib.RequestIDSetter, *iamError) {
|
|
if reqID == "" {
|
|
reqID = request_id.New()
|
|
}
|
|
// Lock to prevent concurrent read-modify-write race conditions
|
|
e.policyLock.Lock()
|
|
defer e.policyLock.Unlock()
|
|
|
|
action := values.Get("Action")
|
|
if e.readOnly {
|
|
switch action {
|
|
case "ListUsers", "ListAccessKeys", "GetUser", "GetUserPolicy", "ListUserPolicies", "ListAttachedUserPolicies", "ListPolicies", "GetPolicy", "ListPolicyVersions", "GetPolicyVersion", "ListServiceAccounts", "GetServiceAccount",
|
|
"GetGroup", "ListGroups", "ListAttachedGroupPolicies", "GetGroupPolicy", "ListGroupPolicies", "ListGroupsForUser":
|
|
// Allowed read-only actions
|
|
default:
|
|
return nil, &iamError{Code: s3err.GetAPIError(s3err.ErrAccessDenied).Code, Error: fmt.Errorf("IAM write operations are disabled on this server")}
|
|
}
|
|
}
|
|
|
|
s3cfg := &iam_pb.S3ApiConfiguration{}
|
|
if err := e.GetS3ApiConfiguration(s3cfg); err != nil && !errors.Is(err, filer_pb.ErrNotFound) {
|
|
return nil, &iamError{Code: s3err.GetAPIError(s3err.ErrInternalError).Code, Error: fmt.Errorf("failed to get s3 api configuration: %v", err)}
|
|
}
|
|
|
|
glog.V(4).Infof("IAM ExecuteAction: %+v", iamlib.RedactSensitiveFormValues(values))
|
|
var response iamlib.RequestIDSetter
|
|
changed := true
|
|
switch values.Get("Action") {
|
|
case "ListUsers":
|
|
response = e.ListUsers(s3cfg, values)
|
|
changed = false
|
|
case "ListAccessKeys":
|
|
// Note: handleImplicitUsername requires request context which we don't have here for gRPC
|
|
// gRPC callers must provide UserName explicitly
|
|
response = e.ListAccessKeys(s3cfg, values)
|
|
changed = false
|
|
case "CreateUser":
|
|
var iamErr *iamError
|
|
response, iamErr = e.CreateUser(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "GetUser":
|
|
userName := values.Get("UserName")
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetUser(s3cfg, userName)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "UpdateUser":
|
|
var iamErr *iamError
|
|
response, iamErr = e.UpdateUser(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "DeleteUser":
|
|
userName := values.Get("UserName")
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeleteUser(s3cfg, userName)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "CreateAccessKey":
|
|
var iamErr *iamError
|
|
response, iamErr = e.CreateAccessKey(s3cfg, values)
|
|
if iamErr != nil {
|
|
glog.Errorf("CreateAccessKey: %+v", iamErr.Error)
|
|
return nil, iamErr
|
|
}
|
|
case "DeleteAccessKey":
|
|
response = e.DeleteAccessKey(s3cfg, values)
|
|
case "CreatePolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.CreatePolicy(ctx, values)
|
|
if iamErr != nil {
|
|
glog.Errorf("CreatePolicy: %+v", iamErr.Error)
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "DeletePolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeletePolicy(ctx, values)
|
|
if iamErr != nil {
|
|
glog.Errorf("DeletePolicy: %+v", iamErr.Error)
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "PutUserPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.PutUserPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
glog.Errorf("PutUserPolicy: %+v", iamErr.Error)
|
|
return nil, iamErr
|
|
}
|
|
case "GetUserPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetUserPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "DeleteUserPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeleteUserPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "ListUserPolicies":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListUserPolicies(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "AttachUserPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.AttachUserPolicy(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "DetachUserPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DetachUserPolicy(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListAttachedUserPolicies":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListAttachedUserPolicies(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListPolicies":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListPolicies(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "GetPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetPolicy(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListPolicyVersions":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListPolicyVersions(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "GetPolicyVersion":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetPolicyVersion(ctx, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "SetUserStatus":
|
|
var iamErr *iamError
|
|
response, iamErr = e.SetUserStatus(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "UpdateAccessKey":
|
|
var iamErr *iamError
|
|
response, iamErr = e.UpdateAccessKey(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
// Service Account actions
|
|
case "CreateServiceAccount":
|
|
createdBy := values.Get("CreatedBy")
|
|
var iamErr *iamError
|
|
response, iamErr = e.CreateServiceAccount(s3cfg, values, createdBy)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "DeleteServiceAccount":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeleteServiceAccount(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "ListServiceAccounts":
|
|
response = e.ListServiceAccounts(s3cfg, values)
|
|
changed = false
|
|
case "GetServiceAccount":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetServiceAccount(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "UpdateServiceAccount":
|
|
var iamErr *iamError
|
|
response, iamErr = e.UpdateServiceAccount(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
// Group actions
|
|
case "CreateGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.CreateGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "DeleteGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeleteGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "UpdateGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.UpdateGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "GetGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListGroups":
|
|
response = e.ListGroups(s3cfg, values)
|
|
changed = false
|
|
case "AddUserToGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.AddUserToGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "RemoveUserFromGroup":
|
|
var iamErr *iamError
|
|
response, iamErr = e.RemoveUserFromGroup(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "AttachGroupPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.AttachGroupPolicy(ctx, s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "DetachGroupPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DetachGroupPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
case "ListAttachedGroupPolicies":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListAttachedGroupPolicies(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "PutGroupPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.PutGroupPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "GetGroupPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.GetGroupPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "DeleteGroupPolicy":
|
|
var iamErr *iamError
|
|
response, iamErr = e.DeleteGroupPolicy(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListGroupPolicies":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListGroupPolicies(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
case "ListGroupsForUser":
|
|
var iamErr *iamError
|
|
response, iamErr = e.ListGroupsForUser(s3cfg, values)
|
|
if iamErr != nil {
|
|
return nil, iamErr
|
|
}
|
|
changed = false
|
|
default:
|
|
return nil, &iamError{Code: s3err.GetAPIError(s3err.ErrNotImplemented).Code, Error: errors.New(s3err.GetAPIError(s3err.ErrNotImplemented).Description)}
|
|
}
|
|
if changed {
|
|
if !skipPersist {
|
|
if err := e.PutS3ApiConfiguration(s3cfg); err != nil {
|
|
return nil, &iamError{Code: iam.ErrCodeServiceFailureException, Error: err}
|
|
}
|
|
}
|
|
// Reload in-memory identity maps so subsequent LookupByAccessKey calls
|
|
// can see newly created or deleted keys immediately
|
|
if err := e.ReloadConfiguration(); err != nil {
|
|
glog.Errorf("Failed to reload IAM configuration after mutation: %v", err)
|
|
// Don't fail the request since the persistent save succeeded
|
|
}
|
|
} else if action == "AttachUserPolicy" || action == "DetachUserPolicy" || action == "CreatePolicy" || action == "DeletePolicy" {
|
|
// Even if changed=false (persisted via credentialManager), we should still reload
|
|
// if we are utilizing the local in-memory cache for speed
|
|
if err := e.ReloadConfiguration(); err != nil {
|
|
glog.Errorf("Failed to reload IAM configuration after managed policy mutation: %v", err)
|
|
}
|
|
}
|
|
response.SetRequestId(reqID)
|
|
return response, nil
|
|
}
|
|
|
|
// DoActions handles IAM API actions.
|
|
func (e *EmbeddedIamApi) DoActions(w http.ResponseWriter, r *http.Request) {
|
|
r, reqID := request_id.Ensure(r)
|
|
if err := r.ParseForm(); err != nil {
|
|
s3err.WriteErrorResponse(w, r, s3err.ErrInvalidRequest)
|
|
return
|
|
}
|
|
values := r.PostForm
|
|
|
|
// Handle implicit username for HTTP requests
|
|
switch r.Form.Get("Action") {
|
|
case "ListAccessKeys", "CreateAccessKey", "DeleteAccessKey", "UpdateAccessKey", "ListUserPolicies":
|
|
e.handleImplicitUsername(r, values)
|
|
case "CreateServiceAccount":
|
|
createdBy := s3_constants.GetIdentityNameFromContext(r)
|
|
values.Set("CreatedBy", createdBy)
|
|
}
|
|
|
|
response, iamErr := e.ExecuteAction(r.Context(), values, false, reqID)
|
|
if iamErr != nil {
|
|
e.writeIamErrorResponse(w, r, reqID, iamErr)
|
|
return
|
|
}
|
|
|
|
s3err.WriteXMLResponse(w, r, http.StatusOK, response)
|
|
}
|