2023-02-06 21:58:29 -05:00
|
|
|
// Copyright (c) 2015-2023 MinIO, Inc.
|
2021-04-18 15:41:13 -04:00
|
|
|
//
|
|
|
|
// 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-07-10 20:32:59 -04:00
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-07-10 20:32:59 -04:00
|
|
|
|
|
|
|
import (
|
2018-03-14 15:01:47 -04:00
|
|
|
"context"
|
2023-10-10 03:33:42 -04:00
|
|
|
"fmt"
|
2016-07-10 20:32:59 -04:00
|
|
|
"net/http"
|
2019-04-01 15:19:52 -04:00
|
|
|
"regexp"
|
2020-06-12 23:04:01 -04:00
|
|
|
"strconv"
|
2016-07-10 20:32:59 -04:00
|
|
|
"time"
|
2018-03-15 16:03:41 -04:00
|
|
|
|
2022-09-07 10:24:54 -04:00
|
|
|
"github.com/minio/minio/internal/amztime"
|
2023-05-02 15:56:33 -04:00
|
|
|
"github.com/minio/minio/internal/bucket/lifecycle"
|
2021-11-19 20:54:10 -05:00
|
|
|
"github.com/minio/minio/internal/event"
|
2022-08-29 19:57:16 -04:00
|
|
|
"github.com/minio/minio/internal/hash"
|
2021-06-01 17:59:40 -04:00
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
2016-07-10 20:32:59 -04:00
|
|
|
)
|
|
|
|
|
2022-01-02 12:15:06 -05:00
|
|
|
var etagRegex = regexp.MustCompile("\"*?([^\"]*?)\"*?$")
|
2019-04-01 15:19:52 -04:00
|
|
|
|
2017-01-31 12:38:34 -05:00
|
|
|
// Validates the preconditions for CopyObjectPart, returns true if CopyObjectPart
|
|
|
|
// operation should not proceed. Preconditions supported are:
|
2022-08-26 15:52:29 -04:00
|
|
|
//
|
|
|
|
// x-amz-copy-source-if-modified-since
|
|
|
|
// x-amz-copy-source-if-unmodified-since
|
|
|
|
// x-amz-copy-source-if-match
|
|
|
|
// x-amz-copy-source-if-none-match
|
2020-07-17 16:01:22 -04:00
|
|
|
func checkCopyObjectPartPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo) bool {
|
|
|
|
return checkCopyObjectPreconditions(ctx, w, r, objInfo)
|
2017-01-31 12:38:34 -05:00
|
|
|
}
|
|
|
|
|
2016-07-11 22:24:34 -04:00
|
|
|
// Validates the preconditions for CopyObject, returns true if CopyObject operation should not proceed.
|
|
|
|
// Preconditions supported are:
|
2022-08-26 15:52:29 -04:00
|
|
|
//
|
|
|
|
// x-amz-copy-source-if-modified-since
|
|
|
|
// x-amz-copy-source-if-unmodified-since
|
|
|
|
// x-amz-copy-source-if-match
|
|
|
|
// x-amz-copy-source-if-none-match
|
2020-07-17 16:01:22 -04:00
|
|
|
func checkCopyObjectPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo) bool {
|
2016-07-11 22:24:34 -04:00
|
|
|
// Return false for methods other than GET and HEAD.
|
2019-07-03 01:34:32 -04:00
|
|
|
if r.Method != http.MethodPut {
|
2016-07-11 22:24:34 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
// 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.
|
|
|
|
if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Headers to be set of object content is not going to be written to the client.
|
|
|
|
writeHeaders := func() {
|
|
|
|
// set common headers
|
|
|
|
setCommonHeaders(w)
|
|
|
|
|
|
|
|
// set object-related metadata headers
|
2019-07-03 01:34:32 -04:00
|
|
|
w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat))
|
2016-07-11 22:24:34 -04:00
|
|
|
|
2017-05-14 15:05:51 -04:00
|
|
|
if objInfo.ETag != "" {
|
2019-07-03 01:34:32 -04:00
|
|
|
w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""}
|
2016-07-11 22:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// x-amz-copy-source-if-modified-since: Return the object only if it has been modified
|
|
|
|
// since the specified time otherwise return 412 (precondition failed).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifModifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfModifiedSince)
|
2016-07-11 22:24:34 -04:00
|
|
|
if ifModifiedSinceHeader != "" {
|
2022-09-07 10:24:54 -04:00
|
|
|
if givenTime, err := amztime.ParseHeader(ifModifiedSinceHeader); err == nil {
|
2017-04-12 15:34:57 -04:00
|
|
|
if !ifModifiedSince(objInfo.ModTime, givenTime) {
|
|
|
|
// If the object is not modified since the specified time.
|
|
|
|
writeHeaders()
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
2017-04-12 15:34:57 -04:00
|
|
|
return true
|
|
|
|
}
|
2016-07-11 22:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// x-amz-copy-source-if-unmodified-since : Return the object only if it has not been
|
|
|
|
// modified since the specified time, otherwise return a 412 (precondition failed).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifUnmodifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfUnmodifiedSince)
|
2016-07-11 22:24:34 -04:00
|
|
|
if ifUnmodifiedSinceHeader != "" {
|
2022-09-07 10:24:54 -04:00
|
|
|
if givenTime, err := amztime.ParseHeader(ifUnmodifiedSinceHeader); err == nil {
|
2017-04-12 15:34:57 -04:00
|
|
|
if ifModifiedSince(objInfo.ModTime, givenTime) {
|
|
|
|
// If the object is modified since the specified time.
|
|
|
|
writeHeaders()
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
2017-04-12 15:34:57 -04:00
|
|
|
return true
|
|
|
|
}
|
2016-07-11 22:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// x-amz-copy-source-if-match : Return the object only if its entity tag (ETag) is the
|
|
|
|
// same as the one specified; otherwise return a 412 (precondition failed).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifMatchETagHeader := r.Header.Get(xhttp.AmzCopySourceIfMatch)
|
2016-07-11 22:24:34 -04:00
|
|
|
if ifMatchETagHeader != "" {
|
2020-07-17 16:01:22 -04:00
|
|
|
if !isETagEqual(objInfo.ETag, ifMatchETagHeader) {
|
2016-07-11 22:24:34 -04:00
|
|
|
// If the object ETag does not match with the specified ETag.
|
|
|
|
writeHeaders()
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
2016-07-11 22:24:34 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If-None-Match : Return the object only if its entity tag (ETag) is different from the
|
|
|
|
// one specified otherwise, return a 304 (not modified).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifNoneMatchETagHeader := r.Header.Get(xhttp.AmzCopySourceIfNoneMatch)
|
2016-07-11 22:24:34 -04:00
|
|
|
if ifNoneMatchETagHeader != "" {
|
2020-07-17 16:01:22 -04:00
|
|
|
if isETagEqual(objInfo.ETag, ifNoneMatchETagHeader) {
|
2016-07-11 22:24:34 -04:00
|
|
|
// If the object ETag matches with the specified ETag.
|
|
|
|
writeHeaders()
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
2016-07-11 22:24:34 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Object content should be written to http.ResponseWriter
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-09-14 21:44:04 -04:00
|
|
|
// Validates the preconditions. Returns true if PUT operation should not proceed.
|
|
|
|
// Preconditions supported are:
|
|
|
|
//
|
|
|
|
// x-minio-source-mtime
|
|
|
|
// x-minio-source-etag
|
|
|
|
func checkPreconditionsPUT(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo, opts ObjectOptions) bool {
|
|
|
|
// Return false for methods other than PUT.
|
|
|
|
if r.Method != http.MethodPut {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// 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.
|
|
|
|
if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// If top level is a delete marker proceed to upload.
|
|
|
|
if objInfo.DeleteMarker {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Headers to be set of object content is not going to be written to the client.
|
|
|
|
writeHeaders := func() {
|
|
|
|
// set common headers
|
|
|
|
setCommonHeaders(w)
|
|
|
|
|
|
|
|
// set object-related metadata headers
|
|
|
|
w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat))
|
|
|
|
|
|
|
|
if objInfo.ETag != "" {
|
|
|
|
w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-06 21:58:29 -05:00
|
|
|
// If-Match : Return the object only if its entity tag (ETag) is the same as the one specified;
|
|
|
|
// otherwise return a 412 (precondition failed).
|
|
|
|
ifMatchETagHeader := r.Header.Get(xhttp.IfMatch)
|
|
|
|
if ifMatchETagHeader != "" {
|
|
|
|
if !isETagEqual(objInfo.ETag, ifMatchETagHeader) {
|
|
|
|
// If the object ETag does not match with the specified ETag.
|
|
|
|
writeHeaders()
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If-None-Match : Return the object only if its entity tag (ETag) is different from the
|
|
|
|
// one specified otherwise, return a 304 (not modified).
|
|
|
|
ifNoneMatchETagHeader := r.Header.Get(xhttp.IfNoneMatch)
|
|
|
|
if ifNoneMatchETagHeader != "" {
|
|
|
|
if isETagEqual(objInfo.ETag, ifNoneMatchETagHeader) {
|
|
|
|
// If the object ETag matches with the specified ETag.
|
|
|
|
writeHeaders()
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-14 21:44:04 -04:00
|
|
|
etagMatch := opts.PreserveETag != "" && isETagEqual(objInfo.ETag, opts.PreserveETag)
|
|
|
|
vidMatch := opts.VersionID != "" && opts.VersionID == objInfo.VersionID
|
2023-08-24 17:33:58 -04:00
|
|
|
if etagMatch && vidMatch {
|
2022-09-14 21:44:04 -04:00
|
|
|
writeHeaders()
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Object content should be persisted.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-11-22 16:46:17 -05:00
|
|
|
// Headers to be set of object content is not going to be written to the client.
|
|
|
|
func writeHeadersPrecondition(w http.ResponseWriter, objInfo ObjectInfo) {
|
|
|
|
// set common headers
|
|
|
|
setCommonHeaders(w)
|
|
|
|
|
|
|
|
// set object-related metadata headers
|
|
|
|
w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat))
|
|
|
|
|
|
|
|
if objInfo.ETag != "" {
|
|
|
|
w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""}
|
|
|
|
}
|
|
|
|
|
|
|
|
if objInfo.VersionID != "" {
|
|
|
|
w.Header()[xhttp.AmzVersionID] = []string{objInfo.VersionID}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !objInfo.Expires.IsZero() {
|
|
|
|
w.Header().Set(xhttp.Expires, objInfo.Expires.UTC().Format(http.TimeFormat))
|
|
|
|
}
|
|
|
|
|
|
|
|
if objInfo.CacheControl != "" {
|
|
|
|
w.Header().Set(xhttp.CacheControl, objInfo.CacheControl)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 22:24:34 -04:00
|
|
|
// Validates the preconditions. Returns true if GET/HEAD operation should not proceed.
|
|
|
|
// Preconditions supported are:
|
2022-08-26 15:52:29 -04:00
|
|
|
//
|
|
|
|
// If-Modified-Since
|
|
|
|
// If-Unmodified-Since
|
|
|
|
// If-Match
|
|
|
|
// If-None-Match
|
2020-04-21 01:01:59 -04:00
|
|
|
func checkPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo, opts ObjectOptions) bool {
|
2016-07-10 20:32:59 -04:00
|
|
|
// Return false for methods other than GET and HEAD.
|
2019-07-03 01:34:32 -04:00
|
|
|
if r.Method != http.MethodGet && r.Method != http.MethodHead {
|
2016-07-10 20:32:59 -04:00
|
|
|
return false
|
|
|
|
}
|
2016-07-11 22:24:34 -04:00
|
|
|
// 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.
|
|
|
|
if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
|
|
|
|
return false
|
|
|
|
}
|
2016-07-10 20:32:59 -04:00
|
|
|
|
2020-04-21 01:01:59 -04:00
|
|
|
// Check if the part number is correct.
|
2020-06-10 12:22:15 -04:00
|
|
|
if opts.PartNumber > 1 && opts.PartNumber > len(objInfo.Parts) {
|
2021-01-22 15:09:24 -05:00
|
|
|
// According to S3 we don't need to set any object information here.
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartNumber), r.URL)
|
2020-04-21 01:01:59 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-11-22 16:46:17 -05:00
|
|
|
// If-None-Match : Return the object only if its entity tag (ETag) is different from the
|
|
|
|
// one specified otherwise, return a 304 (not modified).
|
|
|
|
ifNoneMatchETagHeader := r.Header.Get(xhttp.IfNoneMatch)
|
|
|
|
if ifNoneMatchETagHeader != "" {
|
|
|
|
if isETagEqual(objInfo.ETag, ifNoneMatchETagHeader) {
|
|
|
|
// If the object ETag matches with the specified ETag.
|
|
|
|
writeHeadersPrecondition(w, objInfo)
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-10 20:32:59 -04:00
|
|
|
// If-Modified-Since : Return the object only if it has been modified since the specified time,
|
|
|
|
// otherwise return a 304 (not modified).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifModifiedSinceHeader := r.Header.Get(xhttp.IfModifiedSince)
|
2016-07-10 20:32:59 -04:00
|
|
|
if ifModifiedSinceHeader != "" {
|
2022-09-07 10:24:54 -04:00
|
|
|
if givenTime, err := amztime.ParseHeader(ifModifiedSinceHeader); err == nil {
|
2017-04-12 15:34:57 -04:00
|
|
|
if !ifModifiedSince(objInfo.ModTime, givenTime) {
|
|
|
|
// If the object is not modified since the specified time.
|
2023-11-22 16:46:17 -05:00
|
|
|
writeHeadersPrecondition(w, objInfo)
|
2017-04-12 15:34:57 -04:00
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
2016-07-10 20:32:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If-Match : Return the object only if its entity tag (ETag) is the same as the one specified;
|
|
|
|
// otherwise return a 412 (precondition failed).
|
2019-07-03 01:34:32 -04:00
|
|
|
ifMatchETagHeader := r.Header.Get(xhttp.IfMatch)
|
2016-07-10 20:32:59 -04:00
|
|
|
if ifMatchETagHeader != "" {
|
2017-05-14 15:05:51 -04:00
|
|
|
if !isETagEqual(objInfo.ETag, ifMatchETagHeader) {
|
2016-07-10 20:32:59 -04:00
|
|
|
// If the object ETag does not match with the specified ETag.
|
2023-11-22 16:46:17 -05:00
|
|
|
writeHeadersPrecondition(w, objInfo)
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
2016-07-10 20:32:59 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-22 16:46:17 -05:00
|
|
|
// If-Unmodified-Since : Return the object only if it has not been modified since the specified
|
|
|
|
// time, otherwise return a 412 (precondition failed).
|
|
|
|
ifUnmodifiedSinceHeader := r.Header.Get(xhttp.IfUnmodifiedSince)
|
|
|
|
if ifUnmodifiedSinceHeader != "" {
|
|
|
|
if givenTime, err := amztime.ParseHeader(ifUnmodifiedSinceHeader); err == nil {
|
|
|
|
if ifModifiedSince(objInfo.ModTime, givenTime) {
|
|
|
|
// If the object is modified since the specified time.
|
|
|
|
writeHeadersPrecondition(w, objInfo)
|
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
|
|
|
|
return true
|
|
|
|
}
|
2016-07-10 20:32:59 -04:00
|
|
|
}
|
|
|
|
}
|
2023-11-22 16:46:17 -05:00
|
|
|
|
2016-07-10 20:32:59 -04:00
|
|
|
// Object content should be written to http.ResponseWriter
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns true if object was modified after givenTime.
|
2017-04-12 15:34:57 -04:00
|
|
|
func ifModifiedSince(objTime time.Time, givenTime time.Time) bool {
|
2016-07-10 20:32:59 -04:00
|
|
|
// The Date-Modified header truncates sub-second precision, so
|
|
|
|
// use mtime < t+1s instead of mtime <= t to check for unmodified.
|
2019-02-13 07:59:36 -05:00
|
|
|
return objTime.After(givenTime.Add(1 * time.Second))
|
2016-07-10 20:32:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// canonicalizeETag returns ETag with leading and trailing double-quotes removed,
|
|
|
|
// if any present
|
|
|
|
func canonicalizeETag(etag string) string {
|
2019-04-01 15:19:52 -04:00
|
|
|
return etagRegex.ReplaceAllString(etag, "$1")
|
2016-07-10 20:32:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// isETagEqual return true if the canonical representations of two ETag strings
|
|
|
|
// are equal, false otherwise
|
|
|
|
func isETagEqual(left, right string) bool {
|
|
|
|
return canonicalizeETag(left) == canonicalizeETag(right)
|
|
|
|
}
|
2017-04-27 02:27:48 -04:00
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
// setPutObjHeaders sets all the necessary headers returned back
|
|
|
|
// upon a success Put/Copy/CompleteMultipart/Delete requests
|
|
|
|
// to activate delete only headers set delete as true
|
|
|
|
func setPutObjHeaders(w http.ResponseWriter, objInfo ObjectInfo, delete bool) {
|
|
|
|
// We must not use the http.Header().Set method here because some (broken)
|
|
|
|
// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
|
|
|
|
// Therefore, we have to set the ETag directly as map entry.
|
|
|
|
if objInfo.ETag != "" && !delete {
|
|
|
|
w.Header()[xhttp.ETag] = []string{`"` + objInfo.ETag + `"`}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the relevant version ID as part of the response header.
|
2023-06-13 16:52:33 -04:00
|
|
|
if objInfo.VersionID != "" && objInfo.VersionID != nullVersionID {
|
2020-06-12 23:04:01 -04:00
|
|
|
w.Header()[xhttp.AmzVersionID] = []string{objInfo.VersionID}
|
|
|
|
// If version is a deleted marker, set this header as well
|
|
|
|
if objInfo.DeleteMarker && delete { // only returned during delete object
|
|
|
|
w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(objInfo.DeleteMarker)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 01:00:42 -05:00
|
|
|
if objInfo.Bucket != "" && objInfo.Name != "" {
|
2020-10-08 15:32:32 -04:00
|
|
|
if lc, err := globalLifecycleSys.Get(objInfo.Bucket); err == nil && !delete {
|
2021-07-20 20:36:55 -04:00
|
|
|
lc.SetPredictionHeaders(w, objInfo.ToLifecycleOpts())
|
2020-05-21 17:12:52 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-28 11:26:32 -04:00
|
|
|
hash.AddChecksumHeader(w, objInfo.decryptChecksums(0))
|
2020-05-21 17:12:52 -04:00
|
|
|
}
|
2021-11-19 20:54:10 -05:00
|
|
|
|
2023-05-02 15:56:33 -04:00
|
|
|
func deleteObjectVersions(ctx context.Context, o ObjectLayer, bucket string, toDel []ObjectToDelete, lcEvent lifecycle.Event) {
|
2021-11-19 20:54:10 -05:00
|
|
|
for remaining := toDel; len(remaining) > 0; toDel = remaining {
|
|
|
|
if len(toDel) > maxDeleteList {
|
|
|
|
remaining = toDel[maxDeleteList:]
|
|
|
|
toDel = toDel[:maxDeleteList]
|
|
|
|
} else {
|
|
|
|
remaining = nil
|
|
|
|
}
|
2022-05-06 22:05:28 -04:00
|
|
|
vc, _ := globalBucketVersioningSys.Get(bucket)
|
2021-11-19 20:54:10 -05:00
|
|
|
deletedObjs, errs := o.DeleteObjects(ctx, bucket, toDel, ObjectOptions{
|
2022-05-08 01:06:44 -04:00
|
|
|
PrefixEnabledFn: vc.PrefixEnabled,
|
|
|
|
VersionSuspended: vc.Suspended(),
|
2021-11-19 20:54:10 -05:00
|
|
|
})
|
2023-10-10 03:33:42 -04:00
|
|
|
|
|
|
|
for i, dobj := range deletedObjs {
|
2023-04-11 22:22:32 -04:00
|
|
|
oi := ObjectInfo{
|
|
|
|
Bucket: bucket,
|
|
|
|
Name: dobj.ObjectName,
|
|
|
|
VersionID: dobj.VersionID,
|
|
|
|
}
|
|
|
|
traceFn := globalLifecycleSys.trace(oi)
|
2023-05-22 18:28:56 -04:00
|
|
|
// Note: NewerNoncurrentVersions action is performed only scanner today
|
|
|
|
tags := newLifecycleAuditEvent(lcEventSrc_Scanner, lcEvent).Tags()
|
2023-05-02 15:56:33 -04:00
|
|
|
|
2023-04-03 14:58:04 -04:00
|
|
|
// Send audit for the lifecycle delete operation
|
|
|
|
auditLogLifecycle(
|
|
|
|
ctx,
|
2023-04-11 22:22:32 -04:00
|
|
|
oi,
|
2023-04-26 20:49:00 -04:00
|
|
|
ILMExpiry, tags, traceFn)
|
2023-04-03 14:58:04 -04:00
|
|
|
|
2023-10-10 03:33:42 -04:00
|
|
|
evArgs := eventArgs{
|
2021-11-19 20:54:10 -05:00
|
|
|
EventName: event.ObjectRemovedDelete,
|
|
|
|
BucketName: bucket,
|
|
|
|
Object: ObjectInfo{
|
|
|
|
Name: dobj.ObjectName,
|
|
|
|
VersionID: dobj.VersionID,
|
|
|
|
},
|
2023-04-06 13:20:53 -04:00
|
|
|
UserAgent: "Internal: [ILM-Expiry]",
|
|
|
|
Host: globalLocalNodeName,
|
2023-10-10 03:33:42 -04:00
|
|
|
}
|
|
|
|
if errs[i] != nil {
|
|
|
|
evArgs.RespElements = map[string]string{
|
|
|
|
"error": fmt.Sprintf("failed to delete %s(%s), with error %v", dobj.ObjectName, dobj.VersionID, errs[i]),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sendEvent(evArgs)
|
2021-11-19 20:54:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|