-
Notifications
You must be signed in to change notification settings - Fork 146
/
action.go
623 lines (538 loc) · 19 KB
/
action.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package fleetapi
import (
"encoding/json"
"fmt"
"strings"
"time"
"github.com/mitchellh/mapstructure"
"github.com/elastic/elastic-agent/internal/pkg/agent/errors"
)
const (
// ActionTypeUnknown is used to indicate that the elastic-agent does not know how to handle the action
ActionTypeUnknown = "UNKNOWN"
// ActionTypeUpgrade specifies upgrade action.
ActionTypeUpgrade = "UPGRADE"
// ActionTypeUnenroll specifies unenroll action.
ActionTypeUnenroll = "UNENROLL"
// ActionTypePolicyChange specifies policy change action.
ActionTypePolicyChange = "POLICY_CHANGE"
// ActionTypePolicyReassign specifies policy reassign action.
ActionTypePolicyReassign = "POLICY_REASSIGN"
// ActionTypeSettings specifies change of agent settings.
ActionTypeSettings = "SETTINGS"
// ActionTypeInputAction specifies agent action.
ActionTypeInputAction = "INPUT_ACTION"
// ActionTypeCancel specifies a cancel action.
ActionTypeCancel = "CANCEL"
// ActionTypeDiagnostics specifies a diagnostics action.
ActionTypeDiagnostics = "REQUEST_DIAGNOSTICS"
)
// Error values that the Action interface can return
var (
ErrNoStartTime = fmt.Errorf("action has no start time")
ErrNoExpiration = fmt.Errorf("action has no expiration")
)
// Action base interface for all the implemented action from the fleet API.
type Action interface {
fmt.Stringer
Type() string
ID() string
AckEvent() AckEvent
}
// Actions is a slice of Actions to executes and allow to unmarshal
// heterogeneous action types.
type Actions []Action
// ScheduledAction is an Action that may be executed at a later date
// Only ActionUpgrade implements this at the moment
type ScheduledAction interface {
Action
// StartTime returns the earliest time an action should start.
StartTime() (time.Time, error)
// Expiration returns the time where an action is expired and should not be ran.
Expiration() (time.Time, error)
}
// RetryableAction is an Action that may be scheduled for a retry.
type RetryableAction interface {
ScheduledAction
// RetryAttempt returns the retry-attempt number of the action
// the retry_attempt number is meant to be an internal counter for the elastic-agent and not communicated to fleet-server or ES.
// If RetryAttempt returns > 1, and GetError is not nil the acker should signal that the action is being retried.
// If RetryAttempt returns < 1, and GetError is not nil the acker should signal that the action has failed.
RetryAttempt() int
// SetRetryAttempt sets the retry-attempt number of the action
// the retry_attempt number is meant to be an internal counter for the elastic-agent and not communicated to fleet-server or ES.
SetRetryAttempt(int)
// SetStartTime sets the start_time of the action to the specified value.
// this is used by the action-retry mechanism.
SetStartTime(t time.Time)
// GetError returns the error that is associated with the retry.
// If it is a retryable action fleet-server should mark it as such.
// Otherwise, fleet-server should mark the action as failed.
GetError() error
// SetError sets the retryable action error
SetError(error)
}
type Signed struct {
Data string `json:"data" yaml:"data" mapstructure:"data"`
Signature string `json:"signature" yaml:"signature" mapstructure:"signature"`
}
// NewAction returns a new, zero-value, action of the type defined by 'actionType'
// or an ActionUnknown with the 'OriginalType' field set to 'actionType' if the
// type is not valid.
func NewAction(actionType string) Action {
var action Action
// keep the case statements alphabetically sorted
switch actionType {
case ActionTypeCancel:
action = &ActionCancel{}
case ActionTypeDiagnostics:
action = &ActionDiagnostics{}
case ActionTypeInputAction:
action = &ActionApp{}
case ActionTypePolicyChange:
action = &ActionPolicyChange{}
case ActionTypePolicyReassign:
action = &ActionPolicyReassign{}
case ActionTypeSettings:
action = &ActionSettings{}
case ActionTypeUnenroll:
action = &ActionUnenroll{}
case ActionTypeUpgrade:
action = &ActionUpgrade{}
default:
action = &ActionUnknown{OriginalType: actionType}
}
return action
}
func newAckEvent(id, aType string) AckEvent {
return AckEvent{
EventType: "ACTION_RESULT",
SubType: "ACKNOWLEDGED",
ActionID: id,
Message: fmt.Sprintf("Action %q of type %q acknowledged.", id, aType),
}
}
// ActionUnknown is an action that is not know by the current version of the Agent and we don't want
// to return an error at parsing time but at execution time we can report or ignore.
//
// NOTE: We only keep the original type and the action id, the payload of the event is dropped, we
// do this to make sure we do not leak any unwanted information.
type ActionUnknown struct {
ActionID string `json:"id" yaml:"id" mapstructure:"id"`
ActionType string `json:"type,omitempty" yaml:"type,omitempty" mapstructure:"type"`
// OriginalType is the original type of the action as returned by the API.
OriginalType string `json:"original_type,omitempty" yaml:"original_type,omitempty" mapstructure:"original_type"`
}
// Type returns the type of the Action.
func (a *ActionUnknown) Type() string {
return ActionTypeUnknown
}
// ID returns the ID of the Action.
func (a *ActionUnknown) ID() string {
return a.ActionID
}
func (a *ActionUnknown) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(" (original type: ")
s.WriteString(a.OriginalType)
s.WriteString(")")
return s.String()
}
func (a *ActionUnknown) AckEvent() AckEvent {
return AckEvent{
EventType: "ACTION_RESULT", // TODO Discuss EventType/SubType needed - by default only ACTION_RESULT was used - what is (or was) the intended purpose of these attributes? Are they documented? Can we change them to better support acking an error or a retry?
SubType: "ACKNOWLEDGED",
ActionID: a.ActionID,
Message: fmt.Sprintf("Action %q of type %q acknowledged.", a.ActionID, a.ActionType),
Error: fmt.Sprintf("Action %q of type %q is unknown to the elastic-agent", a.ActionID, a.OriginalType),
}
}
// ActionPolicyReassign is a request to apply a new policy
type ActionPolicyReassign struct {
ActionID string `json:"id" yaml:"id"`
ActionType string `json:"type" yaml:"type"`
Data ActionPolicyReassignData `json:"data,omitempty"`
}
type ActionPolicyReassignData struct {
PolicyID string `json:"policy_id"`
}
func (a *ActionPolicyReassign) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
// Type returns the type of the Action.
func (a *ActionPolicyReassign) Type() string {
return a.ActionType
}
// ID returns the ID of the Action.
func (a *ActionPolicyReassign) ID() string {
return a.ActionID
}
func (a *ActionPolicyReassign) AckEvent() AckEvent {
return newAckEvent(a.ActionID, a.ActionType)
}
// ActionPolicyChange is a request to apply a new
type ActionPolicyChange struct {
ActionID string `json:"id" yaml:"id"`
ActionType string `json:"type" yaml:"type"`
Data ActionPolicyChangeData `json:"data,omitempty" yaml:"data,omitempty"`
}
type ActionPolicyChangeData struct {
Policy map[string]interface{} `json:"policy" yaml:"policy,omitempty"`
}
func (a *ActionPolicyChange) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
// Type returns the type of the Action.
func (a *ActionPolicyChange) Type() string {
return a.ActionType
}
// ID returns the ID of the Action.
func (a *ActionPolicyChange) ID() string {
return a.ActionID
}
func (a *ActionPolicyChange) AckEvent() AckEvent {
return newAckEvent(a.ActionID, a.ActionType)
}
// ActionUpgrade is a request for agent to upgrade.
type ActionUpgrade struct {
ActionID string `json:"id" yaml:"id" mapstructure:"id"`
ActionType string `json:"type" yaml:"type" mapstructure:"type"`
ActionStartTime string `json:"start_time" yaml:"start_time,omitempty" mapstructure:"-"` // TODO change to time.Time in unmarshal
ActionExpiration string `json:"expiration" yaml:"expiration,omitempty" mapstructure:"-"`
// does anyone know why those aren't mapped to mapstructure?
Data ActionUpgradeData `json:"data,omitempty" mapstructure:"-"`
Signed *Signed `json:"signed,omitempty" yaml:"signed,omitempty" mapstructure:"signed,omitempty"`
Err error `json:"-" yaml:"-" mapstructure:"-"`
}
type ActionUpgradeData struct {
Version string `json:"version" yaml:"version,omitempty" mapstructure:"-"`
SourceURI string `json:"source_uri,omitempty" yaml:"source_uri,omitempty" mapstructure:"-"`
// TODO: update fleet open api schema
Retry int `json:"retry_attempt,omitempty" yaml:"retry_attempt,omitempty" mapstructure:"-"`
}
func (a *ActionUpgrade) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
func (a *ActionUpgrade) AckEvent() AckEvent {
event := newAckEvent(a.ActionID, a.ActionType)
if a.Err != nil {
// FIXME Do we want to change EventType/SubType here?
event.Error = a.Err.Error()
var payload struct {
Retry bool `json:"retry"`
Attempt int `json:"retry_attempt,omitempty"`
}
payload.Retry = true
payload.Attempt = a.Data.Retry
if a.Data.Retry < 1 { // retry is set to -1 if it will not re attempt
payload.Retry = false
}
p, _ := json.Marshal(payload)
event.Payload = p
}
return event
}
// Type returns the type of the Action.
func (a *ActionUpgrade) Type() string {
return a.ActionType
}
// ID returns the ID of the Action.
func (a *ActionUpgrade) ID() string {
return a.ActionID
}
// StartTime returns the start_time as a UTC time.Time or ErrNoStartTime if there is no start time
func (a *ActionUpgrade) StartTime() (time.Time, error) {
if a.ActionStartTime == "" {
return time.Time{}, ErrNoStartTime
}
ts, err := time.Parse(time.RFC3339, a.ActionStartTime)
if err != nil {
return time.Time{}, err
}
return ts.UTC(), nil
}
// Expiration returns the expiration as a UTC time.Time or ErrExpiration if there is no expiration
func (a *ActionUpgrade) Expiration() (time.Time, error) {
if a.ActionExpiration == "" {
return time.Time{}, ErrNoExpiration
}
ts, err := time.Parse(time.RFC3339, a.ActionExpiration)
if err != nil {
return time.Time{}, err
}
return ts.UTC(), nil
}
// RetryAttempt will return the retry_attempt of the action
func (a *ActionUpgrade) RetryAttempt() int {
return a.Data.Retry
}
// SetRetryAttempt sets the retry_attempt of the action
func (a *ActionUpgrade) SetRetryAttempt(n int) {
a.Data.Retry = n
}
// GetError returns the error associated with the attempt to run the action.
func (a *ActionUpgrade) GetError() error {
return a.Err
}
// SetError sets the error associated with the attempt to run the action.
func (a *ActionUpgrade) SetError(err error) {
a.Err = err
}
// SetStartTime sets the start time of the action.
func (a *ActionUpgrade) SetStartTime(t time.Time) {
a.ActionStartTime = t.Format(time.RFC3339)
}
// MarshalMap marshals ActionUpgrade into a corresponding map
func (a *ActionUpgrade) MarshalMap() (map[string]interface{}, error) {
var res map[string]interface{}
err := mapstructure.Decode(a, &res)
return res, err
}
// ActionUnenroll is a request for agent to unhook from fleet.
type ActionUnenroll struct {
ActionID string `json:"id" yaml:"id" mapstructure:"id"`
ActionType string `json:"type" yaml:"type" mapstructure:"type"`
IsDetected bool `json:"is_detected,omitempty" yaml:"is_detected,omitempty" mapstructure:"-"`
Signed *Signed `json:"signed,omitempty" mapstructure:"signed,omitempty"`
}
func (a *ActionUnenroll) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
// Type returns the type of the Action.
func (a *ActionUnenroll) Type() string {
return a.ActionType
}
// ID returns the ID of the Action.
func (a *ActionUnenroll) ID() string {
return a.ActionID
}
func (a *ActionUnenroll) AckEvent() AckEvent {
return newAckEvent(a.ActionID, a.ActionType)
}
// MarshalMap marshals ActionUnenroll into a corresponding map
func (a *ActionUnenroll) MarshalMap() (map[string]interface{}, error) {
var res map[string]interface{}
err := mapstructure.Decode(a, &res)
return res, err
}
// ActionSettings is a request to change agent settings.
type ActionSettings struct {
ActionID string `json:"id" yaml:"id"`
ActionType string `json:"type" yaml:"type"`
Data ActionSettingsData `json:"data,omitempty"`
}
type ActionSettingsData struct {
// LogLevel can only be one of "debug", "info", "warning", "error"
// TODO: add validation
LogLevel string `json:"log_level" yaml:"log_level,omitempty"`
}
// ID returns the ID of the Action.
func (a *ActionSettings) ID() string {
return a.ActionID
}
// Type returns the type of the Action.
func (a *ActionSettings) Type() string {
return a.ActionType
}
func (a *ActionSettings) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(", log_level: ")
s.WriteString(a.Data.LogLevel)
return s.String()
}
func (a *ActionSettings) AckEvent() AckEvent {
return newAckEvent(a.ActionID, a.ActionType)
}
// ActionCancel is a request to cancel an action.
type ActionCancel struct {
ActionID string `json:"id" yaml:"id"`
ActionType string `json:"type" yaml:"type"`
Data ActionCancelData `json:"data,omitempty"`
}
type ActionCancelData struct {
TargetID string `json:"target_id" yaml:"target_id,omitempty"`
}
// ID returns the ID of the Action.
func (a *ActionCancel) ID() string {
return a.ActionID
}
// Type returns the type of the Action.
func (a *ActionCancel) Type() string {
return a.ActionType
}
func (a *ActionCancel) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(", target_id: ")
s.WriteString(a.Data.TargetID)
return s.String()
}
func (a *ActionCancel) AckEvent() AckEvent {
return newAckEvent(a.ActionID, a.ActionType)
}
// ActionDiagnostics is a request to gather and upload a diagnostics bundle.
type ActionDiagnostics struct {
ActionID string `json:"id"`
ActionType string `json:"type"`
Data ActionDiagnosticsData `json:"data"`
UploadID string `json:"-"`
Err error `json:"-"`
}
type ActionDiagnosticsData struct {
AdditionalMetrics []string `json:"additional_metrics"`
ExcludeEventsLog bool `json:"exclude_events_log"`
}
// ID returns the ID of the action.
func (a *ActionDiagnostics) ID() string {
return a.ActionID
}
// Type returns the type of the action.
func (a *ActionDiagnostics) Type() string {
return a.ActionType
}
func (a *ActionDiagnostics) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
func (a *ActionDiagnostics) AckEvent() AckEvent {
event := newAckEvent(a.ActionID, a.ActionType)
if a.Err != nil {
event.Error = a.Err.Error()
}
if a.UploadID != "" {
var data struct {
UploadID string `json:"upload_id"`
}
data.UploadID = a.UploadID
p, _ := json.Marshal(data)
event.Data = p
}
return event
}
// ActionApp is the application action request.
type ActionApp struct {
ActionID string `json:"id" mapstructure:"id"`
ActionType string `json:"type" mapstructure:"type"`
InputType string `json:"input_type" mapstructure:"input_type"`
Timeout int64 `json:"timeout,omitempty" mapstructure:"timeout,omitempty"`
Data json.RawMessage `json:"data" mapstructure:"data"`
Response map[string]interface{} `json:"response,omitempty" mapstructure:"response,omitempty"`
StartedAt string `json:"started_at,omitempty" mapstructure:"started_at,omitempty"`
CompletedAt string `json:"completed_at,omitempty" mapstructure:"completed_at,omitempty"`
Signed *Signed `json:"signed,omitempty" mapstructure:"signed,omitempty"`
Error string `json:"error,omitempty" mapstructure:"error,omitempty"`
}
func (a *ActionApp) String() string {
var s strings.Builder
s.WriteString("id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(", input_type: ")
s.WriteString(a.InputType)
return s.String()
}
// ID returns the ID of the Action.
func (a *ActionApp) ID() string {
return a.ActionID
}
// Type returns the type of the Action.
func (a *ActionApp) Type() string {
return a.ActionType
}
func (a *ActionApp) AckEvent() AckEvent {
return AckEvent{
EventType: "ACTION_RESULT",
SubType: "ACKNOWLEDGED",
ActionID: a.ActionID,
Message: fmt.Sprintf("Action %q of type %q acknowledged.", a.ActionID, a.ActionType),
ActionInputType: a.InputType,
ActionData: a.Data,
ActionResponse: a.Response,
StartedAt: a.StartedAt,
CompletedAt: a.CompletedAt,
Error: a.Error,
}
}
// MarshalMap marshals ActionApp into a corresponding map
func (a *ActionApp) MarshalMap() (map[string]interface{}, error) {
var res map[string]interface{}
err := mapstructure.Decode(a, &res)
return res, err
}
// UnmarshalJSON takes every raw representation of an action and try to decode them.
func (a *Actions) UnmarshalJSON(data []byte) error {
var typeUnmarshaler []struct {
ActionType string `json:"type,omitempty" yaml:"type,omitempty"`
}
if err := json.Unmarshal(data, &typeUnmarshaler); err != nil {
return errors.New(err,
"fail to decode actions to read their types",
errors.TypeConfig)
}
rawActions := make([]json.RawMessage, len(typeUnmarshaler))
if err := json.Unmarshal(data, &rawActions); err != nil {
return errors.New(err,
"fail to decode actions",
errors.TypeConfig)
}
actions := make([]Action, 0, len(typeUnmarshaler))
for i, response := range typeUnmarshaler {
action := NewAction(response.ActionType)
if err := json.Unmarshal(rawActions[i], action); err != nil {
return errors.New(err,
fmt.Sprintf("fail to decode %s action", action.Type()),
errors.TypeConfig)
}
actions = append(actions, action)
}
*a = actions
return nil
}
// UnmarshalYAML prevents to decode actions from .
func (a *Actions) UnmarshalYAML(_ func(interface{}) error) error {
// TODO(AndersonQ): we need this to migrate the store from YAML to JSON
return errors.New("Actions cannot be Unmarshalled from YAML")
}
// MarshalYAML attempts to decode yaml actions.
func (a *Actions) MarshalYAML() (interface{}, error) {
return nil, errors.New("Actions cannot be Marshaled to YAML")
}