-
Notifications
You must be signed in to change notification settings - Fork 29
/
checks.go
276 lines (244 loc) Β· 6.53 KB
/
checks.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
// checks.go contains checks that are identical for both Linux and Windows.
package main
import (
"crypto/sha256"
"encoding/hex"
"errors"
"fmt"
"os"
"path/filepath"
"reflect"
"regexp"
"strings"
)
// check is the smallest unit that can show up on a scoring report. It holds all
// the conditions for a check, and its message and points (autogenerated or
// otherwise).
type check struct {
Message string
Hint string
Points int
Fail []cond
Pass []cond
PassOverride []cond
}
// cond, or condition, is the parameters for a given test within a check.
type cond struct {
Hint string
Type string
Path string
Cmd string
User string
Group string
Name string
Key string
Value string
After string
regex bool
}
// requireArgs is a convenience function that prints a warning if any required
// parameters for a given condition are not provided.
func (c cond) requireArgs(args ...interface{}) {
// Don't process internal calls -- assume the developers know what they're
// doing. This also prevents extra errors being printed when they don't pass
// required arguments.
if c.Type == "" {
return
}
v := reflect.ValueOf(c)
vType := v.Type()
for i := 0; i < v.NumField(); i++ {
if vType.Field(i).Name == "Type" || vType.Field(i).Name == "regex" {
continue
}
// Ignore hint fields, they only show up in the scoring report
if vType.Field(i).Name == "Hint" {
continue
}
required := false
for _, a := range args {
if vType.Field(i).Name == a {
required = true
break
}
}
if required {
if v.Field(i).String() == "" {
fail(c.Type+":", "missing required argument '"+vType.Field(i).Name+"'")
}
} else if v.Field(i).String() != "" {
warn(c.Type+":", "specifying unused argument '"+vType.Field(i).Name+"'")
}
}
}
func (c cond) String() string {
output := ""
v := reflect.ValueOf(c)
typeOfS := v.Type()
for i := 0; i < v.NumField(); i++ {
if v.Field(i).String() == "" {
continue
}
output += fmt.Sprintf("\t%s: %v\n", typeOfS.Field(i).Name, v.Field(i).String())
}
return output
}
func handleReflectPanic(condFunc string) {
if r := recover(); r != nil {
fail("Check type does not exist: "+condFunc, "("+r.(*reflect.ValueError).Error()+")")
}
}
// runCheck executes a single condition check.
func runCheck(cond cond) bool {
if err := deobfuscateCond(&cond); err != nil {
fail(err.Error())
}
defer obfuscateCond(&cond)
debug("Running condition:\n", cond)
not := "Not"
regex := "Regex"
condFunc := ""
negation := false
cond.regex = false
// Ensure that condition type is a valid length
if len(cond.Type) <= len(regex) {
fail(`Condition type "` + cond.Type + `" is not long enough to be valid. Do you have a "type = 'CheckTypeHere'" for all check conditions?`)
return false
}
condFunc = cond.Type
if condFunc[len(condFunc)-len(not):] == not {
negation = true
condFunc = condFunc[:len(condFunc)-len(not)]
}
if condFunc[len(condFunc)-len(regex):] == regex {
cond.regex = true
condFunc = condFunc[:len(condFunc)-len(regex)]
}
// Catch panic if check type doesn't exist
defer handleReflectPanic(condFunc)
// Using reflection to find the correct function to call.
vals := reflect.ValueOf(cond).MethodByName(condFunc).Call([]reflect.Value{})
result := vals[0].Bool()
err := vals[1]
if negation {
debug("Result is", !result, "(was", result, "before negation) and error is", err)
return err.IsNil() && !result
}
debug("Result is", result, "and error is", err)
if verboseEnabled && !err.IsNil() {
warn(condFunc, "returned an error:", err)
}
return err.IsNil() && result
}
// CommandContains checks if a given shell command contains a certain string.
// This check will always fail if the command returns an error.
func (c cond) CommandContains() (bool, error) {
c.requireArgs("Cmd", "Value")
out, err := shellCommandOutput(c.Cmd)
if err != nil {
return false, err
}
if c.regex {
outTrim := strings.TrimSpace(out)
return regexp.Match(c.Value, []byte(outTrim))
}
return strings.Contains(strings.TrimSpace(out), c.Value), err
}
// CommandOutput checks if a given shell command produces an exact output.
// This check will always fail if the command returns an error.
func (c cond) CommandOutput() (bool, error) {
c.requireArgs("Cmd", "Value")
out, err := shellCommandOutput(c.Cmd)
return strings.TrimSpace(out) == c.Value, err
}
// DirContains returns true if any file in the directory contains the string value provided.
func (c cond) DirContains() (bool, error) {
c.requireArgs("Path", "Value")
result, err := cond{
Path: c.Path,
}.PathExists()
if err != nil {
return false, err
}
if !result {
return false, errors.New("path does not exist")
}
var files []string
err = filepath.Walk(c.Path, func(path string, info os.FileInfo, err error) error {
if !info.IsDir() {
files = append(files, path)
}
if len(files) > 10000 {
return errors.New("attempted to index too many files in recursive search")
}
return nil
})
if err != nil {
return false, err
}
for _, file := range files {
c.Path = file
result, err := c.FileContains()
if os.IsPermission(err) {
return false, err
}
if result {
return result, nil
}
}
return false, nil
}
// FileContains determines whether a file contains a given regular expression.
//
// Newlines in regex may not work as expected, especially on Windows. It's
// best to not use these (ex. ^ and $).
func (c cond) FileContains() (bool, error) {
c.requireArgs("Path", "Value")
fileContent, err := readFile(c.Path)
if err != nil {
return false, err
}
found := false
for _, line := range strings.Split(fileContent, "\n") {
if c.regex {
found, err = regexp.Match(c.Value, []byte(line))
if err != nil {
return false, err
}
} else {
found = strings.Contains(line, c.Value)
}
if found {
break
}
}
return found, err
}
// FileEquals calculates the SHA256 sum of a file and compares it with the hash
// provided in the check.
func (c cond) FileEquals() (bool, error) {
c.requireArgs("Path", "Value")
fileContent, err := readFile(c.Path)
if err != nil {
return false, err
}
hasher := sha256.New()
_, err = hasher.Write([]byte(fileContent))
if err != nil {
return false, err
}
hash := hex.EncodeToString(hasher.Sum(nil))
return hash == c.Value, nil
}
// PathExists is a wrapper around os.Stat and os.IsNotExist, and determines
// whether a file or folder exists.
func (c cond) PathExists() (bool, error) {
c.requireArgs("Path")
_, err := os.Stat(c.Path)
if err != nil && os.IsNotExist(err) {
return false, nil
} else if err != nil {
return false, err
}
return true, nil
}