2015-04-05 04:53:41 -04:00
|
|
|
/*
|
|
|
|
* Minimalist Object Storage, (C) 2015 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package donut
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2015-04-07 00:42:54 -04:00
|
|
|
"hash"
|
2015-04-05 04:53:41 -04:00
|
|
|
"io"
|
2015-06-18 19:02:34 -04:00
|
|
|
"path/filepath"
|
2015-06-25 18:03:34 -04:00
|
|
|
"sort"
|
2015-04-05 04:53:41 -04:00
|
|
|
"strconv"
|
2015-04-07 00:42:54 -04:00
|
|
|
"strings"
|
2015-06-25 13:43:36 -04:00
|
|
|
"sync"
|
2015-06-24 23:42:36 -04:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"crypto/md5"
|
|
|
|
"encoding/hex"
|
|
|
|
"encoding/json"
|
2015-04-07 00:42:54 -04:00
|
|
|
|
2015-05-11 19:23:10 -04:00
|
|
|
"github.com/minio/minio/pkg/iodine"
|
2015-06-26 05:10:47 -04:00
|
|
|
"github.com/minio/minio/pkg/utils/crypto/sha512"
|
2015-05-11 19:23:10 -04:00
|
|
|
"github.com/minio/minio/pkg/utils/split"
|
2015-04-05 04:53:41 -04:00
|
|
|
)
|
|
|
|
|
2015-06-24 23:42:36 -04:00
|
|
|
// internal struct carrying bucket specific information
|
|
|
|
type bucket struct {
|
|
|
|
name string
|
|
|
|
acl string
|
|
|
|
time time.Time
|
|
|
|
donutName string
|
2015-06-25 15:55:13 -04:00
|
|
|
nodes map[string]node
|
2015-06-25 18:03:34 -04:00
|
|
|
objects map[string]object
|
2015-06-25 13:43:36 -04:00
|
|
|
lock *sync.RWMutex
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
|
|
|
|
2015-06-25 00:00:28 -04:00
|
|
|
// newBucket - instantiate a new bucket
|
2015-06-25 15:55:13 -04:00
|
|
|
func newBucket(bucketName, aclType, donutName string, nodes map[string]node) (bucket, map[string]string, error) {
|
2015-06-24 23:42:36 -04:00
|
|
|
errParams := map[string]string{
|
|
|
|
"bucketName": bucketName,
|
|
|
|
"donutName": donutName,
|
|
|
|
"aclType": aclType,
|
|
|
|
}
|
|
|
|
if strings.TrimSpace(bucketName) == "" || strings.TrimSpace(donutName) == "" {
|
|
|
|
return bucket{}, nil, iodine.New(InvalidArgument{}, errParams)
|
|
|
|
}
|
|
|
|
bucketMetadata := make(map[string]string)
|
|
|
|
bucketMetadata["acl"] = aclType
|
|
|
|
t := time.Now().UTC()
|
|
|
|
bucketMetadata["created"] = t.Format(time.RFC3339Nano)
|
|
|
|
b := bucket{}
|
|
|
|
b.name = bucketName
|
|
|
|
b.acl = aclType
|
|
|
|
b.time = t
|
|
|
|
b.donutName = donutName
|
|
|
|
b.nodes = nodes
|
2015-06-25 18:03:34 -04:00
|
|
|
b.objects = make(map[string]object)
|
2015-06-25 13:43:36 -04:00
|
|
|
b.lock = new(sync.RWMutex)
|
2015-06-24 23:42:36 -04:00
|
|
|
return b, bucketMetadata, nil
|
|
|
|
}
|
|
|
|
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) getBucketName() string {
|
|
|
|
return b.name
|
|
|
|
}
|
|
|
|
|
2015-06-25 18:03:34 -04:00
|
|
|
func (b bucket) getObjectName(fileName, diskPath, bucketPath string) (string, error) {
|
|
|
|
newObject, err := newObject(fileName, filepath.Join(diskPath, bucketPath))
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
newObjectMetadata, err := newObject.GetObjectMetadata()
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
if newObjectMetadata.Object == "" {
|
2015-06-25 18:03:34 -04:00
|
|
|
return "", iodine.New(ObjectCorrupted{Object: newObject.name}, nil)
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
b.objects[newObjectMetadata.Object] = newObject
|
|
|
|
return newObjectMetadata.Object, nil
|
2015-06-25 18:03:34 -04:00
|
|
|
}
|
|
|
|
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) GetObjectMetadata(objectName string) (*objectMetadata, error) {
|
2015-06-25 18:03:34 -04:00
|
|
|
return b.objects[objectName].GetObjectMetadata()
|
|
|
|
}
|
|
|
|
|
2015-06-24 23:42:36 -04:00
|
|
|
// ListObjects - list all objects
|
2015-06-25 18:03:34 -04:00
|
|
|
func (b bucket) ListObjects(prefix, marker, delimiter string, maxkeys int) ([]string, []string, bool, error) {
|
2015-06-25 13:43:36 -04:00
|
|
|
b.lock.RLock()
|
|
|
|
defer b.lock.RUnlock()
|
2015-06-25 18:03:34 -04:00
|
|
|
|
|
|
|
if maxkeys <= 0 {
|
|
|
|
maxkeys = 1000
|
|
|
|
}
|
|
|
|
var isTruncated bool
|
2015-06-24 23:42:36 -04:00
|
|
|
nodeSlice := 0
|
2015-06-25 18:03:34 -04:00
|
|
|
var objects []string
|
2015-06-24 23:42:36 -04:00
|
|
|
for _, node := range b.nodes {
|
|
|
|
disks, err := node.ListDisks()
|
|
|
|
if err != nil {
|
2015-06-25 18:03:34 -04:00
|
|
|
return nil, nil, false, iodine.New(err, nil)
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
|
|
|
for order, disk := range disks {
|
|
|
|
bucketSlice := fmt.Sprintf("%s$%d$%d", b.name, nodeSlice, order)
|
|
|
|
bucketPath := filepath.Join(b.donutName, bucketSlice)
|
2015-06-25 13:43:36 -04:00
|
|
|
files, err := disk.ListDir(bucketPath)
|
2015-06-24 23:42:36 -04:00
|
|
|
if err != nil {
|
2015-06-25 18:03:34 -04:00
|
|
|
return nil, nil, false, iodine.New(err, nil)
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
2015-06-25 13:43:36 -04:00
|
|
|
for _, file := range files {
|
2015-06-25 18:03:34 -04:00
|
|
|
objectName, err := b.getObjectName(file.Name(), disk.GetPath(), bucketPath)
|
2015-06-24 23:42:36 -04:00
|
|
|
if err != nil {
|
2015-06-25 18:03:34 -04:00
|
|
|
return nil, nil, false, iodine.New(err, nil)
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
2015-06-25 18:03:34 -04:00
|
|
|
if strings.HasPrefix(objectName, strings.TrimSpace(prefix)) {
|
|
|
|
if objectName > marker {
|
|
|
|
objects = appendUniq(objects, objectName)
|
|
|
|
}
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nodeSlice = nodeSlice + 1
|
|
|
|
}
|
2015-06-25 18:03:34 -04:00
|
|
|
{
|
|
|
|
if strings.TrimSpace(prefix) != "" {
|
|
|
|
objects = removePrefix(objects, prefix)
|
|
|
|
}
|
|
|
|
var prefixes []string
|
|
|
|
var filteredObjects []string
|
|
|
|
if strings.TrimSpace(delimiter) != "" {
|
|
|
|
filteredObjects = filterDelimited(objects, delimiter)
|
|
|
|
prefixes = filterNotDelimited(objects, delimiter)
|
|
|
|
prefixes = extractDelimited(prefixes, delimiter)
|
|
|
|
prefixes = uniqueObjects(prefixes)
|
|
|
|
} else {
|
|
|
|
filteredObjects = objects
|
|
|
|
}
|
|
|
|
var results []string
|
|
|
|
var commonPrefixes []string
|
2015-06-25 21:52:07 -04:00
|
|
|
|
|
|
|
sort.Strings(filteredObjects)
|
2015-06-25 18:03:34 -04:00
|
|
|
for _, objectName := range filteredObjects {
|
2015-06-25 21:52:07 -04:00
|
|
|
if len(results) >= maxkeys {
|
|
|
|
isTruncated = true
|
|
|
|
break
|
|
|
|
}
|
2015-06-25 18:03:34 -04:00
|
|
|
results = appendUniq(results, prefix+objectName)
|
|
|
|
}
|
|
|
|
for _, commonPrefix := range prefixes {
|
|
|
|
commonPrefixes = appendUniq(commonPrefixes, prefix+commonPrefix)
|
|
|
|
}
|
|
|
|
sort.Strings(results)
|
|
|
|
sort.Strings(commonPrefixes)
|
|
|
|
return results, commonPrefixes, isTruncated, nil
|
|
|
|
}
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadObject - open an object to read
|
|
|
|
func (b bucket) ReadObject(objectName string) (reader io.ReadCloser, size int64, err error) {
|
2015-06-25 13:43:36 -04:00
|
|
|
b.lock.RLock()
|
|
|
|
defer b.lock.RUnlock()
|
2015-06-24 23:42:36 -04:00
|
|
|
reader, writer := io.Pipe()
|
|
|
|
// get list of objects
|
2015-06-25 18:03:34 -04:00
|
|
|
_, _, _, err = b.ListObjects(objectName, "", "", 1)
|
2015-06-24 23:42:36 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, 0, iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
// check if object exists
|
2015-06-25 18:03:34 -04:00
|
|
|
object, ok := b.objects[objectName]
|
2015-06-24 23:42:36 -04:00
|
|
|
if !ok {
|
|
|
|
return nil, 0, iodine.New(ObjectNotFound{Object: objectName}, nil)
|
|
|
|
}
|
|
|
|
// verify if donutObjectMetadata is readable, before we server the request
|
2015-06-26 05:10:47 -04:00
|
|
|
donutObjMetadata, err := object.GetDonutObjectMetadata()
|
2015-06-24 23:42:36 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, 0, iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
// read and reply back to GetObject() request in a go-routine
|
2015-06-26 05:10:47 -04:00
|
|
|
go b.readEncodedData(b.normalizeObjectName(objectName), writer, donutObjMetadata)
|
|
|
|
return reader, donutObjMetadata.Size, nil
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// WriteObject - write a new object into bucket
|
|
|
|
func (b bucket) WriteObject(objectName string, objectData io.Reader, expectedMD5Sum string, metadata map[string]string) (string, error) {
|
2015-06-25 13:43:36 -04:00
|
|
|
b.lock.Lock()
|
|
|
|
defer b.lock.Unlock()
|
2015-06-24 23:42:36 -04:00
|
|
|
if objectName == "" || objectData == nil {
|
|
|
|
return "", iodine.New(InvalidArgument{}, nil)
|
|
|
|
}
|
|
|
|
writers, err := b.getDiskWriters(b.normalizeObjectName(objectName), "data")
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
sumMD5 := md5.New()
|
|
|
|
sum512 := sha512.New()
|
|
|
|
|
|
|
|
objectMetadata := new(objectMetadata)
|
|
|
|
donutObjectMetadata := new(donutObjectMetadata)
|
|
|
|
objectMetadata.Version = objectMetadataVersion
|
|
|
|
donutObjectMetadata.Version = donutObjectMetadataVersion
|
2015-06-24 23:42:36 -04:00
|
|
|
size := metadata["contentLength"]
|
|
|
|
sizeInt, err := strconv.ParseInt(size, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// if total writers are only '1' do not compute erasure
|
|
|
|
switch len(writers) == 1 {
|
|
|
|
case true:
|
2015-06-26 05:10:47 -04:00
|
|
|
mw := io.MultiWriter(writers[0], sumMD5, sum512)
|
2015-06-24 23:42:36 -04:00
|
|
|
totalLength, err := io.CopyN(mw, objectData, sizeInt)
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
donutObjectMetadata.Size = totalLength
|
|
|
|
objectMetadata.Size = totalLength
|
2015-06-24 23:42:36 -04:00
|
|
|
case false:
|
|
|
|
// calculate data and parity dictated by total number of writers
|
|
|
|
k, m, err := b.getDataAndParity(len(writers))
|
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
// encoded data with k, m and write
|
2015-06-26 05:10:47 -04:00
|
|
|
chunkCount, totalLength, err := b.writeEncodedData(k, m, writers, objectData, sumMD5, sum512)
|
2015-06-24 23:42:36 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
/// donutMetadata section
|
2015-06-26 05:10:47 -04:00
|
|
|
donutObjectMetadata.BlockSize = 10 * 1024 * 1024
|
|
|
|
donutObjectMetadata.ChunkCount = chunkCount
|
|
|
|
donutObjectMetadata.DataDisks = k
|
|
|
|
donutObjectMetadata.ParityDisks = m
|
|
|
|
donutObjectMetadata.ErasureTechnique = "Cauchy"
|
|
|
|
donutObjectMetadata.Size = int64(totalLength)
|
2015-06-24 23:42:36 -04:00
|
|
|
// keep size inside objectMetadata as well for Object API requests
|
2015-06-26 05:10:47 -04:00
|
|
|
objectMetadata.Size = int64(totalLength)
|
|
|
|
}
|
|
|
|
objectMetadata.Bucket = b.getBucketName()
|
|
|
|
objectMetadata.Object = objectName
|
|
|
|
objectMetadata.Metadata = metadata
|
|
|
|
dataMD5sum := sumMD5.Sum(nil)
|
|
|
|
dataSHA512sum := sum512.Sum(nil)
|
|
|
|
objectMetadata.Created = time.Now().UTC()
|
2015-06-24 23:42:36 -04:00
|
|
|
|
|
|
|
// keeping md5sum for the object in two different places
|
|
|
|
// one for object storage and another is for internal use
|
2015-06-26 05:10:47 -04:00
|
|
|
hexMD5Sum := hex.EncodeToString(dataMD5sum)
|
|
|
|
hex512Sum := hex.EncodeToString(dataSHA512sum)
|
|
|
|
objectMetadata.MD5Sum = hexMD5Sum
|
|
|
|
objectMetadata.SHA512Sum = hex512Sum
|
|
|
|
donutObjectMetadata.MD5Sum = hexMD5Sum
|
|
|
|
donutObjectMetadata.SHA512Sum = hex512Sum
|
2015-06-24 23:42:36 -04:00
|
|
|
|
|
|
|
// Verify if the written object is equal to what is expected, only if it is requested as such
|
|
|
|
if strings.TrimSpace(expectedMD5Sum) != "" {
|
2015-06-26 05:10:47 -04:00
|
|
|
if err := b.isMD5SumEqual(strings.TrimSpace(expectedMD5Sum), objectMetadata.MD5Sum); err != nil {
|
2015-06-24 23:42:36 -04:00
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// write donut specific metadata
|
|
|
|
if err := b.writeDonutObjectMetadata(b.normalizeObjectName(objectName), donutObjectMetadata); err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
// write object specific metadata
|
|
|
|
if err := b.writeObjectMetadata(b.normalizeObjectName(objectName), objectMetadata); err != nil {
|
|
|
|
return "", iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
// close all writers, when control flow reaches here
|
|
|
|
for _, writer := range writers {
|
|
|
|
writer.Close()
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
return objectMetadata.MD5Sum, nil
|
2015-06-24 23:42:36 -04:00
|
|
|
}
|
2015-04-08 19:28:14 -04:00
|
|
|
|
|
|
|
// isMD5SumEqual - returns error if md5sum mismatches, other its `nil`
|
2015-04-07 01:29:10 -04:00
|
|
|
func (b bucket) isMD5SumEqual(expectedMD5Sum, actualMD5Sum string) error {
|
|
|
|
if strings.TrimSpace(expectedMD5Sum) != "" && strings.TrimSpace(actualMD5Sum) != "" {
|
2015-04-07 18:55:44 -04:00
|
|
|
expectedMD5SumBytes, err := hex.DecodeString(expectedMD5Sum)
|
2015-04-07 01:29:10 -04:00
|
|
|
if err != nil {
|
|
|
|
return iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
actualMD5SumBytes, err := hex.DecodeString(actualMD5Sum)
|
|
|
|
if err != nil {
|
|
|
|
return iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(expectedMD5SumBytes, actualMD5SumBytes) {
|
2015-06-23 14:44:32 -04:00
|
|
|
return iodine.New(BadDigest{}, nil)
|
2015-04-07 01:29:10 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-06-23 14:44:32 -04:00
|
|
|
return iodine.New(InvalidArgument{}, nil)
|
2015-04-07 01:29:10 -04:00
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// writeObjectMetadata - write additional object metadata
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) writeObjectMetadata(objectName string, objectMetadata *objectMetadata) error {
|
|
|
|
if objectMetadata == nil {
|
2015-06-23 14:44:32 -04:00
|
|
|
return iodine.New(InvalidArgument{}, nil)
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
objectMetadataWriters, err := b.getDiskWriters(objectName, objectMetadataConfig)
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
for _, objectMetadataWriter := range objectMetadataWriters {
|
|
|
|
defer objectMetadataWriter.Close()
|
|
|
|
}
|
|
|
|
for _, objectMetadataWriter := range objectMetadataWriters {
|
|
|
|
jenc := json.NewEncoder(objectMetadataWriter)
|
|
|
|
if err := jenc.Encode(objectMetadata); err != nil {
|
|
|
|
return iodine.New(err, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// writeDonutObjectMetadata - write donut related object metadata
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) writeDonutObjectMetadata(objectName string, donutObjectMetadata *donutObjectMetadata) error {
|
|
|
|
if donutObjectMetadata == nil {
|
2015-06-23 14:44:32 -04:00
|
|
|
return iodine.New(InvalidArgument{}, nil)
|
2015-04-07 18:55:44 -04:00
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
donutObjectMetadataWriters, err := b.getDiskWriters(objectName, donutObjectMetadataConfig)
|
2015-04-07 18:55:44 -04:00
|
|
|
if err != nil {
|
|
|
|
return iodine.New(err, nil)
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
for _, donutObjectMetadataWriter := range donutObjectMetadataWriters {
|
|
|
|
defer donutObjectMetadataWriter.Close()
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
for _, donutObjectMetadataWriter := range donutObjectMetadataWriters {
|
|
|
|
jenc := json.NewEncoder(donutObjectMetadataWriter)
|
|
|
|
if err := jenc.Encode(donutObjectMetadata); err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return iodine.New(err, nil)
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// TODO - This a temporary normalization of objectNames, need to find a better way
|
|
|
|
//
|
|
|
|
// normalizedObjectName - all objectNames with "/" get normalized to a simple objectName
|
|
|
|
//
|
|
|
|
// example:
|
|
|
|
// user provided value - "this/is/my/deep/directory/structure"
|
|
|
|
// donut normalized value - "this-is-my-deep-directory-structure"
|
|
|
|
//
|
2015-04-07 00:42:54 -04:00
|
|
|
func (b bucket) normalizeObjectName(objectName string) string {
|
|
|
|
// replace every '/' with '-'
|
|
|
|
return strings.Replace(objectName, "/", "-", -1)
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// getDataAndParity - calculate k, m (data and parity) values from number of disks
|
2015-04-05 04:53:41 -04:00
|
|
|
func (b bucket) getDataAndParity(totalWriters int) (k uint8, m uint8, err error) {
|
|
|
|
if totalWriters <= 1 {
|
2015-06-23 14:44:32 -04:00
|
|
|
return 0, 0, iodine.New(InvalidArgument{}, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
quotient := totalWriters / 2 // not using float or abs to let integer round off to lower value
|
|
|
|
// quotient cannot be bigger than (255 / 2) = 127
|
|
|
|
if quotient > 127 {
|
2015-06-23 14:44:32 -04:00
|
|
|
return 0, 0, iodine.New(ParityOverflow{}, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
remainder := totalWriters % 2 // will be 1 for odd and 0 for even numbers
|
|
|
|
k = uint8(quotient + remainder)
|
|
|
|
m = uint8(quotient)
|
|
|
|
return k, m, nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// writeEncodedData -
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) writeEncodedData(k, m uint8, writers []io.WriteCloser, objectData io.Reader, sumMD5, sum512 hash.Hash) (int, int, error) {
|
2015-04-07 00:42:54 -04:00
|
|
|
chunks := split.Stream(objectData, 10*1024*1024)
|
2015-06-25 00:00:28 -04:00
|
|
|
encoder, err := newEncoder(k, m, "Cauchy")
|
2015-04-07 00:42:54 -04:00
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return 0, 0, iodine.New(err, nil)
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
chunkCount := 0
|
|
|
|
totalLength := 0
|
|
|
|
for chunk := range chunks {
|
|
|
|
if chunk.Err == nil {
|
|
|
|
totalLength = totalLength + len(chunk.Data)
|
|
|
|
encodedBlocks, _ := encoder.Encode(chunk.Data)
|
2015-06-26 05:10:47 -04:00
|
|
|
sumMD5.Write(chunk.Data)
|
|
|
|
sum512.Write(chunk.Data)
|
2015-04-07 00:42:54 -04:00
|
|
|
for blockIndex, block := range encodedBlocks {
|
|
|
|
_, err := io.Copy(writers[blockIndex], bytes.NewBuffer(block))
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return 0, 0, iodine.New(err, nil)
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chunkCount = chunkCount + 1
|
|
|
|
}
|
|
|
|
return chunkCount, totalLength, nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// readEncodedData -
|
2015-06-26 05:10:47 -04:00
|
|
|
func (b bucket) readEncodedData(objectName string, writer *io.PipeWriter, donutObjMetadata *donutObjectMetadata) {
|
|
|
|
expectedMd5sum, err := hex.DecodeString(donutObjMetadata.MD5Sum)
|
2015-04-05 04:53:41 -04:00
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
readers, err := b.getDiskReaders(objectName, "data")
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
2015-06-25 21:52:07 -04:00
|
|
|
for _, reader := range readers {
|
|
|
|
defer reader.Close()
|
|
|
|
}
|
2015-04-05 04:53:41 -04:00
|
|
|
hasher := md5.New()
|
|
|
|
mwriter := io.MultiWriter(writer, hasher)
|
|
|
|
switch len(readers) == 1 {
|
|
|
|
case false:
|
2015-06-26 05:10:47 -04:00
|
|
|
if donutObjMetadata.ErasureTechnique == "" {
|
2015-06-23 14:44:32 -04:00
|
|
|
writer.CloseWithError(iodine.New(MissingErasureTechnique{}, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
encoder, err := newEncoder(donutObjMetadata.DataDisks, donutObjMetadata.ParityDisks, donutObjMetadata.ErasureTechnique)
|
2015-04-05 04:53:41 -04:00
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
totalLeft := donutObjMetadata.Size
|
|
|
|
for i := 0; i < donutObjMetadata.ChunkCount; i++ {
|
|
|
|
decodedData, err := b.decodeEncodedData(totalLeft, int64(donutObjMetadata.BlockSize), readers, encoder, writer)
|
2015-04-05 04:53:41 -04:00
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = io.Copy(mwriter, bytes.NewBuffer(decodedData))
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
2015-06-26 05:10:47 -04:00
|
|
|
totalLeft = totalLeft - int64(donutObjMetadata.BlockSize)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
case true:
|
|
|
|
_, err := io.Copy(writer, readers[0])
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
writer.CloseWithError(iodine.New(err, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// check if decodedData md5sum matches
|
|
|
|
if !bytes.Equal(expectedMd5sum, hasher.Sum(nil)) {
|
2015-06-23 14:44:32 -04:00
|
|
|
writer.CloseWithError(iodine.New(ChecksumMismatch{}, nil))
|
2015-04-05 04:53:41 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
writer.Close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// decodeEncodedData -
|
2015-06-24 22:43:38 -04:00
|
|
|
func (b bucket) decodeEncodedData(totalLeft, blockSize int64, readers []io.ReadCloser, encoder encoder, writer *io.PipeWriter) ([]byte, error) {
|
2015-04-05 04:53:41 -04:00
|
|
|
var curBlockSize int64
|
|
|
|
if blockSize < totalLeft {
|
|
|
|
curBlockSize = blockSize
|
|
|
|
} else {
|
|
|
|
curBlockSize = totalLeft // cast is safe, blockSize in if protects
|
|
|
|
}
|
|
|
|
curChunkSize, err := encoder.GetEncodedBlockLen(int(curBlockSize))
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
encodedBytes := make([][]byte, len(readers))
|
|
|
|
for i, reader := range readers {
|
|
|
|
var bytesBuffer bytes.Buffer
|
|
|
|
_, err := io.CopyN(&bytesBuffer, reader, int64(curChunkSize))
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
encodedBytes[i] = bytesBuffer.Bytes()
|
|
|
|
}
|
|
|
|
decodedData, err := encoder.Decode(encodedBytes, int(curBlockSize))
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
return decodedData, nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// getDiskReaders -
|
2015-04-05 04:53:41 -04:00
|
|
|
func (b bucket) getDiskReaders(objectName, objectMeta string) ([]io.ReadCloser, error) {
|
|
|
|
var readers []io.ReadCloser
|
|
|
|
nodeSlice := 0
|
|
|
|
for _, node := range b.nodes {
|
|
|
|
disks, err := node.ListDisks()
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
readers = make([]io.ReadCloser, len(disks))
|
2015-06-24 23:34:20 -04:00
|
|
|
for order, disk := range disks {
|
|
|
|
bucketSlice := fmt.Sprintf("%s$%d$%d", b.name, nodeSlice, order)
|
2015-06-18 19:02:34 -04:00
|
|
|
objectPath := filepath.Join(b.donutName, bucketSlice, objectName, objectMeta)
|
2015-04-05 04:53:41 -04:00
|
|
|
objectSlice, err := disk.OpenFile(objectPath)
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
2015-06-24 23:34:20 -04:00
|
|
|
readers[order] = objectSlice
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
nodeSlice = nodeSlice + 1
|
|
|
|
}
|
|
|
|
return readers, nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// getDiskWriters -
|
2015-04-05 04:53:41 -04:00
|
|
|
func (b bucket) getDiskWriters(objectName, objectMeta string) ([]io.WriteCloser, error) {
|
|
|
|
var writers []io.WriteCloser
|
|
|
|
nodeSlice := 0
|
|
|
|
for _, node := range b.nodes {
|
|
|
|
disks, err := node.ListDisks()
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
writers = make([]io.WriteCloser, len(disks))
|
2015-06-24 23:34:20 -04:00
|
|
|
for order, disk := range disks {
|
|
|
|
bucketSlice := fmt.Sprintf("%s$%d$%d", b.name, nodeSlice, order)
|
2015-06-18 19:02:34 -04:00
|
|
|
objectPath := filepath.Join(b.donutName, bucketSlice, objectName, objectMeta)
|
2015-06-24 23:34:20 -04:00
|
|
|
objectSlice, err := disk.CreateFile(objectPath)
|
2015-04-05 04:53:41 -04:00
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return nil, iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
2015-06-24 23:34:20 -04:00
|
|
|
writers[order] = objectSlice
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
nodeSlice = nodeSlice + 1
|
|
|
|
}
|
|
|
|
return writers, nil
|
|
|
|
}
|