2016-02-19 19:04:29 -05: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-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-02-19 19:04:29 -05:00
|
|
|
|
|
|
|
import (
|
2018-04-05 18:04:40 -04:00
|
|
|
"context"
|
2016-04-29 17:24:10 -04:00
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
2018-05-15 21:20:22 -04:00
|
|
|
"math/rand"
|
2016-05-08 13:15:34 -04:00
|
|
|
"path"
|
2017-02-04 02:27:50 -05:00
|
|
|
"runtime"
|
2016-04-13 14:32:47 -04:00
|
|
|
"strings"
|
2018-05-15 21:20:22 -04:00
|
|
|
"time"
|
2016-02-19 19:04:29 -05:00
|
|
|
"unicode/utf8"
|
2016-04-29 17:24:10 -04:00
|
|
|
|
2018-04-05 18:04:40 -04:00
|
|
|
"github.com/minio/minio/cmd/logger"
|
2018-05-11 15:02:30 -04:00
|
|
|
"github.com/minio/minio/pkg/dns"
|
2016-05-20 23:48:47 -04:00
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
2016-04-29 17:24:10 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-05-01 21:13:10 -04:00
|
|
|
// Minio meta bucket.
|
2016-07-12 18:21:29 -04:00
|
|
|
minioMetaBucket = ".minio.sys"
|
2016-05-03 19:10:24 -04:00
|
|
|
// Multipart meta prefix.
|
|
|
|
mpartMetaPrefix = "multipart"
|
2016-11-22 16:15:06 -05:00
|
|
|
// Minio Multipart meta prefix.
|
|
|
|
minioMetaMultipartBucket = minioMetaBucket + "/" + mpartMetaPrefix
|
2016-11-20 17:25:43 -05:00
|
|
|
// Minio Tmp meta prefix.
|
|
|
|
minioMetaTmpBucket = minioMetaBucket + "/tmp"
|
2017-03-03 13:23:41 -05:00
|
|
|
// DNS separator (period), used for bucket name validation.
|
|
|
|
dnsDelimiter = "."
|
2016-02-19 19:04:29 -05:00
|
|
|
)
|
|
|
|
|
2017-01-17 13:02:58 -05: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-03 13:23:41 -05: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-19 19:04:29 -05:00
|
|
|
func IsValidBucketName(bucket string) bool {
|
2017-01-17 13:02:58 -05:00
|
|
|
// Special case when bucket is equal to one of the meta buckets.
|
|
|
|
if isMinioMetaBucketName(bucket) {
|
2016-07-24 01:51:12 -04:00
|
|
|
return true
|
|
|
|
}
|
2016-02-19 19:04:29 -05:00
|
|
|
if len(bucket) < 3 || len(bucket) > 63 {
|
|
|
|
return false
|
|
|
|
}
|
2017-03-03 13:23:41 -05: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-19 19:04:29 -05:00
|
|
|
}
|
2017-03-03 13:23:41 -05:00
|
|
|
// Does the bucket name look like an IP address?
|
|
|
|
return !(len(pieces) == 4 && allNumbers)
|
2016-02-19 19:04:29 -05:00
|
|
|
}
|
|
|
|
|
2016-03-07 22:30:30 -05: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-13 14:32:47 -04: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-13 14:43:06 -04:00
|
|
|
//
|
2016-09-30 19:56:36 -04:00
|
|
|
// additionally minio does not support object names with trailing "/".
|
2016-02-19 19:04:29 -05:00
|
|
|
func IsValidObjectName(object string) bool {
|
2016-05-13 14:43:06 -04:00
|
|
|
if len(object) == 0 {
|
2016-02-19 19:04:29 -05:00
|
|
|
return false
|
|
|
|
}
|
2017-05-09 17:32:24 -04:00
|
|
|
if hasSuffix(object, slashSeparator) || hasPrefix(object, slashSeparator) {
|
2016-05-13 14:43:06 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return IsValidObjectPrefix(object)
|
2016-02-19 19:04:29 -05:00
|
|
|
}
|
2016-03-22 19:03:08 -04: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-24 21:13:46 -04:00
|
|
|
if hasBadPathComponent(object) {
|
|
|
|
return false
|
|
|
|
}
|
2016-05-13 14:43:06 -04:00
|
|
|
if len(object) > 1024 {
|
|
|
|
return false
|
2016-03-22 19:03:08 -04:00
|
|
|
}
|
2016-05-13 14:43:06 -04:00
|
|
|
if !utf8.ValidString(object) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// Reject unsupported characters in object name.
|
2016-09-30 19:56:36 -04:00
|
|
|
if strings.ContainsAny(object, "\\") {
|
2016-05-13 14:43:06 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
2016-03-22 19:03:08 -04:00
|
|
|
}
|
2016-04-16 14:43:03 -04:00
|
|
|
|
2016-04-21 21:05:26 -04:00
|
|
|
// Slash separator.
|
|
|
|
const slashSeparator = "/"
|
|
|
|
|
|
|
|
// retainSlash - retains slash from a path.
|
|
|
|
func retainSlash(s string) string {
|
|
|
|
return strings.TrimSuffix(s, slashSeparator) + slashSeparator
|
|
|
|
}
|
|
|
|
|
2016-05-08 13:15:34 -04:00
|
|
|
// pathJoin - like path.Join() but retains trailing "/" of the last element
|
2016-05-09 03:46:54 -04:00
|
|
|
func pathJoin(elem ...string) string {
|
2016-05-08 13:15:34 -04:00
|
|
|
trailingSlash := ""
|
2016-05-09 03:46:54 -04:00
|
|
|
if len(elem) > 0 {
|
2017-02-16 17:52:14 -05:00
|
|
|
if hasSuffix(elem[len(elem)-1], slashSeparator) {
|
2016-05-09 03:46:54 -04:00
|
|
|
trailingSlash = "/"
|
|
|
|
}
|
2016-05-08 13:15:34 -04:00
|
|
|
}
|
2016-05-09 03:46:54 -04:00
|
|
|
return path.Join(elem...) + trailingSlash
|
2016-04-16 14:43:03 -04:00
|
|
|
}
|
2016-04-29 17:24:10 -04:00
|
|
|
|
2016-11-22 19:52:37 -05:00
|
|
|
// mustGetUUID - get a random UUID.
|
|
|
|
func mustGetUUID() string {
|
|
|
|
uuid, err := uuid.New()
|
|
|
|
if err != nil {
|
2018-04-19 20:24:43 -04:00
|
|
|
logger.CriticalIf(context.Background(), err)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-11-22 19:52:37 -05:00
|
|
|
|
|
|
|
return uuid.String()
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-04-29 17:24:10 -04:00
|
|
|
// Create an s3 compatible MD5sum for complete multipart transaction.
|
2018-04-05 18:04:40 -04:00
|
|
|
func getCompleteMultipartMD5(ctx context.Context, parts []CompletePart) (string, error) {
|
2016-04-29 17:24:10 -04:00
|
|
|
var finalMD5Bytes []byte
|
2016-05-08 05:38:35 -04:00
|
|
|
for _, part := range parts {
|
|
|
|
md5Bytes, err := hex.DecodeString(part.ETag)
|
2016-04-29 17:24:10 -04:00
|
|
|
if err != nil {
|
2018-04-05 18:04:40 -04:00
|
|
|
logger.LogIf(ctx, err)
|
|
|
|
return "", err
|
2016-04-29 17:24:10 -04:00
|
|
|
}
|
|
|
|
finalMD5Bytes = append(finalMD5Bytes, md5Bytes...)
|
|
|
|
}
|
2016-11-21 16:51:05 -05:00
|
|
|
s3MD5 := fmt.Sprintf("%s-%d", getMD5Hash(finalMD5Bytes), len(parts))
|
2016-04-29 17:24:10 -04:00
|
|
|
return s3MD5, nil
|
|
|
|
}
|
|
|
|
|
2018-01-04 01:14:45 -05: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-14 15:05:51 -04:00
|
|
|
}
|
|
|
|
|
2018-01-04 01:14:45 -05: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-14 15:05:51 -04: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 02:27:50 -05: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-18 16:41:59 -05:00
|
|
|
if runtime.GOOS == globalWindowsOSName {
|
2017-02-04 02:27:50 -05: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-18 16:41:59 -05:00
|
|
|
if runtime.GOOS == globalWindowsOSName {
|
2017-02-04 02:27:50 -05:00
|
|
|
return strings.HasSuffix(strings.ToLower(s), strings.ToLower(suffix))
|
|
|
|
}
|
|
|
|
return strings.HasSuffix(s, suffix)
|
|
|
|
}
|
|
|
|
|
2017-02-18 16:41:59 -05: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-16 17:52:14 -05: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 06:01:42 -05: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-16 17:52:14 -05:00
|
|
|
}
|
|
|
|
|
2018-05-11 15:02:30 -04: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-15 21:20:22 -04: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-29 17:24:10 -04: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 }
|