pkg/vault/kv/helpers.go (67 lines of code) (raw):
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package kv
import (
"errors"
"github.com/hashicorp/vault/api"
)
// IsKVv2 detect if the givent path match a kv v2 engine.
func isKVv2(secretPath string, client *api.Client) (mountPath string, isV2 bool, err error) {
mountPath, version, err := kvPreflightVersionRequest(client, secretPath)
if err != nil {
return "", false, err
}
return mountPath, version == 2, nil
}
//nolint:gocyclo // to refactor
func kvPreflightVersionRequest(client *api.Client, secretPath string) (mountPath string, backendVersion int, err error) {
// We don't want to use a wrapping call here so save any custom value and
// restore after
currentWrappingLookupFunc := client.CurrentWrappingLookupFunc()
client.SetWrappingLookupFunc(nil)
defer client.SetWrappingLookupFunc(currentWrappingLookupFunc)
currentOutputCurlString := client.OutputCurlString()
client.SetOutputCurlString(false)
defer client.SetOutputCurlString(currentOutputCurlString)
r := client.NewRequest("GET", "/v1/sys/internal/ui/mounts/"+secretPath)
//nolint:staticcheck // TODO: refactor for use of client.Logical().ReadRaw
resp, err := client.RawRequest(r)
if resp != nil {
defer resp.Body.Close()
}
if err != nil {
// If we get a 404 we are using an older version of vault, default to
// version 1
if resp != nil && resp.StatusCode == 404 {
return "", 1, nil
}
return "", 0, err
}
secret, err := api.ParseSecret(resp.Body)
if err != nil {
return "", 0, err
}
if secret == nil {
return "", 0, errors.New("nil response from pre-flight request")
}
if mountPathRaw, ok := secret.Data["path"]; ok {
mountPath, ok = mountPathRaw.(string)
if !ok {
return "", 0, errors.New("path must be a string")
}
}
options := secret.Data["options"]
if options == nil {
return mountPath, 1, nil
}
optionMap, ok := options.(map[string]interface{})
if !ok {
return mountPath, 1, nil
}
versionRaw, hasVersion := optionMap["version"]
if !hasVersion || versionRaw == nil {
return mountPath, 1, nil
}
version, ok := versionRaw.(string)
if !ok {
return "", 0, errors.New("version must be a string")
}
switch version {
case "", "1":
return mountPath, 1, nil
case "2":
return mountPath, 2, nil
}
return mountPath, 1, nil
}