mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
143 lines
3.9 KiB
Go
143 lines
3.9 KiB
Go
package helpers
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/CycloneDX/cyclonedx-go"
|
|
|
|
"github.com/anchore/packageurl-go"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/internal/packagemetadata"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
)
|
|
|
|
func EncodeComponent(p pkg.Package) cyclonedx.Component {
|
|
props := EncodeProperties(p, "syft:package")
|
|
|
|
if p.Metadata != nil {
|
|
// encode the metadataType as a property, something that doesn't exist on the core model
|
|
props = append(props, cyclonedx.Property{
|
|
Name: "syft:package:metadataType",
|
|
Value: packagemetadata.JSONName(p.Metadata),
|
|
})
|
|
}
|
|
|
|
props = append(props, encodeCPEs(p)...)
|
|
locations := p.Locations.ToSlice()
|
|
if len(locations) > 0 {
|
|
props = append(props, EncodeProperties(locations, "syft:location")...)
|
|
}
|
|
if hasMetadata(p) {
|
|
props = append(props, EncodeProperties(p.Metadata, "syft:metadata")...)
|
|
}
|
|
|
|
var properties *[]cyclonedx.Property
|
|
if len(props) > 0 {
|
|
properties = &props
|
|
}
|
|
|
|
componentType := cyclonedx.ComponentTypeLibrary
|
|
if p.Type == pkg.BinaryPkg {
|
|
componentType = cyclonedx.ComponentTypeApplication
|
|
}
|
|
|
|
return cyclonedx.Component{
|
|
Type: componentType,
|
|
Name: p.Name,
|
|
Group: encodeGroup(p),
|
|
Version: p.Version,
|
|
PackageURL: p.PURL,
|
|
Licenses: encodeLicenses(p),
|
|
CPE: encodeSingleCPE(p),
|
|
Author: encodeAuthor(p),
|
|
Publisher: encodePublisher(p),
|
|
Description: encodeDescription(p),
|
|
ExternalReferences: encodeExternalReferences(p),
|
|
Properties: properties,
|
|
BOMRef: DeriveBomRef(p),
|
|
}
|
|
}
|
|
|
|
func DeriveBomRef(p pkg.Package) string {
|
|
// try and parse the PURL if possible and append syft id to it, to make
|
|
// the purl unique in the BOM.
|
|
// TODO: In the future we may want to dedupe by PURL and combine components with
|
|
// the same PURL while preserving their unique metadata.
|
|
if parsedPURL, err := packageurl.FromString(p.PURL); err == nil {
|
|
parsedPURL.Qualifiers = append(parsedPURL.Qualifiers, packageurl.Qualifier{Key: "package-id", Value: string(p.ID())})
|
|
return parsedPURL.ToString()
|
|
}
|
|
// fallback is to use strictly the ID if there is no valid pURL
|
|
return string(p.ID())
|
|
}
|
|
|
|
func hasMetadata(p pkg.Package) bool {
|
|
return p.Metadata != nil
|
|
}
|
|
|
|
func decodeComponent(c *cyclonedx.Component) *pkg.Package {
|
|
values := map[string]string{}
|
|
if c.Properties != nil {
|
|
for _, p := range *c.Properties {
|
|
values[p.Name] = p.Value
|
|
}
|
|
}
|
|
|
|
p := &pkg.Package{
|
|
Name: c.Name,
|
|
Version: c.Version,
|
|
Locations: decodeLocations(values),
|
|
Licenses: pkg.NewLicenseSet(decodeLicenses(c)...),
|
|
CPEs: decodeCPEs(c),
|
|
PURL: c.PackageURL,
|
|
}
|
|
|
|
DecodeInto(p, values, "syft:package", CycloneDXFields)
|
|
|
|
metadataType := values["syft:package:metadataType"]
|
|
|
|
p.Metadata = decodePackageMetadata(values, c, metadataType)
|
|
|
|
if p.Type == "" {
|
|
p.Type = pkg.TypeFromPURL(p.PURL)
|
|
}
|
|
|
|
if p.Language == "" {
|
|
p.Language = pkg.LanguageFromPURL(p.PURL)
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
func decodeLocations(vals map[string]string) file.LocationSet {
|
|
v := Decode(reflect.TypeOf([]file.Location{}), vals, "syft:location", CycloneDXFields)
|
|
out, ok := v.([]file.Location)
|
|
if !ok {
|
|
out = nil
|
|
}
|
|
return file.NewLocationSet(out...)
|
|
}
|
|
|
|
func decodePackageMetadata(vals map[string]string, c *cyclonedx.Component, typeName string) interface{} {
|
|
if typeName != "" && c.Properties != nil {
|
|
metadataType := packagemetadata.ReflectTypeFromJSONName(typeName)
|
|
if metadataType == nil {
|
|
return nil
|
|
}
|
|
metaPtrTyp := reflect.PtrTo(metadataType)
|
|
metaPtr := Decode(metaPtrTyp, vals, "syft:metadata", CycloneDXFields)
|
|
|
|
// Map all explicit metadata properties
|
|
decodeAuthor(c.Author, metaPtr)
|
|
decodeGroup(c.Group, metaPtr)
|
|
decodePublisher(c.Publisher, metaPtr)
|
|
decodeDescription(c.Description, metaPtr)
|
|
decodeExternalReferences(c, metaPtr)
|
|
|
|
// return the actual interface{} -> struct ... not interface{} -> *struct
|
|
return PtrToStruct(metaPtr)
|
|
}
|
|
|
|
return nil
|
|
}
|