123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- package s3api
- import (
- "fmt"
- "net/http"
- "os"
- "strings"
- "sync"
- "github.com/seaweedfs/seaweedfs/weed/s3api/s3account"
- "github.com/seaweedfs/seaweedfs/weed/filer"
- "github.com/seaweedfs/seaweedfs/weed/glog"
- "github.com/seaweedfs/seaweedfs/weed/pb"
- "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
- "github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
- "github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
- "github.com/seaweedfs/seaweedfs/weed/s3api/s3err"
- )
- type Action string
- type Iam interface {
- Check(f http.HandlerFunc, actions ...Action) http.HandlerFunc
- }
- type IdentityAccessManagement struct {
- m sync.RWMutex
- identities []*Identity
- accessKeyIdent map[string]*Identity
- hashes map[string]*sync.Pool
- hashCounters map[string]*int32
- identityAnonymous *Identity
- hashMu sync.RWMutex
- domain string
- isAuthEnabled bool
- }
- type Identity struct {
- Name string
- AccountId string
- Credentials []*Credential
- Actions []Action
- }
- func (i *Identity) isAnonymous() bool {
- return i.Name == s3account.AccountAnonymous.Name
- }
- type Credential struct {
- AccessKey string
- SecretKey string
- }
- func (action Action) isAdmin() bool {
- return strings.HasPrefix(string(action), s3_constants.ACTION_ADMIN)
- }
- func (action Action) isOwner(bucket string) bool {
- return string(action) == s3_constants.ACTION_ADMIN+":"+bucket
- }
- func (action Action) overBucket(bucket string) bool {
- return strings.HasSuffix(string(action), ":"+bucket) || strings.HasSuffix(string(action), ":*")
- }
- func (action Action) getPermission() Permission {
- switch act := strings.Split(string(action), ":")[0]; act {
- case s3_constants.ACTION_ADMIN:
- return Permission("FULL_CONTROL")
- case s3_constants.ACTION_WRITE:
- return Permission("WRITE")
- case s3_constants.ACTION_READ:
- return Permission("READ")
- default:
- return Permission("")
- }
- }
- func NewIdentityAccessManagement(option *S3ApiServerOption) *IdentityAccessManagement {
- iam := &IdentityAccessManagement{
- domain: option.DomainName,
- hashes: make(map[string]*sync.Pool),
- hashCounters: make(map[string]*int32),
- }
- if option.Config != "" {
- if err := iam.loadS3ApiConfigurationFromFile(option.Config); err != nil {
- glog.Fatalf("fail to load config file %s: %v", option.Config, err)
- }
- } else {
- if err := iam.loadS3ApiConfigurationFromFiler(option); err != nil {
- glog.Warningf("fail to load config: %v", err)
- }
- }
- return iam
- }
- func (iam *IdentityAccessManagement) loadS3ApiConfigurationFromFiler(option *S3ApiServerOption) (err error) {
- var content []byte
- err = pb.WithFilerClient(false, 0, option.Filer, option.GrpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
- content, err = filer.ReadInsideFiler(client, filer.IamConfigDirectory, filer.IamIdentityFile)
- return err
- })
- if err != nil {
- return fmt.Errorf("read S3 config: %v", err)
- }
- return iam.LoadS3ApiConfigurationFromBytes(content)
- }
- func (iam *IdentityAccessManagement) loadS3ApiConfigurationFromFile(fileName string) error {
- content, readErr := os.ReadFile(fileName)
- if readErr != nil {
- glog.Warningf("fail to read %s : %v", fileName, readErr)
- return fmt.Errorf("fail to read %s : %v", fileName, readErr)
- }
- return iam.LoadS3ApiConfigurationFromBytes(content)
- }
- func (iam *IdentityAccessManagement) LoadS3ApiConfigurationFromBytes(content []byte) error {
- s3ApiConfiguration := &iam_pb.S3ApiConfiguration{}
- if err := filer.ParseS3ConfigurationFromBytes(content, s3ApiConfiguration); err != nil {
- glog.Warningf("unmarshal error: %v", err)
- return fmt.Errorf("unmarshal error: %v", err)
- }
- if err := filer.CheckDuplicateAccessKey(s3ApiConfiguration); err != nil {
- return err
- }
- if err := iam.loadS3ApiConfiguration(s3ApiConfiguration); err != nil {
- return err
- }
- return nil
- }
- func (iam *IdentityAccessManagement) loadS3ApiConfiguration(config *iam_pb.S3ApiConfiguration) error {
- var identities []*Identity
- var identityAnonymous *Identity
- accessKeyIdent := make(map[string]*Identity)
- for _, ident := range config.Identities {
- t := &Identity{
- Name: ident.Name,
- AccountId: s3account.AccountAdmin.Id,
- Credentials: nil,
- Actions: nil,
- }
- if ident.Name == s3account.AccountAnonymous.Name {
- if ident.AccountId != "" && ident.AccountId != s3account.AccountAnonymous.Id {
- glog.Warningf("anonymous identity is associated with a non-anonymous account ID, the association is invalid")
- }
- t.AccountId = s3account.AccountAnonymous.Id
- identityAnonymous = t
- } else {
- if len(ident.AccountId) > 0 {
- t.AccountId = ident.AccountId
- }
- }
- for _, action := range ident.Actions {
- t.Actions = append(t.Actions, Action(action))
- }
- for _, cred := range ident.Credentials {
- t.Credentials = append(t.Credentials, &Credential{
- AccessKey: cred.AccessKey,
- SecretKey: cred.SecretKey,
- })
- accessKeyIdent[cred.AccessKey] = t
- }
- identities = append(identities, t)
- }
- iam.m.Lock()
- // atomically switch
- iam.identities = identities
- iam.identityAnonymous = identityAnonymous
- iam.accessKeyIdent = accessKeyIdent
- if !iam.isAuthEnabled { // one-directional, no toggling
- iam.isAuthEnabled = len(identities) > 0
- }
- iam.m.Unlock()
- return nil
- }
- func (iam *IdentityAccessManagement) isEnabled() bool {
- return iam.isAuthEnabled
- }
- func (iam *IdentityAccessManagement) lookupByAccessKey(accessKey string) (identity *Identity, cred *Credential, found bool) {
- iam.m.RLock()
- defer iam.m.RUnlock()
- if ident, ok := iam.accessKeyIdent[accessKey]; ok {
- for _, credential := range ident.Credentials {
- if credential.AccessKey == accessKey {
- return ident, credential, true
- }
- }
- }
- glog.V(1).Infof("could not find accessKey %s", accessKey)
- return nil, nil, false
- }
- func (iam *IdentityAccessManagement) lookupAnonymous() (identity *Identity, found bool) {
- iam.m.RLock()
- defer iam.m.RUnlock()
- if iam.identityAnonymous != nil {
- return iam.identityAnonymous, true
- }
- return nil, false
- }
- func (iam *IdentityAccessManagement) Auth(f http.HandlerFunc, action Action) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- if !iam.isEnabled() {
- f(w, r)
- return
- }
- identity, errCode := iam.authRequest(r, action)
- if errCode == s3err.ErrNone {
- if identity != nil && identity.Name != "" {
- r.Header.Set(s3_constants.AmzIdentityId, identity.Name)
- if identity.isAdmin() {
- r.Header.Set(s3_constants.AmzIsAdmin, "true")
- } else if _, ok := r.Header[s3_constants.AmzIsAdmin]; ok {
- r.Header.Del(s3_constants.AmzIsAdmin)
- }
- }
- f(w, r)
- return
- }
- s3err.WriteErrorResponse(w, r, errCode)
- }
- }
- // check whether the request has valid access keys
- func (iam *IdentityAccessManagement) authRequest(r *http.Request, action Action) (*Identity, s3err.ErrorCode) {
- var identity *Identity
- var s3Err s3err.ErrorCode
- var found bool
- var authType string
- switch getRequestAuthType(r) {
- case authTypeStreamingSigned:
- return identity, s3err.ErrNone
- case authTypeUnknown:
- glog.V(3).Infof("unknown auth type")
- r.Header.Set(s3_constants.AmzAuthType, "Unknown")
- return identity, s3err.ErrAccessDenied
- case authTypePresignedV2, authTypeSignedV2:
- glog.V(3).Infof("v2 auth type")
- identity, s3Err = iam.isReqAuthenticatedV2(r)
- authType = "SigV2"
- case authTypeSigned, authTypePresigned:
- glog.V(3).Infof("v4 auth type")
- identity, s3Err = iam.reqSignatureV4Verify(r)
- authType = "SigV4"
- case authTypePostPolicy:
- glog.V(3).Infof("post policy auth type")
- r.Header.Set(s3_constants.AmzAuthType, "PostPolicy")
- return identity, s3err.ErrNone
- case authTypeJWT:
- glog.V(3).Infof("jwt auth type")
- r.Header.Set(s3_constants.AmzAuthType, "Jwt")
- return identity, s3err.ErrNotImplemented
- case authTypeAnonymous:
- authType = "Anonymous"
- if identity, found = iam.lookupAnonymous(); !found {
- r.Header.Set(s3_constants.AmzAuthType, authType)
- return identity, s3err.ErrAccessDenied
- }
- default:
- return identity, s3err.ErrNotImplemented
- }
- if len(authType) > 0 {
- r.Header.Set(s3_constants.AmzAuthType, authType)
- }
- if s3Err != s3err.ErrNone {
- return identity, s3Err
- }
- glog.V(3).Infof("user name: %v actions: %v, action: %v", identity.Name, identity.Actions, action)
- bucket, object := s3_constants.GetBucketAndObject(r)
- if !identity.canDo(action, bucket, object) {
- return identity, s3err.ErrAccessDenied
- }
- if !identity.isAnonymous() {
- r.Header.Set(s3_constants.AmzAccountId, identity.AccountId)
- }
- return identity, s3err.ErrNone
- }
- func (iam *IdentityAccessManagement) authUser(r *http.Request) (*Identity, s3err.ErrorCode) {
- var identity *Identity
- var s3Err s3err.ErrorCode
- var found bool
- var authType string
- switch getRequestAuthType(r) {
- case authTypeStreamingSigned:
- return identity, s3err.ErrNone
- case authTypeUnknown:
- glog.V(3).Infof("unknown auth type")
- r.Header.Set(s3_constants.AmzAuthType, "Unknown")
- return identity, s3err.ErrAccessDenied
- case authTypePresignedV2, authTypeSignedV2:
- glog.V(3).Infof("v2 auth type")
- identity, s3Err = iam.isReqAuthenticatedV2(r)
- authType = "SigV2"
- case authTypeSigned, authTypePresigned:
- glog.V(3).Infof("v4 auth type")
- identity, s3Err = iam.reqSignatureV4Verify(r)
- authType = "SigV4"
- case authTypePostPolicy:
- glog.V(3).Infof("post policy auth type")
- r.Header.Set(s3_constants.AmzAuthType, "PostPolicy")
- return identity, s3err.ErrNone
- case authTypeJWT:
- glog.V(3).Infof("jwt auth type")
- r.Header.Set(s3_constants.AmzAuthType, "Jwt")
- return identity, s3err.ErrNotImplemented
- case authTypeAnonymous:
- authType = "Anonymous"
- identity, found = iam.lookupAnonymous()
- if !found {
- r.Header.Set(s3_constants.AmzAuthType, authType)
- return identity, s3err.ErrAccessDenied
- }
- default:
- return identity, s3err.ErrNotImplemented
- }
- if len(authType) > 0 {
- r.Header.Set(s3_constants.AmzAuthType, authType)
- }
- glog.V(3).Infof("auth error: %v", s3Err)
- if s3Err != s3err.ErrNone {
- return identity, s3Err
- }
- return identity, s3err.ErrNone
- }
- func (identity *Identity) canDo(action Action, bucket string, objectKey string) bool {
- if identity.isAdmin() {
- return true
- }
- for _, a := range identity.Actions {
- if a == action {
- return true
- }
- }
- if bucket == "" {
- return false
- }
- target := string(action) + ":" + bucket + objectKey
- adminTarget := s3_constants.ACTION_ADMIN + ":" + bucket + objectKey
- limitedByBucket := string(action) + ":" + bucket
- adminLimitedByBucket := s3_constants.ACTION_ADMIN + ":" + bucket
- for _, a := range identity.Actions {
- act := string(a)
- if strings.HasSuffix(act, "*") {
- if strings.HasPrefix(target, act[:len(act)-1]) {
- return true
- }
- if strings.HasPrefix(adminTarget, act[:len(act)-1]) {
- return true
- }
- } else {
- if act == limitedByBucket {
- return true
- }
- if act == adminLimitedByBucket {
- return true
- }
- }
- }
- return false
- }
- func (identity *Identity) isAdmin() bool {
- for _, a := range identity.Actions {
- if a == "Admin" {
- return true
- }
- }
- return false
- }
|