forked from tektoncd/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrustedresources.go
419 lines (377 loc) · 11.7 KB
/
trustedresources.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
/*
Copyright 2022 The Tekton Authors
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 test
import (
"bytes"
"context"
"crypto"
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"encoding/json"
"fmt"
"os"
"path/filepath"
"testing"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/sigstore/sigstore/pkg/signature"
"github.com/tektoncd/pipeline/pkg/apis/config"
v1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
fakek8s "k8s.io/client-go/kubernetes/fake"
"knative.dev/pkg/logging"
)
// TODO(#5820): refactor those into an internal pkg
const (
namespace = "trusted-resources"
// signatureAnnotation is the key of signature in annotation map
signatureAnnotation = "tekton.dev/signature"
)
var (
read = readPasswordFn
)
// GetUnsignedTask returns unsigned task with given name
func GetUnsignedTask(name string) *v1beta1.Task {
return &v1beta1.Task{
TypeMeta: metav1.TypeMeta{
APIVersion: "tekton.dev/v1beta1",
Kind: "Task"},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
Annotations: map[string]string{"foo": "bar"},
},
Spec: v1beta1.TaskSpec{
Steps: []v1beta1.Step{{
Image: "ubuntu",
Name: "echo",
}},
},
}
}
// GetUnsignedPipeline returns unsigned pipeline with given name
func GetUnsignedPipeline(name string) *v1beta1.Pipeline {
return &v1beta1.Pipeline{
TypeMeta: metav1.TypeMeta{
APIVersion: "tekton.dev/v1beta1",
Kind: "Pipeline"},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
Annotations: map[string]string{"foo": "bar"},
},
Spec: v1beta1.PipelineSpec{
Tasks: []v1beta1.PipelineTask{
{
Name: "task",
},
},
},
}
}
// SetupTrustedResourceConfig configures the trusted-resources-verification-no-match-policy feature flag with the given mode for testing
func SetupTrustedResourceConfig(ctx context.Context, verificationNoMatchPolicy string) context.Context {
store := config.NewStore(logging.FromContext(ctx).Named("config-store"))
featureflags := &corev1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: "feature-flags",
},
Data: map[string]string{
"trusted-resources-verification-no-match-policy": verificationNoMatchPolicy,
},
}
store.OnConfigChanged(featureflags)
return store.ToContext(ctx)
}
// SetupVerificationPolicies set verification policies and secrets to store public keys.
// This function helps to setup 4 kinds of VerificationPolicies:
// 1. One public key in inline data
// 2. One public key in secret
// 3. the policy pattern doesn't match any resources
// 4. warn mode policy without keys
// SignerVerifier is returned to sign resources
// The k8s clientset is returned to fetch secret from it.
// VerificationPolicies are returned to fetch public keys
func SetupVerificationPolicies(t *testing.T) (signature.SignerVerifier, *ecdsa.PrivateKey, *fakek8s.Clientset, []*v1alpha1.VerificationPolicy) {
t.Helper()
sv, keys, pub, err := GenerateKeys(elliptic.P256(), crypto.SHA256)
if err != nil {
t.Fatalf("failed to generate keys %v", err)
}
_, _, pub2, err := GenerateKeys(elliptic.P256(), crypto.SHA256)
if err != nil {
t.Fatalf("failed to generate keys %v", err)
}
secret := &corev1.Secret{
Data: map[string][]byte{"cosign.pub": pub},
ObjectMeta: metav1.ObjectMeta{
Name: "verification-secrets",
Namespace: namespace}}
keyInDataVp := getVerificationPolicy(
"keyInDataVp",
namespace,
[]v1alpha1.ResourcePattern{
{Pattern: "https://github.com/tektoncd/catalog.git"},
},
[]v1alpha1.Authority{
{
Name: "pubkey",
Key: &v1alpha1.KeyRef{
Data: string(pub),
HashAlgorithm: "sha256",
},
},
}, v1alpha1.ModeEnforce)
keyInSecretVp := getVerificationPolicy(
"keyInSecretVp",
namespace,
[]v1alpha1.ResourcePattern{{
Pattern: "gcr.io/tekton-releases/catalog/upstream/git-clone"},
},
[]v1alpha1.Authority{
{
Name: "pubkey",
Key: &v1alpha1.KeyRef{
SecretRef: &corev1.SecretReference{
Name: secret.Name,
Namespace: secret.Namespace,
},
HashAlgorithm: "sha256",
},
},
}, v1alpha1.ModeEnforce)
wrongKeyandPatternVp := getVerificationPolicy(
"wrongKeyInDataVp",
namespace,
[]v1alpha1.ResourcePattern{
{Pattern: "this should not match any resources"},
},
[]v1alpha1.Authority{
{
Name: "pubkey",
Key: &v1alpha1.KeyRef{
Data: string(pub2),
HashAlgorithm: "sha256",
},
},
}, v1alpha1.ModeEnforce)
warnModeVP := getVerificationPolicy(
"warnModeVP",
namespace,
[]v1alpha1.ResourcePattern{{
Pattern: "warnVP"},
},
[]v1alpha1.Authority{
{
Name: "pubkey",
Key: &v1alpha1.KeyRef{
SecretRef: &corev1.SecretReference{
Name: secret.Name,
Namespace: secret.Namespace,
},
HashAlgorithm: "sha256",
},
},
}, v1alpha1.ModeWarn)
k8sclient := fakek8s.NewSimpleClientset(secret)
return sv, keys, k8sclient, []*v1alpha1.VerificationPolicy{&keyInDataVp, &keyInSecretVp, &wrongKeyandPatternVp, &warnModeVP}
}
// SetupMatchAllVerificationPolicies set verification policies with a Pattern to match all resources
// SignerVerifier is returned to sign resources
// The k8s clientset is returned to fetch secret from it.
// VerificationPolicies are returned to fetch public keys
func SetupMatchAllVerificationPolicies(t *testing.T, namespace string) (signature.SignerVerifier, *fakek8s.Clientset, []*v1alpha1.VerificationPolicy) {
t.Helper()
sv, _, pub, err := GenerateKeys(elliptic.P256(), crypto.SHA256)
if err != nil {
t.Fatalf("failed to generate keys %v", err)
}
secret := &corev1.Secret{
Data: map[string][]byte{"cosign.pub": pub},
ObjectMeta: metav1.ObjectMeta{
Name: "verification-secrets",
Namespace: namespace}}
matchAllVp := getVerificationPolicy(
"matchAllVp",
namespace,
[]v1alpha1.ResourcePattern{
{Pattern: ".*"},
},
[]v1alpha1.Authority{
{
Name: "pubkey",
Key: &v1alpha1.KeyRef{
Data: string(pub),
HashAlgorithm: "sha256",
},
},
}, v1alpha1.ModeEnforce)
k8sclient := fakek8s.NewSimpleClientset(secret)
return sv, k8sclient, []*v1alpha1.VerificationPolicy{&matchAllVp}
}
// GetSignerFromFile generates key files to tmpdir, return signer and pubkey path
func GetSignerFromFile(ctx context.Context, t *testing.T) (signature.Signer, string) {
t.Helper()
sv, _, pub, err := GenerateKeys(elliptic.P256(), crypto.SHA256)
if err != nil {
t.Fatal(err)
}
tmpDir := t.TempDir()
pubKey := filepath.Join(tmpDir, "ecdsa.pub")
if err := os.WriteFile(pubKey, pub, 0600); err != nil {
t.Fatal(err)
}
return sv, pubKey
}
// GetKeysFromFile generates key files to tmpdir, return keys and pubkey path
func GetKeysFromFile(ctx context.Context, t *testing.T) (*ecdsa.PrivateKey, string) {
t.Helper()
_, keys, pub, err := GenerateKeys(elliptic.P256(), crypto.SHA256)
if err != nil {
t.Fatal(err)
}
tmpDir := t.TempDir()
pubKey := filepath.Join(tmpDir, "ecdsa.pub")
if err := os.WriteFile(pubKey, pub, 0600); err != nil {
t.Fatal(err)
}
return keys, pubKey
}
// GenerateKeys creates public key files, return the SignerVerifier
func GenerateKeys(c elliptic.Curve, hashFunc crypto.Hash) (signature.SignerVerifier, *ecdsa.PrivateKey, []byte, error) {
keys, err := ecdsa.GenerateKey(c, rand.Reader)
if err != nil {
return nil, nil, nil, err
}
// Now do the public key
pubBytes, err := cryptoutils.MarshalPublicKeyToPEM(keys.Public())
if err != nil {
return nil, nil, nil, err
}
sv, err := signature.LoadSignerVerifier(keys, hashFunc)
if err != nil {
return nil, nil, nil, err
}
return sv, keys, pubBytes, nil
}
// signInterface returns the encoded signature for the given object.
func signInterface(signer signature.Signer, i interface{}) ([]byte, error) {
if signer == nil {
return nil, fmt.Errorf("signer is nil")
}
b, err := json.Marshal(i)
if err != nil {
return nil, err
}
h := sha256.New()
h.Write(b)
sig, err := signer.SignMessage(bytes.NewReader(h.Sum(nil)))
if err != nil {
return nil, err
}
return sig, nil
}
// GetSignedV1beta1Pipeline signed the given pipeline and rename it with given name
func GetSignedV1beta1Pipeline(unsigned *v1beta1.Pipeline, signer signature.Signer, name string) (*v1beta1.Pipeline, error) {
signedPipeline := unsigned.DeepCopy()
signedPipeline.Name = name
if signedPipeline.Annotations == nil {
signedPipeline.Annotations = map[string]string{}
}
signature, err := signInterface(signer, signedPipeline)
if err != nil {
return nil, err
}
signedPipeline.Annotations[signatureAnnotation] = base64.StdEncoding.EncodeToString(signature)
return signedPipeline, nil
}
// GetSignedV1beta1Task signed the given task and rename it with given name
func GetSignedV1beta1Task(unsigned *v1beta1.Task, signer signature.Signer, name string) (*v1beta1.Task, error) {
signedTask := unsigned.DeepCopy()
signedTask.Name = name
if signedTask.Annotations == nil {
signedTask.Annotations = map[string]string{}
}
signature, err := signInterface(signer, signedTask)
if err != nil {
return nil, err
}
signedTask.Annotations[signatureAnnotation] = base64.StdEncoding.EncodeToString(signature)
return signedTask, nil
}
// GetSignedV1Pipeline signed the given pipeline and rename it with given name
func GetSignedV1Pipeline(unsigned *v1.Pipeline, signer signature.Signer, name string) (*v1.Pipeline, error) {
signedPipeline := unsigned.DeepCopy()
signedPipeline.Name = name
if signedPipeline.Annotations == nil {
signedPipeline.Annotations = map[string]string{}
}
signature, err := signInterface(signer, signedPipeline)
if err != nil {
return nil, err
}
signedPipeline.Annotations[signatureAnnotation] = base64.StdEncoding.EncodeToString(signature)
return signedPipeline, nil
}
// GetSignedV1Task signed the given task and rename it with given name
func GetSignedV1Task(unsigned *v1.Task, signer signature.Signer, name string) (*v1.Task, error) {
signedTask := unsigned.DeepCopy()
signedTask.Name = name
if signedTask.Annotations == nil {
signedTask.Annotations = map[string]string{}
}
signature, err := signInterface(signer, signedTask)
if err != nil {
return nil, err
}
signedTask.Annotations[signatureAnnotation] = base64.StdEncoding.EncodeToString(signature)
return signedTask, nil
}
func getPass(confirm bool) ([]byte, error) {
read := read(confirm)
return read()
}
func readPasswordFn(confirm bool) func() ([]byte, error) {
pw, ok := os.LookupEnv("PRIVATE_PASSWORD")
if ok {
return func() ([]byte, error) {
return []byte(pw), nil
}
}
return func() ([]byte, error) {
return nil, fmt.Errorf("fail to get password")
}
}
func getVerificationPolicy(name, namespace string, patterns []v1alpha1.ResourcePattern, authorities []v1alpha1.Authority, mode v1alpha1.ModeType) v1alpha1.VerificationPolicy {
return v1alpha1.VerificationPolicy{
TypeMeta: metav1.TypeMeta{
Kind: "VerificationPolicy",
APIVersion: "v1alpha1",
},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
Spec: v1alpha1.VerificationPolicySpec{
Resources: patterns,
Authorities: authorities,
Mode: mode,
},
}
}