| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2015-2018 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-03-13 08:08:15 +08:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	"crypto/subtle" | 
					
						
							| 
									
										
										
										
											2018-03-17 02:22:34 +08:00
										 |  |  | 	"encoding/base64" | 
					
						
							|  |  |  | 	"encoding/hex" | 
					
						
							| 
									
										
										
										
											2018-01-18 02:36:25 +08:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2018-05-05 02:16:14 +08:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-03-13 08:08:15 +08:00
										 |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2018-03-03 07:23:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	xhttp "github.com/minio/minio/cmd/http" | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 	xjwt "github.com/minio/minio/cmd/jwt" | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/auth" | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 	objectlock "github.com/minio/minio/pkg/bucket/object/lock" | 
					
						
							| 
									
										
										
										
											2020-01-28 06:12:34 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/bucket/policy" | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/hash" | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	iampolicy "github.com/minio/minio/pkg/iam/policy" | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | // Verify if request has JWT.
 | 
					
						
							|  |  |  | func isRequestJWT(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	return strings.HasPrefix(r.Header.Get(xhttp.Authorization), jwtAlgorithm) | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Verify if request has AWS Signature Version '4'.
 | 
					
						
							|  |  |  | func isRequestSignatureV4(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	return strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV4Algorithm) | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | // Verify if request has AWS Signature Version '2'.
 | 
					
						
							|  |  |  | func isRequestSignatureV2(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	return (!strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV4Algorithm) && | 
					
						
							|  |  |  | 		strings.HasPrefix(r.Header.Get(xhttp.Authorization), signV2Algorithm)) | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | // Verify if request has AWS PreSign Version '4'.
 | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | func isRequestPresignedSignatureV4(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	_, ok := r.URL.Query()[xhttp.AmzCredential] | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | 	return ok | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | // Verify request has AWS PreSign Version '2'.
 | 
					
						
							|  |  |  | func isRequestPresignedSignatureV2(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	_, ok := r.URL.Query()[xhttp.AmzAccessKeyID] | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | 	return ok | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | // Verify if request has AWS Post policy Signature Version '4'.
 | 
					
						
							|  |  |  | func isRequestPostPolicySignatureV4(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	return strings.Contains(r.Header.Get(xhttp.ContentType), "multipart/form-data") && | 
					
						
							| 
									
										
										
										
											2018-01-08 12:47:48 +08:00
										 |  |  | 		r.Method == http.MethodPost | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08: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 13:34:32 +08:00
										 |  |  | 	return r.Header.Get(xhttp.AmzContentSha256) == streamingContentSHA256 && | 
					
						
							| 
									
										
										
										
											2018-01-08 12:47:48 +08:00
										 |  |  | 		r.Method == http.MethodPut | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												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-04 08:46:56 +08:00
										 |  |  | // Authorization type.
 | 
					
						
							|  |  |  | type authType int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // List of all supported auth types.
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	authTypeUnknown authType = iota | 
					
						
							|  |  |  | 	authTypeAnonymous | 
					
						
							|  |  |  | 	authTypePresigned | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08: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-04 08:46:56 +08:00
										 |  |  | 	authTypePostPolicy | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08: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-04 08:46:56 +08:00
										 |  |  | 	authTypeSigned | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08: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-04 08:46:56 +08:00
										 |  |  | 	authTypeJWT | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	authTypeSTS | 
					
						
							| 
									
										
										
											
												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-04 08:46:56 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Get request authentication type.
 | 
					
						
							|  |  |  | func getRequestAuthType(r *http.Request) authType { | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | 	if isRequestSignatureV2(r) { | 
					
						
							|  |  |  | 		return authTypeSignedV2 | 
					
						
							|  |  |  | 	} else if isRequestPresignedSignatureV2(r) { | 
					
						
							|  |  |  | 		return authTypePresignedV2 | 
					
						
							|  |  |  | 	} else if isRequestSignStreamingV4(r) { | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | 		return authTypeStreamingSigned | 
					
						
							|  |  |  | 	} 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-04 08:46:56 +08:00
										 |  |  | 		return authTypeSigned | 
					
						
							|  |  |  | 	} else if isRequestPresignedSignatureV4(r) { | 
					
						
							|  |  |  | 		return authTypePresigned | 
					
						
							|  |  |  | 	} else if isRequestJWT(r) { | 
					
						
							|  |  |  | 		return authTypeJWT | 
					
						
							|  |  |  | 	} else if isRequestPostPolicySignatureV4(r) { | 
					
						
							|  |  |  | 		return authTypePostPolicy | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	} else if _, ok := r.URL.Query()[xhttp.Action]; ok { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return authTypeSTS | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	} else if _, ok := r.Header[xhttp.Authorization]; !ok { | 
					
						
							| 
									
										
										
										
											2018-11-14 07:53:06 +08: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-04 08:46:56 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return authTypeUnknown | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | func validateAdminSignature(ctx context.Context, r *http.Request, region string) (auth.Credentials, map[string]interface{}, bool, APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 	var cred auth.Credentials | 
					
						
							|  |  |  | 	var owner bool | 
					
						
							| 
									
										
										
										
											2018-01-18 02:36:25 +08:00
										 |  |  | 	s3Err := ErrAccessDenied | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	if _, ok := r.Header[xhttp.AmzContentSha256]; ok && | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		getRequestAuthType(r) == authTypeSigned && !skipContentSha256Cksum(r) { | 
					
						
							|  |  |  | 		// We only support admin credentials to access admin APIs.
 | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 			return cred, nil, owner, s3Err | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// we only support V4 (no presign) with auth body
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		s3Err = isReqAuthenticated(ctx, r, region, serviceS3) | 
					
						
							| 
									
										
										
										
											2018-01-18 02:36:25 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		reqInfo := (&logger.ReqInfo{}).AppendTags("requestHeaders", dumpRequest(r)) | 
					
						
							| 
									
										
										
										
											2018-11-13 03:07:43 +08:00
										 |  |  | 		ctx := logger.SetReqInfo(ctx, reqInfo) | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, errors.New(getAPIError(s3Err).Description), logger.Application) | 
					
						
							| 
									
										
										
										
											2020-04-23 04:42:01 +08:00
										 |  |  | 		return cred, nil, owner, s3Err | 
					
						
							| 
									
										
										
										
											2018-01-18 02:36:25 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	claims, s3Err := checkClaimsFromToken(r, cred) | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 	if s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 		return cred, nil, owner, s3Err | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	return cred, claims, owner, ErrNone | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-19 03:51:15 +08: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.
 | 
					
						
							|  |  |  | func checkAdminRequestAuth(ctx context.Context, r *http.Request, action iampolicy.AdminAction, region string) (auth.Credentials, APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	cred, claims, owner, s3Err := validateAdminSignature(ctx, r, region) | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							|  |  |  | 		return cred, s3Err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-11-19 18:03:18 +08:00
										 |  |  | 	if globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							|  |  |  | 		AccountName:     cred.AccessKey, | 
					
						
							|  |  |  | 		Action:          iampolicy.Action(action), | 
					
						
							|  |  |  | 		ConditionValues: getConditionValues(r, "", cred.AccessKey, claims), | 
					
						
							|  |  |  | 		IsOwner:         owner, | 
					
						
							|  |  |  | 		Claims:          claims, | 
					
						
							|  |  |  | 	}) { | 
					
						
							|  |  |  | 		// Request is allowed return the appropriate access key.
 | 
					
						
							|  |  |  | 		return cred, ErrNone | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cred, ErrAccessDenied | 
					
						
							| 
									
										
										
										
											2018-01-18 02:36:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | // Fetch the security token set by the client.
 | 
					
						
							|  |  |  | func getSessionToken(r *http.Request) (token string) { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	token = r.Header.Get(xhttp.AmzSecurityToken) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if token != "" { | 
					
						
							|  |  |  | 		return token | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	return r.URL.Query().Get(xhttp.AmzSecurityToken) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08: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{} { | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	claims, _ := getClaimsFromToken(r, getSessionToken(r)) | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	return claims | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Fetch claims in the security token returned by the client.
 | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | func getClaimsFromToken(r *http.Request, token string) (map[string]interface{}, error) { | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 	claims := xjwt.NewMapClaims() | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	if token == "" { | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 		return claims.Map(), nil | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	stsTokenCallback := func(claims *xjwt.MapClaims) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08: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
 | 
					
						
							|  |  |  | 		// based an admin credential such that token cannot be decoded
 | 
					
						
							|  |  |  | 		// on the client side and is treated like an opaque value.
 | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 		return []byte(globalActiveCred.SecretKey), nil | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := xjwt.ParseWithClaims(token, claims, stsTokenCallback); err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		return nil, errAuthentication | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if globalPolicyOPA == nil { | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 		// If OPA is not set and if ldap claim key is set, allow the claim.
 | 
					
						
							| 
									
										
										
										
											2020-07-15 01:26:47 +08:00
										 |  |  | 		if _, ok := claims.MapClaims[ldapUser]; ok { | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 			return claims.Map(), nil | 
					
						
							| 
									
										
										
										
											2019-09-10 07:12:29 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 		// If OPA is not set, session token should
 | 
					
						
							|  |  |  | 		// have a policy and its mandatory, reject
 | 
					
						
							|  |  |  | 		// requests without policy claim.
 | 
					
						
							| 
									
										
										
										
											2020-07-15 01:26:47 +08:00
										 |  |  | 		_, pokOpenID := claims.MapClaims[iamPolicyClaimNameOpenID()] | 
					
						
							|  |  |  | 		_, pokSA := claims.MapClaims[iamPolicyClaimNameSA()] | 
					
						
							| 
									
										
										
										
											2020-03-24 05:17:18 +08:00
										 |  |  | 		if !pokOpenID && !pokSA { | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 			return nil, errAuthentication | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		sp, spok := claims.Lookup(iampolicy.SessionPolicyName) | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 		if !spok { | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 			return claims.Map(), nil | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		// Looks like subpolicy is set and is a string, if set then its
 | 
					
						
							|  |  |  | 		// base64 encoded, decode it. Decoding fails reject such requests.
 | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 		spBytes, err := base64.StdEncoding.DecodeString(sp) | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			// Base64 decoding fails, we should log to indicate
 | 
					
						
							|  |  |  | 			// something is malforming the request sent by client.
 | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 			logger.LogIf(r.Context(), err, logger.Application) | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 			return nil, errAuthentication | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 		claims.MapClaims[iampolicy.SessionPolicyName] = string(spBytes) | 
					
						
							| 
									
										
										
										
											2019-06-21 06:28:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-31 10:59:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return claims.Map(), nil | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08: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-10 05:00:01 +08:00
										 |  |  | 	token := getSessionToken(r) | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	if token != "" && cred.AccessKey == "" { | 
					
						
							|  |  |  | 		return nil, ErrNoAccessKey | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	if cred.IsServiceAccount() && token == "" { | 
					
						
							|  |  |  | 		token = cred.SessionToken | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	if subtle.ConstantTimeCompare([]byte(token), []byte(cred.SessionToken)) != 1 { | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		return nil, ErrInvalidToken | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-04-15 02:28:56 +08:00
										 |  |  | 	claims, err := getClaimsFromToken(r, token) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 		return nil, toAPIErrorCode(r.Context(), err) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return claims, ErrNone | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | // 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.
 | 
					
						
							|  |  |  | func checkRequestAuthType(ctx context.Context, r *http.Request, action policy.Action, bucketName, objectName string) (s3Err APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 	_, _, s3Err = checkRequestAuthTypeToAccessKey(ctx, r, action, bucketName, objectName) | 
					
						
							|  |  |  | 	return s3Err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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 checkRequestAuthTypeToAccessKey(ctx context.Context, r *http.Request, action policy.Action, bucketName, objectName string) (accessKey string, owner bool, s3Err APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	var cred auth.Credentials | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	switch getRequestAuthType(r) { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	case authTypeUnknown, authTypeStreamingSigned: | 
					
						
							| 
									
										
										
										
											2020-04-03 03:35:22 +08:00
										 |  |  | 		return accessKey, owner, ErrSignatureVersionNotSupported | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 	case authTypePresignedV2, authTypeSignedV2: | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if s3Err = isReqAuthenticatedV2(r); s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 			return accessKey, owner, s3Err | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		cred, owner, s3Err = getReqAccessKeyV2(r) | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 	case authTypeSigned, authTypePresigned: | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 		region := globalServerRegion | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		switch action { | 
					
						
							|  |  |  | 		case policy.GetBucketLocationAction, policy.ListAllMyBucketsAction: | 
					
						
							|  |  |  | 			region = "" | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		if s3Err = isReqAuthenticated(ctx, r, region, serviceS3); s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 			return accessKey, owner, s3Err | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 		return accessKey, owner, s3Err | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 	var claims map[string]interface{} | 
					
						
							|  |  |  | 	claims, s3Err = checkClaimsFromToken(r, cred) | 
					
						
							| 
									
										
										
										
											2018-11-28 05:24:04 +08:00
										 |  |  | 	if s3Err != ErrNone { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 		return accessKey, owner, s3Err | 
					
						
							| 
									
										
										
										
											2018-11-28 05:24:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	// LocationConstraint is valid only for CreateBucketAction.
 | 
					
						
							|  |  |  | 	var locationConstraint string | 
					
						
							|  |  |  | 	if action == policy.CreateBucketAction { | 
					
						
							|  |  |  | 		// To extract region from XML in request body, get copy of request body.
 | 
					
						
							| 
									
										
										
										
											2018-05-05 02:16:14 +08:00
										 |  |  | 		payload, err := ioutil.ReadAll(io.LimitReader(r.Body, maxLocationConstraintSize)) | 
					
						
							| 
									
										
										
										
											2017-11-15 08:56:24 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 			logger.LogIf(ctx, err, logger.Application) | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 			return accessKey, owner, ErrMalformedXML | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Populate payload to extract location constraint.
 | 
					
						
							|  |  |  | 		r.Body = ioutil.NopCloser(bytes.NewReader(payload)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var s3Error APIErrorCode | 
					
						
							|  |  |  | 		locationConstraint, s3Error = parseLocationConstraint(r) | 
					
						
							|  |  |  | 		if s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 			return accessKey, owner, s3Error | 
					
						
							| 
									
										
										
										
											2017-11-15 08:56:24 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Populate payload again to handle it in HTTP handler.
 | 
					
						
							|  |  |  | 		r.Body = ioutil.NopCloser(bytes.NewReader(payload)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-11-05 01:13:34 +08:00
										 |  |  | 	if cred.AccessKey != "" { | 
					
						
							|  |  |  | 		logger.GetReqInfo(ctx).AccessKey = cred.AccessKey | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 05:19:46 +08:00
										 |  |  | 	if action != policy.ListAllMyBucketsAction && cred.AccessKey == "" { | 
					
						
							|  |  |  | 		// Anonymous checks are not meant for ListBuckets action
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if globalPolicySys.IsAllowed(policy.Args{ | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 			AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 			Action:          action, | 
					
						
							|  |  |  | 			BucketName:      bucketName, | 
					
						
							| 
									
										
										
										
											2019-10-16 23:59:59 +08:00
										 |  |  | 			ConditionValues: getConditionValues(r, locationConstraint, "", nil), | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 			IsOwner:         false, | 
					
						
							|  |  |  | 			ObjectName:      objectName, | 
					
						
							|  |  |  | 		}) { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 			// Request is allowed return the appropriate access key.
 | 
					
						
							|  |  |  | 			return cred.AccessKey, owner, ErrNone | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-04 09:25:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if action == policy.ListBucketVersionsAction { | 
					
						
							|  |  |  | 			// In AWS S3 s3:ListBucket permission is same as s3:ListBucketVersions permission
 | 
					
						
							|  |  |  | 			// verify as a fallback.
 | 
					
						
							|  |  |  | 			if globalPolicySys.IsAllowed(policy.Args{ | 
					
						
							|  |  |  | 				AccountName:     cred.AccessKey, | 
					
						
							|  |  |  | 				Action:          policy.ListBucketAction, | 
					
						
							|  |  |  | 				BucketName:      bucketName, | 
					
						
							|  |  |  | 				ConditionValues: getConditionValues(r, locationConstraint, "", nil), | 
					
						
							|  |  |  | 				IsOwner:         false, | 
					
						
							|  |  |  | 				ObjectName:      objectName, | 
					
						
							|  |  |  | 			}) { | 
					
						
							|  |  |  | 				// Request is allowed return the appropriate access key.
 | 
					
						
							|  |  |  | 				return cred.AccessKey, owner, ErrNone | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 03:35:22 +08:00
										 |  |  | 		return cred.AccessKey, owner, ErrAccessDenied | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-09-04 09:25:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		Action:          iampolicy.Action(action), | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		BucketName:      bucketName, | 
					
						
							| 
									
										
										
										
											2019-10-16 23:59:59 +08:00
										 |  |  | 		ConditionValues: getConditionValues(r, "", cred.AccessKey, claims), | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 		ObjectName:      objectName, | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		IsOwner:         owner, | 
					
						
							|  |  |  | 		Claims:          claims, | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	}) { | 
					
						
							| 
									
										
										
										
											2019-08-13 01:27:38 +08:00
										 |  |  | 		// Request is allowed return the appropriate access key.
 | 
					
						
							|  |  |  | 		return cred.AccessKey, owner, ErrNone | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-13 05:19:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 09:25:06 +08:00
										 |  |  | 	if action == policy.ListBucketVersionsAction { | 
					
						
							|  |  |  | 		// In AWS S3 s3:ListBucket permission is same as s3:ListBucketVersions permission
 | 
					
						
							|  |  |  | 		// verify as a fallback.
 | 
					
						
							|  |  |  | 		if globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							|  |  |  | 			AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-10-13 06:18:22 +08:00
										 |  |  | 			Action:          iampolicy.ListBucketAction, | 
					
						
							| 
									
										
										
										
											2020-09-04 09:25:06 +08:00
										 |  |  | 			BucketName:      bucketName, | 
					
						
							|  |  |  | 			ConditionValues: getConditionValues(r, "", cred.AccessKey, claims), | 
					
						
							|  |  |  | 			ObjectName:      objectName, | 
					
						
							|  |  |  | 			IsOwner:         owner, | 
					
						
							|  |  |  | 			Claims:          claims, | 
					
						
							|  |  |  | 		}) { | 
					
						
							|  |  |  | 			// Request is allowed return the appropriate access key.
 | 
					
						
							|  |  |  | 			return cred.AccessKey, owner, ErrNone | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-15 01:26:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 03:35:22 +08:00
										 |  |  | 	return cred.AccessKey, owner, ErrAccessDenied | 
					
						
							| 
									
										
										
										
											2016-03-13 08:08:15 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08: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-28 09:46:55 +08:00
										 |  |  | func reqSignatureV4Verify(r *http.Request, region string, stype serviceType) (s3Error APIErrorCode) { | 
					
						
							|  |  |  | 	sha256sum := getContentSha256Cksum(r, stype) | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	switch { | 
					
						
							|  |  |  | 	case isRequestSignatureV4(r): | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		return doesSignatureMatch(sha256sum, r, region, stype) | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	case isRequestPresignedSignatureV4(r): | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		return doesPresignedSignatureMatch(sha256sum, r, region, stype) | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return ErrAccessDenied | 
					
						
							| 
									
										
										
										
											2016-10-03 06:51:49 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | // Verify if request has valid AWS Signature Version '4'.
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08: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-11 00:58:08 +08:00
										 |  |  | 		return errCode | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-17 02:22:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		err                       error | 
					
						
							|  |  |  | 		contentMD5, contentSHA256 []byte | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2020-02-16 14:07:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 	// Extract 'Content-Md5' if present.
 | 
					
						
							| 
									
										
										
										
											2020-02-16 14:07:52 +08:00
										 |  |  | 	contentMD5, err = checkValidMD5(r.Header) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return ErrInvalidDigest | 
					
						
							| 
									
										
										
										
											2016-03-13 08:08:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08: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.
 | 
					
						
							|  |  |  | 	if skipSHA256 := skipContentSha256Cksum(r); !skipSHA256 && isRequestPresignedSignatureV4(r) { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 		if sha256Sum, ok := r.URL.Query()[xhttp.AmzContentSha256]; ok && len(sha256Sum) > 0 { | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 			contentSHA256, err = hex.DecodeString(sha256Sum[0]) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return ErrContentSHA256Mismatch | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-03-17 02:22:34 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	} else if _, ok := r.Header[xhttp.AmzContentSha256]; !skipSHA256 && ok { | 
					
						
							|  |  |  | 		contentSHA256, err = hex.DecodeString(r.Header.Get(xhttp.AmzContentSha256)) | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 		if err != nil || len(contentSHA256) == 0 { | 
					
						
							| 
									
										
										
										
											2018-03-17 02:22:34 +08:00
										 |  |  | 			return ErrContentSHA256Mismatch | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Verify 'Content-Md5' and/or 'X-Amz-Content-Sha256' if present.
 | 
					
						
							|  |  |  | 	// The verification happens implicit during reading.
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	reader, err := hash.NewReader(r.Body, -1, hex.EncodeToString(contentMD5), | 
					
						
							|  |  |  | 		hex.EncodeToString(contentSHA256), -1, globalCLIContext.StrictS3Compat) | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-13 03:07:43 +08:00
										 |  |  | 		return toAPIErrorCode(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-05-19 02:27:25 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-15 05:01:31 +08:00
										 |  |  | 	r.Body = reader | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	return ErrNone | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 04:23:15 +08:00
										 |  |  | // authHandler - handles all the incoming authorization headers and validates them if possible.
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | type authHandler struct { | 
					
						
							|  |  |  | 	handler http.Handler | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // setAuthHandler to validate authorization header for the incoming request.
 | 
					
						
							|  |  |  | func setAuthHandler(h http.Handler) http.Handler { | 
					
						
							|  |  |  | 	return authHandler{h} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | // List of all support S3 auth types.
 | 
					
						
							| 
									
										
										
										
											2016-08-16 22:57:14 +08:00
										 |  |  | var supportedS3AuthTypes = map[authType]struct{}{ | 
					
						
							|  |  |  | 	authTypeAnonymous:       {}, | 
					
						
							|  |  |  | 	authTypePresigned:       {}, | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | 	authTypePresignedV2:     {}, | 
					
						
							| 
									
										
										
										
											2016-08-16 22:57:14 +08:00
										 |  |  | 	authTypeSigned:          {}, | 
					
						
							| 
									
										
										
										
											2016-10-01 05:32:13 +08:00
										 |  |  | 	authTypeSignedV2:        {}, | 
					
						
							| 
									
										
										
										
											2016-08-16 22:57:14 +08:00
										 |  |  | 	authTypePostPolicy:      {}, | 
					
						
							|  |  |  | 	authTypeStreamingSigned: {}, | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Validate if the authType is valid and supported.
 | 
					
						
							|  |  |  | func isSupportedS3AuthType(aType authType) bool { | 
					
						
							| 
									
										
										
										
											2016-08-16 22:57:14 +08:00
										 |  |  | 	_, ok := supportedS3AuthTypes[aType] | 
					
						
							|  |  |  | 	return ok | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-17 10:50:36 +08:00
										 |  |  | // handler for validating incoming authorization headers.
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | func (a authHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | 	aType := getRequestAuthType(r) | 
					
						
							|  |  |  | 	if isSupportedS3AuthType(aType) { | 
					
						
							|  |  |  | 		// Let top level caller validate for anonymous and known signed requests.
 | 
					
						
							| 
									
										
										
										
											2016-02-17 10:50:36 +08:00
										 |  |  | 		a.handler.ServeHTTP(w, r) | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											2016-08-09 11:56:29 +08:00
										 |  |  | 	} else if aType == authTypeJWT { | 
					
						
							| 
									
										
										
											
												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-04 08:46:56 +08:00
										 |  |  | 		// Validate Authorization header if its valid for JWT request.
 | 
					
						
							| 
									
										
										
										
											2018-10-18 07:23:09 +08:00
										 |  |  | 		if _, _, authErr := webRequestAuthenticate(r); authErr != nil { | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 			w.WriteHeader(http.StatusUnauthorized) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
											
												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-04 08:46:56 +08:00
										 |  |  | 		a.handler.ServeHTTP(w, r) | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											2018-11-14 07:53:06 +08:00
										 |  |  | 	} else if aType == authTypeSTS { | 
					
						
							|  |  |  | 		a.handler.ServeHTTP(w, r) | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 	writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrSignatureVersionNotSupported), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | func validateSignature(atype authType, r *http.Request) (auth.Credentials, bool, map[string]interface{}, APIErrorCode) { | 
					
						
							|  |  |  | 	var cred auth.Credentials | 
					
						
							|  |  |  | 	var owner bool | 
					
						
							|  |  |  | 	var s3Err APIErrorCode | 
					
						
							|  |  |  | 	switch atype { | 
					
						
							|  |  |  | 	case authTypeUnknown, authTypeStreamingSigned: | 
					
						
							|  |  |  | 		return cred, owner, nil, ErrSignatureVersionNotSupported | 
					
						
							|  |  |  | 	case authTypeSignedV2, authTypePresignedV2: | 
					
						
							|  |  |  | 		if s3Err = isReqAuthenticatedV2(r); s3Err != ErrNone { | 
					
						
							|  |  |  | 			return cred, owner, nil, s3Err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		cred, owner, s3Err = getReqAccessKeyV2(r) | 
					
						
							|  |  |  | 	case authTypePresigned, authTypeSigned: | 
					
						
							|  |  |  | 		region := globalServerRegion | 
					
						
							|  |  |  | 		if s3Err = isReqAuthenticated(GlobalContext, r, region, serviceS3); s3Err != ErrNone { | 
					
						
							|  |  |  | 			return cred, owner, nil, s3Err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							|  |  |  | 		return cred, owner, nil, s3Err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	claims, s3Err := checkClaimsFromToken(r, cred) | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							|  |  |  | 		return cred, owner, nil, s3Err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cred, owner, claims, ErrNone | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func isPutRetentionAllowed(bucketName, objectName string, retDays int, retDate time.Time, retMode objectlock.RetMode, byPassSet bool, r *http.Request, cred auth.Credentials, owner bool, claims map[string]interface{}) (s3Err APIErrorCode) { | 
					
						
							|  |  |  | 	var retSet bool | 
					
						
							|  |  |  | 	if cred.AccessKey == "" { | 
					
						
							|  |  |  | 		conditions := getConditionValues(r, "", "", nil) | 
					
						
							|  |  |  | 		conditions["object-lock-mode"] = []string{string(retMode)} | 
					
						
							|  |  |  | 		conditions["object-lock-retain-until-date"] = []string{retDate.Format(time.RFC3339)} | 
					
						
							|  |  |  | 		if retDays > 0 { | 
					
						
							|  |  |  | 			conditions["object-lock-remaining-retention-days"] = []string{strconv.Itoa(retDays)} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if retMode == objectlock.RetGovernance && byPassSet { | 
					
						
							|  |  |  | 			byPassSet = globalPolicySys.IsAllowed(policy.Args{ | 
					
						
							|  |  |  | 				AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-10-13 06:18:22 +08:00
										 |  |  | 				Action:          policy.BypassGovernanceRetentionAction, | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 				BucketName:      bucketName, | 
					
						
							|  |  |  | 				ConditionValues: conditions, | 
					
						
							|  |  |  | 				IsOwner:         false, | 
					
						
							|  |  |  | 				ObjectName:      objectName, | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if globalPolicySys.IsAllowed(policy.Args{ | 
					
						
							|  |  |  | 			AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-10-13 06:18:22 +08:00
										 |  |  | 			Action:          policy.PutObjectRetentionAction, | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 			BucketName:      bucketName, | 
					
						
							|  |  |  | 			ConditionValues: conditions, | 
					
						
							|  |  |  | 			IsOwner:         false, | 
					
						
							|  |  |  | 			ObjectName:      objectName, | 
					
						
							|  |  |  | 		}) { | 
					
						
							|  |  |  | 			retSet = true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if byPassSet || retSet { | 
					
						
							|  |  |  | 			return ErrNone | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return ErrAccessDenied | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	conditions := getConditionValues(r, "", cred.AccessKey, claims) | 
					
						
							|  |  |  | 	conditions["object-lock-mode"] = []string{string(retMode)} | 
					
						
							|  |  |  | 	conditions["object-lock-retain-until-date"] = []string{retDate.Format(time.RFC3339)} | 
					
						
							|  |  |  | 	if retDays > 0 { | 
					
						
							|  |  |  | 		conditions["object-lock-remaining-retention-days"] = []string{strconv.Itoa(retDays)} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if retMode == objectlock.RetGovernance && byPassSet { | 
					
						
							|  |  |  | 		byPassSet = globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							|  |  |  | 			AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-10-13 06:18:22 +08:00
										 |  |  | 			Action:          iampolicy.BypassGovernanceRetentionAction, | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 			BucketName:      bucketName, | 
					
						
							|  |  |  | 			ObjectName:      objectName, | 
					
						
							|  |  |  | 			ConditionValues: conditions, | 
					
						
							|  |  |  | 			IsOwner:         owner, | 
					
						
							|  |  |  | 			Claims:          claims, | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							|  |  |  | 		AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-10-13 06:18:22 +08:00
										 |  |  | 		Action:          iampolicy.PutObjectRetentionAction, | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 		BucketName:      bucketName, | 
					
						
							|  |  |  | 		ConditionValues: conditions, | 
					
						
							|  |  |  | 		ObjectName:      objectName, | 
					
						
							|  |  |  | 		IsOwner:         owner, | 
					
						
							|  |  |  | 		Claims:          claims, | 
					
						
							|  |  |  | 	}) { | 
					
						
							|  |  |  | 		retSet = true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if byPassSet || retSet { | 
					
						
							|  |  |  | 		return ErrNone | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ErrAccessDenied | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 05:18:09 +08:00
										 |  |  | // isPutActionAllowed - check if PUT operation is allowed on the resource, this
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | // call verifies bucket policies and IAM policies, supports multi user
 | 
					
						
							|  |  |  | // checks etc.
 | 
					
						
							| 
									
										
										
										
											2020-11-05 01:13:34 +08:00
										 |  |  | func isPutActionAllowed(ctx context.Context, atype authType, bucketName, objectName string, r *http.Request, action iampolicy.Action) (s3Err APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	var cred auth.Credentials | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	var owner bool | 
					
						
							|  |  |  | 	switch atype { | 
					
						
							|  |  |  | 	case authTypeUnknown: | 
					
						
							| 
									
										
										
										
											2020-04-03 03:35:22 +08:00
										 |  |  | 		return ErrSignatureVersionNotSupported | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	case authTypeSignedV2, authTypePresignedV2: | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		cred, owner, s3Err = getReqAccessKeyV2(r) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	case authTypeStreamingSigned, authTypePresigned, authTypeSigned: | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 		region := globalServerRegion | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if s3Err != ErrNone { | 
					
						
							|  |  |  | 		return s3Err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	claims, s3Err := checkClaimsFromToken(r, cred) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if s3Err != ErrNone { | 
					
						
							|  |  |  | 		return s3Err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 01:13:34 +08:00
										 |  |  | 	if cred.AccessKey != "" { | 
					
						
							|  |  |  | 		logger.GetReqInfo(ctx).AccessKey = cred.AccessKey | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 05:03:23 +08: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
 | 
					
						
							|  |  |  | 	if action == iampolicy.PutObjectRetentionAction && | 
					
						
							|  |  |  | 		r.Header.Get(xhttp.AmzObjectLockMode) == "" && | 
					
						
							|  |  |  | 		r.Header.Get(xhttp.AmzObjectLockRetainUntilDate) == "" { | 
					
						
							|  |  |  | 		return ErrNone | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	if cred.AccessKey == "" { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if globalPolicySys.IsAllowed(policy.Args{ | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 			AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2020-04-01 15:04:25 +08:00
										 |  |  | 			Action:          policy.Action(action), | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 			BucketName:      bucketName, | 
					
						
							| 
									
										
										
										
											2019-10-16 23:59:59 +08:00
										 |  |  | 			ConditionValues: getConditionValues(r, "", "", nil), | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 			IsOwner:         false, | 
					
						
							|  |  |  | 			ObjectName:      objectName, | 
					
						
							|  |  |  | 		}) { | 
					
						
							|  |  |  | 			return ErrNone | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return ErrAccessDenied | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if globalIAMSys.IsAllowed(iampolicy.Args{ | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		AccountName:     cred.AccessKey, | 
					
						
							| 
									
										
										
										
											2019-11-21 05:18:09 +08:00
										 |  |  | 		Action:          action, | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		BucketName:      bucketName, | 
					
						
							| 
									
										
										
										
											2019-10-16 23:59:59 +08:00
										 |  |  | 		ConditionValues: getConditionValues(r, "", cred.AccessKey, claims), | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		ObjectName:      objectName, | 
					
						
							|  |  |  | 		IsOwner:         owner, | 
					
						
							|  |  |  | 		Claims:          claims, | 
					
						
							|  |  |  | 	}) { | 
					
						
							|  |  |  | 		return ErrNone | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ErrAccessDenied | 
					
						
							|  |  |  | } |