2016-05-02 19:57:31 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2016 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-05-02 19:57:31 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
2016-10-02 18:51:49 -04:00
|
|
|
"hash"
|
2016-05-02 19:57:31 -04:00
|
|
|
"io"
|
|
|
|
"path"
|
2016-05-03 19:10:24 -04:00
|
|
|
"strings"
|
2016-05-20 23:48:47 -04:00
|
|
|
"time"
|
2016-12-19 22:32:55 -05:00
|
|
|
|
|
|
|
"github.com/minio/sha256-simd"
|
2016-05-02 19:57:31 -04:00
|
|
|
)
|
|
|
|
|
2016-05-30 19:51:59 -04:00
|
|
|
// listMultipartUploads - lists all multipart uploads.
|
|
|
|
func (fs fsObjects) listMultipartUploads(bucket, prefix, keyMarker, uploadIDMarker, delimiter string, maxUploads int) (ListMultipartsInfo, error) {
|
2016-05-03 19:10:24 -04:00
|
|
|
result := ListMultipartsInfo{}
|
|
|
|
recursive := true
|
|
|
|
if delimiter == slashSeparator {
|
|
|
|
recursive = false
|
|
|
|
}
|
|
|
|
|
|
|
|
result.IsTruncated = true
|
|
|
|
result.MaxUploads = maxUploads
|
2016-05-26 17:43:17 -04:00
|
|
|
result.KeyMarker = keyMarker
|
|
|
|
result.Prefix = prefix
|
|
|
|
result.Delimiter = delimiter
|
2016-05-03 19:10:24 -04:00
|
|
|
|
|
|
|
// Not using path.Join() as it strips off the trailing '/'.
|
2016-11-22 16:15:06 -05:00
|
|
|
multipartPrefixPath := pathJoin(bucket, prefix)
|
2016-05-17 14:44:32 -04:00
|
|
|
if prefix == "" {
|
|
|
|
// Should have a trailing "/" if prefix is ""
|
|
|
|
// For ex. multipartPrefixPath should be "multipart/bucket/" if prefix is ""
|
|
|
|
multipartPrefixPath += slashSeparator
|
|
|
|
}
|
2016-05-03 19:10:24 -04:00
|
|
|
multipartMarkerPath := ""
|
|
|
|
if keyMarker != "" {
|
2016-11-22 16:15:06 -05:00
|
|
|
multipartMarkerPath = pathJoin(bucket, keyMarker)
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
var uploads []uploadMetadata
|
|
|
|
var err error
|
|
|
|
var eof bool
|
|
|
|
if uploadIDMarker != "" {
|
2016-12-10 19:15:12 -05:00
|
|
|
keyMarkerLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, keyMarker))
|
2016-11-09 13:58:41 -05:00
|
|
|
keyMarkerLock.RLock()
|
2016-05-26 17:43:17 -04:00
|
|
|
uploads, _, err = listMultipartUploadIDs(bucket, keyMarker, uploadIDMarker, maxUploads, fs.storage)
|
2016-11-09 13:58:41 -05:00
|
|
|
keyMarkerLock.RUnlock()
|
2016-05-26 17:43:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return ListMultipartsInfo{}, err
|
|
|
|
}
|
|
|
|
maxUploads = maxUploads - len(uploads)
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
2016-07-07 12:06:35 -04:00
|
|
|
var walkResultCh chan treeWalkResult
|
|
|
|
var endWalkCh chan struct{}
|
2016-08-17 14:36:33 -04:00
|
|
|
heal := false // true only for xl.ListObjectsHeal()
|
2016-05-26 17:43:17 -04:00
|
|
|
if maxUploads > 0 {
|
2016-11-22 16:15:06 -05:00
|
|
|
walkResultCh, endWalkCh = fs.listPool.Release(listParams{minioMetaMultipartBucket, recursive, multipartMarkerPath, multipartPrefixPath, heal})
|
2016-06-24 19:41:57 -04:00
|
|
|
if walkResultCh == nil {
|
|
|
|
endWalkCh = make(chan struct{})
|
2016-07-17 18:16:52 -04:00
|
|
|
isLeaf := fs.isMultipartUpload
|
2016-09-15 16:43:40 -04:00
|
|
|
listDir := listDirFactory(isLeaf, fsTreeWalkIgnoredErrs, fs.storage)
|
2016-11-22 16:15:06 -05:00
|
|
|
walkResultCh = startTreeWalk(minioMetaMultipartBucket, multipartPrefixPath, multipartMarkerPath, recursive, listDir, isLeaf, endWalkCh)
|
2016-05-26 17:43:17 -04:00
|
|
|
}
|
|
|
|
for maxUploads > 0 {
|
2016-06-24 19:41:57 -04:00
|
|
|
walkResult, ok := <-walkResultCh
|
2016-05-26 17:43:17 -04:00
|
|
|
if !ok {
|
|
|
|
// Closed channel.
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// For any walk error return right away.
|
|
|
|
if walkResult.err != nil {
|
|
|
|
// File not found or Disk not found is a valid case.
|
2016-11-23 23:05:04 -05:00
|
|
|
if isErrIgnored(walkResult.err, fsTreeWalkIgnoredErrs...) {
|
2016-05-26 17:43:17 -04:00
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
2016-08-25 12:39:01 -04:00
|
|
|
return ListMultipartsInfo{}, walkResult.err
|
2016-05-26 17:43:17 -04:00
|
|
|
}
|
2016-11-22 16:15:06 -05:00
|
|
|
entry := strings.TrimPrefix(walkResult.entry, retainSlash(bucket))
|
2016-05-26 17:43:17 -04:00
|
|
|
if strings.HasSuffix(walkResult.entry, slashSeparator) {
|
|
|
|
uploads = append(uploads, uploadMetadata{
|
|
|
|
Object: entry,
|
|
|
|
})
|
|
|
|
maxUploads--
|
|
|
|
if maxUploads == 0 {
|
|
|
|
if walkResult.end {
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var tmpUploads []uploadMetadata
|
|
|
|
var end bool
|
|
|
|
uploadIDMarker = ""
|
2016-08-31 14:39:08 -04:00
|
|
|
|
2016-12-10 19:15:12 -05:00
|
|
|
entryLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, entry))
|
2016-11-09 13:58:41 -05:00
|
|
|
entryLock.RLock()
|
2016-05-26 17:43:17 -04:00
|
|
|
tmpUploads, end, err = listMultipartUploadIDs(bucket, entry, uploadIDMarker, maxUploads, fs.storage)
|
2016-11-09 13:58:41 -05:00
|
|
|
entryLock.RUnlock()
|
2016-05-26 17:43:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return ListMultipartsInfo{}, err
|
|
|
|
}
|
|
|
|
uploads = append(uploads, tmpUploads...)
|
|
|
|
maxUploads -= len(tmpUploads)
|
|
|
|
if walkResult.end && end {
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Loop through all the received uploads fill in the multiparts result.
|
|
|
|
for _, upload := range uploads {
|
2016-05-03 19:10:24 -04:00
|
|
|
var objectName string
|
|
|
|
var uploadID string
|
2016-05-26 17:43:17 -04:00
|
|
|
if strings.HasSuffix(upload.Object, slashSeparator) {
|
2016-05-03 19:10:24 -04:00
|
|
|
// All directory entries are common prefixes.
|
|
|
|
uploadID = "" // Upload ids are empty for CommonPrefixes.
|
2016-05-26 17:43:17 -04:00
|
|
|
objectName = upload.Object
|
2016-05-03 19:10:24 -04:00
|
|
|
result.CommonPrefixes = append(result.CommonPrefixes, objectName)
|
|
|
|
} else {
|
2016-05-26 17:43:17 -04:00
|
|
|
uploadID = upload.UploadID
|
|
|
|
objectName = upload.Object
|
|
|
|
result.Uploads = append(result.Uploads, upload)
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
|
|
|
result.NextKeyMarker = objectName
|
|
|
|
result.NextUploadIDMarker = uploadID
|
|
|
|
}
|
2016-07-07 12:06:35 -04:00
|
|
|
|
|
|
|
if !eof {
|
|
|
|
// Save the go-routine state in the pool so that it can continue from where it left off on
|
|
|
|
// the next request.
|
2016-08-17 14:36:33 -04:00
|
|
|
fs.listPool.Set(listParams{bucket, recursive, result.NextKeyMarker, prefix, heal}, walkResultCh, endWalkCh)
|
2016-07-07 12:06:35 -04:00
|
|
|
}
|
|
|
|
|
2016-05-03 19:10:24 -04:00
|
|
|
result.IsTruncated = !eof
|
|
|
|
if !result.IsTruncated {
|
|
|
|
result.NextKeyMarker = ""
|
|
|
|
result.NextUploadIDMarker = ""
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// ListMultipartUploads - lists all the pending multipart uploads on a
|
|
|
|
// bucket. Additionally takes 'prefix, keyMarker, uploadIDmarker and a
|
|
|
|
// delimiter' which allows us to list uploads match a particular
|
|
|
|
// prefix or lexically starting from 'keyMarker' or delimiting the
|
|
|
|
// output to get a directory like listing.
|
|
|
|
//
|
|
|
|
// Implements S3 compatible ListMultipartUploads API. The resulting
|
|
|
|
// ListMultipartsInfo structure is unmarshalled directly into XML and
|
|
|
|
// replied back to the client.
|
2016-05-20 23:48:47 -04:00
|
|
|
func (fs fsObjects) ListMultipartUploads(bucket, prefix, keyMarker, uploadIDMarker, delimiter string, maxUploads int) (ListMultipartsInfo, error) {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkListMultipartArgs(bucket, prefix, keyMarker, uploadIDMarker, delimiter, fs); err != nil {
|
|
|
|
return ListMultipartsInfo{}, err
|
2016-06-02 15:18:56 -04:00
|
|
|
}
|
2016-05-30 19:51:59 -04:00
|
|
|
return fs.listMultipartUploads(bucket, prefix, keyMarker, uploadIDMarker, delimiter, maxUploads)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// newMultipartUpload - wrapper for initializing a new multipart
|
|
|
|
// request, returns back a unique upload id.
|
|
|
|
//
|
|
|
|
// Internally this function creates 'uploads.json' associated for the
|
2016-09-06 23:31:50 -04:00
|
|
|
// incoming object at '.minio.sys/multipart/bucket/object/uploads.json' on
|
2016-06-02 15:18:56 -04:00
|
|
|
// all the disks. `uploads.json` carries metadata regarding on going
|
|
|
|
// multipart operation on the object.
|
|
|
|
func (fs fsObjects) newMultipartUpload(bucket string, object string, meta map[string]string) (uploadID string, err error) {
|
|
|
|
// Initialize `fs.json` values.
|
|
|
|
fsMeta := newFSMetaV1()
|
2016-08-17 16:26:08 -04:00
|
|
|
|
2016-11-11 19:36:07 -05:00
|
|
|
// Save additional metadata.
|
|
|
|
fsMeta.Meta = meta
|
2016-06-02 15:18:56 -04:00
|
|
|
|
2016-11-09 13:58:41 -05:00
|
|
|
// This lock needs to be held for any changes to the directory
|
|
|
|
// contents of ".minio.sys/multipart/object/"
|
2016-12-10 19:15:12 -05:00
|
|
|
objectMPartPathLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, object))
|
2016-11-09 13:58:41 -05:00
|
|
|
objectMPartPathLock.Lock()
|
|
|
|
defer objectMPartPathLock.Unlock()
|
2016-06-02 15:18:56 -04:00
|
|
|
|
2016-11-22 19:52:37 -05:00
|
|
|
uploadID = mustGetUUID()
|
2016-06-02 15:18:56 -04:00
|
|
|
initiated := time.Now().UTC()
|
2016-11-22 18:29:39 -05:00
|
|
|
// Add upload ID to uploads.json
|
|
|
|
if err = fs.addUploadID(bucket, object, uploadID, initiated); err != nil {
|
2016-06-02 15:18:56 -04:00
|
|
|
return "", err
|
|
|
|
}
|
2016-11-22 16:15:06 -05:00
|
|
|
uploadIDPath := path.Join(bucket, object, uploadID)
|
|
|
|
if err = writeFSMetadata(fs.storage, minioMetaMultipartBucket, path.Join(uploadIDPath, fsMetaJSONFile), fsMeta); err != nil {
|
|
|
|
return "", toObjectErr(err, minioMetaMultipartBucket, uploadIDPath)
|
2016-06-02 15:18:56 -04:00
|
|
|
}
|
|
|
|
// Return success.
|
|
|
|
return uploadID, nil
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// NewMultipartUpload - initialize a new multipart upload, returns a
|
|
|
|
// unique id. The unique id returned here is of UUID form, for each
|
|
|
|
// subsequent request each UUID is unique.
|
|
|
|
//
|
|
|
|
// Implements S3 compatible initiate multipart API.
|
|
|
|
func (fs fsObjects) NewMultipartUpload(bucket, object string, meta map[string]string) (string, error) {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkNewMultipartArgs(bucket, object, fs); err != nil {
|
|
|
|
return "", err
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-06-02 15:18:56 -04:00
|
|
|
return fs.newMultipartUpload(bucket, object, meta)
|
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-08-31 16:42:57 -04:00
|
|
|
// Returns if a new part can be appended to fsAppendDataFile.
|
|
|
|
func partToAppend(fsMeta fsMetaV1, fsAppendMeta fsMetaV1) (part objectPartInfo, appendNeeded bool) {
|
|
|
|
if len(fsMeta.Parts) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// As fsAppendMeta.Parts will be sorted len(fsAppendMeta.Parts) will naturally be the next part number
|
|
|
|
nextPartNum := len(fsAppendMeta.Parts) + 1
|
|
|
|
nextPartIndex := fsMeta.ObjectPartIndex(nextPartNum)
|
|
|
|
if nextPartIndex == -1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return fsMeta.Parts[nextPartIndex], true
|
|
|
|
}
|
|
|
|
|
2016-06-02 18:19:13 -04:00
|
|
|
// PutObjectPart - reads incoming data until EOF for the part file on
|
2016-06-02 15:18:56 -04:00
|
|
|
// an ongoing multipart transaction. Internally incoming data is
|
2016-09-06 23:31:50 -04:00
|
|
|
// written to '.minio.sys/tmp' location and safely renamed to
|
|
|
|
// '.minio.sys/multipart' for reach parts.
|
2016-10-02 18:51:49 -04:00
|
|
|
func (fs fsObjects) PutObjectPart(bucket, object, uploadID string, partID int, size int64, data io.Reader, md5Hex string, sha256sum string) (string, error) {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkPutObjectPartArgs(bucket, object, fs); err != nil {
|
|
|
|
return "", err
|
2016-06-02 18:19:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-22 16:15:06 -05:00
|
|
|
uploadIDPath := path.Join(bucket, object, uploadID)
|
2016-06-02 18:19:13 -04:00
|
|
|
|
2016-12-10 19:15:12 -05:00
|
|
|
preUploadIDLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket, uploadIDPath)
|
2016-11-09 13:58:41 -05:00
|
|
|
preUploadIDLock.RLock()
|
2016-06-02 18:19:13 -04:00
|
|
|
// Just check if the uploadID exists to avoid copy if it doesn't.
|
|
|
|
uploadIDExists := fs.isUploadIDExists(bucket, object, uploadID)
|
2016-11-09 13:58:41 -05:00
|
|
|
preUploadIDLock.RUnlock()
|
2016-06-02 18:19:13 -04:00
|
|
|
if !uploadIDExists {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(InvalidUploadID{UploadID: uploadID})
|
2016-06-02 18:19:13 -04:00
|
|
|
}
|
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
partSuffix := fmt.Sprintf("object%d", partID)
|
2016-11-22 19:52:37 -05:00
|
|
|
tmpPartPath := uploadID + "." + mustGetUUID() + "." + partSuffix
|
2016-05-20 23:48:47 -04:00
|
|
|
|
|
|
|
// Initialize md5 writer.
|
|
|
|
md5Writer := md5.New()
|
|
|
|
|
2016-10-02 18:51:49 -04:00
|
|
|
hashWriters := []io.Writer{md5Writer}
|
|
|
|
|
|
|
|
var sha256Writer hash.Hash
|
|
|
|
if sha256sum != "" {
|
|
|
|
sha256Writer = sha256.New()
|
|
|
|
hashWriters = append(hashWriters, sha256Writer)
|
|
|
|
}
|
|
|
|
multiWriter := io.MultiWriter(hashWriters...)
|
2016-07-05 04:04:50 -04:00
|
|
|
// Limit the reader to its provided size if specified.
|
|
|
|
var limitDataReader io.Reader
|
|
|
|
if size > 0 {
|
|
|
|
// This is done so that we can avoid erroneous clients sending more data than the set content size.
|
|
|
|
limitDataReader = io.LimitReader(data, size)
|
|
|
|
} else {
|
|
|
|
// else we read till EOF.
|
|
|
|
limitDataReader = data
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:51:49 -04:00
|
|
|
teeReader := io.TeeReader(limitDataReader, multiWriter)
|
2016-07-05 23:59:54 -04:00
|
|
|
bufSize := int64(readSizeV1)
|
|
|
|
if size > 0 && bufSize > size {
|
|
|
|
bufSize = size
|
|
|
|
}
|
2016-07-18 22:06:48 -04:00
|
|
|
buf := make([]byte, int(bufSize))
|
2016-10-29 15:44:44 -04:00
|
|
|
|
|
|
|
if size > 0 {
|
|
|
|
// Prepare file to avoid disk fragmentation
|
2016-11-20 17:25:43 -05:00
|
|
|
err := fs.storage.PrepareFile(minioMetaTmpBucket, tmpPartPath, size)
|
2016-10-29 15:44:44 -04:00
|
|
|
if err != nil {
|
2016-11-20 17:25:43 -05:00
|
|
|
return "", toObjectErr(err, minioMetaTmpBucket, tmpPartPath)
|
2016-10-29 15:44:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 17:25:43 -05:00
|
|
|
bytesWritten, cErr := fsCreateFile(fs.storage, teeReader, buf, minioMetaTmpBucket, tmpPartPath)
|
2016-07-18 22:06:48 -04:00
|
|
|
if cErr != nil {
|
2016-11-20 17:25:43 -05:00
|
|
|
fs.storage.DeleteFile(minioMetaTmpBucket, tmpPartPath)
|
|
|
|
return "", toObjectErr(cErr, minioMetaTmpBucket, tmpPartPath)
|
2016-07-18 22:06:48 -04:00
|
|
|
}
|
2016-12-03 14:53:12 -05:00
|
|
|
|
2016-07-18 22:06:48 -04:00
|
|
|
// Should return IncompleteBody{} error when reader has fewer
|
|
|
|
// bytes than specified in request header.
|
|
|
|
if bytesWritten < size {
|
2016-11-20 17:25:43 -05:00
|
|
|
fs.storage.DeleteFile(minioMetaTmpBucket, tmpPartPath)
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(IncompleteBody{})
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-10-20 01:52:03 -04:00
|
|
|
// Delete temporary part in case of failure. If
|
|
|
|
// PutObjectPart succeeds then there would be nothing to
|
|
|
|
// delete.
|
2016-11-20 17:25:43 -05:00
|
|
|
defer fs.storage.DeleteFile(minioMetaTmpBucket, tmpPartPath)
|
2016-10-20 01:52:03 -04:00
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
newMD5Hex := hex.EncodeToString(md5Writer.Sum(nil))
|
|
|
|
if md5Hex != "" {
|
|
|
|
if newMD5Hex != md5Hex {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(BadDigest{md5Hex, newMD5Hex})
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:51:49 -04:00
|
|
|
if sha256sum != "" {
|
|
|
|
newSHA256sum := hex.EncodeToString(sha256Writer.Sum(nil))
|
|
|
|
if newSHA256sum != sha256sum {
|
|
|
|
return "", traceError(SHA256Mismatch{})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 18:19:13 -04:00
|
|
|
// Hold write lock as we are updating fs.json
|
2016-12-10 19:15:12 -05:00
|
|
|
postUploadIDLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket, uploadIDPath)
|
2016-11-09 13:58:41 -05:00
|
|
|
postUploadIDLock.Lock()
|
|
|
|
defer postUploadIDLock.Unlock()
|
2016-06-02 18:19:13 -04:00
|
|
|
|
|
|
|
// Just check if the uploadID exists to avoid copy if it doesn't.
|
|
|
|
if !fs.isUploadIDExists(bucket, object, uploadID) {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(InvalidUploadID{UploadID: uploadID})
|
2016-06-02 18:19:13 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 16:42:57 -04:00
|
|
|
fsMetaPath := pathJoin(uploadIDPath, fsMetaJSONFile)
|
2016-11-22 16:15:06 -05:00
|
|
|
fsMeta, err := readFSMetadata(fs.storage, minioMetaMultipartBucket, fsMetaPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
if err != nil {
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(err, minioMetaMultipartBucket, fsMetaPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-25 00:24:20 -04:00
|
|
|
fsMeta.AddObjectPart(partID, partSuffix, newMD5Hex, size)
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-11-22 16:15:06 -05:00
|
|
|
partPath := path.Join(bucket, object, uploadID, partSuffix)
|
2016-11-23 15:50:09 -05:00
|
|
|
// Lock the part so that another part upload with same part-number gets blocked
|
|
|
|
// while the part is getting appended in the background.
|
2016-12-10 19:15:12 -05:00
|
|
|
partLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket, partPath)
|
2016-11-23 15:50:09 -05:00
|
|
|
partLock.Lock()
|
2016-11-22 16:15:06 -05:00
|
|
|
err = fs.storage.RenameFile(minioMetaTmpBucket, tmpPartPath, minioMetaMultipartBucket, partPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
if err != nil {
|
2016-11-23 15:50:09 -05:00
|
|
|
partLock.Unlock()
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(traceError(err), minioMetaMultipartBucket, partPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-11-22 16:15:06 -05:00
|
|
|
uploadIDPath = path.Join(bucket, object, uploadID)
|
|
|
|
if err = writeFSMetadata(fs.storage, minioMetaMultipartBucket, path.Join(uploadIDPath, fsMetaJSONFile), fsMeta); err != nil {
|
2016-11-23 15:50:09 -05:00
|
|
|
partLock.Unlock()
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(err, minioMetaMultipartBucket, uploadIDPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-11-21 02:42:53 -05:00
|
|
|
|
2016-12-09 19:10:18 -05:00
|
|
|
// Append the part in background.
|
|
|
|
errCh := fs.bgAppend.append(fs.storage, bucket, object, uploadID, fsMeta)
|
2016-11-23 15:50:09 -05:00
|
|
|
go func() {
|
|
|
|
// Also receive the error so that the appendParts go-routine does not block on send.
|
|
|
|
// But the error received is ignored as fs.PutObjectPart() would have already
|
|
|
|
// returned success to the client.
|
|
|
|
<-errCh
|
|
|
|
partLock.Unlock()
|
|
|
|
}()
|
2016-11-21 02:42:53 -05:00
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
return newMD5Hex, nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// listObjectParts - wrapper scanning through
|
2016-09-06 23:31:50 -04:00
|
|
|
// '.minio.sys/multipart/bucket/object/UPLOADID'. Lists all the parts
|
|
|
|
// saved inside '.minio.sys/multipart/bucket/object/UPLOADID'.
|
2016-06-02 15:18:56 -04:00
|
|
|
func (fs fsObjects) listObjectParts(bucket, object, uploadID string, partNumberMarker, maxParts int) (ListPartsInfo, error) {
|
2016-05-03 19:10:24 -04:00
|
|
|
result := ListPartsInfo{}
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-11-22 16:15:06 -05:00
|
|
|
fsMetaPath := path.Join(bucket, object, uploadID, fsMetaJSONFile)
|
|
|
|
fsMeta, err := readFSMetadata(fs.storage, minioMetaMultipartBucket, fsMetaPath)
|
2016-05-03 19:10:24 -04:00
|
|
|
if err != nil {
|
2016-08-31 16:42:57 -04:00
|
|
|
return ListPartsInfo{}, toObjectErr(err, minioMetaBucket, fsMetaPath)
|
2016-05-05 15:51:56 -04:00
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
// Only parts with higher part numbers will be listed.
|
2016-05-26 06:15:01 -04:00
|
|
|
partIdx := fsMeta.ObjectPartIndex(partNumberMarker)
|
2016-05-25 00:24:20 -04:00
|
|
|
parts := fsMeta.Parts
|
|
|
|
if partIdx != -1 {
|
|
|
|
parts = fsMeta.Parts[partIdx+1:]
|
|
|
|
}
|
2016-05-05 15:51:56 -04:00
|
|
|
count := maxParts
|
2016-05-25 00:24:20 -04:00
|
|
|
for _, part := range parts {
|
2016-05-20 23:48:47 -04:00
|
|
|
var fi FileInfo
|
2016-11-22 16:15:06 -05:00
|
|
|
partNamePath := path.Join(bucket, object, uploadID, part.Name)
|
|
|
|
fi, err = fs.storage.StatFile(minioMetaMultipartBucket, partNamePath)
|
2016-05-03 19:10:24 -04:00
|
|
|
if err != nil {
|
2016-11-22 16:15:06 -05:00
|
|
|
return ListPartsInfo{}, toObjectErr(traceError(err), minioMetaMultipartBucket, partNamePath)
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
|
|
|
result.Parts = append(result.Parts, partInfo{
|
2016-05-25 00:24:20 -04:00
|
|
|
PartNumber: part.Number,
|
2016-05-20 23:48:47 -04:00
|
|
|
ETag: part.ETag,
|
2016-05-05 15:51:56 -04:00
|
|
|
LastModified: fi.ModTime,
|
|
|
|
Size: fi.Size,
|
2016-05-03 19:10:24 -04:00
|
|
|
})
|
2016-05-05 15:51:56 -04:00
|
|
|
count--
|
|
|
|
if count == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-05-08 05:21:12 -04:00
|
|
|
// If listed entries are more than maxParts, we set IsTruncated as true.
|
2016-05-20 23:48:47 -04:00
|
|
|
if len(parts) > len(result.Parts) {
|
2016-05-05 15:51:56 -04:00
|
|
|
result.IsTruncated = true
|
2016-05-08 05:21:12 -04:00
|
|
|
// Make sure to fill next part number marker if IsTruncated is
|
|
|
|
// true for subsequent listing.
|
|
|
|
nextPartNumberMarker := result.Parts[len(result.Parts)-1].PartNumber
|
|
|
|
result.NextPartNumberMarker = nextPartNumberMarker
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
|
|
|
result.Bucket = bucket
|
|
|
|
result.Object = object
|
|
|
|
result.UploadID = uploadID
|
|
|
|
result.MaxParts = maxParts
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// ListObjectParts - lists all previously uploaded parts for a given
|
|
|
|
// object and uploadID. Takes additional input of part-number-marker
|
|
|
|
// to indicate where the listing should begin from.
|
|
|
|
//
|
|
|
|
// Implements S3 compatible ListObjectParts API. The resulting
|
|
|
|
// ListPartsInfo structure is unmarshalled directly into XML and
|
|
|
|
// replied back to the client.
|
2016-05-20 23:48:47 -04:00
|
|
|
func (fs fsObjects) ListObjectParts(bucket, object, uploadID string, partNumberMarker, maxParts int) (ListPartsInfo, error) {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkListPartsArgs(bucket, object, fs); err != nil {
|
|
|
|
return ListPartsInfo{}, err
|
2016-06-02 15:18:56 -04:00
|
|
|
}
|
2016-08-31 14:39:08 -04:00
|
|
|
|
2016-11-09 13:58:41 -05:00
|
|
|
// Hold lock so that there is no competing
|
|
|
|
// abort-multipart-upload or complete-multipart-upload.
|
2016-12-10 19:15:12 -05:00
|
|
|
uploadIDLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, object, uploadID))
|
2016-11-09 13:58:41 -05:00
|
|
|
uploadIDLock.Lock()
|
|
|
|
defer uploadIDLock.Unlock()
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
if !fs.isUploadIDExists(bucket, object, uploadID) {
|
2016-08-25 12:39:01 -04:00
|
|
|
return ListPartsInfo{}, traceError(InvalidUploadID{UploadID: uploadID})
|
2016-05-03 19:10:24 -04:00
|
|
|
}
|
2016-06-02 15:18:56 -04:00
|
|
|
return fs.listObjectParts(bucket, object, uploadID, partNumberMarker, maxParts)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-10-29 15:44:44 -04:00
|
|
|
func (fs fsObjects) totalObjectSize(fsMeta fsMetaV1, parts []completePart) (int64, error) {
|
|
|
|
objSize := int64(0)
|
|
|
|
for _, part := range parts {
|
|
|
|
partIdx := fsMeta.ObjectPartIndex(part.PartNumber)
|
|
|
|
if partIdx == -1 {
|
|
|
|
return 0, InvalidPart{}
|
|
|
|
}
|
|
|
|
objSize += fsMeta.Parts[partIdx].Size
|
|
|
|
}
|
|
|
|
return objSize, nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// CompleteMultipartUpload - completes an ongoing multipart
|
|
|
|
// transaction after receiving all the parts indicated by the client.
|
|
|
|
// Returns an md5sum calculated by concatenating all the individual
|
|
|
|
// md5sums of all the parts.
|
|
|
|
//
|
|
|
|
// Implements S3 compatible Complete multipart API.
|
2016-05-20 23:48:47 -04:00
|
|
|
func (fs fsObjects) CompleteMultipartUpload(bucket string, object string, uploadID string, parts []completePart) (string, error) {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkCompleteMultipartArgs(bucket, object, fs); err != nil {
|
|
|
|
return "", err
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-06-02 15:18:56 -04:00
|
|
|
|
2016-11-22 16:15:06 -05:00
|
|
|
uploadIDPath := path.Join(bucket, object, uploadID)
|
2016-08-31 14:39:08 -04:00
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// Hold lock so that
|
|
|
|
// 1) no one aborts this multipart upload
|
|
|
|
// 2) no one does a parallel complete-multipart-upload on this
|
|
|
|
// multipart upload
|
2016-12-10 19:15:12 -05:00
|
|
|
uploadIDLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket, uploadIDPath)
|
2016-11-09 13:58:41 -05:00
|
|
|
uploadIDLock.Lock()
|
|
|
|
defer uploadIDLock.Unlock()
|
2016-06-02 15:18:56 -04:00
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
if !fs.isUploadIDExists(bucket, object, uploadID) {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(InvalidUploadID{UploadID: uploadID})
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate s3 compatible md5sum for complete multipart.
|
2016-11-10 10:41:02 -05:00
|
|
|
s3MD5, err := getCompleteMultipartMD5(parts)
|
2016-05-20 23:48:47 -04:00
|
|
|
if err != nil {
|
2016-09-15 00:24:54 -04:00
|
|
|
return "", err
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 16:42:57 -04:00
|
|
|
// Read saved fs metadata for ongoing multipart.
|
|
|
|
fsMetaPath := pathJoin(uploadIDPath, fsMetaJSONFile)
|
2016-11-22 16:15:06 -05:00
|
|
|
fsMeta, err := readFSMetadata(fs.storage, minioMetaMultipartBucket, fsMetaPath)
|
2016-08-31 16:42:57 -04:00
|
|
|
if err != nil {
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(err, minioMetaMultipartBucket, fsMetaPath)
|
2016-08-31 16:42:57 -04:00
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-11-30 02:26:36 -05:00
|
|
|
// This lock is held during rename of the appended tmp file to the actual
|
|
|
|
// location so that any competing GetObject/PutObject/DeleteObject do not race.
|
2016-11-23 06:04:04 -05:00
|
|
|
appendFallback := true // In case background-append did not append the required parts.
|
2016-11-21 02:42:53 -05:00
|
|
|
if isPartsSame(fsMeta.Parts, parts) {
|
|
|
|
err = fs.bgAppend.complete(fs.storage, bucket, object, uploadID, fsMeta)
|
|
|
|
if err == nil {
|
|
|
|
appendFallback = false
|
2016-11-23 06:04:04 -05:00
|
|
|
if err = fs.storage.RenameFile(minioMetaTmpBucket, uploadID, bucket, object); err != nil {
|
|
|
|
return "", toObjectErr(traceError(err), minioMetaTmpBucket, uploadID)
|
2016-11-21 02:42:53 -05:00
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-11-21 02:42:53 -05:00
|
|
|
}
|
2016-11-01 03:56:03 -04:00
|
|
|
|
2016-11-21 02:42:53 -05:00
|
|
|
if appendFallback {
|
2016-11-23 06:04:04 -05:00
|
|
|
// background append could not do append all the required parts, hence we do it here.
|
|
|
|
tempObj := uploadID + "-" + "part.1"
|
2016-08-31 16:42:57 -04:00
|
|
|
|
|
|
|
// Allocate staging buffer.
|
|
|
|
var buf = make([]byte, readSizeV1)
|
2016-10-29 15:44:44 -04:00
|
|
|
var objSize int64
|
|
|
|
|
|
|
|
objSize, err = fs.totalObjectSize(fsMeta, parts)
|
|
|
|
if err != nil {
|
|
|
|
return "", traceError(err)
|
|
|
|
}
|
|
|
|
if objSize > 0 {
|
|
|
|
// Prepare file to avoid disk fragmentation
|
2016-11-20 17:25:43 -05:00
|
|
|
err = fs.storage.PrepareFile(minioMetaTmpBucket, tempObj, objSize)
|
2016-10-29 15:44:44 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", traceError(err)
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
|
|
|
|
// Loop through all parts, validate them and then commit to disk.
|
|
|
|
for i, part := range parts {
|
|
|
|
partIdx := fsMeta.ObjectPartIndex(part.PartNumber)
|
|
|
|
if partIdx == -1 {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(InvalidPart{})
|
2016-06-28 17:51:49 -04:00
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
if fsMeta.Parts[partIdx].ETag != part.ETag {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(BadDigest{})
|
2016-06-25 06:03:27 -04:00
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
// All parts except the last part has to be atleast 5MB.
|
|
|
|
if (i < len(parts)-1) && !isMinAllowedPartSize(fsMeta.Parts[partIdx].Size) {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(PartTooSmall{
|
2016-08-31 16:42:57 -04:00
|
|
|
PartNumber: part.PartNumber,
|
|
|
|
PartSize: fsMeta.Parts[partIdx].Size,
|
|
|
|
PartETag: part.ETag,
|
2016-08-25 12:39:01 -04:00
|
|
|
})
|
2016-06-24 05:06:23 -04:00
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
// Construct part suffix.
|
|
|
|
partSuffix := fmt.Sprintf("object%d", part.PartNumber)
|
2016-11-22 16:15:06 -05:00
|
|
|
multipartPartFile := path.Join(bucket, object, uploadID, partSuffix)
|
2016-08-31 16:42:57 -04:00
|
|
|
offset := int64(0)
|
|
|
|
totalLeft := fsMeta.Parts[partIdx].Size
|
|
|
|
for totalLeft > 0 {
|
|
|
|
curLeft := int64(readSizeV1)
|
|
|
|
if totalLeft < readSizeV1 {
|
|
|
|
curLeft = totalLeft
|
|
|
|
}
|
|
|
|
var n int64
|
2016-11-22 16:15:06 -05:00
|
|
|
n, err = fs.storage.ReadFile(minioMetaMultipartBucket, multipartPartFile, offset, buf[:curLeft])
|
2016-08-31 16:42:57 -04:00
|
|
|
if n > 0 {
|
2016-11-20 17:25:43 -05:00
|
|
|
if err = fs.storage.AppendFile(minioMetaTmpBucket, tempObj, buf[:n]); err != nil {
|
|
|
|
return "", toObjectErr(traceError(err), minioMetaTmpBucket, tempObj)
|
2016-08-31 16:42:57 -04:00
|
|
|
}
|
2016-06-24 05:06:23 -04:00
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF || err == io.ErrUnexpectedEOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err == errFileNotFound {
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", traceError(InvalidPart{})
|
2016-08-31 16:42:57 -04:00
|
|
|
}
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(traceError(err), minioMetaMultipartBucket, multipartPartFile)
|
2016-05-28 18:13:15 -04:00
|
|
|
}
|
2016-08-31 16:42:57 -04:00
|
|
|
offset += n
|
|
|
|
totalLeft -= n
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:42:57 -04:00
|
|
|
// Rename the file back to original location, if not delete the temporary object.
|
2016-11-20 17:25:43 -05:00
|
|
|
err = fs.storage.RenameFile(minioMetaTmpBucket, tempObj, bucket, object)
|
2016-08-31 16:42:57 -04:00
|
|
|
if err != nil {
|
2016-11-20 17:25:43 -05:00
|
|
|
if dErr := fs.storage.DeleteFile(minioMetaTmpBucket, tempObj); dErr != nil {
|
|
|
|
return "", toObjectErr(traceError(dErr), minioMetaTmpBucket, tempObj)
|
2016-08-31 16:42:57 -04:00
|
|
|
}
|
2016-08-25 12:39:01 -04:00
|
|
|
return "", toObjectErr(traceError(err), bucket, object)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 20:31:14 -04:00
|
|
|
// No need to save part info, since we have concatenated all parts.
|
|
|
|
fsMeta.Parts = nil
|
|
|
|
|
2016-11-11 19:36:07 -05:00
|
|
|
// Save additional metadata.
|
|
|
|
if len(fsMeta.Meta) == 0 {
|
|
|
|
fsMeta.Meta = make(map[string]string)
|
|
|
|
}
|
|
|
|
fsMeta.Meta["md5Sum"] = s3MD5
|
2016-08-15 18:02:19 -04:00
|
|
|
|
2016-11-11 19:36:07 -05:00
|
|
|
fsMetaPath = path.Join(bucketMetaPrefix, bucket, object, fsMetaJSONFile)
|
|
|
|
// Write the metadata to a temp file and rename it to the actual location.
|
|
|
|
if err = writeFSMetadata(fs.storage, minioMetaBucket, fsMetaPath, fsMeta); err != nil {
|
|
|
|
return "", toObjectErr(err, bucket, object)
|
2016-07-21 20:31:14 -04:00
|
|
|
}
|
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
// Cleanup all the parts if everything else has been safely committed.
|
|
|
|
if err = cleanupUploadedParts(bucket, object, uploadID, fs.storage); err != nil {
|
2016-09-15 00:24:54 -04:00
|
|
|
return "", toObjectErr(err, bucket, object)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
2016-11-09 13:58:41 -05:00
|
|
|
// Hold the lock so that two parallel
|
|
|
|
// complete-multipart-uploads do not leave a stale
|
|
|
|
// uploads.json behind.
|
2016-12-10 19:15:12 -05:00
|
|
|
objectMPartPathLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, object))
|
2016-11-09 13:58:41 -05:00
|
|
|
objectMPartPathLock.Lock()
|
|
|
|
defer objectMPartPathLock.Unlock()
|
2016-06-02 18:54:00 -04:00
|
|
|
|
2016-10-30 12:27:29 -04:00
|
|
|
// remove entry from uploads.json
|
2016-11-22 18:29:39 -05:00
|
|
|
if err := fs.removeUploadID(bucket, object, uploadID); err != nil {
|
2016-11-22 16:15:06 -05:00
|
|
|
return "", toObjectErr(err, minioMetaMultipartBucket, path.Join(bucket, object))
|
2016-06-02 18:54:00 -04:00
|
|
|
}
|
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
// Return md5sum.
|
|
|
|
return s3MD5, nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// abortMultipartUpload - wrapper for purging an ongoing multipart
|
|
|
|
// transaction, deletes uploadID entry from `uploads.json` and purges
|
2016-09-06 23:31:50 -04:00
|
|
|
// the directory at '.minio.sys/multipart/bucket/object/uploadID' holding
|
2016-06-02 15:18:56 -04:00
|
|
|
// all the upload parts.
|
2016-05-30 19:51:59 -04:00
|
|
|
func (fs fsObjects) abortMultipartUpload(bucket, object, uploadID string) error {
|
2016-12-03 02:33:06 -05:00
|
|
|
// Signal appendParts routine to stop waiting for new parts to arrive.
|
|
|
|
fs.bgAppend.abort(uploadID)
|
2016-05-20 23:48:47 -04:00
|
|
|
// Cleanup all uploaded parts.
|
|
|
|
if err := cleanupUploadedParts(bucket, object, uploadID, fs.storage); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-11-23 06:04:04 -05:00
|
|
|
// remove entry from uploads.json with quorum
|
2016-11-22 18:29:39 -05:00
|
|
|
if err := fs.removeUploadID(bucket, object, uploadID); err != nil {
|
2016-10-30 12:27:29 -04:00
|
|
|
return toObjectErr(err, bucket, object)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-10-30 12:27:29 -04:00
|
|
|
|
|
|
|
// success
|
2016-05-20 23:48:47 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-02 15:18:56 -04:00
|
|
|
// AbortMultipartUpload - aborts an ongoing multipart operation
|
|
|
|
// signified by the input uploadID. This is an atomic operation
|
|
|
|
// doesn't require clients to initiate multiple such requests.
|
|
|
|
//
|
|
|
|
// All parts are purged from all disks and reference to the uploadID
|
|
|
|
// would be removed from the system, rollback is not possible on this
|
|
|
|
// operation.
|
|
|
|
//
|
|
|
|
// Implements S3 compatible Abort multipart API, slight difference is
|
|
|
|
// that this is an atomic idempotent operation. Subsequent calls have
|
|
|
|
// no affect and further requests to the same uploadID would not be
|
|
|
|
// honored.
|
2016-05-20 23:48:47 -04:00
|
|
|
func (fs fsObjects) AbortMultipartUpload(bucket, object, uploadID string) error {
|
2016-12-02 02:15:17 -05:00
|
|
|
if err := checkAbortMultipartArgs(bucket, object, fs); err != nil {
|
|
|
|
return err
|
2016-06-02 15:18:56 -04:00
|
|
|
}
|
|
|
|
|
2016-11-09 13:58:41 -05:00
|
|
|
// Hold lock so that there is no competing
|
|
|
|
// complete-multipart-upload or put-object-part.
|
2016-12-10 19:15:12 -05:00
|
|
|
uploadIDLock := globalNSMutex.NewNSLock(minioMetaMultipartBucket,
|
2016-11-22 16:15:06 -05:00
|
|
|
pathJoin(bucket, object, uploadID))
|
2016-11-09 13:58:41 -05:00
|
|
|
uploadIDLock.Lock()
|
|
|
|
defer uploadIDLock.Unlock()
|
2016-06-02 15:18:56 -04:00
|
|
|
|
|
|
|
if !fs.isUploadIDExists(bucket, object, uploadID) {
|
2016-08-25 12:39:01 -04:00
|
|
|
return traceError(InvalidUploadID{UploadID: uploadID})
|
2016-06-02 15:18:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
err := fs.abortMultipartUpload(bucket, object, uploadID)
|
|
|
|
return err
|
2016-05-02 19:57:31 -04:00
|
|
|
}
|