-
Notifications
You must be signed in to change notification settings - Fork 28
/
post_results.go
528 lines (471 loc) · 16.4 KB
/
post_results.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
// Copyright 2022 OpenSSF Scorecard 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 server
import (
"bytes"
"context"
"crypto/ecdsa"
"crypto/sha256"
"crypto/x509"
_ "embed"
"encoding/base64"
"encoding/hex"
"encoding/json"
"encoding/pem"
"errors"
"fmt"
"log"
"net/http"
"strings"
"time"
"github.com/cyberphone/json-canonicalization/go/src/webpki.org/jsoncanonicalizer"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/strfmt"
"github.com/google/go-github/v42/github"
merkleproof "github.com/transparency-dev/merkle/proof"
"github.com/transparency-dev/merkle/rfc6962"
"gocloud.dev/blob"
"github.com/ossf/scorecard-webapp/app/generated/models"
"github.com/ossf/scorecard-webapp/app/generated/restapi/operations/results"
)
const (
// OID source: https://github.com/sigstore/fulcio/blob/96ef49cc7662912ba37d46f738757e8d8d5b5355/docs/oid-info.md#L33
// TODO: retrieve these by name.
fulcioRepoRefKey = "1.3.6.1.4.1.57264.1.6"
fulcioRepoPathKey = "1.3.6.1.4.1.57264.1.5"
fulcioRepoSHAKey = "1.3.6.1.4.1.57264.1.3"
resultsBucket = "gs://ossf-scorecard-results"
resultsFile = "results.json"
)
var (
errWritingBucket = errors.New("error writing to GCS bucket")
errMultipleCerts = errors.New("multiple certificates found for the entry")
errEmptyCertRef = errors.New("cert has empty repository ref")
errEmptyCertPath = errors.New("cert has empty repository path")
errCertMissingURI = errors.New("certificate has no URIs")
errCertWorkflowPathEmpty = errors.New("cert workflow path is empty")
errMismatchedCertAndRequest = errors.New("repository and branch of cert doesn't match that of request")
)
type certInfo struct {
repoFullName string
repoBranchRef string
repoSHA string
workflowPath string
}
type tlogEntry struct {
Body string `json:"body"`
IntegratedTime int64 `json:"integratedTime"`
LogID string `json:"logID"`
LogIndex int64 `json:"logIndex"`
Verification *struct {
InclusionProof *struct {
Hashes []string `json:"hashes"`
RootHash string `json:"rootHash"`
TreeSize uint64 `json:"treeSize"`
LogIndex uint64 `json:"logIndex"`
} `json:"inclusionProof,omitempty"`
SignedEntryTimestamp strfmt.Base64 `json:"signedEntryTimestamp,omitempty"`
} `json:"verification"`
}
//go:embed fulcio_v1.crt.pem
var fulcioRoot []byte
//go:embed fulcio_intermediate.crt.pem
var fulcioIntermediate []byte
//go:embed rekor.pub
var rekorPub []byte
func PostResultsHandler(params results.PostResultParams) middleware.Responder {
// Sanity check
host := params.Platform
orgName := params.Org
repoName := params.Repo
// Process
err := processRequest(host, orgName, repoName, params.Publish)
if err == nil {
return results.NewPostResultCreated().WithPayload("successfully verified and published ScorecardResult")
}
if errors.Is(err, errMismatchedCertAndRequest) ||
errors.Is(err, errGlobalVarsOrDefaults) ||
errors.Is(err, errGlobalWriteAll) ||
errors.Is(err, errGlobalWrite) ||
errors.Is(err, errScorecardJobNotFound) ||
errors.Is(err, errNonScorecardJobHasTokenWrite) ||
errors.Is(err, errJobHasContainerOrServices) ||
errors.Is(err, errScorecardJobRunsOn) ||
errors.Is(err, errUnallowedStepName) ||
errors.Is(err, errScorecardJobEnvVars) ||
errors.Is(err, errScorecardJobDefaults) ||
errors.Is(err, errEmptyStepUses) {
return results.NewPostResultBadRequest().WithPayload(&models.Error{
Code: http.StatusBadRequest,
Message: err.Error(),
})
}
log.Println(err)
return results.NewPostResultDefault(http.StatusInternalServerError).WithPayload(&models.Error{
Code: http.StatusInternalServerError,
Message: "something went wrong and we are looking into it.",
})
}
func processRequest(host, org, repo string, scorecardResult *models.VerifiedScorecardResult) error {
ctx := context.Background()
cert, err := extractAndVerifyCertForPayload(ctx, []byte(scorecardResult.Result))
if err != nil {
return fmt.Errorf("error extracting cert: %w", err)
}
info, err := extractCertInfo(cert)
if err != nil {
return fmt.Errorf("error extracting cert info: %w", err)
}
if info.repoFullName != fmt.Sprintf("%s/%s", org, repo) ||
(info.repoBranchRef != scorecardResult.Branch &&
info.repoBranchRef != fmt.Sprintf("refs/heads/%s", scorecardResult.Branch)) {
return fmt.Errorf("%w", errMismatchedCertAndRequest)
}
if err := getAndVerifyWorkflowContent(ctx, org, repo, scorecardResult, info); err != nil {
return fmt.Errorf("error verifying workflow: %w", err)
}
// Save scorecard results (results.json, score.txt) to GCS
bucketURL := resultsBucket
objectPath := fmt.Sprintf("%s/%s/%s/%s", host, org, repo, resultsFile)
if err := writeToBlobStore(ctx, bucketURL, objectPath, []byte(scorecardResult.Result)); err != nil {
return fmt.Errorf("%w: %v", errWritingBucket, err)
}
commitObjectPath := fmt.Sprintf("%s/%s/%s/%s/%s", host, org, repo, info.repoSHA, resultsFile)
if err := writeToBlobStore(ctx, bucketURL, commitObjectPath, []byte(scorecardResult.Result)); err != nil {
return fmt.Errorf("%w: %v", errWritingBucket, err)
}
return nil
}
func getAndVerifyWorkflowContent(ctx context.Context,
org, repo string, scorecardResult *models.VerifiedScorecardResult, info certInfo,
) error {
// Get the corresponding GitHub repository.
httpClient := http.DefaultClient
if scorecardResult.AccessToken != "" {
httpClient.Transport = githubTransport{
token: scorecardResult.AccessToken,
}
}
client := github.NewClient(httpClient)
repoClient, _, err := client.Repositories.Get(ctx, org, repo)
if err != nil {
return fmt.Errorf("error getting repository: %w", err)
}
// Verify that the branch from the results files is the repo's default branch.
defaultBranch := repoClient.GetDefaultBranch()
if scorecardResult.Branch != defaultBranch &&
scorecardResult.Branch != fmt.Sprintf("refs/heads/%s", defaultBranch) {
return fmt.Errorf("branch of cert isn't the repo's default branch")
}
// Get workflow file from cert commit SHA.
opts := &github.RepositoryContentGetOptions{Ref: info.repoSHA}
contents, _, _, err := client.Repositories.GetContents(ctx, org, repo, info.workflowPath, opts)
if err != nil {
return fmt.Errorf("error downloading workflow contents from repo: %v", err)
}
workflowContent, err := contents.GetContent()
if err != nil {
return fmt.Errorf("error decoding workflow contents: %v", err)
}
// Verify scorecard workflow.
if err := verifyScorecardWorkflow(workflowContent); err != nil {
return fmt.Errorf("workflow could not be verified: %v", err)
}
return nil
}
func writeToBlobStore(ctx context.Context, bucketURL, filename string, data []byte) error {
bucket, err := blob.OpenBucket(ctx, bucketURL)
if err != nil {
return fmt.Errorf("error from blob.OpenBucket: %w", err)
}
defer bucket.Close()
blobWriter, err := bucket.NewWriter(ctx, filename, nil)
if err != nil {
return fmt.Errorf("error from bucket.NewWriter: %w", err)
}
if _, err = blobWriter.Write(data); err != nil {
return fmt.Errorf("error from blobWriter.Write: %w", err)
}
if err := blobWriter.Close(); err != nil {
return fmt.Errorf("error from blobWriter.Close: %w", err)
}
return nil
}
func extractAndVerifyCertForPayload(ctx context.Context, payload []byte) (*x509.Certificate, error) {
// Get most recent Rekor entry uuid.
uuids, err := getUUIDsByPayload(ctx, payload)
if err != nil || len(uuids) == 0 {
return nil, fmt.Errorf("error finding tlog entries corresponding to payload: %w", err)
}
// TODO(#135): We can't simply take the latest UUID. Either:
// (a) iterate through all returned UUIDs to find the right one.
// (b) send tlog index in the POST payload to identify the corresponding UUID.
uuid := uuids[len(uuids)-1] // ignore past entries.
// Get tlog entry from the UUID.
entry, err := getTLogEntry(ctx, uuid)
if err != nil {
return nil, fmt.Errorf("error fetching tlog entry: %w", err)
}
// Verify inclusion proof.
if err := verifyInclusionProof(uuid, entry); err != nil {
return nil, fmt.Errorf("verifying inclusion proof for Rekor: %w", err)
}
// Extract and verify certificate.
certs, err := extractCerts(entry)
if err != nil || len(certs) == 0 {
return nil, fmt.Errorf("error extracting certificate from entry: %w", err)
}
if len(certs) > 1 {
return nil, fmt.Errorf("%w", errMultipleCerts)
}
cert := certs[0]
if err := verifyCert(certs[0], time.Unix(entry.IntegratedTime, 0)); err != nil {
return nil, fmt.Errorf("verifying cert: %w", err)
}
return cert, nil
}
func getUUIDsByPayload(ctx context.Context, payload []byte) ([]string, error) {
payloadSHA := sha256.Sum256(payload)
rekorPayload := struct {
Hash string `json:"hash"`
}{
Hash: fmt.Sprintf("sha256:%s", hex.EncodeToString(payloadSHA[:])),
}
jsonPayload, err := json.Marshal(rekorPayload)
if err != nil {
return nil, fmt.Errorf("marshaling json payload: %w", err)
}
rekorReq, err := http.NewRequestWithContext(ctx,
http.MethodPost,
"https://rekor.sigstore.dev/api/v1/index/retrieve",
bytes.NewBuffer(jsonPayload))
if err != nil {
return nil, fmt.Errorf("creating new HTTP request: %w", err)
}
rekorReq.Header.Add("Content-Type", "application/json")
rekorReq.Header.Add("accept", "application/json")
resp, err := http.DefaultClient.Do(rekorReq)
if err != nil {
return nil, fmt.Errorf("looking up Rekor index: %w", err)
}
defer resp.Body.Close()
var rekorResult []string
if err := json.NewDecoder(resp.Body).Decode(&rekorResult); err != nil {
return nil, fmt.Errorf("decoding Rekor response: %w", err)
}
return rekorResult, nil
}
func getTLogEntry(ctx context.Context, uuid string) (*tlogEntry, error) {
rekorReq, err := http.NewRequestWithContext(ctx,
http.MethodGet,
fmt.Sprintf("https://rekor.sigstore.dev/api/v1/log/entries/%s", uuid),
nil)
if err != nil {
return nil, fmt.Errorf("creating new HTTP request: %w", err)
}
rekorReq.Header.Add("accept", "application/json")
resp, err := http.DefaultClient.Do(rekorReq)
if err != nil {
return nil, fmt.Errorf("looking up Rekor index: %w", err)
}
defer resp.Body.Close()
var rekorResult map[string]tlogEntry
if err := json.NewDecoder(resp.Body).Decode(&rekorResult); err != nil {
return nil, fmt.Errorf("decoding Rekor response: %w", err)
}
for _, res := range rekorResult {
return &res, nil
}
return nil, fmt.Errorf("unexpected error: entry for uuid %s not found", uuid)
}
func verifyInclusionProof(uuid string, e *tlogEntry) error {
if e == nil || e.Verification == nil || e.Verification.InclusionProof == nil {
return fmt.Errorf("no inclusion proof provided")
}
rootHash, err := hex.DecodeString(e.Verification.InclusionProof.RootHash)
if err != nil {
return fmt.Errorf("error decoding hex encoded root hash: %w", err)
}
leafHash, err := hex.DecodeString(uuid)
if err != nil {
return fmt.Errorf("error decoding hex encoded leaf hash: %w", err)
}
if len(leafHash) < 32 {
return fmt.Errorf("leafHash has unexpected size %d, want 32", len(leafHash))
}
if len(leafHash) > 32 {
leafHash = leafHash[len(leafHash)-32:]
}
var hashes [][]byte
for _, h := range e.Verification.InclusionProof.Hashes {
hb, err := hex.DecodeString(h)
if err != nil {
return fmt.Errorf("error decoding inclusion proof hashes: %w", err)
}
hashes = append(hashes, hb)
}
if err := merkleproof.VerifyInclusion(rfc6962.DefaultHasher,
e.Verification.InclusionProof.LogIndex,
e.Verification.InclusionProof.TreeSize, leafHash, hashes, rootHash); err != nil {
return fmt.Errorf("%w: %s", err, "verifying inclusion proof")
}
// Verify the SignedEntryTimestamp against Rekor's pub key.
derBytes, _ := pem.Decode(rekorPub)
if derBytes == nil {
return errors.New("PEM decoding failed")
}
rekorPubKey, err := x509.ParsePKIXPublicKey(derBytes.Bytes)
if err != nil {
return fmt.Errorf("parsing Rekor pub key: %w", err)
}
rekorECDSA, ok := rekorPubKey.(*ecdsa.PublicKey)
if !ok {
return errors.New("public key retrieved from Rekor is not an ECDSA key")
}
payload := struct {
Body string `json:"body"`
IntegratedTime int64 `json:"integratedTime"`
LogID string `json:"logID"`
LogIndex int64 `json:"logIndex"`
}{
Body: e.Body,
IntegratedTime: e.IntegratedTime,
LogID: e.LogID,
LogIndex: e.LogIndex,
}
jsonPayload, err := json.Marshal(payload)
if err != nil {
return fmt.Errorf("json marshalling Rekor payload: %w", err)
}
jsonCanonicalized, err := jsoncanonicalizer.Transform(jsonPayload)
if err != nil {
return fmt.Errorf("json canonicalizer: %w", err)
}
hash := sha256.Sum256(jsonCanonicalized)
if !ecdsa.VerifyASN1(rekorECDSA, hash[:], e.Verification.SignedEntryTimestamp) {
return fmt.Errorf("unable to verify")
}
return nil
}
func verifyCert(cert *x509.Certificate, integratedTime time.Time) error {
// Verify the certificate against Fulcio Root CA
roots, err := getCertPool(fulcioRoot)
if err != nil {
return fmt.Errorf("retrieving Fulcio root: %w", err)
}
intermediates, err := getCertPool(fulcioIntermediate)
if err != nil {
return fmt.Errorf("retrieving Fulcio root: %w", err)
}
if _, err := cert.Verify(x509.VerifyOptions{
CurrentTime: cert.NotBefore,
Roots: roots,
Intermediates: intermediates,
KeyUsages: []x509.ExtKeyUsage{
x509.ExtKeyUsageCodeSigning,
},
}); err != nil {
return fmt.Errorf("verifying Fulcio issued certificate: %w", err)
}
// Verify that cert isn't expired.
if cert.NotAfter.Before(integratedTime) {
return fmt.Errorf("certificate expired before signatures were entered in log: %s is before %s",
cert.NotAfter, integratedTime)
}
if cert.NotBefore.After(integratedTime) {
return fmt.Errorf("certificate was issued after signatures were entered in log: %s is after %s",
cert.NotAfter, integratedTime)
}
return nil
}
func extractCertInfo(cert *x509.Certificate) (certInfo, error) {
ret := certInfo{}
// Get repo reference & path from cert.
for _, ext := range cert.Extensions {
if ext.Id.String() == fulcioRepoRefKey {
if len(ext.Value) == 0 {
return ret, errEmptyCertRef
}
ret.repoBranchRef = string(ext.Value)
}
if ext.Id.String() == fulcioRepoPathKey {
if len(ext.Value) == 0 {
return ret, errEmptyCertPath
}
ret.repoFullName = string(ext.Value)
}
if ext.Id.String() == fulcioRepoSHAKey {
ret.repoSHA = string(ext.Value)
}
}
// Get workflow job ref from the certificate.
if len(cert.URIs) == 0 {
return ret, errCertMissingURI
}
workflowRef := cert.URIs[0].Path
if len(workflowRef) == 0 {
return ret, errCertWorkflowPathEmpty
}
// Remove repo path from workflow filepath.
ind := strings.Index(workflowRef, ret.repoFullName) + len(ret.repoFullName) + 1
ret.workflowPath = workflowRef[ind:]
// Remove repo ref tag from workflow filepath.
ret.workflowPath = ret.workflowPath[:strings.Index(ret.workflowPath, "@")]
return ret, nil
}
func extractCerts(entry *tlogEntry) ([]*x509.Certificate, error) {
b, err := base64.StdEncoding.DecodeString(entry.Body)
if err != nil {
return nil, err
}
var entryBody struct {
Spec struct {
Signature struct {
PublicKey struct {
Content string `json:"content"`
} `json:"publicKey"`
} `json:"signature"`
} `json:"spec"`
}
if err := json.Unmarshal(b, &entryBody); err != nil {
return nil, err
}
publicKeyB64 := entryBody.Spec.Signature.PublicKey.Content
publicKey, err := base64.StdEncoding.DecodeString(publicKeyB64)
if err != nil {
return nil, err
}
remaining := publicKey
var result []*x509.Certificate
for len(remaining) > 0 {
var certDer *pem.Block
certDer, remaining = pem.Decode(remaining)
if certDer == nil {
return nil, fmt.Errorf("error during PEM decoding: %w", err)
}
cert, err := x509.ParseCertificate(certDer.Bytes)
if err != nil {
return nil, fmt.Errorf("error during certificate parsing: %w", err)
}
result = append(result, cert)
}
return result, nil
}
func getCertPool(cert []byte) (*x509.CertPool, error) {
pool := x509.NewCertPool()
if ok := pool.AppendCertsFromPEM(cert); !ok {
return nil, fmt.Errorf("unmarshalling PEM certificate")
}
return pool, nil
}