Skip to content

Commit

Permalink
Add "Alpine Linux" to IDMapping; handle no CPEs error in findApkPacka…
Browse files Browse the repository at this point in the history
…ge. (#2040)

* Add "Alpine Linux" to IDMapping; handle no CPEs error in findApkPackage.

Signed-off-by: Eiji Ito <[email protected]>

* Remove unused errNoCPEs and update error handling in findApkPackage function.

Signed-off-by: Eiji Ito <[email protected]>

* test: prove test fails without fix

Signed-off-by: Christopher Phillips <[email protected]>

* fix: revert contributed fix

Signed-off-by: Christopher Phillips <[email protected]>

---------

Signed-off-by: Eiji Ito <[email protected]>
Signed-off-by: Christopher Phillips <[email protected]>
Co-authored-by: Eiji Ito <[email protected]>
Co-authored-by: Christopher Phillips <[email protected]>
  • Loading branch information
3 people committed Aug 16, 2024
1 parent a758b01 commit 7dfa436
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 1 deletion.
1 change: 1 addition & 0 deletions grype/distro/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ var IDMapping = map[string]Type{
"centos": CentOS,
"fedora": Fedora,
"alpine": Alpine,
"Alpine Linux": Alpine,
"busybox": Busybox,
"amzn": AmazonLinux,
"ol": OracleLinux,
Expand Down
3 changes: 2 additions & 1 deletion grype/matcher/apk/matcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ func (m *Matcher) findApkPackage(store vulnerability.Provider, d *distro.Distro,
return nil, err
}

// TODO: are there other errors that we should handle here that causes this to short circuit
cpeMatches, err := m.cpeMatchesWithoutSecDBFixes(store, d, p)
if err != nil {
if err != nil && !errors.Is(err, search.ErrEmptyCPEMatch) {
return nil, err
}

Expand Down
80 changes: 80 additions & 0 deletions grype/matcher/apk/matcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,86 @@ func TestDistroMatchBySourceIndirection(t *testing.T) {
assertMatches(t, expected, actual)
}

func TestSecDBMatchesStillCountedWithCpeErrors(t *testing.T) {
// this should match the test package
// the test package will have no CPE causing an error,
// but the error should not cause the secDB matches to fail
secDbVuln := grypeDB.Vulnerability{
ID: "CVE-2020-2",
VersionConstraint: "<= 1.3.3-r0",
VersionFormat: "apk",
Namespace: "secdb:distro:alpine:3.12",
}

store := mockStore{
backend: map[string]map[string][]grypeDB.Vulnerability{
"secdb:distro:alpine:3.12": {
"musl": []grypeDB.Vulnerability{secDbVuln},
},
},
}

provider, err := db.NewVulnerabilityProvider(&store)
require.NoError(t, err)

m := Matcher{}
d, err := distro.New(distro.Alpine, "3.12.0", "")
if err != nil {
t.Fatalf("failed to create a new distro: %+v", err)
}

p := pkg.Package{
ID: pkg.ID(uuid.NewString()),
Name: "musl-utils",
Version: "1.3.2-r0",
Type: syftPkg.ApkPkg,
Upstreams: []pkg.UpstreamPackage{
{
Name: "musl",
},
},
CPEs: []cpe.CPE{},
}

vulnFound, err := vulnerability.NewVulnerability(secDbVuln)
assert.NoError(t, err)

expected := []match.Match{
{

Vulnerability: *vulnFound,
Package: p,
Details: []match.Detail{
{
Type: match.ExactIndirectMatch,
Confidence: 1.0,
SearchedBy: map[string]interface{}{
"distro": map[string]string{
"type": d.Type.String(),
"version": d.RawVersion,
},
"package": map[string]string{
"name": "musl",
"version": p.Version,
},
"namespace": "secdb:distro:alpine:3.12",
},
Found: map[string]interface{}{
"versionConstraint": vulnFound.Constraint.String(),
"vulnerabilityID": "CVE-2020-2",
},
Matcher: match.ApkMatcher,
},
},
},
}

actual, err := m.Match(provider, d, p)
assert.NoError(t, err)

assertMatches(t, expected, actual)
}

func TestNVDMatchBySourceIndirection(t *testing.T) {
nvdVuln := grypeDB.Vulnerability{
ID: "CVE-2020-1",
Expand Down

0 comments on commit 7dfa436

Please sign in to comment.