| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2015, 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-02-20 08:04:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	"encoding/hex" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2018-05-16 09:20:22 +08:00
										 |  |  | 	"math/rand" | 
					
						
							| 
									
										
										
										
											2016-05-09 01:15:34 +08:00
										 |  |  | 	"path" | 
					
						
							| 
									
										
										
										
											2017-02-04 15:27:50 +08:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2016-04-14 02:32:47 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2018-05-16 09:20:22 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | 	"unicode/utf8" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2018-05-12 03:02:30 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/dns" | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	"github.com/skyrings/skyring-common/tools/uuid" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2016-05-02 09:13:10 +08:00
										 |  |  | 	// Minio meta bucket.
 | 
					
						
							| 
									
										
										
										
											2016-07-13 06:21:29 +08:00
										 |  |  | 	minioMetaBucket = ".minio.sys" | 
					
						
							| 
									
										
										
										
											2016-05-04 07:10:24 +08:00
										 |  |  | 	// Multipart meta prefix.
 | 
					
						
							|  |  |  | 	mpartMetaPrefix = "multipart" | 
					
						
							| 
									
										
										
										
											2016-11-23 05:15:06 +08:00
										 |  |  | 	// Minio Multipart meta prefix.
 | 
					
						
							|  |  |  | 	minioMetaMultipartBucket = minioMetaBucket + "/" + mpartMetaPrefix | 
					
						
							| 
									
										
										
										
											2016-11-21 06:25:43 +08:00
										 |  |  | 	// Minio Tmp meta prefix.
 | 
					
						
							|  |  |  | 	minioMetaTmpBucket = minioMetaBucket + "/tmp" | 
					
						
							| 
									
										
										
										
											2017-03-04 02:23:41 +08:00
										 |  |  | 	// DNS separator (period), used for bucket name validation.
 | 
					
						
							|  |  |  | 	dnsDelimiter = "." | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-18 02:02:58 +08:00
										 |  |  | // isMinioBucket returns true if given bucket is a Minio internal
 | 
					
						
							|  |  |  | // bucket and false otherwise.
 | 
					
						
							|  |  |  | func isMinioMetaBucketName(bucket string) bool { | 
					
						
							|  |  |  | 	return bucket == minioMetaBucket || | 
					
						
							|  |  |  | 		bucket == minioMetaMultipartBucket || | 
					
						
							|  |  |  | 		bucket == minioMetaTmpBucket | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-04 02:23:41 +08:00
										 |  |  | // IsValidBucketName verifies that a bucket name is in accordance with
 | 
					
						
							|  |  |  | // Amazon's requirements (i.e. DNS naming conventions). It must be 3-63
 | 
					
						
							|  |  |  | // characters long, and it must be a sequence of one or more labels
 | 
					
						
							|  |  |  | // separated by periods. Each label can contain lowercase ascii
 | 
					
						
							|  |  |  | // letters, decimal digits and hyphens, but must not begin or end with
 | 
					
						
							|  |  |  | // a hyphen. See:
 | 
					
						
							|  |  |  | // http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
 | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | func IsValidBucketName(bucket string) bool { | 
					
						
							| 
									
										
										
										
											2017-01-18 02:02:58 +08:00
										 |  |  | 	// Special case when bucket is equal to one of the meta buckets.
 | 
					
						
							|  |  |  | 	if isMinioMetaBucketName(bucket) { | 
					
						
							| 
									
										
										
										
											2016-07-24 13:51:12 +08:00
										 |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | 	if len(bucket) < 3 || len(bucket) > 63 { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-04 02:23:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Split on dot and check each piece conforms to rules.
 | 
					
						
							|  |  |  | 	allNumbers := true | 
					
						
							|  |  |  | 	pieces := strings.Split(bucket, dnsDelimiter) | 
					
						
							|  |  |  | 	for _, piece := range pieces { | 
					
						
							|  |  |  | 		if len(piece) == 0 || piece[0] == '-' || | 
					
						
							|  |  |  | 			piece[len(piece)-1] == '-' { | 
					
						
							|  |  |  | 			// Current piece has 0-length or starts or
 | 
					
						
							|  |  |  | 			// ends with a hyphen.
 | 
					
						
							|  |  |  | 			return false | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// Now only need to check if each piece is a valid
 | 
					
						
							|  |  |  | 		// 'label' in AWS terminology and if the bucket looks
 | 
					
						
							|  |  |  | 		// like an IP address.
 | 
					
						
							|  |  |  | 		isNotNumber := false | 
					
						
							|  |  |  | 		for i := 0; i < len(piece); i++ { | 
					
						
							|  |  |  | 			switch { | 
					
						
							|  |  |  | 			case (piece[i] >= 'a' && piece[i] <= 'z' || | 
					
						
							|  |  |  | 				piece[i] == '-'): | 
					
						
							|  |  |  | 				// Found a non-digit character, so
 | 
					
						
							|  |  |  | 				// this piece is not a number.
 | 
					
						
							|  |  |  | 				isNotNumber = true | 
					
						
							|  |  |  | 			case piece[i] >= '0' && piece[i] <= '9': | 
					
						
							|  |  |  | 				// Nothing to do.
 | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				// Found invalid character.
 | 
					
						
							|  |  |  | 				return false | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		allNumbers = allNumbers && !isNotNumber | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-04 02:23:41 +08:00
										 |  |  | 	// Does the bucket name look like an IP address?
 | 
					
						
							|  |  |  | 	return !(len(pieces) == 4 && allNumbers) | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 11:30:30 +08:00
										 |  |  | // IsValidObjectName verifies an object name in accordance with Amazon's
 | 
					
						
							|  |  |  | // requirements. It cannot exceed 1024 characters and must be a valid UTF8
 | 
					
						
							|  |  |  | // string.
 | 
					
						
							| 
									
										
										
										
											2016-04-14 02:32:47 +08:00
										 |  |  | //
 | 
					
						
							|  |  |  | // See:
 | 
					
						
							|  |  |  | // http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should avoid the following characters in a key name because of
 | 
					
						
							|  |  |  | // significant special handling for consistency across all
 | 
					
						
							|  |  |  | // applications.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Rejects strings with following characters.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // - Backslash ("\")
 | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-10-01 07:56:36 +08:00
										 |  |  | // additionally minio does not support object names with trailing "/".
 | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | func IsValidObjectName(object string) bool { | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | 	if len(object) == 0 { | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-05-10 05:32:24 +08:00
										 |  |  | 	if hasSuffix(object, slashSeparator) || hasPrefix(object, slashSeparator) { | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return IsValidObjectPrefix(object) | 
					
						
							| 
									
										
										
										
											2016-02-20 08:04:29 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-23 07:03:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // IsValidObjectPrefix verifies whether the prefix is a valid object name.
 | 
					
						
							|  |  |  | // Its valid to have a empty prefix.
 | 
					
						
							|  |  |  | func IsValidObjectPrefix(object string) bool { | 
					
						
							| 
									
										
										
										
											2017-04-25 09:13:46 +08:00
										 |  |  | 	if hasBadPathComponent(object) { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | 	if len(object) > 1024 { | 
					
						
							|  |  |  | 		return false | 
					
						
							| 
									
										
										
										
											2016-03-23 07:03:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | 	if !utf8.ValidString(object) { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Reject unsupported characters in object name.
 | 
					
						
							| 
									
										
										
										
											2016-10-01 07:56:36 +08:00
										 |  |  | 	if strings.ContainsAny(object, "\\") { | 
					
						
							| 
									
										
										
										
											2016-05-14 02:43:06 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return true | 
					
						
							| 
									
										
										
										
											2016-03-23 07:03:08 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-17 02:43:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-22 09:05:26 +08:00
										 |  |  | // Slash separator.
 | 
					
						
							|  |  |  | const slashSeparator = "/" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // retainSlash - retains slash from a path.
 | 
					
						
							|  |  |  | func retainSlash(s string) string { | 
					
						
							|  |  |  | 	return strings.TrimSuffix(s, slashSeparator) + slashSeparator | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 01:15:34 +08:00
										 |  |  | // pathJoin - like path.Join() but retains trailing "/" of the last element
 | 
					
						
							| 
									
										
										
										
											2016-05-09 15:46:54 +08:00
										 |  |  | func pathJoin(elem ...string) string { | 
					
						
							| 
									
										
										
										
											2016-05-09 01:15:34 +08:00
										 |  |  | 	trailingSlash := "" | 
					
						
							| 
									
										
										
										
											2016-05-09 15:46:54 +08:00
										 |  |  | 	if len(elem) > 0 { | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 		if hasSuffix(elem[len(elem)-1], slashSeparator) { | 
					
						
							| 
									
										
										
										
											2016-05-09 15:46:54 +08:00
										 |  |  | 			trailingSlash = "/" | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-05-09 01:15:34 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-09 15:46:54 +08:00
										 |  |  | 	return path.Join(elem...) + trailingSlash | 
					
						
							| 
									
										
										
										
											2016-04-17 02:43:03 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 08:52:37 +08:00
										 |  |  | // mustGetUUID - get a random UUID.
 | 
					
						
							|  |  |  | func mustGetUUID() string { | 
					
						
							|  |  |  | 	uuid, err := uuid.New() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-20 08:24:43 +08:00
										 |  |  | 		logger.CriticalIf(context.Background(), err) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-23 08:52:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return uuid.String() | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | // Create an s3 compatible MD5sum for complete multipart transaction.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func getCompleteMultipartMD5(ctx context.Context, parts []CompletePart) (string, error) { | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	var finalMD5Bytes []byte | 
					
						
							| 
									
										
										
										
											2016-05-08 17:38:35 +08:00
										 |  |  | 	for _, part := range parts { | 
					
						
							|  |  |  | 		md5Bytes, err := hex.DecodeString(part.ETag) | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			return "", err | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		finalMD5Bytes = append(finalMD5Bytes, md5Bytes...) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | 	s3MD5 := fmt.Sprintf("%s-%d", getMD5Hash(finalMD5Bytes), len(parts)) | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	return s3MD5, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 14:14:45 +08:00
										 |  |  | // Clean unwanted fields from metadata
 | 
					
						
							|  |  |  | func cleanMetadata(metadata map[string]string) map[string]string { | 
					
						
							|  |  |  | 	// Remove STANDARD StorageClass
 | 
					
						
							|  |  |  | 	metadata = removeStandardStorageClass(metadata) | 
					
						
							|  |  |  | 	// Clean meta etag keys 'md5Sum', 'etag'.
 | 
					
						
							|  |  |  | 	return cleanMetadataKeys(metadata, "md5Sum", "etag") | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 14:14:45 +08:00
										 |  |  | // Filter X-Amz-Storage-Class field only if it is set to STANDARD.
 | 
					
						
							|  |  |  | // This is done since AWS S3 doesn't return STANDARD Storage class as response header.
 | 
					
						
							|  |  |  | func removeStandardStorageClass(metadata map[string]string) map[string]string { | 
					
						
							|  |  |  | 	if metadata[amzStorageClass] == standardStorageClass { | 
					
						
							|  |  |  | 		delete(metadata, amzStorageClass) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return metadata | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // cleanMetadataKeys takes keyNames to be filtered
 | 
					
						
							|  |  |  | // and returns a new map with all the entries with keyNames removed.
 | 
					
						
							|  |  |  | func cleanMetadataKeys(metadata map[string]string, keyNames ...string) map[string]string { | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 	var newMeta = make(map[string]string) | 
					
						
							|  |  |  | 	for k, v := range metadata { | 
					
						
							|  |  |  | 		if contains(keyNames, k) { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		newMeta[k] = v | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return newMeta | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Extracts etag value from the metadata.
 | 
					
						
							|  |  |  | func extractETag(metadata map[string]string) string { | 
					
						
							|  |  |  | 	// md5Sum tag is kept for backward compatibility.
 | 
					
						
							|  |  |  | 	etag, ok := metadata["md5Sum"] | 
					
						
							|  |  |  | 	if !ok { | 
					
						
							|  |  |  | 		etag = metadata["etag"] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Success.
 | 
					
						
							|  |  |  | 	return etag | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-04 15:27:50 +08:00
										 |  |  | // Prefix matcher string matches prefix in a platform specific way.
 | 
					
						
							|  |  |  | // For example on windows since its case insensitive we are supposed
 | 
					
						
							|  |  |  | // to do case insensitive checks.
 | 
					
						
							|  |  |  | func hasPrefix(s string, prefix string) bool { | 
					
						
							| 
									
										
										
										
											2017-02-19 05:41:59 +08:00
										 |  |  | 	if runtime.GOOS == globalWindowsOSName { | 
					
						
							| 
									
										
										
										
											2017-02-04 15:27:50 +08:00
										 |  |  | 		return strings.HasPrefix(strings.ToLower(s), strings.ToLower(prefix)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return strings.HasPrefix(s, prefix) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Suffix matcher string matches suffix in a platform specific way.
 | 
					
						
							|  |  |  | // For example on windows since its case insensitive we are supposed
 | 
					
						
							|  |  |  | // to do case insensitive checks.
 | 
					
						
							|  |  |  | func hasSuffix(s string, suffix string) bool { | 
					
						
							| 
									
										
										
										
											2017-02-19 05:41:59 +08:00
										 |  |  | 	if runtime.GOOS == globalWindowsOSName { | 
					
						
							| 
									
										
										
										
											2017-02-04 15:27:50 +08:00
										 |  |  | 		return strings.HasSuffix(strings.ToLower(s), strings.ToLower(suffix)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return strings.HasSuffix(s, suffix) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-19 05:41:59 +08:00
										 |  |  | // Validates if two strings are equal.
 | 
					
						
							|  |  |  | func isStringEqual(s1 string, s2 string) bool { | 
					
						
							|  |  |  | 	if runtime.GOOS == globalWindowsOSName { | 
					
						
							|  |  |  | 		return strings.EqualFold(s1, s2) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return s1 == s2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | // Ignores all reserved bucket names or invalid bucket names.
 | 
					
						
							|  |  |  | func isReservedOrInvalidBucket(bucketEntry string) bool { | 
					
						
							|  |  |  | 	bucketEntry = strings.TrimSuffix(bucketEntry, slashSeparator) | 
					
						
							|  |  |  | 	if !IsValidBucketName(bucketEntry) { | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-03 19:01:42 +08:00
										 |  |  | 	return isMinioMetaBucket(bucketEntry) || isMinioReservedBucket(bucketEntry) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if input bucket is a reserved minio meta bucket '.minio.sys'.
 | 
					
						
							|  |  |  | func isMinioMetaBucket(bucketName string) bool { | 
					
						
							|  |  |  | 	return bucketName == minioMetaBucket | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if input bucket is a reserved minio bucket 'minio'.
 | 
					
						
							|  |  |  | func isMinioReservedBucket(bucketName string) bool { | 
					
						
							|  |  |  | 	return bucketName == minioReservedBucket | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 03:02:30 +08:00
										 |  |  | // returns a slice of hosts by reading a slice of DNS records
 | 
					
						
							|  |  |  | func getHostsSlice(records []dns.SrvRecord) []string { | 
					
						
							|  |  |  | 	var hosts []string | 
					
						
							|  |  |  | 	for _, r := range records { | 
					
						
							|  |  |  | 		hosts = append(hosts, r.Host) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return hosts | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 09:20:22 +08:00
										 |  |  | // returns a random host (and corresponding port) from a slice of DNS records
 | 
					
						
							|  |  |  | func getRandomHostPort(records []dns.SrvRecord) (string, int) { | 
					
						
							|  |  |  | 	rand.Seed(time.Now().Unix()) | 
					
						
							|  |  |  | 	srvRecord := records[rand.Intn(len(records))] | 
					
						
							|  |  |  | 	return srvRecord.Host, srvRecord.Port | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | // byBucketName is a collection satisfying sort.Interface.
 | 
					
						
							|  |  |  | type byBucketName []BucketInfo | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (d byBucketName) Len() int           { return len(d) } | 
					
						
							|  |  |  | func (d byBucketName) Swap(i, j int)      { d[i], d[j] = d[j], d[i] } | 
					
						
							|  |  |  | func (d byBucketName) Less(i, j int) bool { return d[i].Name < d[j].Name } |