| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2016 Minio, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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-07-18 03:32:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gorilla/mux" | 
					
						
							| 
									
										
										
										
											2018-08-18 03:52:14 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/crypto" | 
					
						
							| 
									
										
										
										
											2018-10-13 03:25:59 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2018-08-18 03:52:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/policy" | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Validate all the ListObjects query arguments, returns an APIErrorCode
 | 
					
						
							|  |  |  | // if one of the args do not meet the required conditions.
 | 
					
						
							|  |  |  | // Special conditions required by Minio server are as below
 | 
					
						
							|  |  |  | // - delimiter if set should be equal to '/', otherwise the request is rejected.
 | 
					
						
							|  |  |  | // - marker if set should have a common prefix with 'prefix' param, otherwise
 | 
					
						
							|  |  |  | //   the request is rejected.
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | func validateListObjectsArgs(prefix, marker, delimiter string, maxKeys int) APIErrorCode { | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Max keys cannot be negative.
 | 
					
						
							|  |  |  | 	if maxKeys < 0 { | 
					
						
							|  |  |  | 		return ErrInvalidMaxKeys | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/// Minio special conditions for ListObjects.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Verify if delimiter is anything other than '/', which we do not support.
 | 
					
						
							|  |  |  | 	if delimiter != "" && delimiter != "/" { | 
					
						
							|  |  |  | 		return ErrNotImplemented | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Success.
 | 
					
						
							|  |  |  | 	return ErrNone | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ListObjectsV2Handler - GET Bucket (List Objects) Version 2.
 | 
					
						
							|  |  |  | // --------------------------
 | 
					
						
							|  |  |  | // This implementation of the GET operation returns some or all (up to 1000)
 | 
					
						
							|  |  |  | // of the objects in a bucket. You can use the request parameters as selection
 | 
					
						
							|  |  |  | // criteria to return a subset of the objects in a bucket.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // NOTE: It is recommended that this API to be used for application development.
 | 
					
						
							|  |  |  | // Minio continues to support ListObjectsV1 for supporting legacy tools.
 | 
					
						
							|  |  |  | func (api objectAPIHandlers) ListObjectsV2Handler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2018-07-21 09:46:32 +08:00
										 |  |  | 	ctx := newContext(r, w, "ListObjectsV2") | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	defer logger.AuditLog(w, r, "ListObjectsV2", mustGetClaimsFromToken(r)) | 
					
						
							| 
									
										
										
										
											2018-10-13 03:25:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	vars := mux.Vars(r) | 
					
						
							|  |  |  | 	bucket := vars["bucket"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-11 09:47:49 +08:00
										 |  |  | 	objectAPI := api.ObjectAPI() | 
					
						
							|  |  |  | 	if objectAPI == nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, ErrServerNotInitialized, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-08-11 09:47:49 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	if s3Error := checkRequestAuthType(ctx, r, policy.ListBucketAction, bucket, ""); s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, s3Error, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-26 03:35:43 +08:00
										 |  |  | 	urlValues := r.URL.Query() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Extract all the listObjectsV2 query params to their native values.
 | 
					
						
							| 
									
										
										
										
											2018-06-26 03:35:43 +08:00
										 |  |  | 	prefix, token, startAfter, delimiter, fetchOwner, maxKeys, _, errCode := getListObjectsV2Args(urlValues) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if errCode != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, errCode, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-06-26 03:35:43 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-11 01:44:38 +08:00
										 |  |  | 	// Validate the query params before beginning to serve the request.
 | 
					
						
							|  |  |  | 	// fetch-owner is not validated since it is a boolean
 | 
					
						
							| 
									
										
										
										
											2018-07-01 12:22:45 +08:00
										 |  |  | 	if s3Error := validateListObjectsArgs(prefix, token, delimiter, maxKeys); s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, s3Error, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	listObjectsV2 := objectAPI.ListObjectsV2 | 
					
						
							|  |  |  | 	if api.CacheAPI() != nil { | 
					
						
							|  |  |  | 		listObjectsV2 = api.CacheAPI().ListObjectsV2 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Inititate a list objects operation based on the input params.
 | 
					
						
							|  |  |  | 	// On success would return back ListObjectsInfo object to be
 | 
					
						
							| 
									
										
										
										
											2018-06-29 07:02:02 +08:00
										 |  |  | 	// marshaled into S3 compatible XML header.
 | 
					
						
							| 
									
										
										
										
											2018-07-01 12:22:45 +08:00
										 |  |  | 	listObjectsV2Info, err := listObjectsV2(ctx, bucket, prefix, token, delimiter, maxKeys, fetchOwner, startAfter) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, toAPIErrorCode(ctx, err), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 	for i := range listObjectsV2Info.Objects { | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 		var actualSize int64 | 
					
						
							|  |  |  | 		if listObjectsV2Info.Objects[i].IsCompressed() { | 
					
						
							|  |  |  | 			// Read the decompressed size from the meta.json.
 | 
					
						
							|  |  |  | 			actualSize = listObjectsV2Info.Objects[i].GetActualSize() | 
					
						
							|  |  |  | 			if actualSize < 0 { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 				writeErrorResponse(w, ErrInvalidDecompressedSize, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			// Set the info.Size to the actualSize.
 | 
					
						
							|  |  |  | 			listObjectsV2Info.Objects[i].Size = actualSize | 
					
						
							|  |  |  | 		} else if crypto.IsEncrypted(listObjectsV2Info.Objects[i].UserDefined) { | 
					
						
							| 
									
										
										
										
											2018-11-15 09:36:41 +08:00
										 |  |  | 			listObjectsV2Info.Objects[i].ETag = getDecryptedETag(r.Header, listObjectsV2Info.Objects[i], false) | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 			listObjectsV2Info.Objects[i].Size, err = listObjectsV2Info.Objects[i].DecryptedSize() | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 				writeErrorResponse(w, toAPIErrorCode(ctx, err), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	response := generateListObjectsV2Response(bucket, prefix, token, listObjectsV2Info.NextContinuationToken, startAfter, | 
					
						
							|  |  |  | 		delimiter, fetchOwner, listObjectsV2Info.IsTruncated, maxKeys, listObjectsV2Info.Objects, listObjectsV2Info.Prefixes) | 
					
						
							| 
									
										
										
										
											2017-01-06 16:37:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Write success response.
 | 
					
						
							| 
									
										
										
										
											2017-01-06 16:37:00 +08:00
										 |  |  | 	writeSuccessResponseXML(w, encodeResponse(response)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ListObjectsV1Handler - GET Bucket (List Objects) Version 1.
 | 
					
						
							|  |  |  | // --------------------------
 | 
					
						
							|  |  |  | // This implementation of the GET operation returns some or all (up to 1000)
 | 
					
						
							|  |  |  | // of the objects in a bucket. You can use the request parameters as selection
 | 
					
						
							|  |  |  | // criteria to return a subset of the objects in a bucket.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | func (api objectAPIHandlers) ListObjectsV1Handler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2018-07-21 09:46:32 +08:00
										 |  |  | 	ctx := newContext(r, w, "ListObjectsV1") | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 	defer logger.AuditLog(w, r, "ListObjectsV1", mustGetClaimsFromToken(r)) | 
					
						
							| 
									
										
										
										
											2018-10-13 03:25:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	vars := mux.Vars(r) | 
					
						
							|  |  |  | 	bucket := vars["bucket"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-11 09:47:49 +08:00
										 |  |  | 	objectAPI := api.ObjectAPI() | 
					
						
							|  |  |  | 	if objectAPI == nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, ErrServerNotInitialized, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-08-11 09:47:49 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	if s3Error := checkRequestAuthType(ctx, r, policy.ListBucketAction, bucket, ""); s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, s3Error, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Extract all the litsObjectsV1 query params to their native values.
 | 
					
						
							| 
									
										
										
										
											2018-10-18 22:31:46 +08:00
										 |  |  | 	prefix, marker, delimiter, maxKeys, _, s3Error := getListObjectsV1Args(r.URL.Query()) | 
					
						
							|  |  |  | 	if s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, s3Error, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-10-18 22:31:46 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	// Validate the maxKeys lowerbound. When maxKeys > 1000, S3 returns 1000 but
 | 
					
						
							|  |  |  | 	// does not throw an error.
 | 
					
						
							|  |  |  | 	if maxKeys < 0 { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, ErrInvalidMaxKeys, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} // Validate all the query params before beginning to serve the request.
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 	if s3Error := validateListObjectsArgs(prefix, marker, delimiter, maxKeys); s3Error != ErrNone { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, s3Error, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	listObjects := objectAPI.ListObjects | 
					
						
							|  |  |  | 	if api.CacheAPI() != nil { | 
					
						
							|  |  |  | 		listObjects = api.CacheAPI().ListObjects | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Inititate a list objects operation based on the input params.
 | 
					
						
							|  |  |  | 	// On success would return back ListObjectsInfo object to be
 | 
					
						
							| 
									
										
										
										
											2018-06-29 07:02:02 +08:00
										 |  |  | 	// marshaled into S3 compatible XML header.
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	listObjectsInfo, err := listObjects(ctx, bucket, prefix, marker, delimiter, maxKeys) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 		writeErrorResponse(w, toAPIErrorCode(ctx, err), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for i := range listObjectsInfo.Objects { | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 		var actualSize int64 | 
					
						
							|  |  |  | 		if listObjectsInfo.Objects[i].IsCompressed() { | 
					
						
							|  |  |  | 			// Read the decompressed size from the meta.json.
 | 
					
						
							|  |  |  | 			actualSize = listObjectsInfo.Objects[i].GetActualSize() | 
					
						
							|  |  |  | 			if actualSize < 0 { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 				writeErrorResponse(w, ErrInvalidDecompressedSize, r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			// Set the info.Size to the actualSize.
 | 
					
						
							|  |  |  | 			listObjectsInfo.Objects[i].Size = actualSize | 
					
						
							|  |  |  | 		} else if crypto.IsEncrypted(listObjectsInfo.Objects[i].UserDefined) { | 
					
						
							| 
									
										
										
										
											2018-11-15 09:36:41 +08:00
										 |  |  | 			listObjectsInfo.Objects[i].ETag = getDecryptedETag(r.Header, listObjectsInfo.Objects[i], false) | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 			listObjectsInfo.Objects[i].Size, err = listObjectsInfo.Objects[i].DecryptedSize() | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2018-11-27 04:15:12 +08:00
										 |  |  | 				writeErrorResponse(w, toAPIErrorCode(ctx, err), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	response := generateListObjectsV1Response(bucket, prefix, marker, delimiter, maxKeys, listObjectsInfo) | 
					
						
							| 
									
										
										
										
											2017-01-06 16:37:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// Write success response.
 | 
					
						
							| 
									
										
										
										
											2017-01-06 16:37:00 +08:00
										 |  |  | 	writeSuccessResponseXML(w, encodeResponse(response)) | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | } |