-
Notifications
You must be signed in to change notification settings - Fork 10
/
tfplan.go
701 lines (633 loc) · 20 KB
/
tfplan.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
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
// © 2022-2023 Snyk Limited All rights reserved.
// Copyright 2021 Fugue, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package input
import (
"fmt"
"sort"
"strings"
"github.com/snyk/policy-engine/pkg/input/schemas"
tfschemas "github.com/snyk/policy-engine/pkg/input/schemas/tf"
"github.com/snyk/policy-engine/pkg/interfacetricks"
"github.com/snyk/policy-engine/pkg/models"
"gopkg.in/yaml.v3"
)
type TfPlanDetector struct{}
func (t *TfPlanDetector) DetectFile(i *File, opts DetectOptions) (IACConfiguration, error) {
if !opts.IgnoreExt && i.Ext() != ".json" {
return nil, fmt.Errorf("%w: %v", UnrecognizedFileExtension, i.Ext())
}
contents, err := i.Contents()
if err != nil {
return nil, err
}
rawPlan := &tfplan_Plan{}
if err := yaml.Unmarshal(contents, rawPlan); err != nil {
return nil, fmt.Errorf("%w: %v", FailedToParseInput, err)
}
if rawPlan.TerraformVersion == "" || rawPlan.PlannedValues == nil {
return nil, fmt.Errorf("%w", InvalidInput)
}
return &tfPlan{
path: i.Path,
plan: rawPlan,
}, nil
}
func (t *TfPlanDetector) DetectDirectory(i *Directory, opts DetectOptions) (IACConfiguration, error) {
return nil, nil
}
type tfPlan struct {
path string
plan *tfplan_Plan
}
func (l *tfPlan) LoadedFiles() []string {
return []string{l.path}
}
func (l *tfPlan) Location(_ []interface{}) (LocationStack, error) {
return []Location{{Path: l.path}}, nil
}
func (l *tfPlan) ToState() models.State {
return models.State{
InputType: TerraformPlan.Name,
EnvironmentProvider: "iac",
Meta: map[string]interface{}{
"filepath": l.path,
},
Resources: groupResourcesByType(l.plan.resources(l.path)),
Scope: map[string]interface{}{
"filepath": l.path,
},
}
}
func (l *tfPlan) Errors() []error {
return []error{}
}
func (l *tfPlan) Type() *Type {
return TerraformPlan
}
// This (among with other types prefixed with tfplan_) matches the JSON
// format exactly.
type tfplan_Plan struct {
TerraformVersion string `yaml:"terraform_version"`
FormatVersion string `yaml:"format_version"`
PlannedValues *tfplan_PlannedValues `yaml:"planned_values"`
ResourceChanges []*tfplan_ResourceChange `yaml:"resource_changes"`
Configuration *tfplan_Configuration `yaml:"configuration"`
PriorState *tfplan_PriorState `yaml:"prior_state"`
}
type tfplan_PlannedValues struct {
RootModule *tfplan_PlannedValuesModule `yaml:"root_module"`
}
type tfplan_PlannedValuesModule struct {
Address string `yaml:"address"`
Resources []*tfplan_PlannedValuesResource `yaml:"resources"`
ChildModules []*tfplan_PlannedValuesModule `yaml:"child_modules"`
}
type tfplan_PlannedValuesResource struct {
Address string `yaml:"address"`
Mode string `yaml:"mode"`
Type string `yaml:"type"`
Values map[string]interface{} `yaml:"values"`
}
type tfplan_ResourceChange struct {
Address string `yaml:"address"`
Change tfplan_ResourceChangeChange `yaml:"change"`
}
type tfplan_ResourceChangeChange struct {
// One of: "create", "no-op", "update", "delete"
Actions []string `yaml:"actions"`
AfterUnknown map[string]interface{} `yaml:"after_unknown"`
}
type tfplan_Configuration struct {
ProviderConfig map[string]*tfplan_ProviderConfig `yaml:"provider_config"`
RootModule *tfplan_ConfigurationModule `yaml:"root_module"`
}
type tfplan_ProviderConfig struct {
VersionConstraint string `yaml:"version_constraint"`
Expressions map[string]*tfplan_ConfigurationExpression `yaml:"expressions"`
}
type tfplan_ConfigurationModule struct {
Outputs map[string]tfplan_ConfigurationOutput `yaml:"outputs"`
Resources []*tfplan_ConfigurationResource `yaml:"resources"`
ModuleCalls map[string]*tfplan_ConfigurationModuleCall `yaml:"module_calls"`
}
type tfplan_ConfigurationOutput struct {
Expression *tfplan_ConfigurationExpression `yaml:"expression"`
}
type tfplan_ConfigurationModuleCall struct {
Source string `yaml:"source"`
Expressions map[string]*tfplan_ConfigurationExpression `yaml:"expressions"`
Module *tfplan_ConfigurationModule `yaml:"module"`
}
type tfplan_ConfigurationResource struct {
Address string `yaml:"address"`
ProviderConfigKey string `yaml:"provider_config_key"`
Expressions map[string]*tfplan_ConfigurationExpression `yaml:"expressions"`
}
type tfplan_ConfigurationExpression struct {
ConstantValue *tfplan_ConfigurationExpression_ConstantValue
References *tfplan_ConfigurationExpression_References
Object map[string]tfplan_ConfigurationExpression
Array []tfplan_ConfigurationExpression
}
type tfplan_PriorState struct {
FormatVersion string `yaml:"format_version"`
TerraformVersion string `yaml:"terraform_version"`
Values *tfplan_PlannedValues `yaml:"values"`
}
// Override the UnmarshalYAML for tfplan_ConfigurationExpression. This is a
// union type that will only set exactly one of its fields. We inspect the
// JSON structure to understand which one.
func (expr *tfplan_ConfigurationExpression) UnmarshalYAML(value *yaml.Node) error {
if value.Kind == yaml.MappingNode {
isConstantValue := false
isReferences := false
for i := 0; i < len(value.Content); i += 2 {
var key string
if err := value.Content[i].Decode(&key); err == nil {
switch key {
case "constant_value":
isConstantValue = true
case "references":
isReferences = true
}
}
}
if isConstantValue {
constantValue := tfplan_ConfigurationExpression_ConstantValue{}
if err := value.Decode(&constantValue); err != nil {
return err
} else {
expr.ConstantValue = &constantValue
return nil
}
}
if isReferences {
references := tfplan_ConfigurationExpression_References{}
if err := value.Decode(&references); err != nil {
return err
} else {
expr.References = &references
return nil
}
}
obj := map[string]tfplan_ConfigurationExpression{}
if err := value.Decode(&obj); err != nil {
return err
} else {
expr.Object = obj
return nil
}
}
if value.Kind == yaml.SequenceNode {
arr := []tfplan_ConfigurationExpression{}
if err := value.Decode(&arr); err != nil {
return err
} else {
expr.Array = arr
return nil
}
}
return fmt.Errorf("Unrecognized configuration expression: %v", value)
}
type tfplan_ConfigurationExpression_ConstantValue struct {
ConstantValue interface{} `yaml:"constant_value"`
}
type tfplan_ConfigurationExpression_References struct {
References []string `yaml:"references"`
}
// Helper to iterate through all modules.
func (plan *tfplan_Plan) visitModules(
visitPlannedValuesModule func(string, *tfplan_PlannedValuesModule),
visitPriorStateModule func(string, *tfplan_PlannedValuesModule),
visitConfigurationModule func(string, *tfplan_ConfigurationModule),
) {
var walkPlannedValuesModule func(*tfplan_PlannedValuesModule)
var walkPriorStateModule func(*tfplan_PlannedValuesModule)
var walkConfigurationModule func(string, *tfplan_ConfigurationModule)
walkPlannedValuesModule = func(module *tfplan_PlannedValuesModule) {
visitPlannedValuesModule(module.Address, module)
for _, child := range module.ChildModules {
walkPlannedValuesModule(child)
}
}
walkPriorStateModule = func(module *tfplan_PlannedValuesModule) {
visitPriorStateModule(module.Address, module)
for _, child := range module.ChildModules {
walkPriorStateModule(child)
}
}
walkConfigurationModule = func(path string, module *tfplan_ConfigurationModule) {
visitConfigurationModule(path, module)
for k, call := range module.ModuleCalls {
childPath := joinDot(path, "module", k)
walkConfigurationModule(childPath, call.Module)
}
}
walkPlannedValuesModule(plan.PlannedValues.RootModule)
if plan.PriorState != nil && plan.PriorState.Values != nil {
walkPriorStateModule(plan.PriorState.Values.RootModule)
}
walkConfigurationModule("", plan.Configuration.RootModule)
}
// Generate a full map of outputs, assuming they reference a resource.
// This ends up looking like e.g.:
//
// module.child1.grandchild_vpc: module.child1.module.grandchild1.grandchild_vpc
// module.child1.module.grandchild1.grandchild_vpc: module.child1.module.grandchild1.aws_vpc.grandchild
// parent_vpc: aws_vpc.parent
// module.child2.var.child_vpc_id: module.child1.grandchild_vpc
//
// Then returns a function which can (recursively) resolve pointers in this
// variable map.
func (plan *tfplan_Plan) pointers() func(string) *string {
out := map[string]string{}
plan.visitModules(
func(path string, module *tfplan_PlannedValuesModule) {},
func(path string, module *tfplan_PlannedValuesModule) {},
func(path string, module *tfplan_ConfigurationModule) {
for key, expr := range module.Outputs {
refs := expr.Expression.references(func(string) *string { return nil })
if ref, ok := refs.(string); ok {
out[joinDot(path, key)] = joinDot(path, ref)
}
}
for child, call := range module.ModuleCalls {
for key, expr := range call.Expressions {
refs := expr.references(func(string) *string { return nil })
if ref, ok := refs.(string); ok {
lhs := joinDot(path, "module", child, "var", key)
rhs := joinDot(path, ref)
out[lhs] = rhs
}
}
}
},
)
return func(key string) *string {
// Return a resolver that follows pointers, but also keep a set of
// nodes already visited to avoid cycles.
visited := map[string]struct{}{}
var result *string
for _, ok := out[key]; ok; _, ok = out[key] {
cpy := out[key]
result = &cpy
visited[key] = struct{}{}
if _, v := visited[out[key]]; v {
return result // Avoid cycles
}
key = out[key]
}
return result
}
}
// Helper to iterate through all resources
func (plan *tfplan_Plan) visitResources(
visitResource func(
module string,
id string,
pvr *tfplan_PlannedValuesResource,
rc *tfplan_ResourceChange,
cr *tfplan_ConfigurationResource,
),
) {
modulesByResource := map[string]string{}
plannedValueResources := map[string]*tfplan_PlannedValuesResource{}
priorStateResources := map[string]*tfplan_PlannedValuesResource{}
resourceChanges := map[string]*tfplan_ResourceChange{}
configurationResources := map[string]*tfplan_ConfigurationResource{}
plan.visitModules(
func(path string, module *tfplan_PlannedValuesModule) {
for _, resource := range module.Resources {
plannedValueResources[resource.Address] = resource
modulesByResource[resource.Address] = path
}
},
func(path string, module *tfplan_PlannedValuesModule) {
for _, resource := range module.Resources {
priorStateResources[resource.Address] = resource
modulesByResource[resource.Address] = path
}
},
func(path string, module *tfplan_ConfigurationModule) {
for _, resource := range module.Resources {
id := joinDot(path, resource.Address)
configurationResources[id] = resource
}
},
)
for _, resourceChange := range plan.ResourceChanges {
resourceChanges[resourceChange.Address] = resourceChange
}
// Resources with a count set will have an address along the likes of
// "aws_s3_bucket.foo[3]" but the corresponding configuration resource
// will still have an "aws_s3_bucket.foo" address.
configurationKey := func(k string) string {
if idx := strings.Index(k, "["); idx > 0 {
return k[:idx]
} else {
return k
}
}
for k, pvResource := range plannedValueResources {
visitResource(
modulesByResource[k],
k,
pvResource,
resourceChanges[k],
configurationResources[configurationKey(k)],
)
}
// Also consider prior_state data resources. These have the same format
// as planned values.
for k, priorStateResource := range priorStateResources {
if _, ok := plannedValueResources[k]; !ok {
if strings.HasPrefix(k, "data.") {
visitResource(
modulesByResource[k],
k,
priorStateResource,
resourceChanges[k],
configurationResources[configurationKey(k)],
)
}
}
}
}
// Figure out which variables or resources are referenced. A resolver function
// can be passed in.
func (resource *tfplan_ConfigurationResource) references(resolve func(string) *string) interface{} {
obj := make(map[string]interface{}, len(resource.Expressions))
for k, e := range resource.Expressions {
if ref := e.references(resolve); ref != nil {
obj[k] = ref
}
}
return obj
}
// Figure out which variables or resources are referenced. A resolver function
// can be passed in.
func (expr *tfplan_ConfigurationExpression) references(resolve func(string) *string) interface{} {
if expr.ConstantValue != nil {
return nil
} else if expr.References != nil {
refs := filterReferences(expr.References.References)
resolved := make([]string, len(refs))
for i, ref := range refs {
if val := resolve(ref); val != nil {
resolved[i] = *val
} else {
resolved[i] = ref
}
}
if len(resolved) == 1 {
return resolved[0]
} else {
return resolved
}
} else if expr.Array != nil {
arr := make([]interface{}, len(expr.Array))
for i, e := range expr.Array {
arr[i] = e.references(resolve)
}
return arr
} else if expr.Object != nil {
obj := make(map[string]interface{}, len(expr.Object))
for k, e := range expr.Object {
if ref := e.references(resolve); ref != nil {
obj[k] = ref
}
}
return obj
}
return nil
}
// If a configuration expression consists only of constant values, we can try to
// evaluate it.
func (expr *tfplan_ConfigurationExpression) evalConstantValue() interface{} {
if expr.ConstantValue != nil {
return expr.ConstantValue.ConstantValue
} else if expr.References != nil {
return nil
} else if expr.Array != nil {
arr := make([]interface{}, len(expr.Array))
for i, e := range expr.Array {
arr[i] = e.evalConstantValue()
}
return arr
} else if expr.Object != nil {
obj := make(map[string]interface{}, len(expr.Object))
for k, e := range expr.Object {
if cv := e.evalConstantValue(); cv != nil {
obj[k] = cv
}
}
return obj
}
return nil
}
// Main entry point to convert this to an input state.
func (plan *tfplan_Plan) resources(resourceNamespace string) []models.ResourceState {
// Calculate outputs
resolveGlobally := plan.pointers()
resources := []models.ResourceState{}
plan.visitResources(func(
module string,
path string,
pvr *tfplan_PlannedValuesResource,
rc *tfplan_ResourceChange,
cr *tfplan_ConfigurationResource,
) {
id := pvr.Address
attributes := map[string]interface{}{}
// Copy attributes from planned values.
for k, attr := range pvr.Values {
attributes[k] = attr
}
// Retain only references that are in AfterUnknown.
if rc != nil && cr != nil {
refs := interfacetricks.Copy(rc.Change.AfterUnknown)
refs = interfacetricks.IntersectWith(
refs,
cr.references(func(variable string) *string {
// When resolving references, take the module name into account.
qualified := joinDot(module, variable)
if result := resolveGlobally(qualified); result != nil {
return result
} else {
return &qualified
}
}),
// Intersect using a function that replaces all the "true"s on the
// left hand side (in the AfterUnknown structure) with the
// references we found.
func(left interface{}, r interface{}) interface{} {
// There's a bool in the AfterUnknown so just return the
// references if true.
if l, ok := left.(bool); ok {
if l {
return r
} else {
return nil
}
}
// There's an array/object of booleans, use interfacetricks
// to construct a tree of the same shape but containing
// the references rather than "true".
return interfacetricks.TopDownWalk(
&replaceBoolTopDownWalker{
replaceBool: func(b bool) interface{} {
if b {
return r
} else {
return nil
}
},
},
left,
)
},
)
// Merge in references
interfacetricks.MergeWith(attributes, refs, func(left interface{}, right interface{}) interface{} {
if right == nil {
return left
} else {
return right
}
})
}
meta := map[string]interface{}{}
metaTerraform := map[string]interface{}{}
metaTfplan := map[string]interface{}{}
if cr != nil {
if config, ok := plan.Configuration.ProviderConfig[cr.ProviderConfigKey]; ok {
if config.VersionConstraint != "" {
metaTerraform["provider_version_constraint"] = config.VersionConstraint
}
conf := map[string]interface{}{}
for k, ec := range config.Expressions {
if ev := ec.evalConstantValue(); ev != nil {
conf[k] = ev
}
}
if len(conf) > 0 {
metaTerraform["provider_config"] = conf
}
if region, ok := conf["region"].(string); ok {
// Add meta.region if present
meta["region"] = region
}
}
}
if rc != nil {
resourceActions := []interface{}{}
for _, action := range rc.Change.Actions {
resourceActions = append(resourceActions, action)
}
metaTfplan["resource_actions"] = resourceActions
}
if len(metaTerraform) > 0 {
meta["terraform"] = metaTerraform
}
if len(metaTfplan) > 0 {
meta["tfplan"] = metaTfplan
}
var resourceType string
if pvr.Mode == "data" {
resourceType = strings.Join([]string{pvr.Mode, pvr.Type}, ".")
} else {
resourceType = pvr.Type
}
attributes = schemas.ApplyObject(attributes, tfschemas.GetSchema(resourceType))
model := models.ResourceState{
Id: id,
ResourceType: resourceType,
Namespace: resourceNamespace,
Attributes: attributes,
Meta: meta,
}
model.Tags = tfExtractTags(model)
resources = append(resources, model)
})
return resources
}
// interfacetricks.TopDownWalker implementation that can replace a boolean.
type replaceBoolTopDownWalker struct {
replaceBool func(bool) interface{}
}
func (*replaceBoolTopDownWalker) WalkArray(arr []interface{}) (interface{}, bool) {
return arr, true
}
func (*replaceBoolTopDownWalker) WalkObject(obj map[string]interface{}) (interface{}, bool) {
return obj, true
}
func (*replaceBoolTopDownWalker) WalkString(s string) (interface{}, bool) {
return s, false
}
func (w *replaceBoolTopDownWalker) WalkBool(b bool) (interface{}, bool) {
return w.replaceBool(b), false
}
// Terraform plan format 0.2 introduced a change where the references array
// always includes both the property and its parent resource. We want to
// remove one of them (determined in should_filter) in order to maintain
// consistent behavior. The ordering is reliable - property followed by
// resource.
//
// TODO: Maybe we should just do a version check and use that instead of
// this logic.
func filterReferences(refs []string) []string {
// Go in reverse to make use of the ordering.
prefixes := map[string]struct{}{}
for _, ref := range refs {
if parts := strings.Split(ref, "."); len(parts) > 0 {
switch parts[0] {
case "module":
if len(parts) >= 3 {
prefixes[strings.Join(parts[:3], ".")] = struct{}{}
}
case "data":
if len(parts) >= 3 {
prefixes[strings.Join(parts[:3], ".")] = struct{}{}
}
case "var":
prefixes[ref] = struct{}{}
default:
if len(parts) >= 2 {
prefixes[strings.Join(parts[:2], ".")] = struct{}{}
}
}
}
}
// Sort before returning
resources := []string{}
for k := range prefixes {
resources = append(resources, k)
}
sort.Strings(resources)
return resources
}
func joinDot(parts ...string) string {
result := ""
for _, part := range parts {
if part != "" {
if result == "" {
result = part
} else {
result = result + "." + part
}
}
}
return result
}