2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-15 20:42:39 -05:00
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-02-15 20:42:39 -05:00
|
|
|
|
2016-02-21 20:57:05 -05:00
|
|
|
import (
|
2016-03-12 19:08:15 -05:00
|
|
|
"bytes"
|
2018-04-05 18:04:40 -04:00
|
|
|
"context"
|
2018-11-21 23:03:24 -05:00
|
|
|
"crypto/subtle"
|
2018-03-16 14:22:34 -04:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/hex"
|
2018-01-17 13:36:25 -05:00
|
|
|
"errors"
|
2018-05-04 14:16:14 -04:00
|
|
|
"io"
|
2023-03-20 00:15:20 -04:00
|
|
|
"mime"
|
2016-02-21 20:57:05 -05:00
|
|
|
"net/http"
|
2021-08-08 01:43:01 -04:00
|
|
|
"net/url"
|
2020-04-06 16:44:16 -04:00
|
|
|
"strconv"
|
2016-02-21 20:57:05 -05:00
|
|
|
"strings"
|
2021-03-31 02:19:36 -04:00
|
|
|
"sync/atomic"
|
2020-04-06 16:44:16 -04:00
|
|
|
"time"
|
2018-03-02 18:23:04 -05:00
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/auth"
|
|
|
|
objectlock "github.com/minio/minio/internal/bucket/object/lock"
|
|
|
|
"github.com/minio/minio/internal/etag"
|
|
|
|
"github.com/minio/minio/internal/hash"
|
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
|
|
|
xjwt "github.com/minio/minio/internal/jwt"
|
|
|
|
"github.com/minio/minio/internal/logger"
|
2022-12-06 12:27:26 -05:00
|
|
|
"github.com/minio/minio/internal/mcontext"
|
2023-09-04 15:57:37 -04:00
|
|
|
"github.com/minio/pkg/v2/policy"
|
2016-02-15 20:42:39 -05:00
|
|
|
)
|
|
|
|
|
2016-02-21 20:57:05 -05:00
|
|
|
// Verify if request has JWT.
|
|
|
|
func isRequestJWT(r *http.Request) bool {
|
2019-07-03 01:34:32 -04:00
|
|
|
return strings.HasPrefix(r.Header.Get(xhttp.Authorization), jwtAlgorithm)
|
2016-02-21 20:57:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify if request has AWS Signature Version '4'.
|
|
|
|
func isRequestSignatureV4(r *http.Request) bool {
|
2019-07-03 01:34:32 -04:00
|
|
|
return strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV4Algorithm)
|
2016-02-21 20:57:05 -05:00
|
|
|
}
|
|
|
|
|
2016-09-30 17:32:13 -04:00
|
|
|
// Verify if request has AWS Signature Version '2'.
|
|
|
|
func isRequestSignatureV2(r *http.Request) bool {
|
2019-07-03 01:34:32 -04:00
|
|
|
return (!strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV4Algorithm) &&
|
|
|
|
strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV2Algorithm))
|
2016-09-30 17:32:13 -04:00
|
|
|
}
|
|
|
|
|
2016-08-08 23:56:29 -04:00
|
|
|
// Verify if request has AWS PreSign Version '4'.
|
2016-02-21 20:57:05 -05:00
|
|
|
func isRequestPresignedSignatureV4(r *http.Request) bool {
|
2021-08-08 01:43:01 -04:00
|
|
|
_, ok := r.Form[xhttp.AmzCredential]
|
2016-08-08 23:56:29 -04:00
|
|
|
return ok
|
2016-02-21 20:57:05 -05:00
|
|
|
}
|
|
|
|
|
2016-09-30 17:32:13 -04:00
|
|
|
// Verify request has AWS PreSign Version '2'.
|
|
|
|
func isRequestPresignedSignatureV2(r *http.Request) bool {
|
2021-08-08 01:43:01 -04:00
|
|
|
_, ok := r.Form[xhttp.AmzAccessKeyID]
|
2016-09-30 17:32:13 -04:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2016-02-21 20:57:05 -05:00
|
|
|
// Verify if request has AWS Post policy Signature Version '4'.
|
|
|
|
func isRequestPostPolicySignatureV4(r *http.Request) bool {
|
2023-03-20 00:15:20 -04:00
|
|
|
mediaType, _, err := mime.ParseMediaType(r.Header.Get(xhttp.ContentType))
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return mediaType == "multipart/form-data" && r.Method == http.MethodPost
|
2016-08-08 23:56:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify if the request has AWS Streaming Signature Version '4'. This is only valid for 'PUT' operation.
|
|
|
|
func isRequestSignStreamingV4(r *http.Request) bool {
|
2019-07-03 01:34:32 -04:00
|
|
|
return r.Header.Get(xhttp.AmzContentSha256) == streamingContentSHA256 &&
|
2018-01-07 23:47:48 -05:00
|
|
|
r.Method == http.MethodPut
|
2016-02-21 20:57:05 -05:00
|
|
|
}
|
|
|
|
|
2023-05-05 22:53:12 -04:00
|
|
|
// Verify if the request has AWS Streaming Signature Version '4'. This is only valid for 'PUT' operation.
|
|
|
|
func isRequestSignStreamingTrailerV4(r *http.Request) bool {
|
|
|
|
return r.Header.Get(xhttp.AmzContentSha256) == streamingContentSHA256Trailer &&
|
|
|
|
r.Method == http.MethodPut
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify if the request has AWS Streaming Signature Version '4', with unsigned content and trailer.
|
|
|
|
func isRequestUnsignedTrailerV4(r *http.Request) bool {
|
|
|
|
return r.Header.Get(xhttp.AmzContentSha256) == unsignedPayloadTrailer &&
|
|
|
|
r.Method == http.MethodPut && strings.Contains(r.Header.Get(xhttp.ContentEncoding), streamingContentEncoding)
|
|
|
|
}
|
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
// Authorization type.
|
2022-10-02 15:29:29 -04:00
|
|
|
//
|
|
|
|
//go:generate stringer -type=authType -trimprefix=authType $GOFILE
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
type authType int
|
|
|
|
|
|
|
|
// List of all supported auth types.
|
|
|
|
const (
|
|
|
|
authTypeUnknown authType = iota
|
|
|
|
authTypeAnonymous
|
|
|
|
authTypePresigned
|
2016-09-30 17:32:13 -04:00
|
|
|
authTypePresignedV2
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
authTypePostPolicy
|
2016-08-08 23:56:29 -04:00
|
|
|
authTypeStreamingSigned
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
authTypeSigned
|
2016-09-30 17:32:13 -04:00
|
|
|
authTypeSignedV2
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
authTypeJWT
|
2018-10-09 17:00:01 -04:00
|
|
|
authTypeSTS
|
2023-05-05 22:53:12 -04:00
|
|
|
authTypeStreamingSignedTrailer
|
|
|
|
authTypeStreamingUnsignedTrailer
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Get request authentication type.
|
2023-05-05 22:53:12 -04:00
|
|
|
func getRequestAuthType(r *http.Request) (at authType) {
|
2021-08-08 01:43:01 -04:00
|
|
|
if r.URL != nil {
|
|
|
|
var err error
|
|
|
|
r.Form, err = url.ParseQuery(r.URL.RawQuery)
|
|
|
|
if err != nil {
|
|
|
|
logger.LogIf(r.Context(), err)
|
|
|
|
return authTypeUnknown
|
|
|
|
}
|
|
|
|
}
|
2016-09-30 17:32:13 -04:00
|
|
|
if isRequestSignatureV2(r) {
|
|
|
|
return authTypeSignedV2
|
|
|
|
} else if isRequestPresignedSignatureV2(r) {
|
|
|
|
return authTypePresignedV2
|
|
|
|
} else if isRequestSignStreamingV4(r) {
|
2016-08-08 23:56:29 -04:00
|
|
|
return authTypeStreamingSigned
|
2023-05-05 22:53:12 -04:00
|
|
|
} else if isRequestSignStreamingTrailerV4(r) {
|
|
|
|
return authTypeStreamingSignedTrailer
|
|
|
|
} else if isRequestUnsignedTrailerV4(r) {
|
|
|
|
return authTypeStreamingUnsignedTrailer
|
2016-08-08 23:56:29 -04:00
|
|
|
} else if isRequestSignatureV4(r) {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
return authTypeSigned
|
|
|
|
} else if isRequestPresignedSignatureV4(r) {
|
|
|
|
return authTypePresigned
|
|
|
|
} else if isRequestJWT(r) {
|
|
|
|
return authTypeJWT
|
|
|
|
} else if isRequestPostPolicySignatureV4(r) {
|
|
|
|
return authTypePostPolicy
|
2021-08-08 01:43:01 -04:00
|
|
|
} else if _, ok := r.Form[xhttp.Action]; ok {
|
2018-10-09 17:00:01 -04:00
|
|
|
return authTypeSTS
|
2019-07-03 01:34:32 -04:00
|
|
|
} else if _, ok := r.Header[xhttp.Authorization]; !ok {
|
2018-11-13 18:53:06 -05:00
|
|
|
return authTypeAnonymous
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
}
|
|
|
|
return authTypeUnknown
|
|
|
|
}
|
|
|
|
|
2023-02-06 12:27:29 -05:00
|
|
|
func validateAdminSignature(ctx context.Context, r *http.Request, region string) (auth.Credentials, bool, APIErrorCode) {
|
2019-11-19 05:03:18 -05:00
|
|
|
var cred auth.Credentials
|
|
|
|
var owner bool
|
2018-01-17 13:36:25 -05:00
|
|
|
s3Err := ErrAccessDenied
|
2019-07-03 01:34:32 -04:00
|
|
|
if _, ok := r.Header[xhttp.AmzContentSha256]; ok &&
|
2021-09-14 16:55:24 -04:00
|
|
|
getRequestAuthType(r) == authTypeSigned {
|
2018-10-09 17:00:01 -04:00
|
|
|
// We only support admin credentials to access admin APIs.
|
2019-11-19 05:03:18 -05:00
|
|
|
cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
|
2018-10-09 17:00:01 -04:00
|
|
|
if s3Err != ErrNone {
|
2023-02-06 12:27:29 -05:00
|
|
|
return cred, owner, s3Err
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// we only support V4 (no presign) with auth body
|
2019-02-27 20:46:55 -05:00
|
|
|
s3Err = isReqAuthenticated(ctx, r, region, serviceS3)
|
2018-01-17 13:36:25 -05:00
|
|
|
}
|
|
|
|
if s3Err != ErrNone {
|
2023-02-06 12:27:29 -05:00
|
|
|
return cred, owner, s3Err
|
2018-01-17 13:36:25 -05:00
|
|
|
}
|
2019-11-19 05:03:18 -05:00
|
|
|
|
2023-03-02 17:35:24 -05:00
|
|
|
logger.GetReqInfo(ctx).Cred = cred
|
|
|
|
logger.GetReqInfo(ctx).Owner = owner
|
|
|
|
logger.GetReqInfo(ctx).Region = globalSite.Region
|
|
|
|
|
2023-02-06 12:27:29 -05:00
|
|
|
return cred, owner, ErrNone
|
2020-04-14 14:28:56 -04:00
|
|
|
}
|
|
|
|
|
2020-12-18 14:51:15 -05:00
|
|
|
// checkAdminRequestAuth checks for authentication and authorization for the incoming
|
|
|
|
// request. It only accepts V2 and V4 requests. Presigned, JWT and anonymous requests
|
|
|
|
// are automatically rejected.
|
2023-09-04 15:57:37 -04:00
|
|
|
func checkAdminRequestAuth(ctx context.Context, r *http.Request, action policy.AdminAction, region string) (auth.Credentials, APIErrorCode) {
|
2023-02-06 12:27:29 -05:00
|
|
|
cred, owner, s3Err := validateAdminSignature(ctx, r, region)
|
2020-04-14 14:28:56 -04:00
|
|
|
if s3Err != ErrNone {
|
|
|
|
return cred, s3Err
|
|
|
|
}
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalIAMSys.IsAllowed(policy.Args{
|
2019-11-19 05:03:18 -05:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 20:39:20 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: policy.Action(action),
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2019-11-19 05:03:18 -05:00
|
|
|
IsOwner: owner,
|
2023-02-06 12:27:29 -05:00
|
|
|
Claims: cred.Claims,
|
2019-11-19 05:03:18 -05:00
|
|
|
}) {
|
|
|
|
// Request is allowed return the appropriate access key.
|
|
|
|
return cred, ErrNone
|
|
|
|
}
|
|
|
|
|
|
|
|
return cred, ErrAccessDenied
|
2018-01-17 13:36:25 -05:00
|
|
|
}
|
|
|
|
|
2018-10-09 17:00:01 -04:00
|
|
|
// Fetch the security token set by the client.
|
|
|
|
func getSessionToken(r *http.Request) (token string) {
|
2019-07-03 01:34:32 -04:00
|
|
|
token = r.Header.Get(xhttp.AmzSecurityToken)
|
2018-10-09 17:00:01 -04:00
|
|
|
if token != "" {
|
|
|
|
return token
|
|
|
|
}
|
2021-08-08 01:43:01 -04:00
|
|
|
return r.Form.Get(xhttp.AmzSecurityToken)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
2018-11-21 23:03:24 -05:00
|
|
|
// Fetch claims in the security token returned by the client, doesn't return
|
|
|
|
// errors - upon errors the returned claims map will be empty.
|
|
|
|
func mustGetClaimsFromToken(r *http.Request) map[string]interface{} {
|
2021-03-03 11:47:08 -05:00
|
|
|
claims, _ := getClaimsFromToken(getSessionToken(r))
|
2018-11-21 23:03:24 -05:00
|
|
|
return claims
|
|
|
|
}
|
|
|
|
|
2022-03-14 12:09:22 -04:00
|
|
|
func getClaimsFromTokenWithSecret(token, secret string) (map[string]interface{}, error) {
|
2021-04-15 01:51:14 -04:00
|
|
|
// JWT token for x-amz-security-token is signed with admin
|
|
|
|
// secret key, temporary credentials become invalid if
|
|
|
|
// server admin credentials change. This is done to ensure
|
|
|
|
// that clients cannot decode the token using the temp
|
|
|
|
// secret keys and generate an entirely new claim by essentially
|
|
|
|
// hijacking the policies. We need to make sure that this is
|
2023-03-15 11:07:42 -04:00
|
|
|
// based on admin credential such that token cannot be decoded
|
2021-04-15 01:51:14 -04:00
|
|
|
// on the client side and is treated like an opaque value.
|
2022-03-14 12:09:22 -04:00
|
|
|
claims, err := auth.ExtractClaims(token, secret)
|
2021-04-15 01:51:14 -04:00
|
|
|
if err != nil {
|
2022-03-14 12:09:22 -04:00
|
|
|
if subtle.ConstantTimeCompare([]byte(secret), []byte(globalActiveCred.SecretKey)) == 1 {
|
|
|
|
return nil, errAuthentication
|
|
|
|
}
|
|
|
|
claims, err = auth.ExtractClaims(token, globalActiveCred.SecretKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errAuthentication
|
|
|
|
}
|
2018-11-07 09:40:03 -05:00
|
|
|
}
|
2019-06-20 18:28:33 -04:00
|
|
|
|
2022-05-10 20:14:55 -04:00
|
|
|
// If AuthZPlugin is set, return without any further checks.
|
2022-05-25 21:32:53 -04:00
|
|
|
if newGlobalAuthZPluginFn() != nil {
|
2021-07-22 11:42:07 -04:00
|
|
|
return claims.Map(), nil
|
|
|
|
}
|
2020-01-30 21:59:22 -05:00
|
|
|
|
2021-07-22 11:42:07 -04:00
|
|
|
// Check if a session policy is set. If so, decode it here.
|
2023-09-04 15:57:37 -04:00
|
|
|
sp, spok := claims.Lookup(policy.SessionPolicyName)
|
2021-07-22 11:42:07 -04:00
|
|
|
if spok {
|
2019-06-20 18:28:33 -04:00
|
|
|
// Looks like subpolicy is set and is a string, if set then its
|
2021-07-22 11:42:07 -04:00
|
|
|
// base64 encoded, decode it. Decoding fails reject such
|
|
|
|
// requests.
|
2020-01-30 21:59:22 -05:00
|
|
|
spBytes, err := base64.StdEncoding.DecodeString(sp)
|
2019-06-20 18:28:33 -04:00
|
|
|
if err != nil {
|
|
|
|
// Base64 decoding fails, we should log to indicate
|
|
|
|
// something is malforming the request sent by client.
|
2021-03-03 11:47:08 -05:00
|
|
|
logger.LogIf(GlobalContext, err, logger.Application)
|
2019-06-20 18:28:33 -04:00
|
|
|
return nil, errAuthentication
|
|
|
|
}
|
2022-05-02 20:56:19 -04:00
|
|
|
claims.MapClaims[sessionPolicyNameExtracted] = string(spBytes)
|
2019-06-20 18:28:33 -04:00
|
|
|
}
|
2020-01-30 21:59:22 -05:00
|
|
|
|
|
|
|
return claims.Map(), nil
|
2018-11-21 23:03:24 -05:00
|
|
|
}
|
|
|
|
|
2022-03-14 12:09:22 -04:00
|
|
|
// Fetch claims in the security token returned by the client.
|
|
|
|
func getClaimsFromToken(token string) (map[string]interface{}, error) {
|
|
|
|
return getClaimsFromTokenWithSecret(token, globalActiveCred.SecretKey)
|
|
|
|
}
|
|
|
|
|
2018-11-21 23:03:24 -05:00
|
|
|
// Fetch claims in the security token returned by the client and validate the token.
|
|
|
|
func checkClaimsFromToken(r *http.Request, cred auth.Credentials) (map[string]interface{}, APIErrorCode) {
|
2018-10-09 17:00:01 -04:00
|
|
|
token := getSessionToken(r)
|
2018-11-07 09:40:03 -05:00
|
|
|
if token != "" && cred.AccessKey == "" {
|
2022-03-14 12:09:22 -04:00
|
|
|
// x-amz-security-token is not allowed for anonymous access.
|
2018-11-07 09:40:03 -05:00
|
|
|
return nil, ErrNoAccessKey
|
|
|
|
}
|
2022-03-14 12:09:22 -04:00
|
|
|
|
2023-02-27 13:10:22 -05:00
|
|
|
if token == "" && cred.IsTemp() && !cred.IsServiceAccount() {
|
2022-03-14 12:09:22 -04:00
|
|
|
// Temporary credentials should always have x-amz-security-token
|
|
|
|
return nil, ErrInvalidToken
|
2020-04-14 14:28:56 -04:00
|
|
|
}
|
2022-03-14 12:09:22 -04:00
|
|
|
|
|
|
|
if token != "" && !cred.IsTemp() {
|
|
|
|
// x-amz-security-token should not present for static credentials.
|
2018-11-07 09:40:03 -05:00
|
|
|
return nil, ErrInvalidToken
|
|
|
|
}
|
2022-03-14 12:09:22 -04:00
|
|
|
|
2023-02-27 13:10:22 -05:00
|
|
|
if !cred.IsServiceAccount() && cred.IsTemp() && subtle.ConstantTimeCompare([]byte(token), []byte(cred.SessionToken)) != 1 {
|
2022-03-14 12:09:22 -04:00
|
|
|
// validate token for temporary credentials only.
|
|
|
|
return nil, ErrInvalidToken
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2022-03-14 12:09:22 -04:00
|
|
|
|
|
|
|
secret := globalActiveCred.SecretKey
|
|
|
|
if cred.IsServiceAccount() {
|
|
|
|
token = cred.SessionToken
|
|
|
|
secret = cred.SecretKey
|
|
|
|
}
|
|
|
|
|
|
|
|
if token != "" {
|
|
|
|
claims, err := getClaimsFromTokenWithSecret(token, secret)
|
|
|
|
if err != nil {
|
|
|
|
return nil, toAPIErrorCode(r.Context(), err)
|
|
|
|
}
|
|
|
|
return claims, ErrNone
|
|
|
|
}
|
|
|
|
|
|
|
|
claims := xjwt.NewMapClaims()
|
|
|
|
return claims.Map(), ErrNone
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2016-11-21 16:51:05 -05:00
|
|
|
|
2018-10-09 17:00:01 -04:00
|
|
|
// Check request auth type verifies the incoming http request
|
2022-08-26 15:52:29 -04:00
|
|
|
// - validates the request signature
|
|
|
|
// - validates the policy action if anonymous tests bucket policies if any,
|
|
|
|
// for authenticated requests validates IAM policies.
|
|
|
|
//
|
2018-10-09 17:00:01 -04:00
|
|
|
// returns APIErrorCode if any to be replied to the client.
|
|
|
|
func checkRequestAuthType(ctx context.Context, r *http.Request, action policy.Action, bucketName, objectName string) (s3Err APIErrorCode) {
|
2022-10-02 15:29:29 -04:00
|
|
|
logger.GetReqInfo(ctx).BucketName = bucketName
|
|
|
|
logger.GetReqInfo(ctx).ObjectName = objectName
|
|
|
|
|
|
|
|
_, _, s3Err = checkRequestAuthTypeCredential(ctx, r, action)
|
2023-02-07 21:31:00 -05:00
|
|
|
return s3Err
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkRequestAuthTypeWithVID is similar to checkRequestAuthType
|
|
|
|
// passes versionID additionally.
|
|
|
|
func checkRequestAuthTypeWithVID(ctx context.Context, r *http.Request, action policy.Action, bucketName, objectName, versionID string) (s3Err APIErrorCode) {
|
|
|
|
logger.GetReqInfo(ctx).BucketName = bucketName
|
|
|
|
logger.GetReqInfo(ctx).ObjectName = objectName
|
|
|
|
logger.GetReqInfo(ctx).VersionID = versionID
|
|
|
|
|
|
|
|
_, _, s3Err = checkRequestAuthTypeCredential(ctx, r, action)
|
2019-08-12 13:27:38 -04:00
|
|
|
return s3Err
|
|
|
|
}
|
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
func authenticateRequest(ctx context.Context, r *http.Request, action policy.Action) (s3Err APIErrorCode) {
|
|
|
|
if logger.GetReqInfo(ctx) == nil {
|
|
|
|
logger.LogIf(ctx, errors.New("unexpected context.Context does not have a logger.ReqInfo"), logger.Minio)
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
var cred auth.Credentials
|
|
|
|
var owner bool
|
2018-04-24 18:53:30 -04:00
|
|
|
switch getRequestAuthType(r) {
|
2018-10-09 17:00:01 -04:00
|
|
|
case authTypeUnknown, authTypeStreamingSigned:
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrSignatureVersionNotSupported
|
2016-11-21 16:51:05 -05:00
|
|
|
case authTypePresignedV2, authTypeSignedV2:
|
2018-10-09 17:00:01 -04:00
|
|
|
if s3Err = isReqAuthenticatedV2(r); s3Err != ErrNone {
|
2022-10-02 15:29:29 -04:00
|
|
|
return s3Err
|
2018-04-24 18:53:30 -04:00
|
|
|
}
|
2018-11-07 09:40:03 -05:00
|
|
|
cred, owner, s3Err = getReqAccessKeyV2(r)
|
2016-11-21 16:51:05 -05:00
|
|
|
case authTypeSigned, authTypePresigned:
|
2021-11-25 16:06:25 -05:00
|
|
|
region := globalSite.Region
|
2018-04-24 18:53:30 -04:00
|
|
|
switch action {
|
|
|
|
case policy.GetBucketLocationAction, policy.ListAllMyBucketsAction:
|
|
|
|
region = ""
|
|
|
|
}
|
2019-02-27 20:46:55 -05:00
|
|
|
if s3Err = isReqAuthenticated(ctx, r, region, serviceS3); s3Err != ErrNone {
|
2022-10-02 15:29:29 -04:00
|
|
|
return s3Err
|
2018-04-24 18:53:30 -04:00
|
|
|
}
|
2019-02-27 20:46:55 -05:00
|
|
|
cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
if s3Err != ErrNone {
|
2022-10-02 15:29:29 -04:00
|
|
|
return s3Err
|
2016-11-21 16:51:05 -05:00
|
|
|
}
|
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
logger.GetReqInfo(ctx).Cred = cred
|
|
|
|
logger.GetReqInfo(ctx).Owner = owner
|
2023-03-02 17:35:24 -05:00
|
|
|
logger.GetReqInfo(ctx).Region = globalSite.Region
|
2022-10-02 15:29:29 -04:00
|
|
|
|
|
|
|
// region is valid only for CreateBucketAction.
|
|
|
|
var region string
|
2018-04-24 18:53:30 -04:00
|
|
|
if action == policy.CreateBucketAction {
|
|
|
|
// To extract region from XML in request body, get copy of request body.
|
2022-09-19 14:05:16 -04:00
|
|
|
payload, err := io.ReadAll(io.LimitReader(r.Body, maxLocationConstraintSize))
|
2017-11-14 19:56:24 -05:00
|
|
|
if err != nil {
|
2019-10-11 21:50:54 -04:00
|
|
|
logger.LogIf(ctx, err, logger.Application)
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrMalformedXML
|
2018-04-24 18:53:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Populate payload to extract location constraint.
|
2022-09-19 14:05:16 -04:00
|
|
|
r.Body = io.NopCloser(bytes.NewReader(payload))
|
2022-10-02 15:29:29 -04:00
|
|
|
region, s3Err = parseLocationConstraint(r)
|
|
|
|
if s3Err != ErrNone {
|
|
|
|
return s3Err
|
2017-11-14 19:56:24 -05:00
|
|
|
}
|
2018-04-24 18:53:30 -04:00
|
|
|
|
|
|
|
// Populate payload again to handle it in HTTP handler.
|
2022-09-19 14:05:16 -04:00
|
|
|
r.Body = io.NopCloser(bytes.NewReader(payload))
|
2018-04-24 18:53:30 -04:00
|
|
|
}
|
2022-10-02 15:29:29 -04:00
|
|
|
|
|
|
|
logger.GetReqInfo(ctx).Region = region
|
|
|
|
|
|
|
|
return s3Err
|
|
|
|
}
|
|
|
|
|
|
|
|
func authorizeRequest(ctx context.Context, r *http.Request, action policy.Action) (s3Err APIErrorCode) {
|
|
|
|
reqInfo := logger.GetReqInfo(ctx)
|
|
|
|
if reqInfo == nil {
|
|
|
|
return ErrAccessDenied
|
2020-11-04 12:13:34 -05:00
|
|
|
}
|
2018-04-24 18:53:30 -04:00
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
cred := reqInfo.Cred
|
|
|
|
owner := reqInfo.Owner
|
|
|
|
region := reqInfo.Region
|
|
|
|
bucket := reqInfo.BucketName
|
|
|
|
object := reqInfo.ObjectName
|
2023-01-13 07:16:00 -05:00
|
|
|
versionID := reqInfo.VersionID
|
2022-10-02 15:29:29 -04:00
|
|
|
|
2020-10-12 17:19:46 -04:00
|
|
|
if action != policy.ListAllMyBucketsAction && cred.AccessKey == "" {
|
2022-10-02 15:29:29 -04:00
|
|
|
// Anonymous checks are not meant for ListAllBuckets action
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
|
2018-11-07 09:40:03 -05:00
|
|
|
AccountName: cred.AccessKey,
|
2023-02-06 12:27:29 -05:00
|
|
|
Groups: cred.Groups,
|
2018-10-09 17:00:01 -04:00
|
|
|
Action: action,
|
2022-10-02 15:29:29 -04:00
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, region, auth.AnonymousCredentials),
|
2018-10-09 17:00:01 -04:00
|
|
|
IsOwner: false,
|
2022-10-02 15:29:29 -04:00
|
|
|
ObjectName: object,
|
2018-10-09 17:00:01 -04:00
|
|
|
}) {
|
2019-08-12 13:27:38 -04:00
|
|
|
// Request is allowed return the appropriate access key.
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrNone
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2020-09-03 21:25:06 -04:00
|
|
|
|
|
|
|
if action == policy.ListBucketVersionsAction {
|
|
|
|
// In AWS S3 s3:ListBucket permission is same as s3:ListBucketVersions permission
|
|
|
|
// verify as a fallback.
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
|
2020-09-03 21:25:06 -04:00
|
|
|
AccountName: cred.AccessKey,
|
2023-02-06 12:27:29 -05:00
|
|
|
Groups: cred.Groups,
|
2020-09-03 21:25:06 -04:00
|
|
|
Action: policy.ListBucketAction,
|
2022-10-02 15:29:29 -04:00
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, region, auth.AnonymousCredentials),
|
2020-09-03 21:25:06 -04:00
|
|
|
IsOwner: false,
|
2022-10-02 15:29:29 -04:00
|
|
|
ObjectName: object,
|
2020-09-03 21:25:06 -04:00
|
|
|
}) {
|
|
|
|
// Request is allowed return the appropriate access key.
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrNone
|
2020-09-03 21:25:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrAccessDenied
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2023-01-13 07:16:00 -05:00
|
|
|
if action == policy.DeleteObjectAction && versionID != "" {
|
2023-09-04 15:57:37 -04:00
|
|
|
if !globalIAMSys.IsAllowed(policy.Args{
|
2023-01-13 07:16:00 -05:00
|
|
|
AccountName: cred.AccessKey,
|
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: policy.Action(policy.DeleteObjectVersionAction),
|
2023-01-13 07:16:00 -05:00
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2023-01-13 07:16:00 -05:00
|
|
|
ObjectName: object,
|
|
|
|
IsOwner: owner,
|
|
|
|
Claims: cred.Claims,
|
|
|
|
DenyOnly: true,
|
|
|
|
}) { // Request is not allowed if Deny action on DeleteObjectVersionAction
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
}
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalIAMSys.IsAllowed(policy.Args{
|
2018-11-07 09:40:03 -05:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: action,
|
2022-10-02 15:29:29 -04:00
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2022-10-02 15:29:29 -04:00
|
|
|
ObjectName: object,
|
2018-10-09 17:00:01 -04:00
|
|
|
IsOwner: owner,
|
2021-08-12 21:07:08 -04:00
|
|
|
Claims: cred.Claims,
|
2018-04-24 18:53:30 -04:00
|
|
|
}) {
|
2019-08-12 13:27:38 -04:00
|
|
|
// Request is allowed return the appropriate access key.
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrNone
|
2018-04-24 18:53:30 -04:00
|
|
|
}
|
2020-10-12 17:19:46 -04:00
|
|
|
|
2020-09-03 21:25:06 -04:00
|
|
|
if action == policy.ListBucketVersionsAction {
|
|
|
|
// In AWS S3 s3:ListBucket permission is same as s3:ListBucketVersions permission
|
|
|
|
// verify as a fallback.
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalIAMSys.IsAllowed(policy.Args{
|
2020-09-03 21:25:06 -04:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: policy.ListBucketAction,
|
2022-10-02 15:29:29 -04:00
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2022-10-02 15:29:29 -04:00
|
|
|
ObjectName: object,
|
2020-09-03 21:25:06 -04:00
|
|
|
IsOwner: owner,
|
2021-08-12 21:07:08 -04:00
|
|
|
Claims: cred.Claims,
|
2020-09-03 21:25:06 -04:00
|
|
|
}) {
|
|
|
|
// Request is allowed return the appropriate access key.
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrNone
|
2020-09-03 21:25:06 -04:00
|
|
|
}
|
|
|
|
}
|
2020-07-14 13:26:47 -04:00
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check request auth type verifies the incoming http request
|
|
|
|
// - validates the request signature
|
|
|
|
// - validates the policy action if anonymous tests bucket policies if any,
|
|
|
|
// for authenticated requests validates IAM policies.
|
|
|
|
//
|
|
|
|
// returns APIErrorCode if any to be replied to the client.
|
|
|
|
// Additionally returns the accessKey used in the request, and if this request is by an admin.
|
|
|
|
func checkRequestAuthTypeCredential(ctx context.Context, r *http.Request, action policy.Action) (cred auth.Credentials, owner bool, s3Err APIErrorCode) {
|
|
|
|
s3Err = authenticateRequest(ctx, r, action)
|
|
|
|
reqInfo := logger.GetReqInfo(ctx)
|
|
|
|
if reqInfo == nil {
|
|
|
|
return cred, owner, ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
cred = reqInfo.Cred
|
|
|
|
owner = reqInfo.Owner
|
|
|
|
if s3Err != ErrNone {
|
|
|
|
return cred, owner, s3Err
|
|
|
|
}
|
|
|
|
|
|
|
|
return cred, owner, authorizeRequest(ctx, r, action)
|
2016-03-12 19:08:15 -05:00
|
|
|
}
|
|
|
|
|
2016-09-30 17:32:13 -04:00
|
|
|
// Verify if request has valid AWS Signature Version '2'.
|
|
|
|
func isReqAuthenticatedV2(r *http.Request) (s3Error APIErrorCode) {
|
|
|
|
if isRequestSignatureV2(r) {
|
|
|
|
return doesSignV2Match(r)
|
|
|
|
}
|
|
|
|
return doesPresignV2SignatureMatch(r)
|
|
|
|
}
|
|
|
|
|
2019-02-27 20:46:55 -05:00
|
|
|
func reqSignatureV4Verify(r *http.Request, region string, stype serviceType) (s3Error APIErrorCode) {
|
|
|
|
sha256sum := getContentSha256Cksum(r, stype)
|
2017-04-10 12:58:08 -04:00
|
|
|
switch {
|
|
|
|
case isRequestSignatureV4(r):
|
2019-02-27 20:46:55 -05:00
|
|
|
return doesSignatureMatch(sha256sum, r, region, stype)
|
2017-04-10 12:58:08 -04:00
|
|
|
case isRequestPresignedSignatureV4(r):
|
2019-02-27 20:46:55 -05:00
|
|
|
return doesPresignedSignatureMatch(sha256sum, r, region, stype)
|
2017-04-10 12:58:08 -04:00
|
|
|
default:
|
|
|
|
return ErrAccessDenied
|
2016-10-02 18:51:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 20:57:05 -05:00
|
|
|
// Verify if request has valid AWS Signature Version '4'.
|
2019-02-27 20:46:55 -05:00
|
|
|
func isReqAuthenticated(ctx context.Context, r *http.Request, region string, stype serviceType) (s3Error APIErrorCode) {
|
|
|
|
if errCode := reqSignatureV4Verify(r, region, stype); errCode != ErrNone {
|
2017-04-10 12:58:08 -04:00
|
|
|
return errCode
|
|
|
|
}
|
2018-03-16 14:22:34 -04:00
|
|
|
|
2021-03-03 15:58:28 -05:00
|
|
|
clientETag, err := etag.FromContentMD5(r.Header)
|
2020-02-16 01:07:52 -05:00
|
|
|
if err != nil {
|
|
|
|
return ErrInvalidDigest
|
2016-03-12 19:08:15 -05:00
|
|
|
}
|
2017-04-10 12:58:08 -04:00
|
|
|
|
2018-05-18 14:27:25 -04:00
|
|
|
// Extract either 'X-Amz-Content-Sha256' header or 'X-Amz-Content-Sha256' query parameter (if V4 presigned)
|
|
|
|
// Do not verify 'X-Amz-Content-Sha256' if skipSHA256.
|
2021-03-03 15:58:28 -05:00
|
|
|
var contentSHA256 []byte
|
2018-05-18 14:27:25 -04:00
|
|
|
if skipSHA256 := skipContentSha256Cksum(r); !skipSHA256 && isRequestPresignedSignatureV4(r) {
|
2021-08-08 01:43:01 -04:00
|
|
|
if sha256Sum, ok := r.Form[xhttp.AmzContentSha256]; ok && len(sha256Sum) > 0 {
|
2018-05-18 14:27:25 -04:00
|
|
|
contentSHA256, err = hex.DecodeString(sha256Sum[0])
|
|
|
|
if err != nil {
|
|
|
|
return ErrContentSHA256Mismatch
|
|
|
|
}
|
2018-03-16 14:22:34 -04:00
|
|
|
}
|
2019-07-03 01:34:32 -04:00
|
|
|
} else if _, ok := r.Header[xhttp.AmzContentSha256]; !skipSHA256 && ok {
|
|
|
|
contentSHA256, err = hex.DecodeString(r.Header.Get(xhttp.AmzContentSha256))
|
2018-05-18 14:27:25 -04:00
|
|
|
if err != nil || len(contentSHA256) == 0 {
|
2018-03-16 14:22:34 -04:00
|
|
|
return ErrContentSHA256Mismatch
|
|
|
|
}
|
2017-04-10 12:58:08 -04:00
|
|
|
}
|
2018-05-18 14:27:25 -04:00
|
|
|
|
|
|
|
// Verify 'Content-Md5' and/or 'X-Amz-Content-Sha256' if present.
|
|
|
|
// The verification happens implicit during reading.
|
2023-09-18 13:00:54 -04:00
|
|
|
reader, err := hash.NewReader(ctx, r.Body, -1, clientETag.String(), hex.EncodeToString(contentSHA256), -1)
|
2018-05-18 14:27:25 -04:00
|
|
|
if err != nil {
|
2018-11-12 14:07:43 -05:00
|
|
|
return toAPIErrorCode(ctx, err)
|
2018-05-18 14:27:25 -04:00
|
|
|
}
|
2020-05-14 17:01:31 -04:00
|
|
|
r.Body = reader
|
2017-04-10 12:58:08 -04:00
|
|
|
return ErrNone
|
2016-02-21 20:57:05 -05:00
|
|
|
}
|
|
|
|
|
2016-08-08 23:56:29 -04:00
|
|
|
// List of all support S3 auth types.
|
2016-08-16 10:57:14 -04:00
|
|
|
var supportedS3AuthTypes = map[authType]struct{}{
|
2023-05-05 22:53:12 -04:00
|
|
|
authTypeAnonymous: {},
|
|
|
|
authTypePresigned: {},
|
|
|
|
authTypePresignedV2: {},
|
|
|
|
authTypeSigned: {},
|
|
|
|
authTypeSignedV2: {},
|
|
|
|
authTypePostPolicy: {},
|
|
|
|
authTypeStreamingSigned: {},
|
|
|
|
authTypeStreamingSignedTrailer: {},
|
|
|
|
authTypeStreamingUnsignedTrailer: {},
|
2016-08-08 23:56:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate if the authType is valid and supported.
|
|
|
|
func isSupportedS3AuthType(aType authType) bool {
|
2016-08-16 10:57:14 -04:00
|
|
|
_, ok := supportedS3AuthTypes[aType]
|
|
|
|
return ok
|
2016-08-08 23:56:29 -04:00
|
|
|
}
|
|
|
|
|
2023-07-08 10:31:42 -04:00
|
|
|
// setAuthMiddleware to validate authorization header for the incoming request.
|
|
|
|
func setAuthMiddleware(h http.Handler) http.Handler {
|
2021-01-04 12:54:22 -05:00
|
|
|
// handler for validating incoming authorization headers.
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
|
2022-06-28 08:04:10 -04:00
|
|
|
|
2021-01-04 12:54:22 -05:00
|
|
|
aType := getRequestAuthType(r)
|
2023-05-05 22:53:12 -04:00
|
|
|
switch aType {
|
|
|
|
case authTypeSigned, authTypeSignedV2, authTypeStreamingSigned, authTypeStreamingSignedTrailer:
|
2021-11-01 11:04:03 -04:00
|
|
|
// Verify if date headers are set, if not reject the request
|
|
|
|
amzDate, errCode := parseAmzDateHeader(r)
|
|
|
|
if errCode != ErrNone {
|
2022-06-28 08:04:10 -04:00
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.Auth"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-06-28 08:04:10 -04:00
|
|
|
}
|
|
|
|
|
2021-11-01 11:04:03 -04:00
|
|
|
// All our internal APIs are sensitive towards Date
|
|
|
|
// header, for all requests where Date header is not
|
|
|
|
// present we will reject such clients.
|
2023-04-07 00:03:39 -04:00
|
|
|
defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
|
2021-11-01 11:04:03 -04:00
|
|
|
writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(errCode), r.URL)
|
|
|
|
atomic.AddUint64(&globalHTTPStats.rejectedRequestsTime, 1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Verify if the request date header is shifted by less than globalMaxSkewTime parameter in the past
|
|
|
|
// or in the future, reject request otherwise.
|
|
|
|
curTime := UTCNow()
|
|
|
|
if curTime.Sub(amzDate) > globalMaxSkewTime || amzDate.Sub(curTime) > globalMaxSkewTime {
|
2022-06-28 08:04:10 -04:00
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.Auth"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-06-28 08:04:10 -04:00
|
|
|
}
|
|
|
|
|
2023-04-07 00:03:39 -04:00
|
|
|
defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
|
2021-11-01 11:04:03 -04:00
|
|
|
writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrRequestTimeTooSkewed), r.URL)
|
|
|
|
atomic.AddUint64(&globalHTTPStats.rejectedRequestsTime, 1)
|
|
|
|
return
|
|
|
|
}
|
2021-01-04 12:54:22 -05:00
|
|
|
h.ServeHTTP(w, r)
|
2016-02-15 20:42:39 -05:00
|
|
|
return
|
2023-05-05 22:53:12 -04:00
|
|
|
case authTypeJWT, authTypeSTS:
|
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
if isSupportedS3AuthType(aType) {
|
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
2022-06-28 08:04:10 -04:00
|
|
|
|
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.Auth"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-06-28 08:04:10 -04:00
|
|
|
}
|
|
|
|
|
2023-04-07 00:03:39 -04:00
|
|
|
defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrSignatureVersionNotSupported), r.URL)
|
2021-03-31 02:19:36 -04:00
|
|
|
atomic.AddUint64(&globalHTTPStats.rejectedRequestsAuth, 1)
|
2021-01-04 12:54:22 -05:00
|
|
|
})
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
2018-10-09 17:00:01 -04:00
|
|
|
|
2021-08-12 21:07:08 -04:00
|
|
|
func validateSignature(atype authType, r *http.Request) (auth.Credentials, bool, APIErrorCode) {
|
2020-04-06 16:44:16 -04:00
|
|
|
var cred auth.Credentials
|
|
|
|
var owner bool
|
|
|
|
var s3Err APIErrorCode
|
|
|
|
switch atype {
|
|
|
|
case authTypeUnknown, authTypeStreamingSigned:
|
2021-08-12 21:07:08 -04:00
|
|
|
return cred, owner, ErrSignatureVersionNotSupported
|
2020-04-06 16:44:16 -04:00
|
|
|
case authTypeSignedV2, authTypePresignedV2:
|
|
|
|
if s3Err = isReqAuthenticatedV2(r); s3Err != ErrNone {
|
2021-08-12 21:07:08 -04:00
|
|
|
return cred, owner, s3Err
|
2020-04-06 16:44:16 -04:00
|
|
|
}
|
|
|
|
cred, owner, s3Err = getReqAccessKeyV2(r)
|
|
|
|
case authTypePresigned, authTypeSigned:
|
2021-11-25 16:06:25 -05:00
|
|
|
region := globalSite.Region
|
2020-04-06 16:44:16 -04:00
|
|
|
if s3Err = isReqAuthenticated(GlobalContext, r, region, serviceS3); s3Err != ErrNone {
|
2021-08-12 21:07:08 -04:00
|
|
|
return cred, owner, s3Err
|
2020-04-06 16:44:16 -04:00
|
|
|
}
|
|
|
|
cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
|
|
|
|
}
|
|
|
|
if s3Err != ErrNone {
|
2021-08-12 21:07:08 -04:00
|
|
|
return cred, owner, s3Err
|
2020-04-06 16:44:16 -04:00
|
|
|
}
|
|
|
|
|
2021-08-12 21:07:08 -04:00
|
|
|
return cred, owner, ErrNone
|
2020-04-06 16:44:16 -04:00
|
|
|
}
|
|
|
|
|
2021-08-12 21:07:08 -04:00
|
|
|
func isPutRetentionAllowed(bucketName, objectName string, retDays int, retDate time.Time, retMode objectlock.RetMode, byPassSet bool, r *http.Request, cred auth.Credentials, owner bool) (s3Err APIErrorCode) {
|
2020-04-06 16:44:16 -04:00
|
|
|
var retSet bool
|
|
|
|
if cred.AccessKey == "" {
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
2023-02-06 12:27:29 -05:00
|
|
|
conditions := getConditionValues(r, "", cred)
|
2020-04-06 16:44:16 -04:00
|
|
|
conditions["object-lock-mode"] = []string{string(retMode)}
|
2022-10-27 12:46:52 -04:00
|
|
|
conditions["object-lock-retain-until-date"] = []string{retDate.UTC().Format(time.RFC3339)}
|
2020-04-06 16:44:16 -04:00
|
|
|
if retDays > 0 {
|
|
|
|
conditions["object-lock-remaining-retention-days"] = []string{strconv.Itoa(retDays)}
|
|
|
|
}
|
|
|
|
if retMode == objectlock.RetGovernance && byPassSet {
|
2023-09-04 15:57:37 -04:00
|
|
|
byPassSet = globalIAMSys.IsAllowed(policy.Args{
|
2020-04-06 16:44:16 -04:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: policy.BypassGovernanceRetentionAction,
|
2020-04-06 16:44:16 -04:00
|
|
|
BucketName: bucketName,
|
|
|
|
ObjectName: objectName,
|
|
|
|
ConditionValues: conditions,
|
|
|
|
IsOwner: owner,
|
2021-08-12 21:07:08 -04:00
|
|
|
Claims: cred.Claims,
|
2020-04-06 16:44:16 -04:00
|
|
|
})
|
|
|
|
}
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalIAMSys.IsAllowed(policy.Args{
|
2020-04-06 16:44:16 -04:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: policy.PutObjectRetentionAction,
|
2020-04-06 16:44:16 -04:00
|
|
|
BucketName: bucketName,
|
|
|
|
ConditionValues: conditions,
|
|
|
|
ObjectName: objectName,
|
|
|
|
IsOwner: owner,
|
2021-08-12 21:07:08 -04:00
|
|
|
Claims: cred.Claims,
|
2020-04-06 16:44:16 -04:00
|
|
|
}) {
|
|
|
|
retSet = true
|
|
|
|
}
|
|
|
|
if byPassSet || retSet {
|
|
|
|
return ErrNone
|
|
|
|
}
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
2019-11-20 16:18:09 -05:00
|
|
|
// isPutActionAllowed - check if PUT operation is allowed on the resource, this
|
2018-10-09 17:00:01 -04:00
|
|
|
// call verifies bucket policies and IAM policies, supports multi user
|
|
|
|
// checks etc.
|
2023-09-04 15:57:37 -04:00
|
|
|
func isPutActionAllowed(ctx context.Context, atype authType, bucketName, objectName string, r *http.Request, action policy.Action) (s3Err APIErrorCode) {
|
2018-11-07 09:40:03 -05:00
|
|
|
var cred auth.Credentials
|
2018-10-09 17:00:01 -04:00
|
|
|
var owner bool
|
2022-10-02 15:29:29 -04:00
|
|
|
region := globalSite.Region
|
2018-10-09 17:00:01 -04:00
|
|
|
switch atype {
|
|
|
|
case authTypeUnknown:
|
2020-04-02 15:35:22 -04:00
|
|
|
return ErrSignatureVersionNotSupported
|
2018-10-09 17:00:01 -04:00
|
|
|
case authTypeSignedV2, authTypePresignedV2:
|
2018-11-07 09:40:03 -05:00
|
|
|
cred, owner, s3Err = getReqAccessKeyV2(r)
|
2023-05-05 22:53:12 -04:00
|
|
|
case authTypeStreamingSigned, authTypePresigned, authTypeSigned, authTypeStreamingSignedTrailer, authTypeStreamingUnsignedTrailer:
|
2019-02-27 20:46:55 -05:00
|
|
|
cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
if s3Err != ErrNone {
|
|
|
|
return s3Err
|
|
|
|
}
|
|
|
|
|
2022-10-02 15:29:29 -04:00
|
|
|
logger.GetReqInfo(ctx).Cred = cred
|
|
|
|
logger.GetReqInfo(ctx).Owner = owner
|
|
|
|
logger.GetReqInfo(ctx).Region = region
|
2020-11-04 12:13:34 -05:00
|
|
|
|
2020-04-13 17:03:23 -04:00
|
|
|
// Do not check for PutObjectRetentionAction permission,
|
|
|
|
// if mode and retain until date are not set.
|
|
|
|
// Can happen when bucket has default lock config set
|
2023-09-04 15:57:37 -04:00
|
|
|
if action == policy.PutObjectRetentionAction &&
|
2020-04-13 17:03:23 -04:00
|
|
|
r.Header.Get(xhttp.AmzObjectLockMode) == "" &&
|
|
|
|
r.Header.Get(xhttp.AmzObjectLockRetainUntilDate) == "" {
|
|
|
|
return ErrNone
|
|
|
|
}
|
|
|
|
|
2018-11-07 09:40:03 -05:00
|
|
|
if cred.AccessKey == "" {
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
|
2018-11-07 09:40:03 -05:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2023-09-04 15:57:37 -04:00
|
|
|
Action: action,
|
2018-10-09 17:00:01 -04:00
|
|
|
BucketName: bucketName,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
|
2018-10-09 17:00:01 -04:00
|
|
|
IsOwner: false,
|
|
|
|
ObjectName: objectName,
|
|
|
|
}) {
|
|
|
|
return ErrNone
|
|
|
|
}
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|
|
|
|
|
2023-09-04 15:57:37 -04:00
|
|
|
if globalIAMSys.IsAllowed(policy.Args{
|
2018-11-07 09:40:03 -05:00
|
|
|
AccountName: cred.AccessKey,
|
2021-03-23 18:15:51 -04:00
|
|
|
Groups: cred.Groups,
|
2019-11-20 16:18:09 -05:00
|
|
|
Action: action,
|
2018-10-09 17:00:01 -04:00
|
|
|
BucketName: bucketName,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2018-10-09 17:00:01 -04:00
|
|
|
ObjectName: objectName,
|
|
|
|
IsOwner: owner,
|
2021-08-12 21:07:08 -04:00
|
|
|
Claims: cred.Claims,
|
2018-10-09 17:00:01 -04:00
|
|
|
}) {
|
|
|
|
return ErrNone
|
|
|
|
}
|
|
|
|
return ErrAccessDenied
|
|
|
|
}
|