mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
5fb9df1640
* 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 <Blog URL>, 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 BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
310 lines
7.5 KiB
Go
310 lines
7.5 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package agent
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"regexp"
|
|
|
|
"github.com/hashicorp/consul-net-rpc/go-msgpack/codec"
|
|
"github.com/hashicorp/go-uuid"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
const (
|
|
// userEventMaxVersion is the maximum protocol version we understand
|
|
userEventMaxVersion = 1
|
|
|
|
// remoteExecName is the event name for a remote exec command
|
|
remoteExecName = "_rexec"
|
|
)
|
|
|
|
// UserEventParam is used to parameterize a user event
|
|
type UserEvent struct {
|
|
// ID of the user event. Automatically generated.
|
|
ID string
|
|
|
|
// Name of the event
|
|
Name string `codec:"n"`
|
|
|
|
// Optional payload
|
|
Payload []byte `codec:"p,omitempty"`
|
|
|
|
// NodeFilter is a regular expression to filter on nodes
|
|
NodeFilter string `codec:"nf,omitempty"`
|
|
|
|
// ServiceFilter is a regular expression to filter on services
|
|
ServiceFilter string `codec:"sf,omitempty"`
|
|
|
|
// TagFilter is a regular expression to filter on tags of a service,
|
|
// must be provided with ServiceFilter
|
|
TagFilter string `codec:"tf,omitempty"`
|
|
|
|
// Version of the user event. Automatically generated.
|
|
Version int `codec:"v"`
|
|
|
|
// LTime is the lamport time. Automatically generated.
|
|
LTime uint64 `codec:"-"`
|
|
}
|
|
|
|
// validateUserEventParams is used to sanity check the inputs
|
|
func validateUserEventParams(params *UserEvent) error {
|
|
// Validate the inputs
|
|
if params.Name == "" {
|
|
return fmt.Errorf("User event missing name")
|
|
}
|
|
if params.TagFilter != "" && params.ServiceFilter == "" {
|
|
return fmt.Errorf("Cannot provide tag filter without service filter")
|
|
}
|
|
if params.NodeFilter != "" {
|
|
if _, err := regexp.Compile(params.NodeFilter); err != nil {
|
|
return fmt.Errorf("Invalid node filter: %v", err)
|
|
}
|
|
}
|
|
if params.ServiceFilter != "" {
|
|
if _, err := regexp.Compile(params.ServiceFilter); err != nil {
|
|
return fmt.Errorf("Invalid service filter: %v", err)
|
|
}
|
|
}
|
|
if params.TagFilter != "" {
|
|
if _, err := regexp.Compile(params.TagFilter); err != nil {
|
|
return fmt.Errorf("Invalid tag filter: %v", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UserEvent is used to fire an event via the Serf layer on the LAN
|
|
func (a *Agent) UserEvent(dc, token string, params *UserEvent) error {
|
|
// Validate the params
|
|
if err := validateUserEventParams(params); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Format message
|
|
var err error
|
|
if params.ID, err = uuid.GenerateUUID(); err != nil {
|
|
return fmt.Errorf("UUID generation failed: %v", err)
|
|
}
|
|
params.Version = userEventMaxVersion
|
|
payload, err := encodeMsgPackUserEvent(¶ms)
|
|
if err != nil {
|
|
return fmt.Errorf("UserEvent encoding failed: %v", err)
|
|
}
|
|
|
|
// Service the event fire over RPC. This ensures that we authorize
|
|
// the request against the token first.
|
|
args := structs.EventFireRequest{
|
|
Datacenter: dc,
|
|
Name: params.Name,
|
|
Payload: payload,
|
|
QueryOptions: structs.QueryOptions{Token: token},
|
|
}
|
|
|
|
// Any server can process in the remote DC, since the
|
|
// gossip will take over anyways
|
|
args.AllowStale = true
|
|
var out structs.EventFireResponse
|
|
return a.RPC(context.Background(), "Internal.EventFire", &args, &out)
|
|
}
|
|
|
|
// handleEvents is used to process incoming user events
|
|
func (a *Agent) handleEvents() {
|
|
for {
|
|
select {
|
|
case e := <-a.eventCh:
|
|
// Decode the event
|
|
msg := new(UserEvent)
|
|
if err := decodeMsgPackUserEvent(e.Payload, msg); err != nil {
|
|
a.logger.Error("Failed to decode event", "error", err)
|
|
continue
|
|
}
|
|
msg.LTime = uint64(e.LTime)
|
|
|
|
// Skip if we don't pass filtering
|
|
if !a.shouldProcessUserEvent(msg) {
|
|
continue
|
|
}
|
|
|
|
// Ingest the event
|
|
a.ingestUserEvent(msg)
|
|
|
|
case <-a.shutdownCh:
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// shouldProcessUserEvent checks if an event makes it through our filters
|
|
func (a *Agent) shouldProcessUserEvent(msg *UserEvent) bool {
|
|
// Check the version
|
|
if msg.Version > userEventMaxVersion {
|
|
a.logger.Warn("Event version may have unsupported features",
|
|
"version", msg.Version,
|
|
"event", msg.Name,
|
|
)
|
|
}
|
|
|
|
// Apply the filters
|
|
if msg.NodeFilter != "" {
|
|
re, err := regexp.Compile(msg.NodeFilter)
|
|
if err != nil {
|
|
a.logger.Error("Failed to parse node filter for event",
|
|
"filter", msg.NodeFilter,
|
|
"event", msg.Name,
|
|
"error", err,
|
|
)
|
|
return false
|
|
}
|
|
if !re.MatchString(a.config.NodeName) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
if msg.ServiceFilter != "" {
|
|
re, err := regexp.Compile(msg.ServiceFilter)
|
|
if err != nil {
|
|
a.logger.Error("Failed to parse service filter for event",
|
|
"filter", msg.ServiceFilter,
|
|
"event", msg.Name,
|
|
"error", err,
|
|
)
|
|
return false
|
|
}
|
|
|
|
var tagRe *regexp.Regexp
|
|
if msg.TagFilter != "" {
|
|
re, err := regexp.Compile(msg.TagFilter)
|
|
if err != nil {
|
|
a.logger.Error("Failed to parse tag filter for event",
|
|
"filter", msg.TagFilter,
|
|
"event", msg.Name,
|
|
"error", err,
|
|
)
|
|
return false
|
|
}
|
|
tagRe = re
|
|
}
|
|
|
|
// Scan for a match
|
|
// NOTE: this only works in the default partition and default namespace
|
|
services := a.State.Services(structs.DefaultEnterpriseMetaInDefaultPartition())
|
|
found := false
|
|
OUTER:
|
|
for name, info := range services {
|
|
// Check the service name
|
|
if !re.MatchString(name.String()) {
|
|
continue
|
|
}
|
|
if tagRe == nil {
|
|
found = true
|
|
break
|
|
}
|
|
|
|
// Look for a matching tag
|
|
for _, tag := range info.Tags {
|
|
if !tagRe.MatchString(tag) {
|
|
continue
|
|
}
|
|
found = true
|
|
break OUTER
|
|
}
|
|
}
|
|
|
|
// No matching services
|
|
if !found {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// ingestUserEvent is used to process an event that passes filtering
|
|
func (a *Agent) ingestUserEvent(msg *UserEvent) {
|
|
// Special handling for internal events
|
|
switch msg.Name {
|
|
case remoteExecName:
|
|
if a.config.DisableRemoteExec {
|
|
a.logger.Info("ignoring remote exec event, disabled.",
|
|
"event_name", msg.Name,
|
|
"event_id", msg.ID,
|
|
)
|
|
} else {
|
|
go a.handleRemoteExec(msg)
|
|
}
|
|
return
|
|
default:
|
|
a.logger.Debug("new event",
|
|
"event_name", msg.Name,
|
|
"event_id", msg.ID,
|
|
)
|
|
}
|
|
|
|
a.eventLock.Lock()
|
|
defer func() {
|
|
a.eventLock.Unlock()
|
|
a.eventNotify.Notify()
|
|
}()
|
|
|
|
idx := a.eventIndex
|
|
a.eventBuf[idx] = msg
|
|
a.eventIndex = (idx + 1) % len(a.eventBuf)
|
|
}
|
|
|
|
// UserEvents is used to return a slice of the most recent
|
|
// user events.
|
|
func (a *Agent) UserEvents() []*UserEvent {
|
|
n := len(a.eventBuf)
|
|
out := make([]*UserEvent, n)
|
|
a.eventLock.RLock()
|
|
defer a.eventLock.RUnlock()
|
|
|
|
// Check if the buffer is full
|
|
if a.eventBuf[a.eventIndex] != nil {
|
|
if a.eventIndex == 0 {
|
|
copy(out, a.eventBuf)
|
|
} else {
|
|
copy(out, a.eventBuf[a.eventIndex:])
|
|
copy(out[n-a.eventIndex:], a.eventBuf[:a.eventIndex])
|
|
}
|
|
} else {
|
|
// We haven't filled the buffer yet
|
|
copy(out, a.eventBuf[:a.eventIndex])
|
|
out = out[:a.eventIndex]
|
|
}
|
|
return out
|
|
}
|
|
|
|
// LastUserEvent is used to return the last user event.
|
|
// This will return nil if there is no recent event.
|
|
func (a *Agent) LastUserEvent() *UserEvent {
|
|
a.eventLock.RLock()
|
|
defer a.eventLock.RUnlock()
|
|
n := len(a.eventBuf)
|
|
idx := (((a.eventIndex - 1) % n) + n) % n
|
|
return a.eventBuf[idx]
|
|
}
|
|
|
|
// msgpackHandleUserEvent is a shared handle for encoding/decoding of
|
|
// messages for user events
|
|
var msgpackHandleUserEvent = &codec.MsgpackHandle{
|
|
RawToString: true,
|
|
WriteExt: true,
|
|
}
|
|
|
|
// decodeMsgPackUserEvent is used to decode a MsgPack encoded object
|
|
func decodeMsgPackUserEvent(buf []byte, out interface{}) error {
|
|
return codec.NewDecoder(bytes.NewReader(buf), msgpackHandleUserEvent).Decode(out)
|
|
}
|
|
|
|
// encodeMsgPackUserEvent is used to encode an object with msgpack
|
|
func encodeMsgPackUserEvent(msg interface{}) ([]byte, error) {
|
|
var buf bytes.Buffer
|
|
err := codec.NewEncoder(&buf, msgpackHandleUserEvent).Encode(msg)
|
|
return buf.Bytes(), err
|
|
}
|