2021-04-18 15:41:13 -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/>.
|
2018-10-09 17:00:01 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"errors"
|
2022-09-19 14:05:16 -04:00
|
|
|
"io"
|
2021-02-05 12:57:30 -05:00
|
|
|
"net/http"
|
2018-10-09 17:00:01 -04:00
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/hash"
|
2018-10-09 17:00:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var errConfigNotFound = errors.New("config file not found")
|
|
|
|
|
2022-01-03 13:22:58 -05:00
|
|
|
func readConfigWithMetadata(ctx context.Context, store objectIO, configFile string) ([]byte, ObjectInfo, error) {
|
|
|
|
r, err := store.GetObjectNInfo(ctx, minioMetaBucket, configFile, nil, http.Header{}, readLock, ObjectOptions{})
|
2021-02-05 12:57:30 -05:00
|
|
|
if err != nil {
|
2018-10-09 17:00:01 -04:00
|
|
|
// Treat object not found as config not found.
|
|
|
|
if isErrObjectNotFound(err) {
|
2021-12-11 12:03:39 -05:00
|
|
|
return nil, ObjectInfo{}, errConfigNotFound
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
2021-12-11 12:03:39 -05:00
|
|
|
return nil, ObjectInfo{}, err
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2021-02-05 12:57:30 -05:00
|
|
|
defer r.Close()
|
2018-10-09 17:00:01 -04:00
|
|
|
|
2022-09-19 14:05:16 -04:00
|
|
|
buf, err := io.ReadAll(r)
|
2021-02-05 12:57:30 -05:00
|
|
|
if err != nil {
|
2021-12-11 12:03:39 -05:00
|
|
|
return nil, ObjectInfo{}, err
|
2021-02-05 12:57:30 -05:00
|
|
|
}
|
|
|
|
if len(buf) == 0 {
|
2021-12-11 12:03:39 -05:00
|
|
|
return nil, ObjectInfo{}, errConfigNotFound
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
2021-12-11 12:03:39 -05:00
|
|
|
return buf, r.ObjInfo, nil
|
|
|
|
}
|
|
|
|
|
2022-01-03 13:22:58 -05:00
|
|
|
func readConfig(ctx context.Context, store objectIO, configFile string) ([]byte, error) {
|
|
|
|
buf, _, err := readConfigWithMetadata(ctx, store, configFile)
|
2021-12-11 12:03:39 -05:00
|
|
|
return buf, err
|
2018-10-09 17:00:01 -04:00
|
|
|
}
|
|
|
|
|
2020-09-10 12:18:19 -04:00
|
|
|
type objectDeleter interface {
|
|
|
|
DeleteObject(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func deleteConfig(ctx context.Context, objAPI objectDeleter, configFile string) error {
|
2021-09-17 22:34:48 -04:00
|
|
|
_, err := objAPI.DeleteObject(ctx, minioMetaBucket, configFile, ObjectOptions{
|
|
|
|
DeletePrefix: true,
|
|
|
|
})
|
2020-04-16 19:22:34 -04:00
|
|
|
if err != nil && isErrObjectNotFound(err) {
|
|
|
|
return errConfigNotFound
|
|
|
|
}
|
|
|
|
return err
|
2018-10-12 14:32:18 -04:00
|
|
|
}
|
|
|
|
|
2022-01-03 13:22:58 -05:00
|
|
|
func saveConfig(ctx context.Context, store objectIO, configFile string, data []byte) error {
|
pkg/etag: add new package for S3 ETag handling (#11577)
This commit adds a new package `etag` for dealing
with S3 ETags.
Even though ETag is often viewed as MD5 checksum of
an object, handling S3 ETags correctly is a surprisingly
complex task. While it is true that the ETag corresponds
to the MD5 for the most basic S3 API operations, there are
many exceptions in case of multipart uploads or encryption.
In worse, some S3 clients expect very specific behavior when
it comes to ETags. For example, some clients expect that the
ETag is a double-quoted string and fail otherwise.
Non-AWS compliant ETag handling has been a source of many bugs
in the past.
Therefore, this commit adds a dedicated `etag` package that provides
functionality for parsing, generating and converting S3 ETags.
Further, this commit removes the ETag computation from the `hash`
package. Instead, the `hash` package (i.e. `hash.Reader`) should
focus only on computing and verifying the content-sha256.
One core feature of this commit is to provide a mechanism to
communicate a computed ETag from a low-level `io.Reader` to
a high-level `io.Reader`.
This problem occurs when an S3 server receives a request and
has to compute the ETag of the content. However, the server
may also wrap the initial body with several other `io.Reader`,
e.g. when encrypting or compressing the content:
```
reader := Encrypt(Compress(ETag(content)))
```
In such a case, the ETag should be accessible by the high-level
`io.Reader`.
The `etag` provides a mechanism to wrap `io.Reader` implementations
such that the `ETag` can be accessed by a type-check.
This technique is applied to the PUT, COPY and Upload handlers.
2021-02-23 15:31:53 -05:00
|
|
|
hashReader, err := hash.NewReader(bytes.NewReader(data), int64(len(data)), "", getSHA256Hash(data), int64(len(data)))
|
2018-10-09 17:00:01 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-01-03 13:22:58 -05:00
|
|
|
_, err = store.PutObject(ctx, minioMetaBucket, configFile, NewPutObjReader(hashReader), ObjectOptions{MaxParity: true})
|
2018-10-09 17:00:01 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkConfig(ctx context.Context, objAPI ObjectLayer, configFile string) error {
|
|
|
|
if _, err := objAPI.GetObjectInfo(ctx, minioMetaBucket, configFile, ObjectOptions{}); err != nil {
|
|
|
|
// Treat object not found as config not found.
|
|
|
|
if isErrObjectNotFound(err) {
|
|
|
|
return errConfigNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|