1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
//
// Copyright (c) 2015-2024 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 madmin
import (
"bufio"
"context"
"encoding/base64"
"errors"
"fmt"
"io"
"net/http"
"net/url"
)
// InspectOptions provides options to Inspect.
type InspectOptions struct {
Volume, File string
PublicKey []byte // PublicKey to use for inspected data.
}
// Inspect makes an admin call to download a raw files from disk.
// If inspect is called with a public key no key will be returned
// and the data is returned encrypted with the public key.
func (adm *AdminClient) Inspect(ctx context.Context, d InspectOptions) (key []byte, c io.ReadCloser, err error) {
// Add form key/values in the body
form := make(url.Values)
form.Set("volume", d.Volume)
form.Set("file", d.File)
if d.PublicKey != nil {
form.Set("public-key", base64.StdEncoding.EncodeToString(d.PublicKey))
}
method := ""
reqData := requestData{
relPath: fmt.Sprintf(adminAPIPrefix + "/inspect-data"),
}
// If the public-key is specified, create a POST request and send
// parameters as multipart-form instead of query values
if d.PublicKey != nil {
method = http.MethodPost
reqData.customHeaders = make(http.Header)
reqData.customHeaders.Set("Content-Type", "application/x-www-form-urlencoded")
reqData.content = []byte(form.Encode())
} else {
method = http.MethodGet
reqData.queryValues = form
}
resp, err := adm.executeMethod(ctx, method, reqData)
if err != nil {
return nil, nil, err
}
if resp.StatusCode != http.StatusOK {
closeResponse(resp)
return nil, nil, httpRespToErrorResponse(resp)
}
bior := bufio.NewReaderSize(resp.Body, 4<<10)
format, err := bior.ReadByte()
if err != nil {
closeResponse(resp)
return nil, nil, err
}
switch format {
case 1:
key = make([]byte, 32)
// Read key...
_, err = io.ReadFull(bior, key[:])
if err != nil {
closeResponse(resp)
return nil, nil, err
}
case 2:
if err := bior.UnreadByte(); err != nil {
return nil, nil, err
}
default:
closeResponse(resp)
return nil, nil, errors.New("unknown data version")
}
// Return body
return key, &closeWrapper{Reader: bior, Closer: resp.Body}, nil
}
type closeWrapper struct {
io.Reader
io.Closer
}
|