mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 19:47:54 +00:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
267 lines
6.4 KiB
Go
267 lines
6.4 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package manta
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
metrics "github.com/armon/go-metrics"
|
|
log "github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/vault/sdk/physical"
|
|
triton "github.com/joyent/triton-go"
|
|
"github.com/joyent/triton-go/authentication"
|
|
"github.com/joyent/triton-go/errors"
|
|
"github.com/joyent/triton-go/storage"
|
|
)
|
|
|
|
const mantaDefaultRootStore = "/stor"
|
|
|
|
type MantaBackend struct {
|
|
logger log.Logger
|
|
permitPool *physical.PermitPool
|
|
client *storage.StorageClient
|
|
directory string
|
|
}
|
|
|
|
func NewMantaBackend(conf map[string]string, logger log.Logger) (physical.Backend, error) {
|
|
user := os.Getenv("MANTA_USER")
|
|
if user == "" {
|
|
user = conf["user"]
|
|
}
|
|
|
|
keyId := os.Getenv("MANTA_KEY_ID")
|
|
if keyId == "" {
|
|
keyId = conf["key_id"]
|
|
}
|
|
|
|
url := os.Getenv("MANTA_URL")
|
|
if url == "" {
|
|
url = conf["url"]
|
|
} else {
|
|
url = "https://us-east.manta.joyent.com"
|
|
}
|
|
|
|
subuser := os.Getenv("MANTA_SUBUSER")
|
|
if subuser == "" {
|
|
if confUser, ok := conf["subuser"]; ok {
|
|
subuser = confUser
|
|
}
|
|
}
|
|
|
|
input := authentication.SSHAgentSignerInput{
|
|
KeyID: keyId,
|
|
AccountName: user,
|
|
Username: subuser,
|
|
}
|
|
signer, err := authentication.NewSSHAgentSigner(input)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Error Creating SSH Agent Signer: %w", err)
|
|
}
|
|
|
|
maxParStr, ok := conf["max_parallel"]
|
|
var maxParInt int
|
|
if ok {
|
|
maxParInt, err = strconv.Atoi(maxParStr)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed parsing max_parallel parameter: %w", err)
|
|
}
|
|
if logger.IsDebug() {
|
|
logger.Debug("max_parallel set", "max_parallel", maxParInt)
|
|
}
|
|
}
|
|
|
|
config := &triton.ClientConfig{
|
|
MantaURL: url,
|
|
AccountName: user,
|
|
Signers: []authentication.Signer{signer},
|
|
}
|
|
|
|
client, err := storage.NewClient(config)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed initialising Storage client: %w", err)
|
|
}
|
|
|
|
return &MantaBackend{
|
|
client: client,
|
|
directory: conf["directory"],
|
|
logger: logger,
|
|
permitPool: physical.NewPermitPool(maxParInt),
|
|
}, nil
|
|
}
|
|
|
|
// Put is used to insert or update an entry
|
|
func (m *MantaBackend) Put(ctx context.Context, entry *physical.Entry) error {
|
|
defer metrics.MeasureSince([]string{"manta", "put"}, time.Now())
|
|
|
|
m.permitPool.Acquire()
|
|
defer m.permitPool.Release()
|
|
|
|
r := bytes.NewReader(entry.Value)
|
|
r.Seek(0, 0)
|
|
|
|
return m.client.Objects().Put(ctx, &storage.PutObjectInput{
|
|
ObjectPath: path.Join(mantaDefaultRootStore, m.directory, entry.Key, ".vault_value"),
|
|
ObjectReader: r,
|
|
ContentLength: uint64(len(entry.Value)),
|
|
ForceInsert: true,
|
|
})
|
|
}
|
|
|
|
// Get is used to fetch an entry
|
|
func (m *MantaBackend) Get(ctx context.Context, key string) (*physical.Entry, error) {
|
|
defer metrics.MeasureSince([]string{"manta", "get"}, time.Now())
|
|
|
|
m.permitPool.Acquire()
|
|
defer m.permitPool.Release()
|
|
|
|
output, err := m.client.Objects().Get(ctx, &storage.GetObjectInput{
|
|
ObjectPath: path.Join(mantaDefaultRootStore, m.directory, key, ".vault_value"),
|
|
})
|
|
if err != nil {
|
|
if strings.Contains(err.Error(), "ResourceNotFound") {
|
|
return nil, nil
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
defer output.ObjectReader.Close()
|
|
|
|
data := make([]byte, output.ContentLength)
|
|
_, err = io.ReadFull(output.ObjectReader, data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ent := &physical.Entry{
|
|
Key: key,
|
|
Value: data,
|
|
}
|
|
|
|
return ent, nil
|
|
}
|
|
|
|
// Delete is used to permanently delete an entry
|
|
func (m *MantaBackend) Delete(ctx context.Context, key string) error {
|
|
defer metrics.MeasureSince([]string{"manta", "delete"}, time.Now())
|
|
|
|
m.permitPool.Acquire()
|
|
defer m.permitPool.Release()
|
|
|
|
if strings.HasSuffix(key, "/") {
|
|
err := m.client.Dir().Delete(ctx, &storage.DeleteDirectoryInput{
|
|
DirectoryName: path.Join(mantaDefaultRootStore, m.directory, key),
|
|
ForceDelete: true,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
err := m.client.Objects().Delete(ctx, &storage.DeleteObjectInput{
|
|
ObjectPath: path.Join(mantaDefaultRootStore, m.directory, key, ".vault_value"),
|
|
})
|
|
if err != nil {
|
|
if errors.IsResourceNotFound(err) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
return tryDeleteDirectory(ctx, m, path.Join(mantaDefaultRootStore, m.directory, key))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func tryDeleteDirectory(ctx context.Context, m *MantaBackend, directoryPath string) error {
|
|
objs, err := m.client.Dir().List(ctx, &storage.ListDirectoryInput{
|
|
DirectoryName: directoryPath,
|
|
})
|
|
if err != nil {
|
|
if errors.IsResourceNotFound(err) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
if objs != nil && len(objs.Entries) == 0 {
|
|
err := m.client.Dir().Delete(ctx, &storage.DeleteDirectoryInput{
|
|
DirectoryName: directoryPath,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tryDeleteDirectory(ctx, m, path.Dir(directoryPath))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// List is used to list all the keys under a given
|
|
// prefix, up to the next prefix.
|
|
func (m *MantaBackend) List(ctx context.Context, prefix string) ([]string, error) {
|
|
defer metrics.MeasureSince([]string{"manta", "list"}, time.Now())
|
|
|
|
m.permitPool.Acquire()
|
|
defer m.permitPool.Release()
|
|
|
|
objs, err := m.client.Dir().List(ctx, &storage.ListDirectoryInput{
|
|
DirectoryName: path.Join(mantaDefaultRootStore, m.directory, prefix),
|
|
})
|
|
if err != nil {
|
|
if errors.IsResourceNotFound(err) {
|
|
return []string{}, nil
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
keys := []string{}
|
|
for _, obj := range objs.Entries {
|
|
if obj.Type == "directory" {
|
|
objs, err := m.client.Dir().List(ctx, &storage.ListDirectoryInput{
|
|
DirectoryName: path.Join(mantaDefaultRootStore, m.directory, prefix, obj.Name),
|
|
})
|
|
if err != nil {
|
|
if !errors.IsResourceNotFound(err) {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// We need to check to see if there is something more than just the `value` file
|
|
// if the length of the children is:
|
|
// > 1 and includes the value `index` then we need to add foo and foo/
|
|
// = 1 and the value is `index` then we need to add foo
|
|
// = 1 and the value is not `index` then we need to add foo/
|
|
if len(objs.Entries) == 1 {
|
|
if objs.Entries[0].Name != ".vault_value" {
|
|
keys = append(keys, fmt.Sprintf("%s/", obj.Name))
|
|
} else {
|
|
keys = append(keys, obj.Name)
|
|
}
|
|
} else if len(objs.Entries) > 1 {
|
|
for _, childObj := range objs.Entries {
|
|
if childObj.Name == ".vault_value" {
|
|
keys = append(keys, obj.Name)
|
|
} else {
|
|
keys = append(keys, fmt.Sprintf("%s/", obj.Name))
|
|
}
|
|
}
|
|
} else {
|
|
keys = append(keys, obj.Name)
|
|
}
|
|
}
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
return keys, nil
|
|
}
|