// Package ctxerr provides functions to wrap errors with annotations and // stack traces, and to handle those errors such that unique instances of // those errors will be stored for an amount of time so that it can be // used to troubleshoot issues. // // Typical uses of this package should be to call New or Wrap[f] as close as // possible from where the error is encountered (or where it needs to be // created for New), and then to call Handle with the error only once, after it // bubbled back to the top of the call stack (e.g. in the HTTP handler, or in // the CLI command, etc.). It is fine to wrap the error with more annotations // along the way, by calling Wrap[f]. package ctxerr import ( "context" "encoding/json" "errors" "fmt" "strings" "time" "github.com/fleetdm/fleet/v4/server/contexts/host" "github.com/fleetdm/fleet/v4/server/contexts/viewer" ) type key int const errHandlerKey key = 0 // Defining here for testing purposes var nowFn = time.Now // FleetError is the error implementation used by this package. type FleetError struct { msg string // error message to be prepended to cause stack stackTracer // stack trace where this error was created cause error // original error that caused this error if non-nil data json.RawMessage // additional metadata about the error (timestamps, etc) } type fleetErrorJSON struct { Message string `json:"message,omitempty"` Data json.RawMessage `json:"data,omitempty"` Stack []string `json:"stack,omitempty"` } // Error implements the error interface. func (e FleetError) Error() string { if e.cause == nil { return e.msg } return fmt.Sprintf("%s: %s", e.msg, e.cause.Error()) } // Unwrap implements the error Unwrap interface introduced in go1.13. func (e *FleetError) Unwrap() error { return e.cause } // Stack returns a call stack for the error func (e *FleetError) Stack() []string { return e.stack.List() } // setMetadata adds common metadata attributes to the `data` map provided. // NOTE: this will mutate the data provided and override other values with the same keys. func setMetadata(ctx context.Context, data map[string]interface{}) map[string]interface{} { if data == nil { data = map[string]interface{}{} } data["timestamp"] = nowFn().Format(time.RFC3339) if h, ok := host.FromContext(ctx); ok { data["host"] = map[string]interface{}{ "platform": h.Platform, "osquery_version": h.OsqueryVersion, } } if v, ok := viewer.FromContext(ctx); ok { vdata := map[string]interface{}{} data["viewer"] = vdata vdata["is_logged_in"] = v.IsLoggedIn() if v.User != nil { vdata["sso_enabled"] = v.User.SSOEnabled } } return data } func encodeData(ctx context.Context, data map[string]interface{}, augment bool) json.RawMessage { if augment { data = setMetadata(ctx, data) } encoded, err := json.Marshal(data) if err != nil { msg := fmt.Sprintf(`{"error": "there was an error encoding additional data: %s"}`, err.Error()) encoded = json.RawMessage(msg) } return encoded } func newError(ctx context.Context, msg string, cause error, data map[string]interface{}) error { stack := newStack(2) edata := encodeData(ctx, data, true) return &FleetError{msg, stack, cause, edata} } func wrapError(ctx context.Context, msg string, cause error, data map[string]interface{}) error { if cause == nil { return nil } stack := newStack(2) var ferr *FleetError isFleetError := errors.As(cause, &ferr) // If the error is a FleetError, don't add the full stack trace as it should // already be present. if isFleetError { stack = stack[:1] } edata := encodeData(ctx, data, !isFleetError) return &FleetError{msg, stack, cause, edata} } // New creates a new error with the given message. func New(ctx context.Context, msg string) error { return newError(ctx, msg, nil, nil) } // NewWithData creates a new error and attaches additional metadata to it func NewWithData(ctx context.Context, msg string, data map[string]interface{}) error { return newError(ctx, msg, nil, data) } // Errorf creates a new error with the given message. func Errorf(ctx context.Context, format string, args ...interface{}) error { msg := fmt.Sprintf(format, args...) return newError(ctx, msg, nil, nil) } // Wrap creates a new error with the given message, wrapping another error. func Wrap(ctx context.Context, cause error, msgs ...string) error { msg := strings.Join(msgs, " ") return wrapError(ctx, msg, cause, nil) } // WrapWithData creates a new error with the given message, wrapping another // error and attaching the data provided to it. func WrapWithData(ctx context.Context, cause error, msg string, data map[string]interface{}) error { return wrapError(ctx, msg, cause, data) } // Wrapf creates a new error with the given message, wrapping another error. func Wrapf(ctx context.Context, cause error, format string, args ...interface{}) error { msg := fmt.Sprintf(format, args...) return wrapError(ctx, msg, cause, nil) } // Cause returns the root error in err's chain. func Cause(err error) error { for { uerr := Unwrap(err) if uerr == nil { return err } err = uerr } } // FleetCause is similar to Cause, but returns the root-most // FleetError in the chain func FleetCause(err error) *FleetError { var ferr, aux *FleetError var ok bool for err != nil { if aux, ok = err.(*FleetError); ok { ferr = aux } err = Unwrap(err) } return ferr } // Unwrap is a wrapper of built-in errors.Unwrap. It returns the result of // calling the Unwrap method on err, if err's type contains an Unwrap method // returning error. Otherwise, Unwrap returns nil. func Unwrap(err error) error { return errors.Unwrap(err) } // MarshalJSON provides a JSON representation of a whole error chain. func MarshalJSON(err error) ([]byte, error) { chain := make([]fleetErrorJSON, 0) for err != nil { switch v := err.(type) { case *FleetError: chain = append(chain, fleetErrorJSON{ Message: v.msg, Data: v.data, Stack: v.stack.List(), }) default: chain = append(chain, fleetErrorJSON{Message: v.Error()}) } err = Unwrap(err) } // reverse the chain to present errors in chronological order. for i := len(chain)/2 - 1; i >= 0; i-- { opp := len(chain) - 1 - i chain[i], chain[opp] = chain[opp], chain[i] } return json.MarshalIndent(chain, "", " ") } // StoredError represents the structure we use to de-serialize errors and // counts stored in Redis type StoredError struct { Count int `json:"count"` Chain json.RawMessage `json:"chain"` } type handler interface { Store(error) Retrieve(flush bool) ([]*StoredError, error) } // NewContext returns a context derived from ctx that contains the provided // error handler. func NewContext(ctx context.Context, eh handler) context.Context { return context.WithValue(ctx, errHandlerKey, eh) } func fromContext(ctx context.Context) handler { v, _ := ctx.Value(errHandlerKey).(handler) return v } // Handle handles err by passing it to the registered error handler, // deduplicating it and storing it for a configured duration. func Handle(ctx context.Context, err error) { // as a last resource, wrap the error if there isn't // a FleetError in the chain var ferr *FleetError if !errors.As(err, &ferr) { err = Wrap(ctx, err, "missing FleetError in chain") } if eh := fromContext(ctx); eh != nil { eh.Store(err) } } // Retrieve retrieves an error from the registered error handler func Retrieve(ctx context.Context) ([]*StoredError, error) { eh := fromContext(ctx) if eh == nil { return nil, New(ctx, "missing handler in context") } return eh.Retrieve(false) } // MockHandler is a mock implementation of an error handler that allows to test // ctxerr features that retrieve and store information in Redis without a // server running. // Ideally this should live in errorstore/errors, but that creates a circular // dependency. type MockHandler struct { StoreImpl func(err error) RetrieveImpl func(flush bool) ([]*StoredError, error) } func (h MockHandler) Store(err error) { h.StoreImpl(err) } func (h MockHandler) Retrieve(flush bool) ([]*StoredError, error) { return h.RetrieveImpl(flush) }