mirror of https://github.com/minio/minio.git
				
				
				
			
		
			
				
	
	
		
			301 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			301 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
|  * Minio Cloud Storage, (C) 2015 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.
 | |
|  */
 | |
| 
 | |
| package cmd
 | |
| 
 | |
| import (
 | |
| 	"encoding/base64"
 | |
| 	"encoding/xml"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 	"net/url"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 
 | |
| 	"encoding/json"
 | |
| 
 | |
| 	humanize "github.com/dustin/go-humanize"
 | |
| 	"github.com/minio/mc/pkg/console"
 | |
| 	"github.com/pkg/profile"
 | |
| )
 | |
| 
 | |
| // 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
 | |
| }
 | |
| 
 | |
| // checkDuplicates - function to validate if there are duplicates in a slice of strings.
 | |
| func checkDuplicateStrings(list []string) error {
 | |
| 	// Empty lists are not allowed.
 | |
| 	if len(list) == 0 {
 | |
| 		return errInvalidArgument
 | |
| 	}
 | |
| 	// Empty keys are not allowed.
 | |
| 	for _, key := range list {
 | |
| 		if key == "" {
 | |
| 			return errInvalidArgument
 | |
| 		}
 | |
| 	}
 | |
| 	listMaps := make(map[string]int)
 | |
| 	// Navigate through each configs and count the entries.
 | |
| 	for _, key := range list {
 | |
| 		listMaps[key]++
 | |
| 	}
 | |
| 	// Validate if there are any duplicate counts.
 | |
| 	for key, count := range listMaps {
 | |
| 		if count != 1 {
 | |
| 			return fmt.Errorf("Duplicate key: \"%s\" found of count: \"%d\"", key, count)
 | |
| 		}
 | |
| 	}
 | |
| 	// No duplicates.
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| // splitStr splits a string into n parts, empty strings are added
 | |
| // if we are not able to reach n elements
 | |
| func splitStr(path, sep string, n int) []string {
 | |
| 	splits := strings.SplitN(path, sep, n)
 | |
| 	// Add empty strings if we found elements less than nr
 | |
| 	for i := n - len(splits); i > 0; i-- {
 | |
| 		splits = append(splits, "")
 | |
| 	}
 | |
| 	return splits
 | |
| }
 | |
| 
 | |
| // 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.
 | |
| 	tokens := splitStr(urlPath, slashSeparator, 2)
 | |
| 
 | |
| 	// Extract bucket and objects.
 | |
| 	bucketName, objectName = tokens[0], tokens[1]
 | |
| 
 | |
| 	// Success.
 | |
| 	return bucketName, objectName
 | |
| }
 | |
| 
 | |
| // URI scheme constants.
 | |
| const (
 | |
| 	httpScheme  = "http"
 | |
| 	httpsScheme = "https"
 | |
| )
 | |
| 
 | |
| var portMap = map[string]string{
 | |
| 	httpScheme:  "80",
 | |
| 	httpsScheme: "443",
 | |
| }
 | |
| 
 | |
| // Given a string of the form "host", "host:port", or "[ipv6::address]:port",
 | |
| // return true if the string includes a port.
 | |
| func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
 | |
| 
 | |
| // canonicalAddr returns url.Host but always with a ":port" suffix
 | |
| func canonicalAddr(u *url.URL) string {
 | |
| 	addr := u.Host
 | |
| 	if !hasPort(addr) {
 | |
| 		return addr + ":" + portMap[u.Scheme]
 | |
| 	}
 | |
| 	return addr
 | |
| }
 | |
| 
 | |
| // checkDuplicates - function to validate if there are duplicates in a slice of endPoints.
 | |
| func checkDuplicateEndpoints(endpoints []*url.URL) error {
 | |
| 	var strs []string
 | |
| 	for _, ep := range endpoints {
 | |
| 		strs = append(strs, ep.String())
 | |
| 	}
 | |
| 	return checkDuplicateStrings(strs)
 | |
| }
 | |
| 
 | |
| // Find local node through the command line arguments. Returns in `host:port` format.
 | |
| func getLocalAddress(srvCmdConfig serverCmdConfig) string {
 | |
| 	if !globalIsDistXL {
 | |
| 		return srvCmdConfig.serverAddr
 | |
| 	}
 | |
| 	for _, ep := range srvCmdConfig.endpoints {
 | |
| 		// Validates if remote endpoint is local.
 | |
| 		if isLocalStorage(ep) {
 | |
| 			return ep.Host
 | |
| 		}
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| // xmlDecoder provide decoded value in xml.
 | |
| 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)
 | |
| 	return d.Decode(v)
 | |
| }
 | |
| 
 | |
| // checkValidMD5 - verify if valid md5, returns md5 in bytes.
 | |
| func checkValidMD5(md5 string) ([]byte, error) {
 | |
| 	return base64.StdEncoding.DecodeString(strings.TrimSpace(md5))
 | |
| }
 | |
| 
 | |
| /// http://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html
 | |
| const (
 | |
| 	// 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
 | |
| )
 | |
| 
 | |
| // isMaxObjectSize - verify if max object size
 | |
| func isMaxObjectSize(size int64) bool {
 | |
| 	return size > globalMaxObjectSize
 | |
| }
 | |
| 
 | |
| // // Check if part size is more than maximum allowed size.
 | |
| func isMaxAllowedPartSize(size int64) bool {
 | |
| 	return size > globalMaxPartSize
 | |
| }
 | |
| 
 | |
| // Check if part size is more than or equal to minimum allowed size.
 | |
| func isMinAllowedPartSize(size int64) bool {
 | |
| 	return size >= globalMinPartSize
 | |
| }
 | |
| 
 | |
| // isMaxPartNumber - Check if part ID is greater than the maximum allowed ID.
 | |
| func isMaxPartID(partID int) bool {
 | |
| 	return partID > globalMaxPartID
 | |
| }
 | |
| 
 | |
| func contains(stringList []string, element string) bool {
 | |
| 	for _, e := range stringList {
 | |
| 		if e == element {
 | |
| 			return true
 | |
| 		}
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| // Starts a profiler returns nil if profiler is not enabled, caller needs to handle this.
 | |
| func startProfiler(profiler string) interface {
 | |
| 	Stop()
 | |
| } {
 | |
| 	// Enable profiler if ``_MINIO_PROFILER`` is set. Supported options are [cpu, mem, block].
 | |
| 	switch profiler {
 | |
| 	case "cpu":
 | |
| 		return profile.Start(profile.CPUProfile, profile.NoShutdownHook)
 | |
| 	case "mem":
 | |
| 		return profile.Start(profile.MemProfile, profile.NoShutdownHook)
 | |
| 	case "block":
 | |
| 		return profile.Start(profile.BlockProfile, profile.NoShutdownHook)
 | |
| 	default:
 | |
| 		return nil
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Global profiler to be used by service go-routine.
 | |
| var globalProfiler interface {
 | |
| 	Stop()
 | |
| }
 | |
| 
 | |
| // dump the request into a string in JSON format.
 | |
| func dumpRequest(r *http.Request) string {
 | |
| 	header := cloneHeader(r.Header)
 | |
| 	header.Set("Host", r.Host)
 | |
| 	req := struct {
 | |
| 		Method string      `json:"method"`
 | |
| 		Path   string      `json:"path"`
 | |
| 		Query  string      `json:"query"`
 | |
| 		Header http.Header `json:"header"`
 | |
| 	}{r.Method, r.URL.Path, r.URL.RawQuery, header}
 | |
| 	jsonBytes, err := json.Marshal(req)
 | |
| 	if err != nil {
 | |
| 		return "<error dumping request>"
 | |
| 	}
 | |
| 	return string(jsonBytes)
 | |
| }
 | |
| 
 | |
| // Variant of getBrowserFromEnv but upon error fails right here.
 | |
| func mustGetBrowserFromEnv() string {
 | |
| 	browser, err := getBrowserFromEnv()
 | |
| 	if err != nil {
 | |
| 		console.Fatalf("Unable to load MINIO_BROWSER value from environment. Err: %s.\n", err)
 | |
| 	}
 | |
| 	return browser
 | |
| }
 | |
| 
 | |
| //
 | |
| func getBrowserFromEnv() (string, error) {
 | |
| 	b := os.Getenv("MINIO_BROWSER")
 | |
| 	if strings.TrimSpace(b) == "" {
 | |
| 		return "", nil
 | |
| 	}
 | |
| 	if !strings.EqualFold(b, "off") && !strings.EqualFold(b, "on") {
 | |
| 		return "", errInvalidArgument
 | |
| 	}
 | |
| 	globalIsEnvBrowser = true
 | |
| 	return strings.ToLower(b), nil
 | |
| }
 | |
| 
 | |
| // isFile - returns whether given path is a file or not.
 | |
| func isFile(path string) bool {
 | |
| 	if fi, err := os.Stat(path); err == nil {
 | |
| 		return fi.Mode().IsRegular()
 | |
| 	}
 | |
| 
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| // checkNetURL - checks if passed address correspond
 | |
| // to a network address (and not file system path)
 | |
| func checkNetURL(address string) (*url.URL, error) {
 | |
| 	u, err := url.Parse(address)
 | |
| 	if err != nil {
 | |
| 		return nil, fmt.Errorf("`%s` invalid: %s", address, err.Error())
 | |
| 	}
 | |
| 	if u.Host == "" {
 | |
| 		return nil, fmt.Errorf("`%s` invalid network URL", address)
 | |
| 	}
 | |
| 	return u, nil
 | |
| }
 |