2021-04-18 12:41:13 -07:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-04-20 21:02:47 +05:30
|
|
|
|
2016-08-18 16:23:42 -07:00
|
|
|
package cmd
|
2016-04-20 21:02:47 +05:30
|
|
|
|
2016-05-31 20:23:31 -07:00
|
|
|
import (
|
2021-01-04 18:51:52 -08:00
|
|
|
"bytes"
|
2018-04-05 15:04:40 -07:00
|
|
|
"context"
|
2021-03-15 20:03:13 -07:00
|
|
|
"fmt"
|
2016-05-31 20:23:31 -07:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/klauspost/reedsolomon"
|
2021-06-01 14:59:40 -07:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2016-05-31 20:23:31 -07:00
|
|
|
)
|
|
|
|
|
2016-06-22 12:55:23 -07:00
|
|
|
// getDataBlockLen - get length of data blocks from encoded blocks.
|
|
|
|
func getDataBlockLen(enBlocks [][]byte, dataBlocks int) int {
|
2016-05-29 15:38:14 -07:00
|
|
|
size := 0
|
2016-06-22 12:55:23 -07:00
|
|
|
// Figure out the data block length.
|
|
|
|
for _, block := range enBlocks[:dataBlocks] {
|
2016-05-29 15:38:14 -07:00
|
|
|
size += len(block)
|
|
|
|
}
|
2016-06-22 12:55:23 -07:00
|
|
|
return size
|
|
|
|
}
|
|
|
|
|
|
|
|
// Writes all the data blocks from encoded blocks until requested
|
|
|
|
// outSize length. Provides a way to skip bytes until the offset.
|
2018-04-05 15:04:40 -07:00
|
|
|
func writeDataBlocks(ctx context.Context, dst io.Writer, enBlocks [][]byte, dataBlocks int, offset int64, length int64) (int64, error) {
|
2016-07-07 01:30:34 -07:00
|
|
|
// Offset and out size cannot be negative.
|
2016-07-20 14:00:30 +05:30
|
|
|
if offset < 0 || length < 0 {
|
2018-04-05 15:04:40 -07:00
|
|
|
logger.LogIf(ctx, errUnexpected)
|
|
|
|
return 0, errUnexpected
|
2016-07-07 01:30:34 -07:00
|
|
|
}
|
|
|
|
|
2016-06-22 12:55:23 -07:00
|
|
|
// Do we have enough blocks?
|
|
|
|
if len(enBlocks) < dataBlocks {
|
2021-03-15 20:03:13 -07:00
|
|
|
logger.LogIf(ctx, fmt.Errorf("diskBlocks(%d)/dataBlocks(%d) - %w", len(enBlocks), dataBlocks, reedsolomon.ErrTooFewShards))
|
2018-04-05 15:04:40 -07:00
|
|
|
return 0, reedsolomon.ErrTooFewShards
|
2016-05-29 15:38:14 -07:00
|
|
|
}
|
2016-05-31 20:23:31 -07:00
|
|
|
|
2016-06-22 12:55:23 -07:00
|
|
|
// Do we have enough data?
|
2016-07-20 14:00:30 +05:30
|
|
|
if int64(getDataBlockLen(enBlocks, dataBlocks)) < length {
|
2021-03-15 20:03:13 -07:00
|
|
|
logger.LogIf(ctx, fmt.Errorf("getDataBlockLen(enBlocks, dataBlocks)(%d)/length(%d) - %w", getDataBlockLen(enBlocks, dataBlocks), length, reedsolomon.ErrShortData))
|
2018-04-05 15:04:40 -07:00
|
|
|
return 0, reedsolomon.ErrShortData
|
2016-06-22 12:55:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Counter to decrement total left to write.
|
2016-07-20 14:00:30 +05:30
|
|
|
write := length
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Counter to increment total written.
|
2017-02-24 09:20:40 -08:00
|
|
|
var totalWritten int64
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Write all data blocks to dst.
|
|
|
|
for _, block := range enBlocks[:dataBlocks] {
|
|
|
|
// Skip blocks until we have reached our offset.
|
2016-07-20 14:00:30 +05:30
|
|
|
if offset >= int64(len(block)) {
|
2016-06-22 12:55:23 -07:00
|
|
|
// Decrement offset.
|
2016-07-20 14:00:30 +05:30
|
|
|
offset -= int64(len(block))
|
2016-06-22 12:55:23 -07:00
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
// Skip until offset.
|
2016-07-20 14:00:30 +05:30
|
|
|
block = block[offset:]
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Reset the offset for next iteration to read everything
|
|
|
|
// from subsequent blocks.
|
2016-07-20 14:00:30 +05:30
|
|
|
offset = 0
|
2016-06-22 12:55:23 -07:00
|
|
|
}
|
2021-01-03 16:27:34 -08:00
|
|
|
|
2016-06-22 12:55:23 -07:00
|
|
|
// We have written all the blocks, write the last remaining block.
|
|
|
|
if write < int64(len(block)) {
|
2021-01-04 18:51:52 -08:00
|
|
|
n, err := io.Copy(dst, bytes.NewReader(block[:write]))
|
2016-06-22 12:55:23 -07:00
|
|
|
if err != nil {
|
2021-05-20 09:00:11 -07:00
|
|
|
// The writer will be closed incase of range queries, which will emit ErrClosedPipe.
|
|
|
|
// The reader pipe might be closed at ListObjects io.EOF ignore it.
|
|
|
|
if err != io.ErrClosedPipe && err != io.EOF {
|
2018-10-17 23:52:18 +01:00
|
|
|
logger.LogIf(ctx, err)
|
|
|
|
}
|
2018-04-05 15:04:40 -07:00
|
|
|
return 0, err
|
2016-06-22 12:55:23 -07:00
|
|
|
}
|
2021-01-04 18:51:52 -08:00
|
|
|
totalWritten += n
|
2016-06-22 12:55:23 -07:00
|
|
|
break
|
|
|
|
}
|
2021-01-03 16:27:34 -08:00
|
|
|
|
2016-06-22 12:55:23 -07:00
|
|
|
// Copy the block.
|
2021-01-04 18:51:52 -08:00
|
|
|
n, err := io.Copy(dst, bytes.NewReader(block))
|
2016-06-22 12:55:23 -07:00
|
|
|
if err != nil {
|
2018-09-28 09:06:17 +05:30
|
|
|
// The writer will be closed incase of range queries, which will emit ErrClosedPipe.
|
2021-05-20 09:00:11 -07:00
|
|
|
// The reader pipe might be closed at ListObjects io.EOF ignore it.
|
|
|
|
if err != io.ErrClosedPipe && err != io.EOF {
|
2018-09-25 20:39:46 +01:00
|
|
|
logger.LogIf(ctx, err)
|
|
|
|
}
|
2018-04-05 15:04:40 -07:00
|
|
|
return 0, err
|
2016-05-29 15:38:14 -07:00
|
|
|
}
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Decrement output size.
|
2021-01-04 18:51:52 -08:00
|
|
|
write -= n
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Increment written.
|
2021-01-04 18:51:52 -08:00
|
|
|
totalWritten += n
|
2016-05-06 16:25:08 -07:00
|
|
|
}
|
2016-06-22 12:55:23 -07:00
|
|
|
|
|
|
|
// Success.
|
|
|
|
return totalWritten, nil
|
2016-05-06 16:25:08 -07:00
|
|
|
}
|