This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
validate_assets.go
119 lines (105 loc) · 3.88 KB
/
validate_assets.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
// Copyright 2019 Google LLC
//
// 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 tfgcv
import (
"context"
"fmt"
"os"
"path/filepath"
"github.com/GoogleCloudPlatform/config-validator/pkg/api/validator"
"github.com/GoogleCloudPlatform/config-validator/pkg/gcv"
"github.com/GoogleCloudPlatform/terraform-validator/converters/google"
"github.com/pkg/errors"
)
type ValidateAssetsFunc func(ctx context.Context, assets []google.Asset, policyRootPath string) ([]*validator.Violation, error)
// ValidateAssets instantiates GCV and audits CAI assets using "policies"
// and "lib" folder under policyRootPath.
func ValidateAssets(ctx context.Context, assets []google.Asset, policyRootPath string) ([]*validator.Violation, error) {
policiesPath := filepath.Join(policyRootPath, "policies")
libPath := filepath.Join(policyRootPath, "lib")
_, err := os.Stat(policiesPath)
if err != nil {
return nil, fmt.Errorf("failed to read files in %s", policiesPath)
}
_, err = os.Stat(libPath)
if err != nil {
return nil, fmt.Errorf("failed to read files in %s", libPath)
}
return ValidateAssetsWithLibrary(ctx, assets,
[]string{policiesPath},
libPath)
}
// ValidateAssetsWithLibrary instantiates GCV and audits CAI assets.
func ValidateAssetsWithLibrary(ctx context.Context, assets []google.Asset, policyPaths []string, policyLibraryDir string) ([]*validator.Violation, error) {
valid, err := gcv.NewValidator(policyPaths, policyLibraryDir)
if err != nil {
return nil, errors.Wrap(err, "initializing gcv validator")
}
pbAssets := make([]*validator.Asset, len(assets))
for i := range assets {
pbAssets[i] = &validator.Asset{}
if err := protoViaJSON(assets[i], pbAssets[i]); err != nil {
return nil, errors.Wrapf(err, "converting asset %s to proto", assets[i].Name)
}
}
pbSplitAssets := splitAssets(pbAssets)
// Make an empty slice, not a nil slice, so that this
// can be properly serialized to JSON.
violations := []*validator.Violation{}
for _, asset := range pbSplitAssets {
newViolations, err := valid.ReviewAsset(context.Background(), asset)
if err != nil {
return nil, errors.Wrapf(err, "reviewing asset %s", asset)
}
violations = append(violations, newViolations...)
}
return violations, nil
}
// splitAssets split assets because for the GCP target Constraint
// Framework ReviewAsset call an asset must have only one of:
// resource, iam policy, org policy or access context policy
func splitAssets(pbAssets []*validator.Asset) []*validator.Asset {
pbSplitAssets := make([]*validator.Asset, 0)
for _, asset := range pbAssets {
if asset.Resource != nil {
splitAsset := *asset
splitAsset.IamPolicy = nil
splitAsset.OrgPolicy = nil
splitAsset.AccessContextPolicy = nil
pbSplitAssets = append(pbSplitAssets, &splitAsset)
}
if asset.IamPolicy != nil {
splitAsset := *asset
splitAsset.Resource = nil
splitAsset.OrgPolicy = nil
splitAsset.AccessContextPolicy = nil
pbSplitAssets = append(pbSplitAssets, &splitAsset)
}
if asset.OrgPolicy != nil {
splitAsset := *asset
splitAsset.Resource = nil
splitAsset.IamPolicy = nil
splitAsset.AccessContextPolicy = nil
pbSplitAssets = append(pbSplitAssets, &splitAsset)
}
if asset.AccessContextPolicy != nil {
splitAsset := *asset
splitAsset.Resource = nil
splitAsset.IamPolicy = nil
splitAsset.OrgPolicy = nil
pbSplitAssets = append(pbSplitAssets, &splitAsset)
}
}
return pbSplitAssets
}