-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
unmarshal.go
425 lines (373 loc) · 11.3 KB
/
unmarshal.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
package cyclonedx
import (
"bytes"
"errors"
"io"
"sort"
"strconv"
"strings"
cdx "github.com/CycloneDX/cyclonedx-go"
"github.com/samber/lo"
"golang.org/x/exp/maps"
"golang.org/x/xerrors"
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
"github.com/aquasecurity/trivy/pkg/log"
"github.com/aquasecurity/trivy/pkg/purl"
"github.com/aquasecurity/trivy/pkg/types"
)
var (
ErrPURLEmpty = errors.New("purl empty error")
)
type CycloneDX struct {
*types.SBOM
dependencies map[string][]string
components map[string]cdx.Component
}
func DecodeJSON(r io.Reader) (*cdx.BOM, error) {
bom := cdx.NewBOM()
decoder := cdx.NewBOMDecoder(r, cdx.BOMFileFormatJSON)
if err := decoder.Decode(bom); err != nil {
return nil, xerrors.Errorf("CycloneDX decode error: %w", err)
}
return bom, nil
}
func (c *CycloneDX) UnmarshalJSON(b []byte) error {
log.Logger.Debug("Unmarshaling CycloneDX JSON...")
if c.SBOM == nil {
c.SBOM = &types.SBOM{}
}
bom, err := DecodeJSON(bytes.NewReader(b))
if err != nil {
return xerrors.Errorf("CycloneDX decode error: %w", err)
}
if !isTrivySBOM(bom) {
log.Logger.Warnf("Third-party SBOM may lead to inaccurate vulnerability detection")
log.Logger.Warnf("Recommend using Trivy to generate SBOMs")
}
if err = c.parseSBOM(bom); err != nil {
return xerrors.Errorf("failed to parse sbom: %w", err)
}
sort.Slice(c.Applications, func(i, j int) bool {
if c.Applications[i].Type != c.Applications[j].Type {
return c.Applications[i].Type < c.Applications[j].Type
}
return c.Applications[i].FilePath < c.Applications[j].FilePath
})
var metadata ftypes.Metadata
if bom.Metadata != nil {
metadata.Timestamp = bom.Metadata.Timestamp
if bom.Metadata.Component != nil {
metadata.Component = toTrivyCdxComponent(lo.FromPtr(bom.Metadata.Component))
}
}
var components []ftypes.Component
for _, component := range lo.FromPtr(bom.Components) {
components = append(components, toTrivyCdxComponent(component))
}
// Keep the original SBOM
c.CycloneDX = &ftypes.CycloneDX{
BOMFormat: bom.BOMFormat,
SpecVersion: ftypes.SpecVersion(bom.SpecVersion),
SerialNumber: bom.SerialNumber,
Version: bom.Version,
Metadata: metadata,
Components: components,
}
return nil
}
func (c *CycloneDX) parseSBOM(bom *cdx.BOM) error {
c.dependencies = dependencyMap(bom.Dependencies)
c.components = componentMap(bom.Metadata, bom.Components)
var seen = make(map[string]struct{})
for bomRef := range c.dependencies {
component := c.components[bomRef]
switch component.Type {
case cdx.ComponentTypeOS: // OS info and OS packages
seen[component.BOMRef] = struct{}{}
c.OS = toOS(component)
pkgInfo, err := c.parseOSPkgs(component, seen)
if err != nil {
return xerrors.Errorf("failed to parse os packages: %w", err)
}
c.Packages = append(c.Packages, pkgInfo)
case cdx.ComponentTypeApplication: // It would be a lock file in a CycloneDX report generated by Trivy
if lookupProperty(component.Properties, PropertyType) == "" {
continue
}
app, err := c.parseLangPkgs(component, seen)
if err != nil {
return xerrors.Errorf("failed to parse language packages: %w", err)
}
c.Applications = append(c.Applications, *app)
case cdx.ComponentTypeLibrary:
// It is an individual package not associated with any lock files and should be processed later.
// e.g. .gemspec, .egg and .wheel
continue
}
}
var libComponents []cdx.Component
for ref, component := range c.components {
if _, ok := seen[ref]; ok {
continue
}
if component.Type == cdx.ComponentTypeLibrary {
libComponents = append(libComponents, component)
}
// For third-party SBOMs.
// If there are no operating-system dependent libraries, make them implicitly dependent.
if component.Type == cdx.ComponentTypeOS {
if lo.IsNotEmpty(c.OS) {
return xerrors.New("multiple OSes are not supported")
}
c.OS = toOS(component)
}
}
pkgInfos, aggregatedApps, err := aggregatePkgs(libComponents)
if err != nil {
return xerrors.Errorf("failed to aggregate packages: %w", err)
}
// For third party SBOMs.
// If a package that depends on the operating-system did not exist,
// but an os package is found during aggregate, it is used.
if len(c.Packages) == 0 && len(pkgInfos) != 0 {
if !c.OS.Detected() {
log.Logger.Warnf("Ignore the OS package as no OS information is found.")
} else {
c.Packages = pkgInfos
}
}
c.Applications = append(c.Applications, aggregatedApps...)
return nil
}
func (c *CycloneDX) parseOSPkgs(component cdx.Component, seen map[string]struct{}) (ftypes.PackageInfo, error) {
components := c.walkDependencies(component.BOMRef, map[string]struct{}{})
pkgs, err := parsePkgs(components, seen)
if err != nil {
return ftypes.PackageInfo{}, xerrors.Errorf("failed to parse os package: %w", err)
}
return ftypes.PackageInfo{
Packages: pkgs,
}, nil
}
func (c *CycloneDX) parseLangPkgs(component cdx.Component, seen map[string]struct{}) (*ftypes.Application, error) {
components := c.walkDependencies(component.BOMRef, map[string]struct{}{})
components = lo.UniqBy(components, func(c cdx.Component) string {
return c.BOMRef
})
app := toApplication(component)
pkgs, err := parsePkgs(components, seen)
if err != nil {
return nil, xerrors.Errorf("failed to parse language-specific packages: %w", err)
}
app.Libraries = pkgs
return app, nil
}
func parsePkgs(components []cdx.Component, seen map[string]struct{}) ([]ftypes.Package, error) {
var pkgs []ftypes.Package
for _, com := range components {
seen[com.BOMRef] = struct{}{}
_, _, pkg, err := toPackage(com)
if err != nil {
if errors.Is(err, ErrPURLEmpty) {
continue
}
return nil, xerrors.Errorf("failed to parse language package: %w", err)
}
pkgs = append(pkgs, *pkg)
}
return pkgs, nil
}
// walkDependencies takes all nested dependencies of the root component.
func (c *CycloneDX) walkDependencies(rootRef string, uniqComponents map[string]struct{}) []cdx.Component {
// e.g. Library A, B, C, D and E will be returned as dependencies of Application 1.
// type: Application 1
// - type: Library A
// - type: Library B
// - type: Application 2
// - type: Library C
// - type: Application 3
// - type: Library D
// - type: Library E
var components []cdx.Component
for _, dep := range c.dependencies[rootRef] {
component, ok := c.components[dep]
if !ok {
continue
}
// there are cases of looped components:
// type: Application 1
// - type: Library A
// - type: Library B
// - type: Library A
// ...
// use uniqComponents to fix infinite loop
if _, ok = uniqComponents[dep]; ok {
continue
}
uniqComponents[dep] = struct{}{}
// Take only 'Libraries'
if component.Type == cdx.ComponentTypeLibrary {
components = append(components, component)
}
components = append(components, c.walkDependencies(dep, uniqComponents)...)
}
return components
}
func componentMap(metadata *cdx.Metadata, components *[]cdx.Component) map[string]cdx.Component {
cmap := make(map[string]cdx.Component)
for _, component := range lo.FromPtr(components) {
cmap[component.BOMRef] = component
}
if metadata != nil && metadata.Component != nil {
cmap[metadata.Component.BOMRef] = *metadata.Component
}
return cmap
}
func dependencyMap(deps *[]cdx.Dependency) map[string][]string {
depMap := make(map[string][]string)
for _, dep := range lo.FromPtr(deps) {
if _, ok := depMap[dep.Ref]; ok {
continue
}
var refs []string
if dep.Dependencies != nil {
refs = append(refs, *dep.Dependencies...)
}
depMap[dep.Ref] = refs
}
return depMap
}
func aggregatePkgs(libs []cdx.Component) ([]ftypes.PackageInfo, []ftypes.Application, error) {
osPkgMap := map[string]ftypes.Packages{}
langPkgMap := map[string]ftypes.Packages{}
for _, lib := range libs {
isOSPkg, pkgType, pkg, err := toPackage(lib)
if err != nil {
if errors.Is(err, ErrPURLEmpty) {
continue
}
return nil, nil, xerrors.Errorf("failed to parse the component: %w", err)
}
if isOSPkg {
osPkgMap[pkgType] = append(osPkgMap[pkgType], *pkg)
} else {
langPkgMap[pkgType] = append(langPkgMap[pkgType], *pkg)
}
}
if len(osPkgMap) > 1 {
return nil, nil, xerrors.Errorf("multiple types of OS packages in SBOM are not supported (%q)",
maps.Keys(osPkgMap))
}
var osPkgs ftypes.PackageInfo
for _, pkgs := range osPkgMap {
// Just take the first element
sort.Sort(pkgs)
osPkgs = ftypes.PackageInfo{Packages: pkgs}
break
}
var apps []ftypes.Application
for pkgType, pkgs := range langPkgMap {
sort.Sort(pkgs)
apps = append(apps, ftypes.Application{
Type: pkgType,
Libraries: pkgs,
})
}
return []ftypes.PackageInfo{osPkgs}, apps, nil
}
func toOS(component cdx.Component) ftypes.OS {
return ftypes.OS{
Family: component.Name,
Name: component.Version,
}
}
func toApplication(component cdx.Component) *ftypes.Application {
return &ftypes.Application{
Type: lookupProperty(component.Properties, PropertyType),
FilePath: component.Name,
}
}
func toPackage(component cdx.Component) (bool, string, *ftypes.Package, error) {
if component.PackageURL == "" {
log.Logger.Warnf("Skip the component (BOM-Ref: %s) as the PURL is empty", component.BOMRef)
return false, "", nil, ErrPURLEmpty
}
p, err := purl.FromString(component.PackageURL)
if err != nil {
return false, "", nil, xerrors.Errorf("failed to parse purl: %w", err)
}
pkg := p.Package()
pkg.Ref = component.BOMRef
for _, license := range lo.FromPtr(component.Licenses) {
pkg.Licenses = append(pkg.Licenses, license.Expression)
}
for _, prop := range lo.FromPtr(component.Properties) {
if strings.HasPrefix(prop.Name, Namespace) {
switch strings.TrimPrefix(prop.Name, Namespace) {
case PropertyPkgID:
pkg.ID = prop.Value
case PropertySrcName:
pkg.SrcName = prop.Value
case PropertySrcVersion:
pkg.SrcVersion = prop.Value
case PropertySrcRelease:
pkg.SrcRelease = prop.Value
case PropertySrcEpoch:
pkg.SrcEpoch, err = strconv.Atoi(prop.Value)
if err != nil {
return false, "", nil, xerrors.Errorf("failed to parse source epoch: %w", err)
}
case PropertyModularitylabel:
pkg.Modularitylabel = prop.Value
case PropertyLayerDiffID:
pkg.Layer.DiffID = prop.Value
}
}
}
isOSPkg := p.IsOSPkg()
if isOSPkg {
// Fill source package information for components in third-party SBOMs .
if pkg.SrcName == "" {
pkg.SrcName = pkg.Name
}
if pkg.SrcVersion == "" {
pkg.SrcVersion = pkg.Version
}
if pkg.SrcRelease == "" {
pkg.SrcRelease = pkg.Release
}
if pkg.SrcEpoch == 0 {
pkg.SrcEpoch = pkg.Epoch
}
}
return isOSPkg, p.PackageType(), pkg, nil
}
func toTrivyCdxComponent(component cdx.Component) ftypes.Component {
return ftypes.Component{
BOMRef: component.BOMRef,
MIMEType: component.MIMEType,
Type: ftypes.ComponentType(component.Type),
Name: component.Name,
Version: component.Version,
PackageURL: component.PackageURL,
}
}
func lookupProperty(properties *[]cdx.Property, key string) string {
for _, p := range lo.FromPtr(properties) {
if p.Name == Namespace+key {
return p.Value
}
}
return ""
}
func isTrivySBOM(c *cdx.BOM) bool {
if c == nil || c.Metadata == nil || c.Metadata.Tools == nil {
return false
}
for _, tool := range *c.Metadata.Tools {
if tool.Vendor == ToolVendor && tool.Name == ToolName {
return true
}
}
return false
}