mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 07:29:00 -08:00
138 lines
3.5 KiB
Go
138 lines
3.5 KiB
Go
package composer
|
|
|
|
import (
|
|
"io"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/liamg/jfather"
|
|
"github.com/samber/lo"
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/dependency"
|
|
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
"github.com/aquasecurity/trivy/pkg/licensing"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
xio "github.com/aquasecurity/trivy/pkg/x/io"
|
|
)
|
|
|
|
type LockFile struct {
|
|
Packages []packageInfo `json:"packages"`
|
|
}
|
|
type packageInfo struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
Require map[string]string `json:"require"`
|
|
License any `json:"license"`
|
|
StartLine int
|
|
EndLine int
|
|
}
|
|
|
|
type Parser struct {
|
|
logger *log.Logger
|
|
}
|
|
|
|
func NewParser() *Parser {
|
|
return &Parser{
|
|
logger: log.WithPrefix("composer"),
|
|
}
|
|
}
|
|
|
|
func (p *Parser) Parse(r xio.ReadSeekerAt) ([]ftypes.Package, []ftypes.Dependency, error) {
|
|
var lockFile LockFile
|
|
input, err := io.ReadAll(r)
|
|
if err != nil {
|
|
return nil, nil, xerrors.Errorf("read error: %w", err)
|
|
}
|
|
if err = jfather.Unmarshal(input, &lockFile); err != nil {
|
|
return nil, nil, xerrors.Errorf("decode error: %w", err)
|
|
}
|
|
|
|
pkgs := make(map[string]ftypes.Package)
|
|
foundDeps := make(map[string][]string)
|
|
for _, lpkg := range lockFile.Packages {
|
|
pkg := ftypes.Package{
|
|
ID: dependency.ID(ftypes.Composer, lpkg.Name, lpkg.Version),
|
|
Name: lpkg.Name,
|
|
Version: lpkg.Version,
|
|
Relationship: ftypes.RelationshipUnknown, // composer.lock file doesn't have info about direct/indirect dependencies
|
|
Licenses: licenses(lpkg.License),
|
|
Locations: []ftypes.Location{
|
|
{
|
|
StartLine: lpkg.StartLine,
|
|
EndLine: lpkg.EndLine,
|
|
},
|
|
},
|
|
}
|
|
pkgs[pkg.Name] = pkg
|
|
|
|
var dependsOn []string
|
|
for depName := range lpkg.Require {
|
|
// Require field includes required php version, skip this
|
|
// Also skip PHP extensions
|
|
if depName == "php" || strings.HasPrefix(depName, "ext") {
|
|
continue
|
|
}
|
|
dependsOn = append(dependsOn, depName) // field uses range of versions, so later we will fill in the versions from the packages
|
|
}
|
|
if len(dependsOn) > 0 {
|
|
foundDeps[pkg.ID] = dependsOn
|
|
}
|
|
}
|
|
|
|
// fill deps versions
|
|
var deps ftypes.Dependencies
|
|
for pkgID, depsOn := range foundDeps {
|
|
var dependsOn []string
|
|
for _, depName := range depsOn {
|
|
if pkg, ok := pkgs[depName]; ok {
|
|
dependsOn = append(dependsOn, pkg.ID)
|
|
continue
|
|
}
|
|
p.logger.Debug("Unable to find version", log.String("name", depName))
|
|
}
|
|
sort.Strings(dependsOn)
|
|
deps = append(deps, ftypes.Dependency{
|
|
ID: pkgID,
|
|
DependsOn: dependsOn,
|
|
})
|
|
}
|
|
|
|
pkgSlice := lo.Values(pkgs)
|
|
sort.Sort(ftypes.Packages(pkgSlice))
|
|
sort.Sort(deps)
|
|
|
|
return pkgSlice, deps, nil
|
|
}
|
|
|
|
// UnmarshalJSONWithMetadata needed to detect start and end lines of deps
|
|
func (t *packageInfo) UnmarshalJSONWithMetadata(node jfather.Node) error {
|
|
if err := node.Decode(&t); err != nil {
|
|
return err
|
|
}
|
|
// Decode func will overwrite line numbers if we save them first
|
|
t.StartLine = node.Range().Start.Line
|
|
t.EndLine = node.Range().End.Line
|
|
return nil
|
|
}
|
|
|
|
// licenses returns slice of licenses from string, string with separators (`or`, `and`, etc.) or string array
|
|
// cf. https://getcomposer.org/doc/04-schema.md#license
|
|
func licenses(val any) []string {
|
|
switch v := val.(type) {
|
|
case string:
|
|
if v != "" {
|
|
return licensing.SplitLicenses(v)
|
|
}
|
|
case []any:
|
|
var lics []string
|
|
for _, l := range v {
|
|
if lic, ok := l.(string); ok {
|
|
lics = append(lics, lic)
|
|
}
|
|
}
|
|
return lics
|
|
}
|
|
return nil
|
|
}
|