2021-03-19 23:35:16 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Query is a type used to query any single value index that may include an
|
|
|
|
// enterprise identifier.
|
|
|
|
type Query struct {
|
|
|
|
Value string
|
|
|
|
structs.EnterpriseMeta
|
|
|
|
}
|
|
|
|
|
2021-11-08 14:35:56 +00:00
|
|
|
func (q Query) IDValue() string {
|
|
|
|
return q.Value
|
|
|
|
}
|
|
|
|
|
2021-03-29 18:07:36 +00:00
|
|
|
// NamespaceOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q Query) NamespaceOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.NamespaceOrDefault()
|
|
|
|
}
|
|
|
|
|
2021-07-22 18:58:08 +00:00
|
|
|
// PartitionOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q Query) PartitionOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.PartitionOrDefault()
|
|
|
|
}
|
|
|
|
|
2021-03-29 18:14:20 +00:00
|
|
|
// indexFromQuery builds an index key where Query.Value is lowercase, and is
|
|
|
|
// a required value.
|
|
|
|
func indexFromQuery(arg interface{}) ([]byte, error) {
|
|
|
|
q, ok := arg.(Query)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("unexpected type %T for Query index", arg)
|
|
|
|
}
|
|
|
|
|
|
|
|
var b indexBuilder
|
|
|
|
b.String(strings.ToLower(q.Value))
|
|
|
|
return b.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:29:39 +00:00
|
|
|
func indexFromServiceNameAsString(arg interface{}) ([]byte, error) {
|
|
|
|
sn, ok := arg.(structs.ServiceName)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("unexpected type %T for ServiceName index", arg)
|
|
|
|
}
|
|
|
|
|
|
|
|
var b indexBuilder
|
|
|
|
b.String(strings.ToLower(sn.String()))
|
|
|
|
return b.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
2021-03-19 23:35:16 +00:00
|
|
|
func uuidStringToBytes(uuid string) ([]byte, error) {
|
2021-08-19 21:17:59 +00:00
|
|
|
// Verify the length
|
|
|
|
if l := len(uuid); l != 36 {
|
2021-03-19 23:35:16 +00:00
|
|
|
return nil, fmt.Errorf("UUID must be 36 characters")
|
|
|
|
}
|
2021-08-19 21:17:59 +00:00
|
|
|
return parseUUIDString(uuid)
|
|
|
|
}
|
|
|
|
|
|
|
|
func variableLengthUUIDStringToBytes(uuid string) ([]byte, error) {
|
|
|
|
// Verify the length
|
|
|
|
if l := len(uuid); l > 36 {
|
|
|
|
return nil, fmt.Errorf("Invalid UUID length. UUID have 36 characters; got %d", l)
|
|
|
|
}
|
|
|
|
return parseUUIDString(uuid)
|
|
|
|
}
|
2021-03-19 23:35:16 +00:00
|
|
|
|
2021-08-19 21:17:59 +00:00
|
|
|
// parseUUIDString is a modified version of memdb.UUIDFieldIndex.parseString.
|
|
|
|
// Callers should verify the length.
|
|
|
|
func parseUUIDString(uuid string) ([]byte, error) {
|
2021-03-19 23:35:16 +00:00
|
|
|
hyphens := strings.Count(uuid, "-")
|
|
|
|
if hyphens > 4 {
|
|
|
|
return nil, fmt.Errorf(`UUID should have maximum of 4 "-"; got %d`, hyphens)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The sanitized length is the length of the original string without the "-".
|
|
|
|
sanitized := strings.Replace(uuid, "-", "", -1)
|
|
|
|
sanitizedLength := len(sanitized)
|
|
|
|
if sanitizedLength%2 != 0 {
|
|
|
|
return nil, fmt.Errorf("UUID (without hyphens) must be even length")
|
|
|
|
}
|
|
|
|
|
|
|
|
dec, err := hex.DecodeString(sanitized)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid UUID: %w", err)
|
|
|
|
}
|
|
|
|
return dec, nil
|
|
|
|
}
|
2021-03-19 03:07:30 +00:00
|
|
|
|
|
|
|
// BoolQuery is a type used to query a boolean condition that may include an
|
|
|
|
// enterprise identifier.
|
|
|
|
type BoolQuery struct {
|
|
|
|
Value bool
|
|
|
|
structs.EnterpriseMeta
|
|
|
|
}
|
2021-08-19 21:17:59 +00:00
|
|
|
|
2021-09-13 15:53:00 +00:00
|
|
|
// NamespaceOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q BoolQuery) NamespaceOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.NamespaceOrDefault()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PartitionOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q BoolQuery) PartitionOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.PartitionOrDefault()
|
|
|
|
}
|
|
|
|
|
2021-08-19 21:17:59 +00:00
|
|
|
// KeyValueQuery is a type used to query for both a key and a value that may
|
|
|
|
// include an enterprise identifier.
|
|
|
|
type KeyValueQuery struct {
|
|
|
|
Key string
|
|
|
|
Value string
|
|
|
|
structs.EnterpriseMeta
|
|
|
|
}
|
|
|
|
|
|
|
|
// NamespaceOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q KeyValueQuery) NamespaceOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.NamespaceOrDefault()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PartitionOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q KeyValueQuery) PartitionOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.PartitionOrDefault()
|
|
|
|
}
|
|
|
|
|
|
|
|
func indexFromKeyValueQuery(arg interface{}) ([]byte, error) {
|
|
|
|
// NOTE: this is case-sensitive!
|
|
|
|
q, ok := arg.(KeyValueQuery)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("unexpected type %T for Query index", arg)
|
|
|
|
}
|
|
|
|
|
|
|
|
var b indexBuilder
|
|
|
|
b.String(q.Key)
|
|
|
|
b.String(q.Value)
|
|
|
|
return b.Bytes(), nil
|
|
|
|
}
|
2021-09-10 20:56:56 +00:00
|
|
|
|
|
|
|
type AuthMethodQuery struct {
|
|
|
|
Value string
|
|
|
|
AuthMethodEntMeta structs.EnterpriseMeta
|
|
|
|
structs.EnterpriseMeta
|
|
|
|
}
|
|
|
|
|
|
|
|
// NamespaceOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q AuthMethodQuery) NamespaceOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.NamespaceOrDefault()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PartitionOrDefault exists because structs.EnterpriseMeta uses a pointer
|
|
|
|
// receiver for this method. Remove once that is fixed.
|
|
|
|
func (q AuthMethodQuery) PartitionOrDefault() string {
|
|
|
|
return q.EnterpriseMeta.PartitionOrDefault()
|
|
|
|
}
|