-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathbuiltin_global.go
More file actions
470 lines (403 loc) · 12.4 KB
/
builtin_global.go
File metadata and controls
470 lines (403 loc) · 12.4 KB
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
// Copyright (c) Mondoo, Inc.
// SPDX-License-Identifier: BUSL-1.1
package llx
import (
"errors"
"strconv"
"strings"
"go.mondoo.com/cnquery/v11/types"
)
// handleGlobal takes a global function and returns a handler if found.
// this is not exported as it is only used internally. it exposes everything
// below this function
func handleGlobalV2(op string) (handleFunctionV2, bool) {
f, ok := globalFunctionsV2[op]
if !ok {
return nil, false
}
return f, true
}
// DEFINITIONS
type handleFunctionV2 func(*blockExecutor, *Function, uint64) (*RawData, uint64, error)
var globalFunctionsV2 map[string]handleFunctionV2
func init() {
globalFunctionsV2 = map[string]handleFunctionV2{
"expect": expectV2,
"if": ifCallV2,
"switch": switchCallV2,
"score": scoreCallV2,
"typeof": typeofCallV2,
"{}": blockV2,
"return": returnCallV2,
"createResource": globalCreateResource,
// type-conversions
"string": stringCall,
"$regex": regexCall, // TODO: support both the regex resource and the internal typemap!
"float": floatCall,
"int": intCall,
"bool": boolCall,
"dict": dictCall,
"version": versionCall,
"ip": ipCall,
// FIXME: DEPRECATED, remove in v13.0 vv
"semver": versionCall, // deprecated
// ^^
}
}
func globalCreateResource(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if l := len(f.Args); l%2 != 1 || l == 0 {
return nil, 0, errors.New("Called `createResource` with invalid number of arguments")
}
binding, ok := f.Args[0].RefV2()
if !ok {
return nil, 0, errors.New("Called `createResource` with invalid arguments: expected ref")
}
t := types.Type(f.Type)
return e.createResource(t.ResourceName(), binding, &Function{
Type: f.Type,
Args: f.Args[1:],
}, ref)
}
func ifCallV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) < 3 {
return nil, 0, errors.New("Called if with " + strconv.Itoa(len(f.Args)) + " arguments, expected at least 3")
}
var idx int
max := len(f.Args)
for idx+2 < max {
res, dref, err := e.resolveValue(f.Args[idx], ref)
if dref != 0 || (err != nil && res == nil) {
return res, dref, err
}
if res.Error != nil {
return NilData, 0, res.Error
}
if truthy, _ := res.IsTruthy(); truthy {
depArgs := f.Args[idx+2]
res, dref, err = e.runBlock(nil, f.Args[idx+1], depArgs.Array, ref)
return res, dref, err
}
idx += 3
}
if idx < max {
depArgs := f.Args[idx+1]
res, dref, err := e.runBlock(nil, f.Args[idx], depArgs.Array, ref)
return res, dref, err
}
return NilData, 0, nil
}
func switchCallV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
// very similar to the if-call above; minor differences:
// - we have an optional reference value (which is in the function call)
// - default is translated to `true` in its condition; everything else is a function
if len(f.Args) < 2 {
return nil, 0, errors.New("Called switch with no arguments, expected at least one case statement")
}
var bind *RawData
if types.Type(f.Args[0].Type) != types.Unset {
var dref uint64
var err error
bind, dref, err = e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || bind == nil {
return bind, dref, err
}
}
// ignore the first argument, it's just the reference value
idx := 1
max := len(f.Args)
defaultCaseIdx := -1
for idx+2 < max {
if types.Type(f.Args[idx].Type) == types.Bool {
defaultCaseIdx = idx
idx += 3
continue
}
res, dref, err := e.resolveValue(f.Args[idx], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
if truthy, _ := res.IsTruthy(); truthy {
depArgs := f.Args[idx+2]
res, dref, err = e.runBlock(bind, f.Args[idx+1], depArgs.Array, ref)
return res, dref, err
}
idx += 3
}
if defaultCaseIdx != -1 {
res, dref, err := e.runBlock(nil, f.Args[defaultCaseIdx+1], f.Args[defaultCaseIdx+2].Array, ref)
return res, dref, err
}
return NilData, 0, nil
}
func scoreCallV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `score` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
var b []byte
switch res.Type {
case types.Int:
b, err = scoreVector(int32(res.Value.(int64)))
case types.Float:
b, err = scoreVector(int32(res.Value.(float64)))
case types.String:
b, err = scoreString(res.Value.(string))
}
if err != nil {
return nil, 0, err
}
return ScoreData(b), 0, nil
}
func typeofCallV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `typeof` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
return StringData(res.Type.Label()), 0, nil
}
func versionCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) == 0 {
return nil, 0, errors.New("called `version` with no arguments, expected one")
}
arg := f.Args[0]
if arg.Type != string(types.String) {
return nil, 0, errors.New("called `version` with incorrect argument type, expected string")
}
res, dref, err := e.resolveValue(arg, ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
raw, ok := res.Value.(string)
if !ok {
return nil, 0, errors.New("called `version` with unsupported type (expected string)")
}
version := NewVersion(raw)
for i := 1; i < len(f.Args); i++ {
arg := f.Args[i]
if !types.Type(arg.Type).IsMap() {
return nil, 0, errors.New("called `version` with unknown argument, expected one string")
}
for k, v := range arg.Map {
switch k {
case "type":
t, ok := v.RawData().Value.(string)
if !ok {
return nil, 0, errors.New("unsupported `type` value in `version` call")
}
typ := strings.ToLower(t)
switch typ {
case "semver":
if version.typ != SEMVER {
return &RawData{Error: errors.New("version '" + raw + "' is not a semantic version"), Value: raw, Type: types.Version}, 0, nil
}
case "debian":
if version.typ != SEMVER && version.typ != DEBIAN_VERSION {
return &RawData{Error: errors.New("version '" + raw + "' is not a debian version"), Value: raw, Type: types.Version}, 0, nil
}
case "python":
if version.typ != SEMVER && version.typ != PYTHON_VERSION {
return &RawData{Error: errors.New("version '" + raw + "' is not a python version"), Value: raw, Type: types.Version}, 0, nil
}
case "all":
break
default:
return nil, 0, errors.New("unsupported `type=" + t + "` in `version` call")
}
}
}
}
return &RawData{Type: types.Version, Value: res.Value}, 0, nil
}
func ipCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) == 0 {
return nil, 0, errors.New("called `ip` with no arguments, expected one")
}
arg := f.Args[0]
if arg.Type != string(types.String) {
return nil, 0, errors.New("called `ip` with incorrect argument type, expected string")
}
res, dref, err := e.resolveValue(arg, ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
raw, ok := res.Value.(string)
if !ok {
return nil, 0, errors.New("called `ip` with unsupported type (expected string)")
}
return IPData(raw), 0, nil
}
func stringCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `string` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string:
return StringData(v), 0, nil
case int64:
i := strconv.FormatInt(v, 10)
return StringData(i), 0, nil
case float64:
f := strconv.FormatFloat(v, 'f', 2, 64)
return StringData(f), 0, nil
case bool:
if v {
return StringData("true"), 0, nil
}
return StringData("false"), 0, nil
default:
return NilData, 0, nil
}
}
func regexCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `regex` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string:
return RegexData(v), 0, nil
case int64:
i := strconv.FormatInt(v, 10)
return RegexData(i), 0, nil
case float64:
f := strconv.FormatFloat(v, 'f', 2, 64)
return RegexData(f), 0, nil
case bool:
if v {
return RegexData("true"), 0, nil
}
return RegexData("false"), 0, nil
default:
return NilData, 0, nil
}
}
func intCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `int` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string:
i, err := strconv.ParseInt(v, 10, 64)
if err != nil {
return nil, 0, err
}
return IntData(i), 0, nil
case int64:
return IntData(v), 0, nil
case float64:
return IntData(int64(v)), 0, nil
case bool:
if v {
return IntData(1), 0, nil
}
return IntData(0), 0, nil
default:
return NilData, 0, nil
}
}
func floatCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `float` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string:
i, err := strconv.ParseFloat(v, 64)
if err != nil {
return nil, 0, err
}
return FloatData(i), 0, nil
case int64:
return FloatData(float64(v)), 0, nil
case float64:
return FloatData(v), 0, nil
case bool:
if v {
return FloatData(1), 0, nil
}
return FloatData(0), 0, nil
default:
return NilData, 0, nil
}
}
func boolCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `bool` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string:
return BoolData(v == "true"), 0, nil
case int64:
return BoolData(v != 0), 0, nil
case float64:
return BoolData(v != 0), 0, nil
case bool:
return BoolData(v), 0, nil
default:
return NilData, 0, nil
}
}
func dictCall(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called `dict` with " + strconv.Itoa(len(f.Args)) + " arguments, expected one")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if err != nil || dref != 0 || res == nil {
return res, dref, err
}
switch v := res.Value.(type) {
case string, int64, float64, bool, []any, map[string]any:
return DictData(v), 0, nil
default:
return NilData, 0, nil
}
}
func expectV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called expect with " + strconv.Itoa(len(f.Args)) + " arguments, expected 1")
}
res, dref, err := e.resolveValue(f.Args[0], ref)
if res != nil && res.Type != types.Bool {
return nil, 0, errors.New("Called expect body with wrong type, it should be a boolean (type mismatch)")
}
return res, dref, err
}
func blockV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
if len(f.Args) != 1 {
return nil, 0, errors.New("Called block with " + strconv.Itoa(len(f.Args)) + " arguments, expected 1")
}
panic("NOT YET BLOCK CALL")
// res, dref, err := c.resolveValue(f.Args[0], ref)
// if res != nil && res.Type[0] != types.Bool {
// return nil, 0, errors.New("Called expect body with wrong type, it should be a boolean (type mismatch)")
// }
// return res, dref, err
}
func returnCallV2(e *blockExecutor, f *Function, ref uint64) (*RawData, uint64, error) {
arg := f.Args[0]
return e.resolveValue(arg, ref)
}