open-consul/agent/user_event.go

266 lines
6.5 KiB
Go
Raw Normal View History

2014-08-27 23:49:12 +00:00
package agent
import (
"fmt"
"regexp"
"github.com/hashicorp/consul/agent/structs"
"github.com/hashicorp/go-uuid"
2014-08-27 23:49:12 +00:00
)
const (
// userEventMaxVersion is the maximum protocol version we understand
userEventMaxVersion = 1
// remoteExecName is the event name for a remote exec command
remoteExecName = "_rexec"
2014-08-27 23:49:12 +00:00
)
// UserEventParam is used to parameterize a user event
2014-08-28 17:56:30 +00:00
type UserEvent struct {
// ID of the user event. Automatically generated.
ID string
2014-08-27 23:49:12 +00:00
// Name of the event
2014-08-28 17:56:30 +00:00
Name string `codec:"n"`
2014-08-27 23:49:12 +00:00
// Optional payload
2014-08-28 17:56:30 +00:00
Payload []byte `codec:"p,omitempty"`
2014-08-27 23:49:12 +00:00
// NodeFilter is a regular expression to filter on nodes
2014-08-28 17:56:30 +00:00
NodeFilter string `codec:"nf,omitempty"`
2014-08-27 23:49:12 +00:00
// ServiceFilter is a regular expression to filter on services
2014-08-28 17:56:30 +00:00
ServiceFilter string `codec:"sf,omitempty"`
2014-08-27 23:49:12 +00:00
// TagFilter is a regular expression to filter on tags of a service,
// must be provided with ServiceFilter
2014-08-28 17:56:30 +00:00
TagFilter string `codec:"tf,omitempty"`
2014-08-27 23:49:12 +00:00
2014-08-28 17:56:30 +00:00
// Version of the user event. Automatically generated.
Version int `codec:"v"`
2014-08-28 18:15:55 +00:00
// LTime is the lamport time. Automatically generated.
LTime uint64 `codec:"-"`
2014-08-27 23:49:12 +00:00
}
// validateUserEventParams is used to sanity check the inputs
2014-08-28 17:56:30 +00:00
func validateUserEventParams(params *UserEvent) error {
2014-08-27 23:49:12 +00:00
// 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 {
2014-08-27 23:49:12 +00:00
// 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)
}
2014-08-28 17:56:30 +00:00
params.Version = userEventMaxVersion
payload, err := encodeMsgPack(&params)
2014-08-27 23:49:12 +00:00
if err != nil {
return fmt.Errorf("UserEvent encoding failed: %v", err)
}
2014-08-28 22:00:49 +00:00
// 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},
2014-08-27 23:49:12 +00:00
}
// 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("Internal.EventFire", &args, &out)
2014-08-27 23:49:12 +00:00
}
// handleEvents is used to process incoming user events
func (a *Agent) handleEvents() {
for {
select {
case e := <-a.eventCh:
// Decode the event
2014-08-28 17:56:30 +00:00
msg := new(UserEvent)
if err := decodeMsgPack(e.Payload, msg); err != nil {
2014-08-27 23:49:12 +00:00
a.logger.Printf("[ERR] agent: Failed to decode event: %v", err)
continue
}
2014-08-28 18:15:55 +00:00
msg.LTime = uint64(e.LTime)
2014-08-27 23:49:12 +00:00
// Skip if we don't pass filtering
if !a.shouldProcessUserEvent(msg) {
continue
}
2014-08-28 00:01:10 +00:00
// Ingest the event
a.ingestUserEvent(msg)
2014-08-27 23:49:12 +00:00
case <-a.shutdownCh:
return
}
}
}
// shouldProcessUserEvent checks if an event makes it through our filters
2014-08-28 17:56:30 +00:00
func (a *Agent) shouldProcessUserEvent(msg *UserEvent) bool {
2014-08-27 23:49:12 +00:00
// Check the version
if msg.Version > userEventMaxVersion {
a.logger.Printf("[WARN] agent: Event version %d may have unsupported features (%s)",
msg.Version, msg.Name)
}
// Apply the filters
if msg.NodeFilter != "" {
re, err := regexp.Compile(msg.NodeFilter)
if err != nil {
a.logger.Printf("[ERR] agent: Failed to parse node filter '%s' for event '%s': %v",
msg.NodeFilter, msg.Name, 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.Printf("[ERR] agent: Failed to parse service filter '%s' for event '%s': %v",
msg.ServiceFilter, msg.Name, err)
return false
}
var tagRe *regexp.Regexp
if msg.TagFilter != "" {
re, err := regexp.Compile(msg.TagFilter)
if err != nil {
a.logger.Printf("[ERR] agent: Failed to parse tag filter '%s' for event '%s': %v",
msg.TagFilter, msg.Name, err)
return false
}
tagRe = re
}
// Scan for a match
2017-08-28 12:17:13 +00:00
services := a.State.Services()
2014-08-27 23:49:12 +00:00
found := false
OUTER:
for name, info := range services {
// Check the service name
if !re.MatchString(name) {
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
}
2014-08-28 00:01:10 +00:00
// ingestUserEvent is used to process an event that passes filtering
2014-08-28 17:56:30 +00:00
func (a *Agent) ingestUserEvent(msg *UserEvent) {
// Special handling for internal events
switch msg.Name {
case remoteExecName:
New config parser, HCL support, multiple bind addrs (#3480) * new config parser for agent This patch implements a new config parser for the consul agent which makes the following changes to the previous implementation: * add HCL support * all configuration fragments in tests and for default config are expressed as HCL fragments * HCL fragments can be provided on the command line so that they can eventually replace the command line flags. * HCL/JSON fragments are parsed into a temporary Config structure which can be merged using reflection (all values are pointers). The existing merge logic of overwrite for values and append for slices has been preserved. * A single builder process generates a typed runtime configuration for the agent. The new implementation is more strict and fails in the builder process if no valid runtime configuration can be generated. Therefore, additional validations in other parts of the code should be removed. The builder also pre-computes all required network addresses so that no address/port magic should be required where the configuration is used and should therefore be removed. * Upgrade github.com/hashicorp/hcl to support int64 * improve error messages * fix directory permission test * Fix rtt test * Fix ForceLeave test * Skip performance test for now until we know what to do * Update github.com/hashicorp/memberlist to update log prefix * Make memberlist use the default logger * improve config error handling * do not fail on non-existing data-dir * experiment with non-uniform timeouts to get a handle on stalled leader elections * Run tests for packages separately to eliminate the spurious port conflicts * refactor private address detection and unify approach for ipv4 and ipv6. Fixes #2825 * do not allow unix sockets for DNS * improve bind and advertise addr error handling * go through builder using test coverage * minimal update to the docs * more coverage tests fixed * more tests * fix makefile * cleanup * fix port conflicts with external port server 'porter' * stop test server on error * do not run api test that change global ENV concurrently with the other tests * Run remaining api tests concurrently * no need for retry with the port number service * monkey patch race condition in go-sockaddr until we understand why that fails * monkey patch hcl decoder race condidtion until we understand why that fails * monkey patch spurious errors in strings.EqualFold from here * add test for hcl decoder race condition. Run with go test -parallel 128 * Increase timeout again * cleanup * don't log port allocations by default * use base command arg parsing to format help output properly * handle -dc deprecation case in Build * switch autopilot.max_trailing_logs to int * remove duplicate test case * remove unused methods * remove comments about flag/config value inconsistencies * switch got and want around since the error message was misleading. * Removes a stray debug log. * Removes a stray newline in imports. * Fixes TestACL_Version8. * Runs go fmt. * Adds a default case for unknown address types. * Reoders and reformats some imports. * Adds some comments and fixes typos. * Reorders imports. * add unix socket support for dns later * drop all deprecated flags and arguments * fix wrong field name * remove stray node-id file * drop unnecessary patch section in test * drop duplicate test * add test for LeaveOnTerm and SkipLeaveOnInt in client mode * drop "bla" and add clarifying comment for the test * split up tests to support enterprise/non-enterprise tests * drop raft multiplier and derive values during build phase * sanitize runtime config reflectively and add test * detect invalid config fields * fix tests with invalid config fields * use different values for wan sanitiziation test * drop recursor in favor of recursors * allow dns_config.udp_answer_limit to be zero * make sure tests run on machines with multiple ips * Fix failing tests in a few more places by providing a bind address in the test * Gets rid of skipped TestAgent_CheckPerformanceSettings and adds case for builder. * Add porter to server_test.go to make tests there less flaky * go fmt
2017-09-25 18:40:42 +00:00
if a.config.DisableRemoteExec {
a.logger.Printf("[INFO] agent: ignoring remote exec event (%s), disabled.", msg.ID)
} else {
go a.handleRemoteExec(msg)
}
return
default:
a.logger.Printf("[DEBUG] agent: new event: %s (%s)", msg.Name, msg.ID)
}
2014-08-28 00:01:10 +00:00
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)
}
2014-08-28 18:15:55 +00:00
// 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.
2014-08-28 18:15:55 +00:00
// This will return nil if there is no recent event.
func (a *Agent) LastUserEvent() *UserEvent {
a.eventLock.RLock()
defer a.eventLock.RUnlock()
2014-08-28 19:42:24 +00:00
n := len(a.eventBuf)
idx := (((a.eventIndex - 1) % n) + n) % n
2014-08-28 18:15:55 +00:00
return a.eventBuf[idx]
}