-
Notifications
You must be signed in to change notification settings - Fork 145
/
action.go
584 lines (519 loc) · 16.9 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
// 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"
"gopkg.in/yaml.v2"
"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"
)
// 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
// StartTime returns the earliest time an action should start (for schduled actions)
// Only ActionUpgrade implements this at the moment
StartTime() (time.Time, error)
// Expiration returns the time where an action is expired and should not be ran (for scheduled actions)
// Only ActionUpgrade implements this at the moment
Expiration() (time.Time, error)
}
// FleetAction represents an action from fleet-server.
// should copy the action definition in fleet-server/model/schema.json
type FleetAction struct {
ActionID string `yaml:"action_id" json:"id"` // NOTE schema defines this as action_id, but fleet-server remaps it to id in the json response to agent check-in.
ActionType string `yaml:"type,omitempty" json:"type,omitempty"`
InputType string `yaml:"input_type,omitempty" json:"input_type,omitempty"`
ActionExpiration string `yaml:"expiration,omitempty" json:"expiration,omitempty"`
ActionStartTime string `yaml:"start_time,omitempty" json:"start_time,omitempty"`
Timeout int64 `yaml:"timeout,omitempty" json:"timeout,omitempty"`
Data json.RawMessage `yaml:"data,omitempty" json:"data,omitempty"`
//Agents []string // disabled, fleet-server uses this to generate each agent's actions
//Timestamp string // disabled, agent does not care when the document was created
//UserID string // disabled, agent does not care
//MinimumExecutionDuration int64 // disabled, used by fleet-server for scheduling
}
// 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 {
originalType string
ActionID string
ActionType string
}
// 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
}
// StartTime returns ErrNoStartTime
func (a *ActionUnknown) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionUnknown) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
func (a *ActionUnknown) String() string {
var s strings.Builder
s.WriteString("action_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()
}
// OriginalType returns the original type of the action as returned by the API.
func (a *ActionUnknown) OriginalType() string {
return a.originalType
}
// ActionPolicyReassign is a request to apply a new
type ActionPolicyReassign struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
}
func (a *ActionPolicyReassign) String() string {
var s strings.Builder
s.WriteString("action_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
}
// StartTime returns ErrNoStartTime
func (a *ActionPolicyReassign) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionPolicyReassign) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
// ActionPolicyChange is a request to apply a new
type ActionPolicyChange struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
Policy map[string]interface{} `json:"policy" yaml:"policy,omitempty"`
}
func (a *ActionPolicyChange) String() string {
var s strings.Builder
s.WriteString("action_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
}
// StartTime returns ErrNoStartTime
func (a *ActionPolicyChange) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionPolicyChange) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
// ActionUpgrade is a request for agent to upgrade.
type ActionUpgrade struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
ActionStartTime string `json:"start_time" yaml:"start_time,omitempty"` // TODO change to time.Time in unmarshal
ActionExpiration string `json:"expiration" yaml:"expiration,omitempty"`
Version string `json:"version" yaml:"version,omitempty"`
SourceURI string `json:"source_uri,omitempty" yaml:"source_uri,omitempty"`
}
func (a *ActionUpgrade) String() string {
var s strings.Builder
s.WriteString("action_id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
return s.String()
}
// 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
}
// ActionUnenroll is a request for agent to unhook from fleet.
type ActionUnenroll struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
IsDetected bool `json:"is_detected,omitempty" yaml:"is_detected,omitempty"`
}
func (a *ActionUnenroll) String() string {
var s strings.Builder
s.WriteString("action_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
}
// StartTime returns ErrNoStartTime
func (a *ActionUnenroll) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionUnenroll) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
// ActionSettings is a request to change agent settings.
type ActionSettings struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
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
}
// StartTime returns ErrNoStartTime
func (a *ActionSettings) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionSettings) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
func (a *ActionSettings) String() string {
var s strings.Builder
s.WriteString("action_id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(", log_level: ")
s.WriteString(a.LogLevel)
return s.String()
}
// ActionCancel is a request to cancel an action.
type ActionCancel struct {
ActionID string `yaml:"action_id"`
ActionType string `yaml:"type"`
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
}
// StartTime returns ErrNoStartTime
func (a *ActionCancel) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrNoExpiration
func (a *ActionCancel) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
func (a *ActionCancel) String() string {
var s strings.Builder
s.WriteString("action_id: ")
s.WriteString(a.ActionID)
s.WriteString(", type: ")
s.WriteString(a.ActionType)
s.WriteString(", target_id: ")
s.WriteString(a.TargetID)
return s.String()
}
// 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"`
Error string `json:"error,omitempty" mapstructure:"error,omitempty"`
}
func (a *ActionApp) String() string {
var s strings.Builder
s.WriteString("action_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
}
// StartTime returns ErrNoStartTime
func (a *ActionApp) StartTime() (time.Time, error) {
return time.Time{}, ErrNoStartTime
}
// Expiration returns ErrExpiration
func (a *ActionApp) Expiration() (time.Time, error) {
return time.Time{}, ErrNoExpiration
}
// 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
}
// Actions is a list of Actions to executes and allow to unmarshal heterogenous action type.
type Actions []Action
// UnmarshalJSON takes every raw representation of an action and try to decode them.
func (a *Actions) UnmarshalJSON(data []byte) error {
var responses []FleetAction
if err := json.Unmarshal(data, &responses); err != nil {
return errors.New(err,
"fail to decode actions",
errors.TypeConfig)
}
actions := make([]Action, 0, len(responses))
for _, response := range responses {
var action Action
switch response.ActionType {
case ActionTypePolicyChange:
action = &ActionPolicyChange{
ActionID: response.ActionID,
ActionType: response.ActionType,
}
if err := json.Unmarshal(response.Data, action); err != nil {
return errors.New(err,
"fail to decode POLICY_CHANGE action",
errors.TypeConfig)
}
case ActionTypePolicyReassign:
action = &ActionPolicyReassign{
ActionID: response.ActionID,
ActionType: response.ActionType,
}
case ActionTypeInputAction:
action = &ActionApp{
ActionID: response.ActionID,
ActionType: response.ActionType,
InputType: response.InputType,
Timeout: response.Timeout,
Data: response.Data,
}
case ActionTypeUnenroll:
action = &ActionUnenroll{
ActionID: response.ActionID,
ActionType: response.ActionType,
}
case ActionTypeUpgrade:
action = &ActionUpgrade{
ActionID: response.ActionID,
ActionType: response.ActionType,
ActionStartTime: response.ActionStartTime,
ActionExpiration: response.ActionExpiration,
}
if err := json.Unmarshal(response.Data, action); err != nil {
return errors.New(err,
"fail to decode UPGRADE_ACTION action",
errors.TypeConfig)
}
case ActionTypeSettings:
action = &ActionSettings{
ActionID: response.ActionID,
ActionType: response.ActionType,
}
if err := json.Unmarshal(response.Data, action); err != nil {
return errors.New(err,
"fail to decode SETTINGS_ACTION action",
errors.TypeConfig)
}
case ActionTypeCancel:
action = &ActionCancel{
ActionID: response.ActionID,
ActionType: response.ActionType,
}
if err := json.Unmarshal(response.Data, action); err != nil {
return errors.New(err,
"fail to decode CANCEL_ACTION action",
errors.TypeConfig)
}
default:
action = &ActionUnknown{
ActionID: response.ActionID,
ActionType: ActionTypeUnknown,
originalType: response.ActionType,
}
}
actions = append(actions, action)
}
*a = actions
return nil
}
// UnmarshalYAML attempts to decode yaml actions.
func (a *Actions) UnmarshalYAML(unmarshal func(interface{}) error) error {
var nodes []FleetAction
if err := unmarshal(&nodes); err != nil {
return errors.New(err,
"fail to decode action",
errors.TypeConfig)
}
actions := make([]Action, 0, len(nodes))
for i := range nodes {
var action Action
n := nodes[i]
switch n.ActionType {
case ActionTypePolicyChange:
action = &ActionPolicyChange{
ActionID: n.ActionID,
ActionType: n.ActionType,
}
if err := yaml.Unmarshal(n.Data, action); err != nil {
return errors.New(err,
"fail to decode POLICY_CHANGE action",
errors.TypeConfig)
}
case ActionTypePolicyReassign:
action = &ActionPolicyReassign{
ActionID: n.ActionID,
ActionType: n.ActionType,
}
case ActionTypeInputAction:
action = &ActionApp{
ActionID: n.ActionID,
ActionType: n.ActionType,
InputType: n.InputType,
Timeout: n.Timeout,
Data: n.Data,
}
case ActionTypeUnenroll:
action = &ActionUnenroll{
ActionID: n.ActionID,
ActionType: n.ActionType,
}
case ActionTypeUpgrade:
action = &ActionUpgrade{
ActionID: n.ActionID,
ActionType: n.ActionType,
ActionStartTime: n.ActionStartTime,
ActionExpiration: n.ActionExpiration,
}
if err := yaml.Unmarshal(n.Data, &action); err != nil {
return errors.New(err,
"fail to decode UPGRADE_ACTION action",
errors.TypeConfig)
}
case ActionTypeSettings:
action = &ActionSettings{
ActionID: n.ActionID,
ActionType: n.ActionType,
}
if err := yaml.Unmarshal(n.Data, action); err != nil {
return errors.New(err,
"fail to decode SETTINGS_ACTION action",
errors.TypeConfig)
}
case ActionTypeCancel:
action = &ActionCancel{
ActionID: n.ActionID,
ActionType: n.ActionType,
}
if err := yaml.Unmarshal(n.Data, action); err != nil {
return errors.New(err,
"fail to decode CANCEL_ACTION action",
errors.TypeConfig)
}
default:
action = &ActionUnknown{
ActionID: n.ActionID,
ActionType: ActionTypeUnknown,
originalType: n.ActionType,
}
}
actions = append(actions, action)
}
*a = actions
return nil
}