2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2019-10-24 18:38:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2020-01-03 20:51:19 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2019-10-24 18:38:09 +00:00
|
|
|
)
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
// TODO(acl-move-enterprise-meta) sync this with enterprise
|
|
|
|
var emptyEnterpriseMeta = acl.EnterpriseMeta{}
|
2021-12-08 19:02:14 +00:00
|
|
|
|
2021-07-22 18:20:45 +00:00
|
|
|
// TODO(partition): stop using this
|
2022-03-12 03:51:24 +00:00
|
|
|
func NewEnterpriseMetaInDefaultPartition(_ string) acl.EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return emptyEnterpriseMeta
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
// ReplicationEnterpriseMeta stub
|
|
|
|
func ReplicationEnterpriseMeta() *acl.EnterpriseMeta {
|
|
|
|
return &emptyEnterpriseMeta
|
2021-08-25 12:40:47 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
// TODO(partition): stop using this
|
|
|
|
func WildcardEnterpriseMetaInDefaultPartition() *acl.EnterpriseMeta {
|
2019-12-06 19:01:34 +00:00
|
|
|
return &emptyEnterpriseMeta
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 18:20:45 +00:00
|
|
|
// TODO(partition): stop using this
|
2022-03-12 03:51:24 +00:00
|
|
|
func DefaultEnterpriseMetaInDefaultPartition() *acl.EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return &emptyEnterpriseMeta
|
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultEnterpriseMetaInPartition stub
|
2022-03-12 03:51:24 +00:00
|
|
|
func DefaultEnterpriseMetaInPartition(_ string) *acl.EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return &emptyEnterpriseMeta
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
// WildcardEnterpriseMetaInPartition stub
|
|
|
|
func WildcardEnterpriseMetaInPartition(_ string) *acl.EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return &emptyEnterpriseMeta
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func NewEnterpriseMetaWithPartition(_, _ string) acl.EnterpriseMeta {
|
|
|
|
return emptyEnterpriseMeta
|
2021-07-22 18:20:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func NodeEnterpriseMetaInPartition(_ string) *acl.EnterpriseMeta {
|
2019-12-06 19:01:34 +00:00
|
|
|
return &emptyEnterpriseMeta
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
// TODO(partition): stop using this
|
|
|
|
func NodeEnterpriseMetaInDefaultPartition() *acl.EnterpriseMeta {
|
2019-12-06 19:01:34 +00:00
|
|
|
return &emptyEnterpriseMeta
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
|
|
|
|
// FillAuthzContext stub
|
2021-08-25 18:43:11 +00:00
|
|
|
func (_ *Node) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
|
|
|
|
|
|
|
func (_ *Coordinate) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
|
|
|
|
|
|
|
func (_ *NodeInfo) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
// FillAuthzContext stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *DirEntry) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
2019-11-01 20:48:44 +00:00
|
|
|
// FillAuthzContext stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *RegisterRequest) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func (_ *RegisterRequest) GetEnterpriseMeta() *acl.EnterpriseMeta {
|
2019-12-10 02:26:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (op *TxnNodeOp) FillAuthzContext(ctx *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *TxnServiceOp) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *TxnCheckOp) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func NodeNameString(node string, _ *acl.EnterpriseMeta) string {
|
2021-08-25 18:43:11 +00:00
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func ServiceIDString(id string, _ *acl.EnterpriseMeta) string {
|
2019-12-10 02:26:41 +00:00
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func ParseServiceIDString(input string) (string, *acl.EnterpriseMeta) {
|
2021-07-22 18:20:45 +00:00
|
|
|
return input, DefaultEnterpriseMetaInDefaultPartition()
|
2020-01-24 15:04:58 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 21:10:00 +00:00
|
|
|
func (sid ServiceID) String() string {
|
2019-12-10 02:26:41 +00:00
|
|
|
return sid.ID
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:04:58 +00:00
|
|
|
func ServiceIDFromString(input string) ServiceID {
|
|
|
|
id, _ := ParseServiceIDString(input)
|
|
|
|
return ServiceID{ID: id}
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:51:24 +00:00
|
|
|
func ParseServiceNameString(input string) (string, *acl.EnterpriseMeta) {
|
2021-07-22 18:20:45 +00:00
|
|
|
return input, DefaultEnterpriseMetaInDefaultPartition()
|
2020-06-12 14:57:41 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 21:10:00 +00:00
|
|
|
func (n ServiceName) String() string {
|
2020-06-12 14:57:41 +00:00
|
|
|
return n.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func ServiceNameFromString(input string) ServiceName {
|
|
|
|
id, _ := ParseServiceNameString(input)
|
|
|
|
return ServiceName{Name: id}
|
|
|
|
}
|
|
|
|
|
2020-12-11 21:10:00 +00:00
|
|
|
func (cid CheckID) String() string {
|
2019-12-10 02:26:41 +00:00
|
|
|
return string(cid.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ *HealthCheck) Validate() error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-01-03 20:51:19 +00:00
|
|
|
|
2020-10-09 19:57:29 +00:00
|
|
|
func enterpriseRequestType(m MessageType) (string, bool) {
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2020-01-03 20:51:19 +00:00
|
|
|
// CheckIDs returns the IDs for all checks associated with a session, regardless of type
|
|
|
|
func (s *Session) CheckIDs() []types.CheckID {
|
|
|
|
// Merge all check IDs into a single slice, since they will be handled the same way
|
|
|
|
checks := make([]types.CheckID, 0, len(s.Checks)+len(s.NodeChecks)+len(s.ServiceChecks))
|
|
|
|
checks = append(checks, s.Checks...)
|
|
|
|
|
|
|
|
for _, c := range s.NodeChecks {
|
|
|
|
checks = append(checks, types.CheckID(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range s.ServiceChecks {
|
|
|
|
checks = append(checks, types.CheckID(c.ID))
|
|
|
|
}
|
|
|
|
return checks
|
|
|
|
}
|
2021-03-18 04:15:48 +00:00
|
|
|
|
|
|
|
func (t *Intention) HasWildcardSource() bool {
|
|
|
|
return t.SourceName == WildcardSpecifier
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Intention) HasWildcardDestination() bool {
|
|
|
|
return t.DestinationName == WildcardSpecifier
|
|
|
|
}
|
2021-07-22 19:33:22 +00:00
|
|
|
|
|
|
|
func (s *ServiceNode) NodeIdentity() Identity {
|
|
|
|
return Identity{ID: s.Node}
|
|
|
|
}
|