2021-06-10 11:17:03 -04: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/>.
|
|
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
"io"
|
|
|
|
|
"net/http"
|
|
|
|
|
"sort"
|
|
|
|
|
"strings"
|
|
|
|
|
|
2023-02-06 12:27:29 -05:00
|
|
|
|
"github.com/minio/minio/internal/auth"
|
2021-06-10 11:17:03 -04:00
|
|
|
|
"github.com/minio/minio/internal/crypto"
|
2022-10-21 18:37:48 -04:00
|
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
2021-11-02 11:11:50 -04:00
|
|
|
|
xioutil "github.com/minio/minio/internal/ioutil"
|
2023-09-04 15:57:37 -04:00
|
|
|
|
"github.com/minio/pkg/v2/policy"
|
2021-06-10 11:17:03 -04:00
|
|
|
|
"github.com/minio/zipindex"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
archiveType = "zip"
|
2022-12-07 17:56:07 -05:00
|
|
|
|
archiveTypeEnc = "zip-enc"
|
2021-06-10 11:17:03 -04:00
|
|
|
|
archiveExt = "." + archiveType // ".zip"
|
|
|
|
|
archiveSeparator = "/"
|
|
|
|
|
archivePattern = archiveExt + archiveSeparator // ".zip/"
|
|
|
|
|
archiveTypeMetadataKey = ReservedMetadataPrefixLower + "archive-type" // "x-minio-internal-archive-type"
|
|
|
|
|
archiveInfoMetadataKey = ReservedMetadataPrefixLower + "archive-info" // "x-minio-internal-archive-info"
|
|
|
|
|
|
|
|
|
|
// Peek into a zip archive
|
|
|
|
|
xMinIOExtract = "x-minio-extract"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
|
2022-08-26 15:52:29 -04:00
|
|
|
|
//
|
|
|
|
|
// e.g /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png
|
2021-06-10 11:17:03 -04:00
|
|
|
|
func splitZipExtensionPath(input string) (zipPath, object string, err error) {
|
|
|
|
|
idx := strings.Index(input, archivePattern)
|
|
|
|
|
if idx < 0 {
|
|
|
|
|
// Should never happen
|
|
|
|
|
return "", "", errors.New("unable to parse zip path")
|
|
|
|
|
}
|
|
|
|
|
return input[:idx+len(archivePattern)-1], input[idx+len(archivePattern):], nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getObjectInArchiveFileHandler - GET Object in the archive file
|
|
|
|
|
func (api objectAPIHandlers) getObjectInArchiveFileHandler(ctx context.Context, objectAPI ObjectLayer, bucket, object string, w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if crypto.S3.IsRequested(r.Header) || crypto.S3KMS.IsRequested(r.Header) { // If SSE-S3 or SSE-KMS present -> AWS fails with undefined error
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrBadRequest), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zipPath, object, err := splitZipExtensionPath(object)
|
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opts, err := getOpts(ctx, r, bucket, zipPath)
|
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getObjectInfo := objectAPI.GetObjectInfo
|
|
|
|
|
|
|
|
|
|
// Check for auth type to return S3 compatible error.
|
|
|
|
|
// type to return the correct error (NoSuchKey vs AccessDenied)
|
|
|
|
|
if s3Error := checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, zipPath); s3Error != ErrNone {
|
|
|
|
|
if getRequestAuthType(r) == authTypeAnonymous {
|
|
|
|
|
// As per "Permission" section in
|
|
|
|
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGET.html
|
|
|
|
|
// If the object you request does not exist,
|
|
|
|
|
// the error Amazon S3 returns depends on
|
|
|
|
|
// whether you also have the s3:ListBucket
|
|
|
|
|
// permission.
|
|
|
|
|
// * If you have the s3:ListBucket permission
|
|
|
|
|
// on the bucket, Amazon S3 will return an
|
|
|
|
|
// HTTP status code 404 ("no such key")
|
|
|
|
|
// error.
|
|
|
|
|
// * if you don’t have the s3:ListBucket
|
|
|
|
|
// permission, Amazon S3 will return an HTTP
|
|
|
|
|
// status code 403 ("access denied") error.`
|
2023-09-04 15:57:37 -04:00
|
|
|
|
if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
|
2021-06-10 11:17:03 -04:00
|
|
|
|
Action: policy.ListBucketAction,
|
|
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
|
ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
|
2021-06-10 11:17:03 -04:00
|
|
|
|
IsOwner: false,
|
|
|
|
|
}) {
|
|
|
|
|
_, err = getObjectInfo(ctx, bucket, zipPath, opts)
|
|
|
|
|
if toAPIError(ctx, err).Code == "NoSuchKey" {
|
|
|
|
|
s3Error = ErrNoSuchKey
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-21 18:37:48 -04:00
|
|
|
|
// We do not allow offsetting into extracted files.
|
|
|
|
|
if opts.PartNumber != 0 {
|
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartNumber), r.URL)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if r.Header.Get(xhttp.Range) != "" {
|
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRange), r.URL)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 11:17:03 -04:00
|
|
|
|
// Validate pre-conditions if any.
|
|
|
|
|
opts.CheckPrecondFn = func(oi ObjectInfo) bool {
|
2023-01-17 09:07:47 -05:00
|
|
|
|
if _, err := DecryptObjectInfo(&oi, r); err != nil {
|
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
|
|
|
|
return true
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return checkPreconditions(ctx, w, r, oi, opts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zipObjInfo, err := getObjectInfo(ctx, bucket, zipPath, opts)
|
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-21 17:11:12 -04:00
|
|
|
|
zipInfo := zipObjInfo.ArchiveInfo()
|
2021-11-25 12:11:25 -05:00
|
|
|
|
if len(zipInfo) == 0 {
|
2022-12-07 17:56:07 -05:00
|
|
|
|
opts.EncryptFn, err = zipObjInfo.metadataEncryptFn(r.Header)
|
|
|
|
|
if err != nil {
|
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 11:17:03 -04:00
|
|
|
|
zipInfo, err = updateObjectMetadataWithZipInfo(ctx, objectAPI, bucket, zipPath, opts)
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
file, err := zipindex.FindSerialized(zipInfo, object)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if err == io.EOF {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNoSuchKey), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
} else {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// New object info
|
|
|
|
|
fileObjInfo := ObjectInfo{
|
|
|
|
|
Bucket: bucket,
|
|
|
|
|
Name: object,
|
|
|
|
|
Size: int64(file.UncompressedSize64),
|
|
|
|
|
ModTime: zipObjInfo.ModTime,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var rc io.ReadCloser
|
|
|
|
|
|
|
|
|
|
if file.UncompressedSize64 > 0 {
|
2022-12-02 11:53:24 -05:00
|
|
|
|
// There may be number of header bytes before the content.
|
|
|
|
|
// Reading 64K extra. This should more than cover name and any "extra" details.
|
|
|
|
|
end := file.Offset + int64(file.CompressedSize64) + 64<<10
|
|
|
|
|
if end > zipObjInfo.Size {
|
|
|
|
|
end = zipObjInfo.Size
|
|
|
|
|
}
|
|
|
|
|
rs := &HTTPRangeSpec{Start: file.Offset, End: end}
|
2023-04-17 15:16:37 -04:00
|
|
|
|
gr, err := objectAPI.GetObjectNInfo(ctx, bucket, zipPath, rs, nil, opts)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
defer gr.Close()
|
|
|
|
|
rc, err = file.Open(gr)
|
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-09-19 14:05:16 -04:00
|
|
|
|
rc = io.NopCloser(bytes.NewReader([]byte{}))
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer rc.Close()
|
|
|
|
|
|
|
|
|
|
if err = setObjectHeaders(w, fileObjInfo, nil, opts); err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
2022-10-21 18:37:48 -04:00
|
|
|
|
// s3zip does not allow ranges
|
|
|
|
|
w.Header().Del(xhttp.AcceptRanges)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
|
2021-08-08 01:43:01 -04:00
|
|
|
|
setHeadGetRespHeaders(w, r.Form)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
|
2021-11-02 11:11:50 -04:00
|
|
|
|
httpWriter := xioutil.WriteOnClose(w)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
|
|
|
|
|
// Write object content to response body
|
2021-11-02 11:11:50 -04:00
|
|
|
|
if _, err = xioutil.Copy(httpWriter, rc); err != nil {
|
2021-06-10 11:17:03 -04:00
|
|
|
|
if !httpWriter.HasWritten() {
|
|
|
|
|
// write error response only if no data or headers has been written to client yet
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err = httpWriter.Close(); err != nil {
|
|
|
|
|
if !httpWriter.HasWritten() { // write error response only if no data or headers has been written to client yet
|
2021-06-17 23:27:04 -04:00
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// listObjectsV2InArchive generates S3 listing result ListObjectsV2Info from zip file, all parameters are already validated by the caller.
|
|
|
|
|
func listObjectsV2InArchive(ctx context.Context, objectAPI ObjectLayer, bucket, prefix, token, delimiter string, maxKeys int, fetchOwner bool, startAfter string) (ListObjectsV2Info, error) {
|
|
|
|
|
zipPath, _, err := splitZipExtensionPath(prefix)
|
|
|
|
|
if err != nil {
|
|
|
|
|
// Return empty listing
|
|
|
|
|
return ListObjectsV2Info{}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zipObjInfo, err := objectAPI.GetObjectInfo(ctx, bucket, zipPath, ObjectOptions{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
// Return empty listing
|
|
|
|
|
return ListObjectsV2Info{}, nil
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-21 17:11:12 -04:00
|
|
|
|
zipInfo := zipObjInfo.ArchiveInfo()
|
|
|
|
|
if len(zipInfo) == 0 {
|
2021-06-10 11:17:03 -04:00
|
|
|
|
// Always update the latest version
|
|
|
|
|
zipInfo, err = updateObjectMetadataWithZipInfo(ctx, objectAPI, bucket, zipPath, ObjectOptions{})
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ListObjectsV2Info{}, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
files, err := zipindex.DeserializeFiles(zipInfo)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ListObjectsV2Info{}, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sort.Slice(files, func(i, j int) bool {
|
|
|
|
|
return files[i].Name < files[j].Name
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
count int
|
|
|
|
|
isTruncated bool
|
|
|
|
|
nextToken string
|
|
|
|
|
listObjectsInfo ListObjectsV2Info
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Always set this
|
|
|
|
|
listObjectsInfo.ContinuationToken = token
|
|
|
|
|
|
|
|
|
|
// Open and iterate through the files in the archive.
|
|
|
|
|
for _, file := range files {
|
|
|
|
|
objName := zipObjInfo.Name + archiveSeparator + file.Name
|
|
|
|
|
if objName <= startAfter || objName <= token {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if strings.HasPrefix(objName, prefix) {
|
|
|
|
|
if count == maxKeys {
|
|
|
|
|
isTruncated = true
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
if delimiter != "" {
|
|
|
|
|
i := strings.Index(objName[len(prefix):], delimiter)
|
|
|
|
|
if i >= 0 {
|
|
|
|
|
commonPrefix := objName[:len(prefix)+i+1]
|
|
|
|
|
if len(listObjectsInfo.Prefixes) == 0 || commonPrefix != listObjectsInfo.Prefixes[len(listObjectsInfo.Prefixes)-1] {
|
|
|
|
|
listObjectsInfo.Prefixes = append(listObjectsInfo.Prefixes, commonPrefix)
|
|
|
|
|
count++
|
|
|
|
|
}
|
|
|
|
|
goto next
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
listObjectsInfo.Objects = append(listObjectsInfo.Objects, ObjectInfo{
|
|
|
|
|
Bucket: bucket,
|
|
|
|
|
Name: objName,
|
|
|
|
|
Size: int64(file.UncompressedSize64),
|
|
|
|
|
ModTime: zipObjInfo.ModTime,
|
|
|
|
|
})
|
|
|
|
|
count++
|
|
|
|
|
}
|
|
|
|
|
next:
|
|
|
|
|
nextToken = objName
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if isTruncated {
|
|
|
|
|
listObjectsInfo.IsTruncated = true
|
|
|
|
|
listObjectsInfo.NextContinuationToken = nextToken
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return listObjectsInfo, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getFilesFromZIPObject reads a partial stream of a zip file to build the zipindex.Files index
|
|
|
|
|
func getFilesListFromZIPObject(ctx context.Context, objectAPI ObjectLayer, bucket, object string, opts ObjectOptions) (zipindex.Files, ObjectInfo, error) {
|
2022-01-02 12:15:06 -05:00
|
|
|
|
size := 1 << 20
|
2021-06-10 11:17:03 -04:00
|
|
|
|
var objSize int64
|
|
|
|
|
for {
|
|
|
|
|
rs := &HTTPRangeSpec{IsSuffixLength: true, Start: int64(-size)}
|
2023-04-17 15:16:37 -04:00
|
|
|
|
gr, err := objectAPI.GetObjectNInfo(ctx, bucket, object, rs, nil, opts)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, ObjectInfo{}, err
|
|
|
|
|
}
|
2022-09-19 14:05:16 -04:00
|
|
|
|
b, err := io.ReadAll(gr)
|
2022-06-21 17:11:12 -04:00
|
|
|
|
gr.Close()
|
2021-06-10 11:17:03 -04:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, ObjectInfo{}, err
|
|
|
|
|
}
|
|
|
|
|
if size > len(b) {
|
|
|
|
|
size = len(b)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Calculate the object real size if encrypted
|
|
|
|
|
if _, ok := crypto.IsEncrypted(gr.ObjInfo.UserDefined); ok {
|
|
|
|
|
objSize, err = gr.ObjInfo.DecryptedSize()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, ObjectInfo{}, err
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
objSize = gr.ObjInfo.Size
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
files, err := zipindex.ReadDir(b[len(b)-size:], objSize, nil)
|
|
|
|
|
if err == nil {
|
|
|
|
|
return files, gr.ObjInfo, nil
|
|
|
|
|
}
|
|
|
|
|
var terr zipindex.ErrNeedMoreData
|
|
|
|
|
if errors.As(err, &terr) {
|
|
|
|
|
size = int(terr.FromEnd)
|
|
|
|
|
if size <= 0 || size > 100<<20 {
|
|
|
|
|
return nil, ObjectInfo{}, errors.New("zip directory too large")
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return nil, ObjectInfo{}, err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// headObjectInArchiveFileHandler - HEAD Object in an archive file
|
|
|
|
|
func (api objectAPIHandlers) headObjectInArchiveFileHandler(ctx context.Context, objectAPI ObjectLayer, bucket, object string, w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if crypto.S3.IsRequested(r.Header) || crypto.S3KMS.IsRequested(r.Header) { // If SSE-S3 or SSE-KMS present -> AWS fails with undefined error
|
|
|
|
|
writeErrorResponseHeadersOnly(w, errorCodes.ToAPIErr(ErrBadRequest))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zipPath, object, err := splitZipExtensionPath(object)
|
|
|
|
|
if err != nil {
|
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getObjectInfo := objectAPI.GetObjectInfo
|
|
|
|
|
|
|
|
|
|
opts, err := getOpts(ctx, r, bucket, zipPath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if s3Error := checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, zipPath); s3Error != ErrNone {
|
|
|
|
|
if getRequestAuthType(r) == authTypeAnonymous {
|
|
|
|
|
// As per "Permission" section in
|
|
|
|
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectHEAD.html
|
|
|
|
|
// If the object you request does not exist,
|
|
|
|
|
// the error Amazon S3 returns depends on
|
|
|
|
|
// whether you also have the s3:ListBucket
|
|
|
|
|
// permission.
|
|
|
|
|
// * If you have the s3:ListBucket permission
|
|
|
|
|
// on the bucket, Amazon S3 will return an
|
|
|
|
|
// HTTP status code 404 ("no such key")
|
|
|
|
|
// error.
|
|
|
|
|
// * if you don’t have the s3:ListBucket
|
|
|
|
|
// permission, Amazon S3 will return an HTTP
|
|
|
|
|
// status code 403 ("access denied") error.`
|
2023-09-04 15:57:37 -04:00
|
|
|
|
if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
|
2021-06-10 11:17:03 -04:00
|
|
|
|
Action: policy.ListBucketAction,
|
|
|
|
|
BucketName: bucket,
|
2023-02-06 12:27:29 -05:00
|
|
|
|
ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
|
2021-06-10 11:17:03 -04:00
|
|
|
|
IsOwner: false,
|
|
|
|
|
}) {
|
|
|
|
|
_, err = getObjectInfo(ctx, bucket, zipPath, opts)
|
|
|
|
|
if toAPIError(ctx, err).Code == "NoSuchKey" {
|
|
|
|
|
s3Error = ErrNoSuchKey
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-26 13:13:18 -04:00
|
|
|
|
errCode := errorCodes.ToAPIErr(s3Error)
|
|
|
|
|
w.Header().Set(xMinIOErrCodeHeader, errCode.Code)
|
|
|
|
|
w.Header().Set(xMinIOErrDescHeader, "\""+errCode.Description+"\"")
|
|
|
|
|
writeErrorResponseHeadersOnly(w, errCode)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Validate pre-conditions if any.
|
|
|
|
|
opts.CheckPrecondFn = func(oi ObjectInfo) bool {
|
|
|
|
|
return checkPreconditions(ctx, w, r, oi, opts)
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-21 18:37:48 -04:00
|
|
|
|
// We do not allow offsetting into extracted files.
|
|
|
|
|
if opts.PartNumber != 0 {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, errorCodes.ToAPIErr(ErrInvalidPartNumber))
|
2022-10-21 18:37:48 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if r.Header.Get(xhttp.Range) != "" {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, errorCodes.ToAPIErr(ErrInvalidRange))
|
2022-10-21 18:37:48 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 11:17:03 -04:00
|
|
|
|
zipObjInfo, err := getObjectInfo(ctx, bucket, zipPath, opts)
|
|
|
|
|
if err != nil {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-21 17:11:12 -04:00
|
|
|
|
zipInfo := zipObjInfo.ArchiveInfo()
|
|
|
|
|
if len(zipInfo) == 0 {
|
2022-12-07 17:56:07 -05:00
|
|
|
|
opts.EncryptFn, err = zipObjInfo.metadataEncryptFn(r.Header)
|
|
|
|
|
if err != nil {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
2022-12-07 17:56:07 -05:00
|
|
|
|
return
|
|
|
|
|
}
|
2021-06-10 11:17:03 -04:00
|
|
|
|
zipInfo, err = updateObjectMetadataWithZipInfo(ctx, objectAPI, bucket, zipPath, opts)
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
2021-06-10 11:17:03 -04:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file, err := zipindex.FindSerialized(zipInfo, object)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if err == io.EOF {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, errorCodes.ToAPIErr(ErrNoSuchKey))
|
2021-06-10 11:17:03 -04:00
|
|
|
|
} else {
|
2023-05-26 13:13:18 -04:00
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
objInfo := ObjectInfo{
|
|
|
|
|
Bucket: bucket,
|
|
|
|
|
Name: file.Name,
|
|
|
|
|
Size: int64(file.UncompressedSize64),
|
|
|
|
|
ModTime: zipObjInfo.ModTime,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set standard object headers.
|
|
|
|
|
if err = setObjectHeaders(w, objInfo, nil, opts); err != nil {
|
|
|
|
|
writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-21 18:37:48 -04:00
|
|
|
|
// s3zip does not allow ranges.
|
|
|
|
|
w.Header().Del(xhttp.AcceptRanges)
|
|
|
|
|
|
2021-06-10 11:17:03 -04:00
|
|
|
|
// Set any additional requested response headers.
|
2021-08-08 01:43:01 -04:00
|
|
|
|
setHeadGetRespHeaders(w, r.Form)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
|
|
|
|
|
// Successful response.
|
2022-10-21 18:37:48 -04:00
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-07 17:56:07 -05:00
|
|
|
|
// Update the passed zip object metadata with the zip contents info, file name, modtime, size, etc.
|
|
|
|
|
// The returned zip index will de decrypted.
|
2021-06-10 11:17:03 -04:00
|
|
|
|
func updateObjectMetadataWithZipInfo(ctx context.Context, objectAPI ObjectLayer, bucket, object string, opts ObjectOptions) ([]byte, error) {
|
|
|
|
|
files, srcInfo, err := getFilesListFromZIPObject(ctx, objectAPI, bucket, object, opts)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
files.OptimizeSize()
|
|
|
|
|
zipInfo, err := files.Serialize()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2022-12-07 17:56:07 -05:00
|
|
|
|
at := archiveType
|
2022-10-24 20:44:15 -04:00
|
|
|
|
zipInfoStr := string(zipInfo)
|
2022-12-07 17:56:07 -05:00
|
|
|
|
if opts.EncryptFn != nil {
|
|
|
|
|
at = archiveTypeEnc
|
|
|
|
|
zipInfoStr = string(opts.EncryptFn(archiveTypeEnc, zipInfo))
|
|
|
|
|
}
|
|
|
|
|
srcInfo.UserDefined[archiveTypeMetadataKey] = at
|
2022-10-24 20:44:15 -04:00
|
|
|
|
popts := ObjectOptions{
|
|
|
|
|
MTime: srcInfo.ModTime,
|
|
|
|
|
VersionID: srcInfo.VersionID,
|
2023-07-10 10:57:56 -04:00
|
|
|
|
EvalMetadataFn: func(oi *ObjectInfo, gerr error) (dsc ReplicateDecision, err error) {
|
2022-12-07 17:56:07 -05:00
|
|
|
|
oi.UserDefined[archiveTypeMetadataKey] = at
|
2022-10-24 20:44:15 -04:00
|
|
|
|
oi.UserDefined[archiveInfoMetadataKey] = zipInfoStr
|
2023-07-10 10:57:56 -04:00
|
|
|
|
return dsc, nil
|
2022-10-24 20:44:15 -04:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// For all other modes use in-place update to update metadata on a specific version.
|
|
|
|
|
if _, err = objectAPI.PutObjectMetadata(ctx, bucket, object, popts); err != nil {
|
|
|
|
|
return nil, err
|
2021-06-10 11:17:03 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return zipInfo, nil
|
|
|
|
|
}
|