-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcapabilities.go
57 lines (47 loc) · 1.37 KB
/
capabilities.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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package rules
import (
"github.com/DataDog/datadog-agent/pkg/security/secl/compiler/eval"
)
// FieldCapabilities holds a list of field capabilities
type FieldCapabilities []FieldCapability
// FieldCapability represents a field and the type of its value (scalar, pattern, bitmask, ...)
type FieldCapability struct {
Field eval.Field
Types eval.FieldValueType
ValidateFnc func(FilterValue) bool
FilterWeight int
}
// GetFields returns all the fields of FieldCapabilities
func (fcs FieldCapabilities) GetFields() []eval.Field {
var fields []eval.Field
for _, fc := range fcs {
fields = append(fields, fc.Field)
}
return fields
}
// Validate ensures all the filter values match field capabilities
func (fcs FieldCapabilities) Validate(filterValues FilterValues) bool {
for _, filterValue := range filterValues {
var found bool
for _, fc := range fcs {
if filterValue.Field != fc.Field || filterValue.Type&fc.Types == 0 {
continue
}
if fc.ValidateFnc != nil {
if !fc.ValidateFnc(filterValue) {
continue
}
}
found = true
break
}
if !found {
return false
}
}
return true
}