2019-10-24 18:38:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
memdb "github.com/hashicorp/go-memdb"
|
|
|
|
)
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Table Schemas /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
func tokensTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "acl-tokens",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2020-06-16 17:19:31 +00:00
|
|
|
"accessor": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "accessor",
|
|
|
|
// DEPRECATED (ACL-Legacy-Compat) - we should not AllowMissing here once legacy compat is removed
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "AccessorID",
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"id": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "SecretID",
|
|
|
|
Lowercase: false,
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"policies": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "policies",
|
|
|
|
// Need to allow missing for the anonymous token
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &TokenPoliciesIndex{},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"roles": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "roles",
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &TokenRolesIndex{},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"authmethod": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "authmethod",
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "AuthMethod",
|
|
|
|
Lowercase: false,
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"local": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "local",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.ConditionalIndex{
|
|
|
|
Conditional: func(obj interface{}) (bool, error) {
|
|
|
|
if token, ok := obj.(*structs.ACLToken); ok {
|
|
|
|
return token.Local, nil
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"expires-global": {
|
|
|
|
Name: "expires-global",
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &TokenExpirationIndex{LocalFilter: false},
|
|
|
|
},
|
|
|
|
"expires-local": {
|
|
|
|
Name: "expires-local",
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &TokenExpirationIndex{LocalFilter: true},
|
|
|
|
},
|
|
|
|
|
|
|
|
//DEPRECATED (ACL-Legacy-Compat) - This index is only needed while we support upgrading v1 to v2 acls
|
|
|
|
// This table indexes all the ACL tokens that do not have an AccessorID
|
2020-06-16 17:19:31 +00:00
|
|
|
"needs-upgrade": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "needs-upgrade",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.ConditionalIndex{
|
|
|
|
Conditional: func(obj interface{}) (bool, error) {
|
|
|
|
if token, ok := obj.(*structs.ACLToken); ok {
|
|
|
|
return token.AccessorID == "", nil
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func policiesTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "acl-policies",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2020-06-16 17:19:31 +00:00
|
|
|
"id": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"name": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "name",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Name",
|
|
|
|
// TODO (ACL-V2) - should we coerce to lowercase?
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func rolesTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "acl-roles",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2020-06-16 17:19:31 +00:00
|
|
|
"id": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"name": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "name",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Name",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"policies": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "policies",
|
|
|
|
// Need to allow missing for the anonymous token
|
|
|
|
AllowMissing: true,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &RolePoliciesIndex{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func bindingRulesTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "acl-binding-rules",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2020-06-16 17:19:31 +00:00
|
|
|
"id": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
},
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"authmethod": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "authmethod",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "AuthMethod",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func authMethodsTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "acl-auth-methods",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2020-06-16 17:19:31 +00:00
|
|
|
"id": {
|
2019-10-24 18:38:09 +00:00
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Name",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Policy Functions /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclPolicyInsert(tx *txn, policy *structs.ACLPolicy) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
if err := tx.Insert("acl-policies", policy); err != nil {
|
|
|
|
return fmt.Errorf("failed inserting acl policy: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, policy.ModifyIndex, "acl-policies"); err != nil {
|
|
|
|
return fmt.Errorf("failed updating acl policies index: %v", err)
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclPolicyGetByID(tx ReadTxn, id string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-policies", "id", id)
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclPolicyGetByName(tx ReadTxn, name string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-policies", "name", name)
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclPolicyList(tx ReadTxn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-policies", "id")
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclPolicyDeleteWithPolicy(tx *txn, policy *structs.ACLPolicy, idx uint64) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// remove the policy
|
|
|
|
if err := tx.Delete("acl-policies", policy); err != nil {
|
|
|
|
return fmt.Errorf("failed deleting acl policy: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the overall acl-policies index
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, idx, "acl-policies"); err != nil {
|
2019-10-24 18:38:09 +00:00
|
|
|
return fmt.Errorf("failed updating acl policies index: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclPolicyMaxIndex(tx *txn, _ *structs.ACLPolicy, _ *structs.EnterpriseMeta) uint64 {
|
2019-10-24 18:38:09 +00:00
|
|
|
return maxIndexTxn(tx, "acl-policies")
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclPolicyUpsertValidateEnterprise(*txn, *structs.ACLPolicy, *structs.ACLPolicy) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) ACLPolicyUpsertValidateEnterprise(*structs.ACLPolicy, *structs.ACLPolicy) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Token Functions /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenInsert(tx *txn, token *structs.ACLToken) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// insert the token into memdb
|
|
|
|
if err := tx.Insert("acl-tokens", token); err != nil {
|
|
|
|
return fmt.Errorf("failed inserting acl token: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
// update the overall acl-tokens index
|
|
|
|
if err := indexUpdateMaxTxn(tx, token.ModifyIndex, "acl-tokens"); err != nil {
|
|
|
|
return fmt.Errorf("failed updating acl tokens index: %v", err)
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenGetFromIndex(tx *txn, id string, index string, entMeta *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-tokens", index, id)
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenListAll(tx *txn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "id")
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenListLocal(tx *txn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "local", true)
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenListGlobal(tx *txn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "local", false)
|
|
|
|
}
|
|
|
|
|
2020-07-06 22:44:51 +00:00
|
|
|
func aclTokenListByPolicy(tx ReadTxn, policy string, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "policies", policy)
|
|
|
|
}
|
|
|
|
|
2020-07-06 22:44:51 +00:00
|
|
|
func aclTokenListByRole(tx ReadTxn, role string, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "roles", role)
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenListByAuthMethod(tx *txn, authMethod string, _, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-tokens", "authmethod", authMethod)
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenDeleteWithToken(tx *txn, token *structs.ACLToken, idx uint64) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// remove the token
|
|
|
|
if err := tx.Delete("acl-tokens", token); err != nil {
|
|
|
|
return fmt.Errorf("failed deleting acl token: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the overall acl-tokens index
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, idx, "acl-tokens"); err != nil {
|
2019-10-24 18:38:09 +00:00
|
|
|
return fmt.Errorf("failed updating acl tokens index: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenMaxIndex(tx *txn, _ *structs.ACLToken, entMeta *structs.EnterpriseMeta) uint64 {
|
2019-10-24 18:38:09 +00:00
|
|
|
return maxIndexTxn(tx, "acl-tokens")
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclTokenUpsertValidateEnterprise(tx *txn, token *structs.ACLToken, existing *structs.ACLToken) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) ACLTokenUpsertValidateEnterprise(token *structs.ACLToken, existing *structs.ACLToken) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Role Functions /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-07-09 22:51:27 +00:00
|
|
|
func aclRoleInsert(tx *txn, role *structs.ACLRole) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// insert the role into memdb
|
|
|
|
if err := tx.Insert("acl-roles", role); err != nil {
|
|
|
|
return fmt.Errorf("failed inserting acl role: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
// update the overall acl-roles index
|
|
|
|
if err := indexUpdateMaxTxn(tx, role.ModifyIndex, "acl-roles"); err != nil {
|
|
|
|
return fmt.Errorf("failed updating acl roles index: %v", err)
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclRoleGetByID(tx ReadTxn, id string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-roles", "id", id)
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclRoleGetByName(tx ReadTxn, name string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-roles", "name", name)
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:31:23 +00:00
|
|
|
func aclRoleList(tx ReadTxn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-roles", "id")
|
|
|
|
}
|
|
|
|
|
2020-07-06 22:44:51 +00:00
|
|
|
func aclRoleListByPolicy(tx ReadTxn, policy string, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-roles", "policies", policy)
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclRoleDeleteWithRole(tx *txn, role *structs.ACLRole, idx uint64) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// remove the role
|
|
|
|
if err := tx.Delete("acl-roles", role); err != nil {
|
|
|
|
return fmt.Errorf("failed deleting acl role: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the overall acl-roles index
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, idx, "acl-roles"); err != nil {
|
2019-10-24 18:38:09 +00:00
|
|
|
return fmt.Errorf("failed updating acl policies index: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclRoleMaxIndex(tx *txn, _ *structs.ACLRole, _ *structs.EnterpriseMeta) uint64 {
|
2019-10-24 18:38:09 +00:00
|
|
|
return maxIndexTxn(tx, "acl-roles")
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclRoleUpsertValidateEnterprise(tx *txn, role *structs.ACLRole, existing *structs.ACLRole) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) ACLRoleUpsertValidateEnterprise(role *structs.ACLRole, existing *structs.ACLRole) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Binding Rule Functions /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleInsert(tx *txn, rule *structs.ACLBindingRule) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// insert the role into memdb
|
|
|
|
if err := tx.Insert("acl-binding-rules", rule); err != nil {
|
|
|
|
return fmt.Errorf("failed inserting acl role: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
// update the overall acl-binding-rules index
|
|
|
|
if err := indexUpdateMaxTxn(tx, rule.ModifyIndex, "acl-binding-rules"); err != nil {
|
|
|
|
return fmt.Errorf("failed updating acl binding-rules index: %v", err)
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleGetByID(tx *txn, id string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-binding-rules", "id", id)
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleList(tx *txn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-binding-rules", "id")
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleListByAuthMethod(tx *txn, method string, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-binding-rules", "authmethod", method)
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleDeleteWithRule(tx *txn, rule *structs.ACLBindingRule, idx uint64) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// remove the rule
|
|
|
|
if err := tx.Delete("acl-binding-rules", rule); err != nil {
|
|
|
|
return fmt.Errorf("failed deleting acl binding rule: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the overall acl-binding-rules index
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, idx, "acl-binding-rules"); err != nil {
|
2019-10-24 18:38:09 +00:00
|
|
|
return fmt.Errorf("failed updating acl binding rules index: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleMaxIndex(tx *txn, _ *structs.ACLBindingRule, entMeta *structs.EnterpriseMeta) uint64 {
|
2019-10-24 18:38:09 +00:00
|
|
|
return maxIndexTxn(tx, "acl-binding-rules")
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclBindingRuleUpsertValidateEnterprise(tx *txn, rule *structs.ACLBindingRule, existing *structs.ACLBindingRule) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) ACLBindingRuleUpsertValidateEnterprise(rule *structs.ACLBindingRule, existing *structs.ACLBindingRule) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///// ACL Auth Method Functions /////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodInsert(tx *txn, method *structs.ACLAuthMethod) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// insert the role into memdb
|
|
|
|
if err := tx.Insert("acl-auth-methods", method); err != nil {
|
|
|
|
return fmt.Errorf("failed inserting acl role: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
// update the overall acl-auth-methods index
|
|
|
|
if err := indexUpdateMaxTxn(tx, method.ModifyIndex, "acl-auth-methods"); err != nil {
|
|
|
|
return fmt.Errorf("failed updating acl auth methods index: %v", err)
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodGetByName(tx *txn, method string, _ *structs.EnterpriseMeta) (<-chan struct{}, interface{}, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.FirstWatch("acl-auth-methods", "id", method)
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodList(tx *txn, entMeta *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
2019-10-24 18:38:09 +00:00
|
|
|
return tx.Get("acl-auth-methods", "id")
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodDeleteWithMethod(tx *txn, method *structs.ACLAuthMethod, idx uint64) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
// remove the method
|
|
|
|
if err := tx.Delete("acl-auth-methods", method); err != nil {
|
|
|
|
return fmt.Errorf("failed deleting acl auth method: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the overall acl-auth-methods index
|
2019-12-06 19:01:34 +00:00
|
|
|
if err := indexUpdateMaxTxn(tx, idx, "acl-auth-methods"); err != nil {
|
2019-10-24 18:38:09 +00:00
|
|
|
return fmt.Errorf("failed updating acl auth methods index: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodMaxIndex(tx *txn, _ *structs.ACLAuthMethod, entMeta *structs.EnterpriseMeta) uint64 {
|
2019-10-24 18:38:09 +00:00
|
|
|
return maxIndexTxn(tx, "acl-auth-methods")
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:56:43 +00:00
|
|
|
func aclAuthMethodUpsertValidateEnterprise(tx *txn, method *structs.ACLAuthMethod, existing *structs.ACLAuthMethod) error {
|
2019-10-24 18:38:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) ACLAuthMethodUpsertValidateEnterprise(method *structs.ACLAuthMethod, existing *structs.ACLAuthMethod) error {
|
|
|
|
return nil
|
|
|
|
}
|