| 
									
										
										
										
											2015-04-29 17:19:51 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-03-19 02:28:41 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2015, 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2015-04-29 17:19:51 +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 | 
					
						
							| 
									
										
										
										
											2015-04-23 07:28:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-05-31 15:11:06 +08:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2015-04-23 07:28:13 +08:00
										 |  |  | 	"encoding/base64" | 
					
						
							| 
									
										
										
										
											2017-04-08 05:37:32 +08:00
										 |  |  | 	"encoding/json" | 
					
						
							| 
									
										
										
										
											2016-04-21 08:35:38 +08:00
										 |  |  | 	"encoding/xml" | 
					
						
							| 
									
										
										
										
											2017-03-17 02:44:01 +08:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2016-08-26 15:11:53 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-04-21 08:35:38 +08:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2016-04-21 08:35:38 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2017-03-19 02:28:41 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 10:18:22 +08:00
										 |  |  | 	humanize "github.com/dustin/go-humanize" | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 	"github.com/pkg/profile" | 
					
						
							| 
									
										
										
										
											2015-04-23 07:28:13 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-10 00:38:07 +08:00
										 |  |  | // make a copy of http.Header
 | 
					
						
							|  |  |  | func cloneHeader(h http.Header) http.Header { | 
					
						
							|  |  |  | 	h2 := make(http.Header, len(h)) | 
					
						
							|  |  |  | 	for k, vv := range h { | 
					
						
							|  |  |  | 		vv2 := make([]string, len(vv)) | 
					
						
							|  |  |  | 		copy(vv2, vv) | 
					
						
							|  |  |  | 		h2[k] = vv2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return h2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 03:01:23 +08:00
										 |  |  | // Convert url path into bucket and object name.
 | 
					
						
							|  |  |  | func urlPath2BucketObjectName(u *url.URL) (bucketName, objectName string) { | 
					
						
							|  |  |  | 	if u == nil { | 
					
						
							|  |  |  | 		// Empty url, return bucket and object names.
 | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Trim any preceding slash separator.
 | 
					
						
							|  |  |  | 	urlPath := strings.TrimPrefix(u.Path, slashSeparator) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Split urlpath using slash separator into a given number of
 | 
					
						
							|  |  |  | 	// expected tokens.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | 	tokens := strings.SplitN(urlPath, slashSeparator, 2) | 
					
						
							|  |  |  | 	bucketName = tokens[0] | 
					
						
							|  |  |  | 	if len(tokens) == 2 { | 
					
						
							|  |  |  | 		objectName = tokens[1] | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-11 03:01:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Success.
 | 
					
						
							|  |  |  | 	return bucketName, objectName | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  | // URI scheme constants.
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	httpScheme  = "http" | 
					
						
							|  |  |  | 	httpsScheme = "https" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-21 08:35:38 +08:00
										 |  |  | // xmlDecoder provide decoded value in xml.
 | 
					
						
							| 
									
										
										
										
											2016-07-19 12:20:17 +08:00
										 |  |  | func xmlDecoder(body io.Reader, v interface{}, size int64) error { | 
					
						
							|  |  |  | 	var lbody io.Reader | 
					
						
							|  |  |  | 	if size > 0 { | 
					
						
							|  |  |  | 		lbody = io.LimitReader(body, size) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		lbody = body | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	d := xml.NewDecoder(lbody) | 
					
						
							| 
									
										
										
										
											2016-04-21 08:35:38 +08:00
										 |  |  | 	return d.Decode(v) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-13 08:08:15 +08:00
										 |  |  | // checkValidMD5 - verify if valid md5, returns md5 in bytes.
 | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | func checkValidMD5(md5 string) ([]byte, error) { | 
					
						
							|  |  |  | 	return base64.StdEncoding.DecodeString(strings.TrimSpace(md5)) | 
					
						
							| 
									
										
										
										
											2015-04-23 07:28:13 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-04-29 17:19:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-30 01:51:59 +08:00
										 |  |  | /// http://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html
 | 
					
						
							| 
									
										
										
										
											2015-04-29 17:19:51 +08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 	// Maximum object size per PUT request is 16GiB.
 | 
					
						
							|  |  |  | 	// This is a divergence from S3 limit on purpose to support
 | 
					
						
							|  |  |  | 	// use cases where users are going to upload large files
 | 
					
						
							|  |  |  | 	// using 'curl' and presigned URL.
 | 
					
						
							|  |  |  | 	globalMaxObjectSize = 16 * humanize.GiByte | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Minimum Part size for multipart upload is 5MiB
 | 
					
						
							|  |  |  | 	globalMinPartSize = 5 * humanize.MiByte | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Maximum Part size for multipart upload is 5GiB
 | 
					
						
							|  |  |  | 	globalMaxPartSize = 5 * humanize.GiByte | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Maximum Part ID for multipart upload is 10000
 | 
					
						
							|  |  |  | 	// (Acceptable values range from 1 to 10000 inclusive)
 | 
					
						
							|  |  |  | 	globalMaxPartID = 10000 | 
					
						
							| 
									
										
										
										
											2015-04-29 17:19:51 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // isMaxObjectSize - verify if max object size
 | 
					
						
							| 
									
										
										
										
											2015-12-28 15:00:36 +08:00
										 |  |  | func isMaxObjectSize(size int64) bool { | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 	return size > globalMaxObjectSize | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // // Check if part size is more than maximum allowed size.
 | 
					
						
							|  |  |  | func isMaxAllowedPartSize(size int64) bool { | 
					
						
							|  |  |  | 	return size > globalMaxPartSize | 
					
						
							| 
									
										
										
										
											2015-04-29 17:19:51 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-02-05 19:09:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:06:05 +08:00
										 |  |  | // Check if part size is more than or equal to minimum allowed size.
 | 
					
						
							|  |  |  | func isMinAllowedPartSize(size int64) bool { | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 	return size >= globalMinPartSize | 
					
						
							| 
									
										
										
										
											2016-05-09 03:06:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 16:52:47 +08:00
										 |  |  | // isMaxPartNumber - Check if part ID is greater than the maximum allowed ID.
 | 
					
						
							|  |  |  | func isMaxPartID(partID int) bool { | 
					
						
							| 
									
										
										
										
											2017-03-04 02:14:17 +08:00
										 |  |  | 	return partID > globalMaxPartID | 
					
						
							| 
									
										
										
										
											2016-05-24 16:52:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-05 19:09:31 +08:00
										 |  |  | func contains(stringList []string, element string) bool { | 
					
						
							|  |  |  | 	for _, e := range stringList { | 
					
						
							|  |  |  | 		if e == element { | 
					
						
							|  |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | // Starts a profiler returns nil if profiler is not enabled, caller needs to handle this.
 | 
					
						
							|  |  |  | func startProfiler(profiler string) interface { | 
					
						
							|  |  |  | 	Stop() | 
					
						
							|  |  |  | } { | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 	// Enable profiler if ``_MINIO_PROFILER`` is set. Supported options are [cpu, mem, block].
 | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 	switch profiler { | 
					
						
							|  |  |  | 	case "cpu": | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 		return profile.Start(profile.CPUProfile, profile.NoShutdownHook) | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 	case "mem": | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 		return profile.Start(profile.MemProfile, profile.NoShutdownHook) | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 	case "block": | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 		return profile.Start(profile.BlockProfile, profile.NoShutdownHook) | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  | // Global profiler to be used by service go-routine.
 | 
					
						
							| 
									
										
										
										
											2016-09-02 11:13:11 +08:00
										 |  |  | var globalProfiler interface { | 
					
						
							|  |  |  | 	Stop() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | // dump the request into a string in JSON format.
 | 
					
						
							|  |  |  | func dumpRequest(r *http.Request) string { | 
					
						
							|  |  |  | 	header := cloneHeader(r.Header) | 
					
						
							|  |  |  | 	header.Set("Host", r.Host) | 
					
						
							| 
									
										
										
										
											2017-05-31 15:11:06 +08:00
										 |  |  | 	// Replace all '%' to '%%' so that printer format parser
 | 
					
						
							|  |  |  | 	// to ignore URL encoded values.
 | 
					
						
							|  |  |  | 	rawURI := strings.Replace(r.RequestURI, "%", "%%", -1) | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | 	req := struct { | 
					
						
							| 
									
										
										
										
											2017-05-31 15:11:06 +08:00
										 |  |  | 		Method     string      `json:"method"` | 
					
						
							|  |  |  | 		RequestURI string      `json:"reqURI"` | 
					
						
							|  |  |  | 		Header     http.Header `json:"header"` | 
					
						
							|  |  |  | 	}{r.Method, rawURI, header} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var buffer bytes.Buffer | 
					
						
							|  |  |  | 	enc := json.NewEncoder(&buffer) | 
					
						
							|  |  |  | 	enc.SetEscapeHTML(false) | 
					
						
							|  |  |  | 	if err := enc.Encode(&req); err != nil { | 
					
						
							| 
									
										
										
										
											2017-04-08 05:37:32 +08:00
										 |  |  | 		// Upon error just return Go-syntax representation of the value
 | 
					
						
							|  |  |  | 		return fmt.Sprintf("%#v", req) | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-05-31 15:11:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Formatted string.
 | 
					
						
							|  |  |  | 	return strings.TrimSpace(string(buffer.Bytes())) | 
					
						
							| 
									
										
										
										
											2016-09-20 01:17:46 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-28 06:59:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 06:21:30 +08:00
										 |  |  | // isFile - returns whether given path is a file or not.
 | 
					
						
							|  |  |  | func isFile(path string) bool { | 
					
						
							| 
									
										
										
										
											2017-05-02 17:35:27 +08:00
										 |  |  | 	if fi, err := osStat(path); err == nil { | 
					
						
							| 
									
										
										
										
											2017-03-03 06:21:30 +08:00
										 |  |  | 		return fi.Mode().IsRegular() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-16 07:30:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-17 02:44:01 +08:00
										 |  |  | // checkURL - checks if passed address correspond
 | 
					
						
							| 
									
										
										
										
											2017-03-31 19:47:40 +08:00
										 |  |  | func checkURL(urlStr string) (*url.URL, error) { | 
					
						
							|  |  |  | 	if urlStr == "" { | 
					
						
							| 
									
										
										
										
											2017-03-17 02:44:01 +08:00
										 |  |  | 		return nil, errors.New("Address cannot be empty") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-31 19:47:40 +08:00
										 |  |  | 	u, err := url.Parse(urlStr) | 
					
						
							| 
									
										
										
										
											2017-03-16 07:30:34 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-03-31 19:47:40 +08:00
										 |  |  | 		return nil, fmt.Errorf("`%s` invalid: %s", urlStr, err.Error()) | 
					
						
							| 
									
										
										
										
											2017-03-16 07:30:34 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return u, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-19 02:28:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // UTCNow - returns current UTC time.
 | 
					
						
							|  |  |  | func UTCNow() time.Time { | 
					
						
							|  |  |  | 	return time.Now().UTC() | 
					
						
							|  |  |  | } |