-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmain.go
488 lines (428 loc) · 11.8 KB
/
main.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
// Chainloop is an open source project that allows you to collect, attest, and distribute pieces of evidence from your Software Supply Chain.
package main
import (
"context"
"encoding/json"
"fmt"
"main/internal/dagger"
"time"
)
const (
chainloopVersion = "v0.189.0"
)
var execOpts = dagger.ContainerWithExecOpts{
UseEntrypoint: true,
}
type Chainloop struct {
// +private
Instance InstanceInfo
}
// A Chainloop attestation
// https://docs.chainloop.dev/how-does-it-work/#contract-based-attestation
type Attestation struct {
AttestationID string
repository *dagger.Directory
// +private
Token *dagger.Secret
// +private
RegistryAuth RegistryAuth
Client *Chainloop
}
// Configuration for a container registry client
type RegistryAuth struct {
// Address of the registry
Address string
// Username to use when authenticating to the registry
Username string
// Password to use when authenticating to the registry
Password *dagger.Secret
}
// Configuration for a Chainloop instance
type InstanceInfo struct {
// hostname for the Control Plane API i.e mycontrolplane:443
ControlplaneAPI string
// path to a custom CA for the Control Plane API
ControlplaneCAPath *dagger.File
// hostname for the cas API i.e myCAS:443
CASAPI string
// path to a custom CA for the CAS API
CASCAPath *dagger.File
// Password to use when authenticating to the registry
Insecure bool
}
// Initialize a new attestation
func (m *Chainloop) Init(
ctx context.Context,
// Chainloop API token
token *dagger.Secret,
// Workflow Contract revision, default is the latest
// +optional
contractRevision string,
// Path to the source repository to be attested
// +optional
repository *dagger.Directory,
// Workflow name to be used for the attestation
workflowName string,
// Project name to be used for the attestation
projectName string,
// name of an existing contract to attach it to the auto-created workflow
// +optional
contractName string,
// Version of the project to be used for the attestation
// +optional
projectVersion string,
// mark the version as release
// +optional
release bool,
) (*Attestation, error) {
att := &Attestation{
Token: token,
repository: repository,
Client: m,
}
// Append the contract revision to the args if provided
args := []string{
"attestation", "init", "--remote-state", "-o", "json", "--workflow", workflowName, "--project", projectName,
}
if contractRevision != "" {
args = append(args,
"--contract-revision", contractRevision,
)
}
if contractName != "" {
args = append(args,
"--contract", contractName,
)
}
if projectVersion != "" {
args = append(args,
"--version", projectVersion,
)
}
if release {
args = append(args,
"--release",
)
}
info, err := att.
Container(0).
WithExec(args, execOpts).
Stdout(ctx)
if err != nil {
return nil, fmt.Errorf("attestation init: %w", err)
}
var resp struct {
AttestationID string
}
if err := json.Unmarshal([]byte(info), &resp); err != nil {
return nil, fmt.Errorf("unmarshal attestation init response: %w", err)
}
att.AttestationID = resp.AttestationID
return att, nil
}
// Resume an attestation from its identifier
func (m *Chainloop) Resume(
// The attestation ID
attestationID string,
// Chainloop API token
token *dagger.Secret,
) *Attestation {
return &Attestation{
AttestationID: attestationID,
Token: token,
Client: m,
}
}
// Check the attestation status
func (att *Attestation) Status(ctx context.Context) (string, error) {
return att.
Container(0).
WithExec([]string{
"attestation", "status",
"--attestation-id", att.AttestationID,
"--full",
}, execOpts).
Stdout(ctx)
}
// Sync will force the client to send an actual query to the chainloop control plane
// This is specially important to be run right after Init
// for example
//
// att := chainloop.Init(ctx, token, "main")
//
// if err := att.Sync(ctx); err != nil {
// return nil, err
// }
func (att *Attestation) Sync(_ context.Context) error {
return nil
}
// Attach credentials for a container registry.
// Chainloop will use them to query the registry for container image pieces of evidences
func (att *Attestation) WithRegistryAuth(
_ context.Context,
// Registry address.
// Example: "index.docker.io"
address string,
// Registry username
username string,
// Registry password
password *dagger.Secret,
) *Attestation {
att.RegistryAuth.Address = address
att.RegistryAuth.Username = username
att.RegistryAuth.Password = password
return att
}
// Configure the Chainloop instance to use
func (m *Chainloop) WithInstance(
_ context.Context,
// Example: "api.controlplane.company.com:443"
controlplaneAPI string,
// Example: "api.cas.company.com:443"
casAPI string,
// Path to custom CA certificate for the CAS API
// +optional
casCA *dagger.File,
// Path to custom CA certificate for the Control Plane API
// +optional
controlplaneCA *dagger.File,
// Whether to skip TLS verification
// +optional
insecure bool,
) *Chainloop {
m.Instance = InstanceInfo{
ControlplaneAPI: controlplaneAPI,
CASAPI: casAPI,
Insecure: insecure,
CASCAPath: casCA,
ControlplaneCAPath: controlplaneCA,
}
return m
}
// Add a raw string piece of evidence to the attestation
func (att *Attestation) AddRawEvidence(
ctx context.Context,
// Evidence name. Don't pass a name if the material
// being attested is not part of the contract
// Example: "my-blob"
// +optional
name string,
// The contents of the blob
value string,
) (*Attestation, error) {
args := []string{
"attestation", "add",
"--attestation-id", att.AttestationID,
"--value", value,
}
if name != "" {
args = append(args,
"--name", name,
)
}
_, err := att.
Container(0).
WithExec(args, execOpts).
Stdout(ctx)
return att, err
}
// Add a file type piece of evidence to the attestation
func (att *Attestation) AddFileEvidence(
ctx context.Context,
// Evidence name. Don't pass a name if the material
// being attested is not part of the contract
// Example: "my-binary"
// +optional
name string,
// The file to add
path *dagger.File,
) (*Attestation, error) {
filename, err := path.Name(ctx)
if err != nil {
return att, err
}
mountPath := "/tmp/attestation/" + filename
args := []string{
"attestation", "add",
"--attestation-id", att.AttestationID,
"--value", mountPath,
}
if name != "" {
args = append(args,
"--name", name,
)
}
_, err = att.
Container(0).
// Preserve the filename inside the container
WithFile(mountPath, path).
WithExec(args, execOpts).
Sync(ctx)
return att, err
}
func (att *Attestation) Debug() *dagger.Container {
return att.Container(0).Terminal()
}
func cliContainer(ttl int, token *dagger.Secret, instance InstanceInfo) *dagger.Container {
ctr := dag.Container().
From(fmt.Sprintf("ghcr.io/chainloop-dev/chainloop/cli:%s", chainloopVersion)).
WithEntrypoint([]string{"/chainloop"}). // Be explicit to prepare for possible API change
WithEnvVariable("CHAINLOOP_DAGGER_CLIENT", chainloopVersion).
WithUser(""). // Our images come with pre-defined user set, so we need to reset it
WithEnvVariable("DAGGER_CACHE_KEY", time.Now().Truncate(time.Duration(ttl)*time.Second).String()) // Cache TTL
if token != nil {
ctr = ctr.WithSecretVariable("CHAINLOOP_TOKEN", token)
}
if api := instance.ControlplaneAPI; api != "" {
ctr = ctr.WithEnvVariable("CHAINLOOP_CONTROL_PLANE_API", api)
}
if ca := instance.ControlplaneCAPath; ca != nil {
ctr = ctr.WithFile("/controlplane-ca.pem", ca).WithEnvVariable("CHAINLOOP_CONTROL_PLANE_API_CA", "/controlplane-ca.pem")
}
if ca := instance.CASCAPath; ca != nil {
ctr = ctr.WithFile("/cas-ca.pem", ca).WithEnvVariable("CHAINLOOP_ARTIFACT_CAS_API_CA", "/cas-ca.pem")
}
if cas := instance.CASAPI; cas != "" {
ctr = ctr.WithEnvVariable("CHAINLOOP_ARTIFACT_CAS_API", cas)
}
if instance.Insecure {
ctr = ctr.WithEnvVariable("CHAINLOOP_API_INSECURE", "true")
}
// Cache TTL
ctr = ctr.WithEnvVariable("DAGGER_CACHE_KEY", time.Now().Truncate(time.Duration(ttl)*time.Second).String())
return ctr
}
// Build an ephemeral container with everything needed to process the attestation
func (att *Attestation) Container(
// Cache TTL for chainloop commands, in seconds
// Defaults to 0: no caching
// +optional
// +default=0
ttl int,
) *dagger.Container {
ctr := cliContainer(ttl, att.Token, att.Client.Instance)
if att.repository != nil {
ctr = ctr.WithDirectory(".", att.repository)
}
if addr := att.RegistryAuth.Address; addr != "" {
ctr = ctr.WithEnvVariable("CHAINLOOP_REGISTRY_SERVER", addr)
}
if user := att.RegistryAuth.Username; user != "" {
ctr = ctr.WithEnvVariable("CHAINLOOP_REGISTRY_USERNAME", user)
}
if pw := att.RegistryAuth.Password; pw != nil {
ctr = ctr.WithSecretVariable("CHAINLOOP_REGISTRY_PASSWORD", pw)
}
return ctr
}
// Generate, sign and push the attestation to the chainloop control plane
func (att *Attestation) Push(
ctx context.Context,
// The private key to sign the attestation
// +optional
key *dagger.Secret,
// The passphrase to decrypt the private key
// +optional
passphrase *dagger.Secret,
// Whether not fail if the policy check fails
// +optional
exceptionBypassPolicyCheck *bool,
) (string, error) {
container := att.Container(0)
args := []string{
"attestation", "push",
"--attestation-id", att.AttestationID,
}
if key != nil {
container = container.WithMountedSecret("/tmp/key.pem", key)
args = append(args, "--key", "/tmp/key.pem")
}
if passphrase != nil {
container = container.WithSecretVariable("CHAINLOOP_SIGNING_PASSWORD", passphrase)
}
if exceptionBypassPolicyCheck != nil && *exceptionBypassPolicyCheck {
args = append(args, "--exception-bypass-policy-check")
}
return container.WithExec(args, execOpts).Stdout(ctx)
}
// Mark the attestation as failed
func (att *Attestation) MarkFailed(
ctx context.Context,
// The reason for canceling, in human-readable form
// +optional
reason string,
) error {
return att.reset(ctx, "failure", reason)
}
// Mark the attestation as canceled
func (att *Attestation) MarkCanceled(
ctx context.Context,
// The reason for canceling, in human-readable form
// +optional
reason string,
) error {
return att.reset(ctx, "cancellation", reason)
}
// Call `chainloop reset` to mark the attestation as either failed or cancelled.
func (att *Attestation) reset(ctx context.Context,
// +optional
// The trigger that caused the reset.
// May be "failure" or "cancellation"
trigger string,
// The reason for the reset, in human-readable form
// +optional
reason string,
) error {
args := []string{
"attestation", "reset",
"--attestation-id", att.AttestationID,
}
if reason != "" {
args = append(args, "--reason", reason)
}
if trigger != "" {
args = append(args, "--trigger", trigger)
}
_, err := att.
Container(0).
WithExec(args, execOpts).
Sync(ctx)
return err
}
/// standalone API calls
// Create a new workflow
func (m *Chainloop) WorkflowCreate(
ctx context.Context,
// Chainloop API token
token *dagger.Secret,
// Workflow name
name string,
// Workflow project
project string,
// +optional
team string,
// +optional
description string,
// name of an existing contract
// +optional
contractName string,
// Set workflow as public so other organizations can see it
// +optional
public bool,
// If the workflow already exists, skip the creation and return success
// +optional
skipIfExists bool,
) (string, error) {
return cliContainer(0, token, m.Instance).
WithExec([]string{
"workflow", "create",
"--name", name,
"--project", project,
"--team", team,
"--description", description,
"--contract", contractName,
"--public", fmt.Sprintf("%t", public),
"--skip-if-exists", fmt.Sprintf("%t", skipIfExists),
}, execOpts).
Stdout(ctx)
}