forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuiltins.go
668 lines (587 loc) · 12.6 KB
/
builtins.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
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
// Copyright 2016 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package ast
import "github.com/open-policy-agent/opa/types"
// Builtins is the registry of built-in functions supported by OPA.
// Call RegisterBuiltin to add a new built-in.
var Builtins []*Builtin
// RegisterBuiltin adds a new built-in function to the registry.
func RegisterBuiltin(b *Builtin) {
Builtins = append(Builtins, b)
BuiltinMap[b.Name] = b
if len(b.Infix) > 0 {
BuiltinMap[b.Infix] = b
}
}
// DefaultBuiltins is the registry of built-in functions supported in OPA
// by default. When adding a new built-in function to OPA, update this
// list.
var DefaultBuiltins = [...]*Builtin{
// =
Equality,
// Comparisons
GreaterThan, GreaterThanEq, LessThan, LessThanEq, NotEqual,
// Arithmetic
Plus, Minus, Multiply, Divide, Round, Abs,
// Binary
And, Or,
// Aggregates
Count, Sum, Max, Min,
// Casting
ToNumber,
// Regular Expressions
RegexMatch,
// Sets
SetDiff,
// Strings
Concat, FormatInt, IndexOf, Substring, Lower, Upper, Contains, StartsWith, EndsWith, Split, Replace, Trim, Sprintf,
// Encoding
JSONMarshal, JSONUnmarshal, Base64UrlEncode, Base64UrlDecode, YAMLMarshal, YAMLUnmarshal,
// Tokens
JWTDecode,
// Time
NowNanos, ParseNanos, ParseRFC3339Nanos,
// Graphs
WalkBuiltin,
}
// BuiltinMap provides a convenient mapping of built-in names to
// built-in definitions.
var BuiltinMap map[String]*Builtin
/**
* Unification
*/
// Equality represents the "=" operator.
var Equality = &Builtin{
Name: String("eq"),
Infix: String("="),
Args: []types.Type{
types.A,
types.A,
},
TargetPos: []int{0, 1},
}
/**
* Comparisons
*/
// GreaterThan represents the ">" comparison operator.
var GreaterThan = &Builtin{
Name: String("gt"),
Infix: String(">"),
Args: []types.Type{
types.A,
types.A,
},
}
// GreaterThanEq represents the ">=" comparison operator.
var GreaterThanEq = &Builtin{
Name: String("gte"),
Infix: String(">="),
Args: []types.Type{
types.A,
types.A,
},
}
// LessThan represents the "<" comparison operator.
var LessThan = &Builtin{
Name: String("lt"),
Infix: String("<"),
Args: []types.Type{
types.A,
types.A,
},
}
// LessThanEq represents the "<=" comparison operator.
var LessThanEq = &Builtin{
Name: String("lte"),
Infix: String("<="),
Args: []types.Type{
types.A,
types.A,
},
}
// NotEqual represents the "!=" comparison operator.
var NotEqual = &Builtin{
Name: String("neq"),
Infix: String("!="),
Args: []types.Type{
types.A,
types.A,
},
}
/**
* Arithmetic
*/
// Plus adds two numbers together.
var Plus = &Builtin{
Name: String("plus"),
Infix: String("+"),
Args: []types.Type{
types.N,
types.N,
types.N,
},
TargetPos: []int{2},
}
// Minus subtracts the second number from the first number or computes the diff
// between two sets.
var Minus = &Builtin{
Name: String("minus"),
Infix: String("-"),
Args: []types.Type{
types.NewAny(types.N, types.NewSet(types.A)),
types.NewAny(types.N, types.NewSet(types.A)),
types.NewAny(types.N, types.NewSet(types.A)),
},
TargetPos: []int{2},
}
// Multiply multiplies two numbers together.
var Multiply = &Builtin{
Name: String("mul"),
Infix: String("*"),
Args: []types.Type{
types.N,
types.N,
types.N,
},
TargetPos: []int{2},
}
// Divide divides the first number by the second number.
var Divide = &Builtin{
Name: String("div"),
Infix: String("/"),
Args: []types.Type{
types.N,
types.N,
types.N,
},
TargetPos: []int{2},
}
// Round rounds the number up to the nearest integer.
var Round = &Builtin{
Name: String("round"),
Args: []types.Type{
types.N,
types.N,
},
TargetPos: []int{1},
}
// Abs returns the number without its sign.
var Abs = &Builtin{
Name: String("abs"),
Args: []types.Type{
types.N,
types.N,
},
TargetPos: []int{1},
}
/**
* Binary
*/
// TODO(tsandall): update binary operators to support integers.
// And performs an intersection operation on sets.
var And = &Builtin{
Name: String("and"),
Infix: String("&"),
Args: []types.Type{
types.NewSet(types.A),
types.NewSet(types.A),
types.NewSet(types.A),
},
TargetPos: []int{2},
}
// Or performs a union operation on sets.
var Or = &Builtin{
Name: String("or"),
Infix: String("|"),
Args: []types.Type{
types.NewSet(types.A),
types.NewSet(types.A),
types.NewSet(types.A),
},
TargetPos: []int{2},
}
/**
* Aggregates
*/
// Count takes a collection or string and counts the number of elements in it.
var Count = &Builtin{
Name: String("count"),
Args: []types.Type{
types.NewAny(
types.NewSet(types.A),
types.NewArray(nil, types.A),
types.NewObject(nil, types.A),
types.S,
),
types.N,
},
TargetPos: []int{1},
}
// Sum takes an array or set of numbers and sums them.
var Sum = &Builtin{
Name: String("sum"),
Args: []types.Type{
types.NewAny(
types.NewSet(types.N),
types.NewArray(nil, types.N),
),
types.N,
},
TargetPos: []int{1},
}
// Max returns the maximum value in a collection.
var Max = &Builtin{
Name: String("max"),
Args: []types.Type{
types.NewAny(
types.NewSet(types.A),
types.NewArray(nil, types.A),
),
types.A,
},
TargetPos: []int{1},
}
// Min returns the minimum value in a collection.
var Min = &Builtin{
Name: String("min"),
Args: []types.Type{
types.NewAny(
types.NewSet(types.A),
types.NewArray(nil, types.A),
),
types.A,
},
TargetPos: []int{1},
}
/**
* Casting
*/
// ToNumber takes a string, bool, or number value and converts it to a number.
// Strings are converted to numbers using strconv.Atoi.
// Boolean false is converted to 0 and boolean true is converted to 1.
var ToNumber = &Builtin{
Name: String("to_number"),
Args: []types.Type{
types.NewAny(
types.N,
types.S,
types.B,
types.NewNull(),
),
types.N,
},
TargetPos: []int{1},
}
/**
* Regular Expressions
*/
// RegexMatch takes two strings and evaluates to true if the string in the second
// position matches the pattern in the first position.
var RegexMatch = &Builtin{
Name: String("re_match"),
Args: []types.Type{
types.S,
types.S,
},
}
/**
* Strings
*/
// Concat joins an array of strings with an input string.
var Concat = &Builtin{
Name: String("concat"),
Args: []types.Type{
types.S,
types.NewAny(
types.NewSet(types.S),
types.NewArray(nil, types.S),
),
types.S,
},
TargetPos: []int{2},
}
// FormatInt returns the string representation of the number in the given base after converting it to an integer value.
var FormatInt = &Builtin{
Name: String("format_int"),
Args: []types.Type{
types.N,
types.N,
types.S,
},
TargetPos: []int{2},
}
// IndexOf returns the index of a substring contained inside a string
var IndexOf = &Builtin{
Name: String("indexof"),
Args: []types.Type{
types.S,
types.S,
types.N,
},
TargetPos: []int{2},
}
// Substring returns the portion of a string for a given start index and a length.
// If the length is less than zero, then substring returns the remainder of the string.
var Substring = &Builtin{
Name: String("substring"),
Args: []types.Type{
types.S,
types.N,
types.N,
types.S,
},
TargetPos: []int{3},
}
// Contains returns true if the search string is included in the base string
var Contains = &Builtin{
Name: String("contains"),
Args: []types.Type{
types.S,
types.S,
},
}
// StartsWith returns true if the search string begins with the base string
var StartsWith = &Builtin{
Name: String("startswith"),
Args: []types.Type{
types.S,
types.S,
},
}
// EndsWith returns true if the search string begins with the base string
var EndsWith = &Builtin{
Name: String("endswith"),
Args: []types.Type{
types.S,
types.S,
},
}
// Lower returns the input string but with all characters in lower-case
var Lower = &Builtin{
Name: String("lower"),
Args: []types.Type{
types.S,
types.S,
},
TargetPos: []int{1},
}
// Upper returns the input string but with all characters in upper-case
var Upper = &Builtin{
Name: String("upper"),
Args: []types.Type{
types.S,
types.S,
},
TargetPos: []int{1},
}
// Split returns an array containing elements of the input string split on a delimiter.
var Split = &Builtin{
Name: String("split"),
Args: []types.Type{
types.S,
types.S,
types.NewArray(nil, types.S),
},
TargetPos: []int{2},
}
// Replace returns the given string with all instances of the second argument replaced
// by the third.
var Replace = &Builtin{
Name: String("replace"),
Args: []types.Type{
types.S,
types.S,
types.S,
types.S,
},
TargetPos: []int{3},
}
// Trim returns the given string will all leading or trailing instances of the second
// argument removed.
var Trim = &Builtin{
Name: String("trim"),
Args: []types.Type{
types.S,
types.S,
types.S,
},
TargetPos: []int{2},
}
// Sprintf returns the given string, formatted.
var Sprintf = &Builtin{
Name: String("sprintf"),
Args: []types.Type{
types.S,
types.NewArray(nil, types.A),
types.S,
},
TargetPos: []int{2},
}
/**
* JSON
*/
// JSONMarshal serializes the input term.
var JSONMarshal = &Builtin{
Name: String("json.marshal"),
Args: []types.Type{
types.A,
types.S,
},
TargetPos: []int{1},
}
// JSONUnmarshal deserializes the input string.
var JSONUnmarshal = &Builtin{
Name: String("json.unmarshal"),
Args: []types.Type{
types.S,
types.A,
},
TargetPos: []int{1},
}
// Base64UrlEncode serializes the input string into base64url encoding.
var Base64UrlEncode = &Builtin{
Name: String("base64url.encode"),
Args: []types.Type{
types.S,
types.S,
},
TargetPos: []int{1},
}
// Base64UrlDecode deserializes the base64url encoded input string.
var Base64UrlDecode = &Builtin{
Name: String("base64url.decode"),
Args: []types.Type{
types.S,
types.S,
},
TargetPos: []int{1},
}
// YAMLMarshal serializes the input term.
var YAMLMarshal = &Builtin{
Name: String("yaml.marshal"),
Args: []types.Type{
types.A,
types.S,
},
TargetPos: []int{1},
}
// YAMLUnmarshal deserializes the input string.
var YAMLUnmarshal = &Builtin{
Name: String("yaml.unmarshal"),
Args: []types.Type{
types.S,
types.A,
},
TargetPos: []int{1},
}
/**
* Tokens
*/
// JWTDecode decodes a JSON Web Token and outputs it as an Object.
var JWTDecode = &Builtin{
Name: String("io.jwt.decode"),
Args: []types.Type{
types.S,
types.NewObject(nil, types.A),
types.NewObject(nil, types.A),
types.S,
},
TargetPos: []int{1, 2, 3},
}
/**
* Time
*/
// NowNanos returns the current time since epoch in nanoseconds.
var NowNanos = &Builtin{
Name: String("time.now_ns"),
Args: []types.Type{
types.N,
},
TargetPos: []int{0},
}
// ParseNanos returns the time in nanoseconds parsed from the string in the given format.
var ParseNanos = &Builtin{
Name: String("time.parse_ns"),
Args: []types.Type{
types.S,
types.S,
types.N,
},
TargetPos: []int{2},
}
// ParseRFC3339Nanos returns the time in nanoseconds parsed from the string in RFC3339 format.
var ParseRFC3339Nanos = &Builtin{
Name: String("time.parse_rfc3339_ns"),
Args: []types.Type{
types.S,
types.N,
},
TargetPos: []int{1},
}
/**
* Graphs.
*/
// WalkBuiltin generates [path, value] tuples for all nested documents
// (recursively).
var WalkBuiltin = &Builtin{
Name: String("walk"),
Args: []types.Type{
types.A,
types.NewArray(
[]types.Type{
types.NewArray(nil, types.A),
types.A,
},
nil,
),
},
TargetPos: []int{1},
}
/**
* Deprecated built-ins.
*/
// SetDiff has been replaced by the minus built-in.
var SetDiff = &Builtin{
Name: String("set_diff"),
Args: []types.Type{
types.NewSet(types.A),
types.NewSet(types.A),
types.NewSet(types.A),
},
TargetPos: []int{2},
}
// Builtin represents a built-in function supported by OPA. Every
// built-in function is uniquely identified by a name.
type Builtin struct {
Name String // Unique name of built-in function, e.g., name(term,term,...,term)
Infix String // Unique name of infix operator. Default should be unset.
Args []types.Type // Built-in argument type declaration.
TargetPos []int // Argument positions that bind outputs. Indexing is zero-based.
}
// Expr creates a new expression for the built-in with the given terms.
func (b *Builtin) Expr(terms ...*Term) *Expr {
ts := []*Term{StringTerm(string(b.Name))}
for _, t := range terms {
ts = append(ts, t)
}
return &Expr{
Terms: ts,
}
}
// IsTargetPos returns true if a variable in the i-th position will be
// bound when the expression is evaluated.
func (b *Builtin) IsTargetPos(i int) bool {
for _, x := range b.TargetPos {
if x == i {
return true
}
}
return false
}
func init() {
BuiltinMap = map[String]*Builtin{}
for _, b := range DefaultBuiltins {
RegisterBuiltin(b)
}
}