| 
									
										
										
										
											2016-02-22 09:57:05 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2015, 2016, 2017 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-02-22 09:57:05 +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
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	"bytes" | 
					
						
							|  |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	"crypto/hmac" | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	"encoding/hex" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2017-04-06 08:00:24 +08:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/auth" | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | 	"github.com/minio/sha256-simd" | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-05 16:04:50 +08:00
										 |  |  | // http Header "x-amz-content-sha256" == "UNSIGNED-PAYLOAD" indicates that the
 | 
					
						
							|  |  |  | // client did not calculate sha256 of the payload.
 | 
					
						
							|  |  |  | const unsignedPayload = "UNSIGNED-PAYLOAD" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | // skipContentSha256Cksum returns true if caller needs to skip
 | 
					
						
							|  |  |  | // payload checksum, false if not.
 | 
					
						
							| 
									
										
										
										
											2016-07-05 16:04:50 +08:00
										 |  |  | func skipContentSha256Cksum(r *http.Request) bool { | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		v  []string | 
					
						
							|  |  |  | 		ok bool | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if isRequestPresignedSignatureV4(r) { | 
					
						
							|  |  |  | 		v, ok = r.URL.Query()["X-Amz-Content-Sha256"] | 
					
						
							| 
									
										
										
										
											2018-06-16 05:21:17 +08:00
										 |  |  | 		if !ok { | 
					
						
							|  |  |  | 			v, ok = r.Header["X-Amz-Content-Sha256"] | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		v, ok = r.Header["X-Amz-Content-Sha256"] | 
					
						
							| 
									
										
										
										
											2016-11-11 13:57:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// If x-amz-content-sha256 is set and the value is not
 | 
					
						
							|  |  |  | 	// 'UNSIGNED-PAYLOAD' we should validate the content sha256.
 | 
					
						
							|  |  |  | 	return !(ok && v[0] != unsignedPayload) | 
					
						
							| 
									
										
										
										
											2016-07-05 16:04:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | // Returns SHA256 for calculating canonical-request.
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | func getContentSha256Cksum(r *http.Request, stype serviceType) string { | 
					
						
							|  |  |  | 	if stype == serviceSTS { | 
					
						
							|  |  |  | 		payload, err := ioutil.ReadAll(r.Body) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			logger.CriticalIf(context.Background(), err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sum256 := sha256.New() | 
					
						
							|  |  |  | 		sum256.Write(payload) | 
					
						
							|  |  |  | 		r.Body = ioutil.NopCloser(bytes.NewReader(payload)) | 
					
						
							|  |  |  | 		return hex.EncodeToString(sum256.Sum(nil)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		defaultSha256Cksum string | 
					
						
							|  |  |  | 		v                  []string | 
					
						
							|  |  |  | 		ok                 bool | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	// For a presigned request we look at the query param for sha256.
 | 
					
						
							|  |  |  | 	if isRequestPresignedSignatureV4(r) { | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 		// X-Amz-Content-Sha256, if not set in presigned requests, checksum
 | 
					
						
							|  |  |  | 		// will default to 'UNSIGNED-PAYLOAD'.
 | 
					
						
							|  |  |  | 		defaultSha256Cksum = unsignedPayload | 
					
						
							|  |  |  | 		v, ok = r.URL.Query()["X-Amz-Content-Sha256"] | 
					
						
							| 
									
										
										
										
											2018-06-16 05:21:17 +08:00
										 |  |  | 		if !ok { | 
					
						
							|  |  |  | 			v, ok = r.Header["X-Amz-Content-Sha256"] | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		// X-Amz-Content-Sha256, if not set in signed requests, checksum
 | 
					
						
							|  |  |  | 		// will default to sha256([]byte("")).
 | 
					
						
							|  |  |  | 		defaultSha256Cksum = emptySHA256 | 
					
						
							|  |  |  | 		v, ok = r.Header["X-Amz-Content-Sha256"] | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// We found 'X-Amz-Content-Sha256' return the captured value.
 | 
					
						
							|  |  |  | 	if ok { | 
					
						
							|  |  |  | 		return v[0] | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-09 15:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// We couldn't find 'X-Amz-Content-Sha256'.
 | 
					
						
							|  |  |  | 	return defaultSha256Cksum | 
					
						
							| 
									
										
										
										
											2017-04-11 00:58:08 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | // isValidRegion - verify if incoming region value is valid with configured Region.
 | 
					
						
							|  |  |  | func isValidRegion(reqRegion string, confRegion string) bool { | 
					
						
							| 
									
										
										
										
											2017-05-16 09:17:02 +08:00
										 |  |  | 	if confRegion == "" { | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if confRegion == "US" { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 		confRegion = globalMinioDefaultRegion | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	// Some older s3 clients set region as "US" instead of
 | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 	// globalMinioDefaultRegion, handle it.
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	if reqRegion == "US" { | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | 		reqRegion = globalMinioDefaultRegion | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return reqRegion == confRegion | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | // check if the access key is valid and recognized, additionally
 | 
					
						
							|  |  |  | // also returns if the access key is owner/admin.
 | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | func checkKeyValid(accessKey string) (auth.Credentials, bool, APIErrorCode) { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	var owner = true | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	var cred = globalServerConfig.GetCredential() | 
					
						
							|  |  |  | 	if cred.AccessKey != accessKey { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if globalIAMSys == nil { | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 			return cred, false, ErrInvalidAccessKeyID | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		// Check if the access key is part of users credentials.
 | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 		var ok bool | 
					
						
							|  |  |  | 		if cred, ok = globalIAMSys.GetUser(accessKey); !ok { | 
					
						
							|  |  |  | 			return cred, false, ErrInvalidAccessKeyID | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		owner = false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-11-07 22:40:03 +08:00
										 |  |  | 	return cred, owner, ErrNone | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | // sumHMAC calculate hmac between two input byte array.
 | 
					
						
							|  |  |  | func sumHMAC(key []byte, data []byte) []byte { | 
					
						
							| 
									
										
										
										
											2016-05-11 05:20:11 +08:00
										 |  |  | 	hash := hmac.New(sha256.New, key) | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	hash.Write(data) | 
					
						
							|  |  |  | 	return hash.Sum(nil) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // extractSignedHeaders extract signed headers from Authorization header
 | 
					
						
							| 
									
										
										
										
											2017-04-06 06:08:33 +08:00
										 |  |  | func extractSignedHeaders(signedHeaders []string, r *http.Request) (http.Header, APIErrorCode) { | 
					
						
							|  |  |  | 	reqHeaders := r.Header | 
					
						
							| 
									
										
										
										
											2019-05-22 12:00:02 +08:00
										 |  |  | 	reqQueries := r.URL.Query() | 
					
						
							| 
									
										
										
										
											2016-11-11 13:57:15 +08:00
										 |  |  | 	// find whether "host" is part of list of signed headers.
 | 
					
						
							|  |  |  | 	// if not return ErrUnsignedHeaders. "host" is mandatory.
 | 
					
						
							|  |  |  | 	if !contains(signedHeaders, "host") { | 
					
						
							|  |  |  | 		return nil, ErrUnsignedHeaders | 
					
						
							| 
									
										
										
										
											2016-08-10 00:13:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 	extractedSignedHeaders := make(http.Header) | 
					
						
							|  |  |  | 	for _, header := range signedHeaders { | 
					
						
							| 
									
										
										
										
											2016-08-10 00:13:15 +08:00
										 |  |  | 		// `host` will not be found in the headers, can be found in r.Host.
 | 
					
						
							|  |  |  | 		// but its alway necessary that the list of signed headers containing host in it.
 | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 		val, ok := reqHeaders[http.CanonicalHeaderKey(header)] | 
					
						
							| 
									
										
										
										
											2019-05-22 12:00:02 +08:00
										 |  |  | 		if !ok { | 
					
						
							|  |  |  | 			// try to set headers from Query String
 | 
					
						
							|  |  |  | 			val, ok = reqQueries[header] | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-06 08:00:24 +08:00
										 |  |  | 		if ok { | 
					
						
							|  |  |  | 			for _, enc := range val { | 
					
						
							|  |  |  | 				extractedSignedHeaders.Add(header, enc) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		switch header { | 
					
						
							|  |  |  | 		case "expect": | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 			// Golang http server strips off 'Expect' header, if the
 | 
					
						
							|  |  |  | 			// client sent this as part of signed headers we need to
 | 
					
						
							|  |  |  | 			// handle otherwise we would see a signature mismatch.
 | 
					
						
							|  |  |  | 			// `aws-cli` sets this as part of signed headers.
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// According to
 | 
					
						
							|  |  |  | 			// http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.20
 | 
					
						
							|  |  |  | 			// Expect header is always of form:
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			//   Expect       =  "Expect" ":" 1#expectation
 | 
					
						
							|  |  |  | 			//   expectation  =  "100-continue" | expectation-extension
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// So it safe to assume that '100-continue' is what would
 | 
					
						
							|  |  |  | 			// be sent, for the time being keep this work around.
 | 
					
						
							|  |  |  | 			// Adding a *TODO* to remove this later when Golang server
 | 
					
						
							|  |  |  | 			// doesn't filter out the 'Expect' header.
 | 
					
						
							| 
									
										
										
										
											2017-04-06 08:00:24 +08:00
										 |  |  | 			extractedSignedHeaders.Set(header, "100-continue") | 
					
						
							|  |  |  | 		case "host": | 
					
						
							|  |  |  | 			// Go http server removes "host" from Request.Header
 | 
					
						
							|  |  |  | 			extractedSignedHeaders.Set(header, r.Host) | 
					
						
							|  |  |  | 		case "transfer-encoding": | 
					
						
							|  |  |  | 			// Go http server removes "host" from Request.Header
 | 
					
						
							|  |  |  | 			for _, enc := range r.TransferEncoding { | 
					
						
							|  |  |  | 				extractedSignedHeaders.Add(header, enc) | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-06 08:00:24 +08:00
										 |  |  | 		case "content-length": | 
					
						
							|  |  |  | 			// Signature-V4 spec excludes Content-Length from signed headers list for signature calculation.
 | 
					
						
							|  |  |  | 			// But some clients deviate from this rule. Hence we consider Content-Length for signature
 | 
					
						
							|  |  |  | 			// calculation to be compatible with such clients.
 | 
					
						
							|  |  |  | 			extractedSignedHeaders.Set(header, strconv.FormatInt(r.ContentLength, 10)) | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2016-08-10 00:13:15 +08:00
										 |  |  | 			return nil, ErrUnsignedHeaders | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-10 00:13:15 +08:00
										 |  |  | 	return extractedSignedHeaders, ErrNone | 
					
						
							| 
									
										
										
										
											2016-02-16 09:42:39 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-04 07:41:25 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Trim leading and trailing spaces and replace sequential spaces with one space, following Trimall()
 | 
					
						
							|  |  |  | // in http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html
 | 
					
						
							|  |  |  | func signV4TrimAll(input string) string { | 
					
						
							| 
									
										
										
										
											2016-11-05 04:52:22 +08:00
										 |  |  | 	// Compress adjacent spaces (a space is determined by
 | 
					
						
							|  |  |  | 	// unicode.IsSpace() internally here) to one space and return
 | 
					
						
							| 
									
										
										
										
											2016-11-04 07:41:25 +08:00
										 |  |  | 	return strings.Join(strings.Fields(input), " ") | 
					
						
							|  |  |  | } |