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 (
|
2016-04-29 17:24:10 -04:00
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
2016-10-22 12:05:01 -04:00
|
|
|
"io"
|
2016-05-08 13:15:34 -04:00
|
|
|
"path"
|
2016-02-19 19:04:29 -05:00
|
|
|
"regexp"
|
2017-02-04 02:27:50 -05:00
|
|
|
"runtime"
|
2016-04-13 14:32:47 -04:00
|
|
|
"strings"
|
2016-02-19 19:04:29 -05:00
|
|
|
"unicode/utf8"
|
2016-04-29 17:24:10 -04:00
|
|
|
|
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"
|
2016-02-19 19:04:29 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// validBucket regexp.
|
|
|
|
var validBucket = regexp.MustCompile(`^[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]$`)
|
2016-07-15 20:30:37 -04:00
|
|
|
var isIPAddress = regexp.MustCompile(`^(\d+\.){3}\d+$`)
|
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
|
|
|
|
}
|
|
|
|
|
2016-03-07 22:30:30 -05:00
|
|
|
// IsValidBucketName verifies a bucket name in accordance with Amazon's
|
|
|
|
// requirements. It must be 3-63 characters long, can contain dashes
|
|
|
|
// and periods, but must begin and end with a lowercase letter or a number.
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
if bucket[0] == '.' || bucket[len(bucket)-1] == '.' {
|
|
|
|
return false
|
|
|
|
}
|
2016-07-15 20:30:37 -04:00
|
|
|
return (validBucket.MatchString(bucket) &&
|
|
|
|
!isIPAddress.MatchString(bucket) &&
|
|
|
|
!strings.Contains(bucket, ".."))
|
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-02-04 02:27:50 -05:00
|
|
|
if hasSuffix(object, slashSeparator) {
|
2016-02-19 19:04:29 -05:00
|
|
|
return false
|
|
|
|
}
|
2017-02-04 02:27:50 -05:00
|
|
|
if 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 {
|
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 {
|
|
|
|
panic(fmt.Sprintf("Random UUID generation failed. Error: %s", 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.
|
2016-11-10 10:41:02 -05:00
|
|
|
func getCompleteMultipartMD5(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 {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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 }
|
2016-10-22 12:05:01 -04:00
|
|
|
|
2016-11-21 07:15:26 -05:00
|
|
|
// rangeReader returns a Reader that reads from r
|
|
|
|
// but returns error after Max bytes read as errDataTooLarge.
|
|
|
|
// but returns error if reader exits before reading Min bytes
|
|
|
|
// errDataTooSmall.
|
|
|
|
type rangeReader struct {
|
|
|
|
Reader io.Reader // underlying reader
|
|
|
|
Min int64 // min bytes remaining
|
|
|
|
Max int64 // max bytes remaining
|
2016-10-22 12:05:01 -04:00
|
|
|
}
|
|
|
|
|
2016-11-21 07:15:26 -05:00
|
|
|
func (l *rangeReader) Read(p []byte) (n int, err error) {
|
|
|
|
n, err = l.Reader.Read(p)
|
|
|
|
l.Max -= int64(n)
|
|
|
|
l.Min -= int64(n)
|
|
|
|
if l.Max < 0 {
|
2016-10-22 12:05:01 -04:00
|
|
|
// If more data is available than what is expected we return error.
|
|
|
|
return 0, errDataTooLarge
|
|
|
|
}
|
2016-11-21 07:15:26 -05:00
|
|
|
if err == io.EOF && l.Min > 0 {
|
2016-10-25 02:47:03 -04:00
|
|
|
return 0, errDataTooSmall
|
|
|
|
}
|
2016-10-22 12:05:01 -04:00
|
|
|
return
|
|
|
|
}
|