2015-02-23 19:46:48 -05:00
|
|
|
/*
|
2015-07-24 20:51:40 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-02-23 19:46:48 -05: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,
|
2015-10-16 14:26:01 -04:00
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implieapi.Filesystem.
|
2015-02-23 19:46:48 -05:00
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-09-19 03:52:01 -04:00
|
|
|
package main
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
import (
|
2016-02-27 06:04:52 -05:00
|
|
|
"io"
|
2015-02-15 20:03:27 -05:00
|
|
|
"net/http"
|
2016-02-07 06:37:54 -05:00
|
|
|
"net/url"
|
2015-05-04 02:16:10 -04:00
|
|
|
"strconv"
|
2016-02-27 06:04:52 -05:00
|
|
|
"strings"
|
2016-02-28 21:10:37 -05:00
|
|
|
"time"
|
2015-02-15 20:03:27 -05:00
|
|
|
|
2016-02-27 06:04:52 -05:00
|
|
|
mux "github.com/gorilla/mux"
|
2015-10-16 22:09:35 -04:00
|
|
|
"github.com/minio/minio/pkg/fs"
|
2016-02-27 06:04:52 -05:00
|
|
|
"github.com/minio/minio/pkg/probe"
|
2015-05-09 22:39:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
maxPartsList = 1000
|
2015-02-15 20:03:27 -05:00
|
|
|
)
|
|
|
|
|
2016-02-07 06:37:54 -05:00
|
|
|
// supportedGetReqParams - supported request parameters for GET
|
|
|
|
// presigned request.
|
|
|
|
var supportedGetReqParams = map[string]string{
|
|
|
|
"response-expires": "Expires",
|
|
|
|
"response-content-type": "Content-Type",
|
|
|
|
"response-cache-control": "Cache-Control",
|
|
|
|
"response-content-disposition": "Content-Disposition",
|
|
|
|
}
|
|
|
|
|
2016-02-28 21:10:37 -05:00
|
|
|
// setGetRespHeaders - set any requested parameters as response headers.
|
|
|
|
func setGetRespHeaders(w http.ResponseWriter, reqParams url.Values) {
|
2016-02-07 06:37:54 -05:00
|
|
|
for k, v := range reqParams {
|
|
|
|
if header, ok := supportedGetReqParams[k]; ok {
|
|
|
|
w.Header()[header] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// GetObjectHandler - GET Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// ----------
|
|
|
|
// This implementation of the GET operation retrieves object. To use GET,
|
|
|
|
// you must have READ access to the object.
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) GetObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-02-15 20:03:27 -05:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
default:
|
|
|
|
// For all unknown auth types return error.
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrAccessDenied, r.URL.Path)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
return
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:GetObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case authTypePresigned, authTypeSigned:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
|
|
|
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err := api.Filesystem.GetObjectInfo(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "GetObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-08-03 19:17:21 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-02-28 21:10:37 -05:00
|
|
|
|
2015-09-19 06:20:07 -04:00
|
|
|
var hrange *httpRange
|
2016-03-11 19:31:24 -05:00
|
|
|
hrange, err = getRequestedRange(r.Header.Get("Range"), objectInfo.Size)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidRange, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-07 06:37:54 -05:00
|
|
|
|
|
|
|
// Set standard object headers.
|
2016-03-11 19:31:24 -05:00
|
|
|
setObjectHeaders(w, objectInfo, hrange)
|
2016-02-07 06:37:54 -05:00
|
|
|
|
2016-02-28 21:10:37 -05:00
|
|
|
// Verify 'If-Modified-Since' and 'If-Unmodified-Since'.
|
2016-03-11 19:31:24 -05:00
|
|
|
lastModified := objectInfo.ModifiedTime
|
|
|
|
if checkLastModified(w, r, lastModified) {
|
2016-02-28 21:10:37 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// Verify 'If-Match' and 'If-None-Match'.
|
|
|
|
if checkETag(w, r) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set any additional requested response headers.
|
|
|
|
setGetRespHeaders(w, r.URL.Query())
|
2016-02-07 06:37:54 -05:00
|
|
|
|
|
|
|
// Get the object.
|
2015-10-16 14:26:01 -04:00
|
|
|
if _, err = api.Filesystem.GetObject(w, bucket, object, hrange.start, hrange.length); err != nil {
|
2015-09-19 06:20:07 -04:00
|
|
|
errorIf(err.Trace(), "GetObject failed.", nil)
|
|
|
|
return
|
2015-07-02 23:31:22 -04:00
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
|
2016-02-28 21:10:37 -05:00
|
|
|
var unixEpochTime = time.Unix(0, 0)
|
|
|
|
|
|
|
|
// checkLastModified implements If-Modified-Since and
|
|
|
|
// If-Unmodified-Since checks.
|
|
|
|
//
|
|
|
|
// modtime is the modification time of the resource to be served, or
|
|
|
|
// IsZero(). return value is whether this request is now complete.
|
|
|
|
func checkLastModified(w http.ResponseWriter, r *http.Request, modtime time.Time) bool {
|
|
|
|
if modtime.IsZero() || modtime.Equal(unixEpochTime) {
|
|
|
|
// If the object doesn't have a modtime (IsZero), or the modtime
|
|
|
|
// is obviously garbage (Unix time == 0), then ignore modtimes
|
|
|
|
// and don't process the If-Modified-Since header.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The Date-Modified header truncates sub-second precision, so
|
|
|
|
// use mtime < t+1s instead of mtime <= t to check for unmodified.
|
|
|
|
if _, ok := r.Header["If-Modified-Since"]; ok {
|
|
|
|
// Return the object only if it has been modified since the
|
|
|
|
// specified time, otherwise return a 304 (not modified).
|
|
|
|
t, err := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since"))
|
|
|
|
if err == nil && modtime.Before(t.Add(1*time.Second)) {
|
|
|
|
h := w.Header()
|
|
|
|
// Remove following headers if already set.
|
|
|
|
delete(h, "Content-Type")
|
|
|
|
delete(h, "Content-Length")
|
|
|
|
delete(h, "Content-Range")
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
} else if _, ok := r.Header["If-Unmodified-Since"]; ok {
|
|
|
|
// Return the object only if it has not been modified since
|
|
|
|
// the specified time, otherwise return a 412 (precondition failed).
|
|
|
|
t, err := time.Parse(http.TimeFormat, r.Header.Get("If-Unmodified-Since"))
|
|
|
|
if err == nil && modtime.After(t.Add(1*time.Second)) {
|
|
|
|
h := w.Header()
|
|
|
|
// Remove following headers if already set.
|
|
|
|
delete(h, "Content-Type")
|
|
|
|
delete(h, "Content-Length")
|
|
|
|
delete(h, "Content-Range")
|
|
|
|
w.WriteHeader(http.StatusPreconditionFailed)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.Header().Set("Last-Modified", modtime.UTC().Format(http.TimeFormat))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkETag implements If-None-Match and If-Match checks.
|
|
|
|
//
|
|
|
|
// The ETag or modtime must have been previously set in the
|
|
|
|
// ResponseWriter's headers. The modtime is only compared at second
|
|
|
|
// granularity and may be the zero value to mean unknown.
|
|
|
|
//
|
|
|
|
// The return value is whether this request is now considered done.
|
|
|
|
func checkETag(w http.ResponseWriter, r *http.Request) bool {
|
|
|
|
etag := w.Header().Get("ETag")
|
|
|
|
// Must know ETag.
|
|
|
|
if etag == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if inm := r.Header.Get("If-None-Match"); inm != "" {
|
|
|
|
// Return the object only if its entity tag (ETag) is
|
|
|
|
// different from the one specified; otherwise, return a 304
|
|
|
|
// (not modified).
|
|
|
|
if r.Method != "GET" && r.Method != "HEAD" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if inm == etag || inm == "*" {
|
|
|
|
h := w.Header()
|
|
|
|
// Remove following headers if already set.
|
|
|
|
delete(h, "Content-Type")
|
|
|
|
delete(h, "Content-Length")
|
|
|
|
delete(h, "Content-Range")
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
} else if im := r.Header.Get("If-Match"); im != "" {
|
|
|
|
// Return the object only if its entity tag (ETag) is the same
|
|
|
|
// as the one specified; otherwise, return a 412 (precondition failed).
|
|
|
|
if r.Method != "GET" && r.Method != "HEAD" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if im != etag {
|
|
|
|
h := w.Header()
|
|
|
|
// Remove following headers if already set.
|
|
|
|
delete(h, "Content-Type")
|
|
|
|
delete(h, "Content-Length")
|
|
|
|
delete(h, "Content-Range")
|
|
|
|
w.WriteHeader(http.StatusPreconditionFailed)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// HeadObjectHandler - HEAD Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// -----------
|
|
|
|
// The HEAD operation retrieves metadata from an object without returning the object itself.
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) HeadObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-02-15 20:03:27 -05:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-15 20:42:39 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err := api.Filesystem.GetObjectInfo(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
2016-03-11 19:31:24 -05:00
|
|
|
errorIf(err.Trace(bucket, object), "GetObjectInfo failed.", nil)
|
2015-09-19 06:20:07 -04:00
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-28 21:10:37 -05:00
|
|
|
|
|
|
|
// Set standard object headers.
|
2016-03-11 19:31:24 -05:00
|
|
|
setObjectHeaders(w, objectInfo, nil)
|
2016-02-28 21:10:37 -05:00
|
|
|
|
|
|
|
// Verify 'If-Modified-Since' and 'If-Unmodified-Since'.
|
2016-03-11 19:31:24 -05:00
|
|
|
lastModified := objectInfo.ModifiedTime
|
|
|
|
if checkLastModified(w, r, lastModified) {
|
2016-02-28 21:10:37 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify 'If-Match' and 'If-None-Match'.
|
|
|
|
if checkETag(w, r) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Successfull response.
|
2015-09-19 06:20:07 -04:00
|
|
|
w.WriteHeader(http.StatusOK)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
|
2016-02-27 06:04:52 -05:00
|
|
|
// CopyObjectHandler - Copy Object
|
|
|
|
// ----------
|
|
|
|
// This implementation of the PUT operation adds an object to a bucket
|
|
|
|
// while reading the object from another source.
|
2016-02-28 21:10:37 -05:00
|
|
|
//
|
|
|
|
// TODO: Does not support following request headers just yet.
|
|
|
|
// - x-amz-copy-source-if-match
|
|
|
|
// - x-amz-copy-source-if-none-match
|
|
|
|
// - x-amz-copy-source-if-unmodified-since
|
|
|
|
// - x-amz-copy-source-if-modified-since
|
2016-02-27 06:04:52 -05:00
|
|
|
func (api storageAPI) CopyObjectHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
default:
|
|
|
|
// For all unknown auth types return error.
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrAccessDenied, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
return
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:GetBucketLocation", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case authTypePresigned, authTypeSigned:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2016-02-27 06:04:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Reject requests where body/payload is present, for now we
|
|
|
|
// don't even read it.
|
|
|
|
|
|
|
|
// objectSource
|
|
|
|
objectSource := r.Header.Get("X-Amz-Copy-Source")
|
|
|
|
|
|
|
|
// Skip the first element if it is '/', split the rest.
|
|
|
|
if strings.HasPrefix(objectSource, "/") {
|
|
|
|
objectSource = objectSource[1:]
|
|
|
|
}
|
|
|
|
splits := strings.SplitN(objectSource, "/", 2)
|
|
|
|
|
|
|
|
// Save sourceBucket and sourceObject extracted from url Path.
|
|
|
|
var sourceBucket, sourceObject string
|
|
|
|
if len(splits) == 2 {
|
|
|
|
sourceBucket = splits[0]
|
|
|
|
sourceObject = splits[1]
|
|
|
|
}
|
|
|
|
// If source object is empty, reply back error.
|
|
|
|
if sourceObject == "" {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidCopySource, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Source and destination objects cannot be same, reply back error.
|
|
|
|
if sourceObject == object && sourceBucket == bucket {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidCopyDest, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err := api.Filesystem.GetObjectInfo(sourceBucket, sourceObject)
|
2016-02-27 06:04:52 -05:00
|
|
|
if err != nil {
|
2016-03-11 19:31:24 -05:00
|
|
|
errorIf(err.Trace(), "GetObjectInfo failed.", nil)
|
2016-02-27 06:04:52 -05:00
|
|
|
switch err.ToGoError().(type) {
|
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
/// maximum Upload size for object in a single CopyObject operation.
|
2016-03-11 19:31:24 -05:00
|
|
|
if isMaxObjectSize(objectInfo.Size) {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrEntityTooLarge, objectSource)
|
2016-02-27 06:04:52 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize a pipe for data pipe line.
|
|
|
|
reader, writer := io.Pipe()
|
|
|
|
|
|
|
|
// Start writing in a routine.
|
|
|
|
go func() {
|
|
|
|
defer writer.Close()
|
|
|
|
if _, getErr := api.Filesystem.GetObject(writer, sourceBucket, sourceObject, 0, 0); getErr != nil {
|
|
|
|
writer.CloseWithError(probe.WrapError(getErr))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Verify md5sum.
|
2016-03-11 19:31:24 -05:00
|
|
|
expectedMD5Sum := objectInfo.MD5Sum
|
2016-02-27 06:04:52 -05:00
|
|
|
// Size of object.
|
2016-03-11 19:31:24 -05:00
|
|
|
size := objectInfo.Size
|
2016-02-27 06:04:52 -05:00
|
|
|
|
|
|
|
// Create the object.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CreateObject(bucket, object, expectedMD5Sum, size, reader, nil)
|
2016-02-27 06:04:52 -05:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CreateObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
|
|
|
case fs.RootPathFull:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrRootPathFull, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.BadDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrBadDigest, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.IncompleteBody:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrIncompleteBody, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.InvalidDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidDigest, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
case fs.ObjectExistsAsPrefix:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrObjectExistsAsPrefix, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-03-11 19:31:24 -05:00
|
|
|
response := generateCopyObjectResponse(objectInfo.MD5Sum, objectInfo.ModifiedTime)
|
2016-03-06 15:16:22 -05:00
|
|
|
encodedSuccessResponse := encodeResponse(response)
|
2016-02-27 06:04:52 -05:00
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// PutObjectHandler - PUT Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// ----------
|
|
|
|
// This implementation of the PUT operation adds an object to a bucket.
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) PutObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-27 06:04:52 -05:00
|
|
|
// If the matching failed, it means that the X-Amz-Copy-Source was
|
|
|
|
// wrong, fail right here.
|
|
|
|
if _, ok := r.Header["X-Amz-Copy-Source"]; ok {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidCopySource, r.URL.Path)
|
2016-02-27 06:04:52 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2016-02-27 06:04:52 -05:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
2016-03-05 19:43:48 -05:00
|
|
|
// get Content-Md5 sent by client and verify if valid
|
|
|
|
md5 := r.Header.Get("Content-Md5")
|
2015-04-22 19:28:13 -04:00
|
|
|
if !isValidMD5(md5) {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidDigest, r.URL.Path)
|
2015-04-22 19:28:13 -04:00
|
|
|
return
|
|
|
|
}
|
2015-12-28 02:00:36 -05:00
|
|
|
/// if Content-Length is unknown/missing, deny the request
|
2016-02-15 20:42:39 -05:00
|
|
|
size := r.ContentLength
|
|
|
|
if size == -1 && !contains(r.TransferEncoding, "chunked") {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrMissingContentLength, r.URL.Path)
|
2015-04-29 05:19:51 -04:00
|
|
|
return
|
|
|
|
}
|
2015-04-29 13:51:59 -04:00
|
|
|
/// maximum Upload size for objects in a single operation
|
2015-04-29 05:19:51 -04:00
|
|
|
if isMaxObjectSize(size) {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrEntityTooLarge, r.URL.Path)
|
2015-04-29 05:19:51 -04:00
|
|
|
return
|
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set http request for signature.
|
2016-02-16 21:50:36 -05:00
|
|
|
auth := api.Signature.SetHTTPRequestToVerify(r)
|
2016-03-11 19:31:24 -05:00
|
|
|
var objectInfo fs.ObjectInfo
|
2016-03-02 14:22:58 -05:00
|
|
|
var err *probe.Error
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
default:
|
|
|
|
// For all unknown auth types return error.
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrAccessDenied, r.URL.Path)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
return
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:PutObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Create anonymous object.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CreateObject(bucket, object, md5, size, r.Body, nil)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
case authTypePresigned:
|
|
|
|
// For presigned requests verify them right here.
|
2016-03-02 14:22:58 -05:00
|
|
|
var ok bool
|
|
|
|
ok, err = auth.DoesPresignedSignatureMatch()
|
2016-02-16 21:50:36 -05:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(r.URL.String()), "Presigned signature verification failed.", nil)
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if !ok {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
2016-03-02 14:22:58 -05:00
|
|
|
// Create presigned object.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CreateObject(bucket, object, md5, size, r.Body, nil)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
case authTypeSigned:
|
2016-03-02 14:22:58 -05:00
|
|
|
// Create object.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CreateObject(bucket, object, md5, size, r.Body, &auth)
|
2016-02-16 21:50:36 -05:00
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CreateObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrRootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BadDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrBadDigest, r.URL.Path)
|
2016-02-15 20:42:39 -05:00
|
|
|
case fs.SignDoesNotMatch:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrIncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidDigest, r.URL.Path)
|
2016-02-02 18:23:28 -05:00
|
|
|
case fs.ObjectExistsAsPrefix:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrObjectExistsAsPrefix, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-03-11 19:31:24 -05:00
|
|
|
if objectInfo.MD5Sum != "" {
|
|
|
|
w.Header().Set("ETag", "\""+objectInfo.MD5Sum+"\"")
|
2016-02-01 15:19:54 -05:00
|
|
|
}
|
2016-01-08 03:40:06 -05:00
|
|
|
writeSuccessResponse(w, nil)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
2016-02-18 05:13:52 -05:00
|
|
|
/// Multipart storageAPI
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// NewMultipartUploadHandler - New multipart upload
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) NewMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
2015-05-07 22:55:30 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-05-07 22:55:30 -04:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:PutObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
uploadID, err := api.Filesystem.NewMultipartUpload(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "NewMultipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrRootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
|
|
|
|
response := generateInitiateMultipartUploadResponse(bucket, object, uploadID)
|
2016-03-06 15:16:22 -05:00
|
|
|
encodedSuccessResponse := encodeResponse(response)
|
2015-09-19 06:20:07 -04:00
|
|
|
// write headers
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// PutObjectPartHandler - Upload part
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) PutObjectPartHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-10-16 22:09:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2016-03-05 19:43:48 -05:00
|
|
|
// get Content-Md5 sent by client and verify if valid
|
|
|
|
md5 := r.Header.Get("Content-Md5")
|
2015-10-16 22:09:35 -04:00
|
|
|
if !isValidMD5(md5) {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidDigest, r.URL.Path)
|
2015-10-16 22:09:35 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-28 02:00:36 -05:00
|
|
|
/// if Content-Length is unknown/missing, throw away
|
2016-02-15 20:42:39 -05:00
|
|
|
size := r.ContentLength
|
2015-12-28 02:00:36 -05:00
|
|
|
if size == -1 {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrMissingContentLength, r.URL.Path)
|
2015-12-28 02:00:36 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-08 01:43:19 -04:00
|
|
|
/// maximum Upload size for multipart objects in a single operation
|
2015-05-07 22:55:30 -04:00
|
|
|
if isMaxObjectSize(size) {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrEntityTooLarge, r.URL.Path)
|
2015-05-07 22:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-04-30 19:29:03 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
uploadID := r.URL.Query().Get("uploadId")
|
|
|
|
partIDString := r.URL.Query().Get("partNumber")
|
2015-05-09 22:39:00 -04:00
|
|
|
|
2016-03-02 14:22:58 -05:00
|
|
|
partID, e := strconv.Atoi(partIDString)
|
|
|
|
if e != nil {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidPart, r.URL.Path)
|
2016-03-02 14:22:58 -05:00
|
|
|
return
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-16 21:50:36 -05:00
|
|
|
// Set http request for signature.
|
|
|
|
auth := api.Signature.SetHTTPRequestToVerify(r)
|
2016-03-02 14:22:58 -05:00
|
|
|
var partMD5 string
|
|
|
|
var err *probe.Error
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:PutObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// No need to verify signature, anonymous request access is
|
|
|
|
// already allowed.
|
|
|
|
partMD5, err = api.Filesystem.CreateObjectPart(bucket, object, uploadID, md5, partID, size, r.Body, nil)
|
|
|
|
case authTypePresigned:
|
|
|
|
// For presigned requests verify right here.
|
2016-03-02 14:22:58 -05:00
|
|
|
var ok bool
|
|
|
|
ok, err = auth.DoesPresignedSignatureMatch()
|
2016-02-16 21:50:36 -05:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(r.URL.String()), "Presigned signature verification failed.", nil)
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if !ok {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
2016-03-02 14:22:58 -05:00
|
|
|
partMD5, err = api.Filesystem.CreateObjectPart(bucket, object, uploadID, md5, partID, size, r.Body, nil)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
default:
|
2016-03-02 14:22:58 -05:00
|
|
|
partMD5, err = api.Filesystem.CreateObjectPart(bucket, object, uploadID, md5, partID, size, r.Body, &auth)
|
2016-02-16 21:50:36 -05:00
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CreateObjectPart failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrRootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchUpload, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BadDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrBadDigest, r.URL.Path)
|
2016-02-15 20:42:39 -05:00
|
|
|
case fs.SignDoesNotMatch:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrIncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidDigest:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidDigest, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-03-02 14:22:58 -05:00
|
|
|
if partMD5 != "" {
|
|
|
|
w.Header().Set("ETag", "\""+partMD5+"\"")
|
2016-02-01 15:19:54 -05:00
|
|
|
}
|
2016-01-08 03:40:06 -05:00
|
|
|
writeSuccessResponse(w, nil)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// AbortMultipartUploadHandler - Abort multipart upload
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) AbortMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-05-09 19:06:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:AbortMultipartUpload", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
2015-10-16 14:26:01 -04:00
|
|
|
err := api.Filesystem.AbortMultipartUpload(bucket, object, objectResourcesMetadata.UploadID)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "AbortMutlipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchUpload, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-10-16 23:02:37 -04:00
|
|
|
writeSuccessNoContent(w)
|
2015-05-09 19:06:35 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// ListObjectPartsHandler - List object parts
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) ListObjectPartsHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-10-16 22:09:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:ListMultipartUploadParts", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
2015-07-16 20:22:45 -04:00
|
|
|
if objectResourcesMetadata.PartNumberMarker < 0 {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidPartNumberMarker, r.URL.Path)
|
2015-07-16 20:22:45 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if objectResourcesMetadata.MaxParts < 0 {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidMaxParts, r.URL.Path)
|
2015-07-16 20:22:45 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
if objectResourcesMetadata.MaxParts == 0 {
|
|
|
|
objectResourcesMetadata.MaxParts = maxPartsList
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
objectResourcesMetadata, err := api.Filesystem.ListObjectParts(bucket, object, objectResourcesMetadata)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "ListObjectParts failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchUpload, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
response := generateListPartsResponse(objectResourcesMetadata)
|
2016-03-06 15:16:22 -05:00
|
|
|
encodedSuccessResponse := encodeResponse(response)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
// Write headers.
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
// Write success response.
|
2016-01-08 03:40:06 -05:00
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-09 14:41:26 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// CompleteMultipartUploadHandler - Complete multipart upload
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) CompleteMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-05-07 22:55:30 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
2015-06-30 17:42:29 -04:00
|
|
|
|
2016-03-02 14:22:58 -05:00
|
|
|
// Extract object resources.
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set http request for signature.
|
2016-02-16 21:50:36 -05:00
|
|
|
auth := api.Signature.SetHTTPRequestToVerify(r)
|
2016-03-02 14:22:58 -05:00
|
|
|
|
2016-03-11 19:31:24 -05:00
|
|
|
var objectInfo fs.ObjectInfo
|
2016-03-02 14:22:58 -05:00
|
|
|
var err *probe.Error
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
default:
|
|
|
|
// For all unknown auth types return error.
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrAccessDenied, r.URL.Path)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
return
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:PutObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Complete multipart upload anonymous.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, r.Body, nil)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
case authTypePresigned:
|
|
|
|
// For presigned requests verify right here.
|
2016-03-02 14:22:58 -05:00
|
|
|
var ok bool
|
|
|
|
ok, err = auth.DoesPresignedSignatureMatch()
|
2016-02-16 21:50:36 -05:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(r.URL.String()), "Presigned signature verification failed.", nil)
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if !ok {
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2016-02-16 21:50:36 -05:00
|
|
|
return
|
|
|
|
}
|
2016-03-02 14:22:58 -05:00
|
|
|
// Complete multipart upload presigned.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, r.Body, nil)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
case authTypeSigned:
|
2016-03-02 14:22:58 -05:00
|
|
|
// Complete multipart upload.
|
2016-03-11 19:31:24 -05:00
|
|
|
objectInfo, err = api.Filesystem.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, r.Body, &auth)
|
2016-02-16 21:50:36 -05:00
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CompleteMultipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchUpload, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidPart:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidPart, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidPartOrder:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidPartOrder, r.URL.Path)
|
2016-02-15 20:42:39 -05:00
|
|
|
case fs.SignDoesNotMatch:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrSignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrIncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.MalformedXML:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrMalformedXML, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-03-01 23:01:40 -05:00
|
|
|
// get object location.
|
|
|
|
location := getLocation(r)
|
|
|
|
// Generate complete multipart response.
|
2016-03-11 19:31:24 -05:00
|
|
|
response := generateCompleteMultpartUploadResponse(bucket, object, location, objectInfo.MD5Sum)
|
2016-03-06 15:16:22 -05:00
|
|
|
encodedSuccessResponse := encodeResponse(response)
|
2015-09-19 06:20:07 -04:00
|
|
|
// write headers
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2016-02-18 05:13:52 -05:00
|
|
|
/// Delete storageAPI
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2016-03-05 19:43:48 -05:00
|
|
|
// DeleteObjectHandler - delete an object
|
2016-02-18 05:13:52 -05:00
|
|
|
func (api storageAPI) DeleteObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-10-16 14:26:01 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
switch getRequestAuthType(r) {
|
|
|
|
default:
|
|
|
|
// For all unknown auth types return error.
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrAccessDenied, r.URL.Path)
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
return
|
|
|
|
case authTypeAnonymous:
|
|
|
|
// http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := enforceBucketPolicy("s3:DeleteObject", bucket, r.URL); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case authTypeSigned, authTypePresigned:
|
2016-03-10 05:24:52 -05:00
|
|
|
if s3Error := isReqAuthenticated(api.Signature, r); s3Error != ErrNone {
|
accessPolicy: Implement Put, Get, Delete access policy.
This patch implements Get,Put,Delete bucket policies
Supporting - http://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
Currently supports following actions.
"*": true,
"s3:*": true,
"s3:GetObject": true,
"s3:ListBucket": true,
"s3:PutObject": true,
"s3:CreateBucket": true,
"s3:GetBucketLocation": true,
"s3:DeleteBucket": true,
"s3:DeleteObject": true,
"s3:AbortMultipartUpload": true,
"s3:ListBucketMultipartUploads": true,
"s3:ListMultipartUploadParts": true,
following conditions for "StringEquals" and "StringNotEquals"
"s3:prefix", "s3:max-keys"
2016-02-03 19:46:56 -05:00
|
|
|
writeErrorResponse(w, r, s3Error, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-10-16 14:26:01 -04:00
|
|
|
err := api.Filesystem.DeleteObject(bucket, object)
|
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "DeleteObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
|
|
|
case fs.BucketNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrNoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
default:
|
2016-03-10 05:24:52 -05:00
|
|
|
writeErrorResponse(w, r, ErrInternalError, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-16 23:02:37 -04:00
|
|
|
writeSuccessNoContent(w)
|
2015-06-08 14:06:06 -04:00
|
|
|
}
|