|
| 1 | +package osvmatcher |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + "errors" |
| 6 | + "maps" |
| 7 | + "slices" |
| 8 | + "sync" |
| 9 | + "time" |
| 10 | + |
| 11 | + "github.com/google/osv-scalibr/extractor" |
| 12 | + "github.com/google/osv-scanner/internal/clients/clientimpl/localmatcher" |
| 13 | + "github.com/google/osv-scanner/internal/imodels" |
| 14 | + "github.com/google/osv-scanner/internal/osvdev" |
| 15 | + "github.com/google/osv-scanner/pkg/models" |
| 16 | + "golang.org/x/sync/errgroup" |
| 17 | +) |
| 18 | + |
| 19 | +// CachedOSVMatcher implements the VulnerabilityMatcher interface with a osv.dev client. |
| 20 | +// It sends out requests for every vulnerability of each package, which get cached. |
| 21 | +// Checking if a specific version matches an OSV record is done locally. |
| 22 | +// This should be used when we know the same packages are going to be repeatedly |
| 23 | +// queried multiple times, as in guided remediation. |
| 24 | +// TODO: This does not support commit-based queries. |
| 25 | +type CachedOSVMatcher struct { |
| 26 | + Client osvdev.OSVClient |
| 27 | + // InitialQueryTimeout allows you to set a timeout specifically for the initial paging query |
| 28 | + // If timeout runs out, whatever pages that has been successfully queried within the timeout will |
| 29 | + // still return fully hydrated. |
| 30 | + InitialQueryTimeout time.Duration |
| 31 | + |
| 32 | + vulnCache sync.Map // map[osvdev.Package][]models.Vulnerability |
| 33 | +} |
| 34 | + |
| 35 | +func (matcher *CachedOSVMatcher) MatchVulnerabilities(ctx context.Context, invs []*extractor.Inventory) ([][]*models.Vulnerability, error) { |
| 36 | + // populate vulnCache with missing packages |
| 37 | + if err := matcher.doQueries(ctx, invs); err != nil { |
| 38 | + return nil, err |
| 39 | + } |
| 40 | + |
| 41 | + results := make([][]*models.Vulnerability, len(invs)) |
| 42 | + |
| 43 | + for i, inv := range invs { |
| 44 | + if ctx.Err() != nil { |
| 45 | + return nil, ctx.Err() |
| 46 | + } |
| 47 | + |
| 48 | + pkgInfo := imodels.FromInventory(inv) |
| 49 | + pkg := osvdev.Package{ |
| 50 | + Name: pkgInfo.Name(), |
| 51 | + Ecosystem: pkgInfo.Ecosystem().String(), |
| 52 | + } |
| 53 | + vulns, ok := matcher.vulnCache.Load(pkg) |
| 54 | + if !ok { |
| 55 | + continue |
| 56 | + } |
| 57 | + results[i] = localmatcher.VulnerabilitiesAffectingPackage(vulns.([]models.Vulnerability), pkgInfo) |
| 58 | + } |
| 59 | + |
| 60 | + return results, nil |
| 61 | +} |
| 62 | + |
| 63 | +func (matcher *CachedOSVMatcher) doQueries(ctx context.Context, invs []*extractor.Inventory) error { |
| 64 | + var batchResp *osvdev.BatchedResponse |
| 65 | + deadlineExceeded := false |
| 66 | + |
| 67 | + var queries []*osvdev.Query |
| 68 | + { |
| 69 | + // determine which packages aren't already cached |
| 70 | + // convert Inventory to Query for each pkgs element |
| 71 | + toQuery := make(map[*osvdev.Query]struct{}) |
| 72 | + for _, inv := range invs { |
| 73 | + pkgInfo := imodels.FromInventory(inv) |
| 74 | + if pkgInfo.Name() == "" || pkgInfo.Ecosystem().IsEmpty() { |
| 75 | + continue |
| 76 | + } |
| 77 | + pkg := osvdev.Package{ |
| 78 | + Name: pkgInfo.Name(), |
| 79 | + Ecosystem: pkgInfo.Ecosystem().String(), |
| 80 | + } |
| 81 | + if _, ok := matcher.vulnCache.Load(pkg); !ok { |
| 82 | + toQuery[&osvdev.Query{Package: pkg}] = struct{}{} |
| 83 | + } |
| 84 | + } |
| 85 | + queries = slices.Collect(maps.Keys(toQuery)) |
| 86 | + } |
| 87 | + |
| 88 | + if len(queries) == 0 { |
| 89 | + return nil |
| 90 | + } |
| 91 | + |
| 92 | + var err error |
| 93 | + |
| 94 | + // If there is a timeout for the initial query, set an additional context deadline here. |
| 95 | + if matcher.InitialQueryTimeout > 0 { |
| 96 | + batchQueryCtx, cancelFunc := context.WithDeadline(ctx, time.Now().Add(matcher.InitialQueryTimeout)) |
| 97 | + batchResp, err = queryForBatchWithPaging(batchQueryCtx, &matcher.Client, queries) |
| 98 | + cancelFunc() |
| 99 | + } else { |
| 100 | + batchResp, err = queryForBatchWithPaging(ctx, &matcher.Client, queries) |
| 101 | + } |
| 102 | + |
| 103 | + if err != nil { |
| 104 | + // Deadline being exceeded is likely caused by a long paging time |
| 105 | + // if that's the case, we can should return what we already got, and |
| 106 | + // then let the caller know it is not all the results. |
| 107 | + if errors.Is(err, context.DeadlineExceeded) { |
| 108 | + deadlineExceeded = true |
| 109 | + } else { |
| 110 | + return err |
| 111 | + } |
| 112 | + } |
| 113 | + |
| 114 | + vulnerabilities := make([][]models.Vulnerability, len(batchResp.Results)) |
| 115 | + g, ctx := errgroup.WithContext(ctx) |
| 116 | + g.SetLimit(maxConcurrentRequests) |
| 117 | + |
| 118 | + for batchIdx, resp := range batchResp.Results { |
| 119 | + vulnerabilities[batchIdx] = make([]models.Vulnerability, len(resp.Vulns)) |
| 120 | + for resultIdx, vuln := range resp.Vulns { |
| 121 | + g.Go(func() error { |
| 122 | + // exit early if another hydration request has already failed |
| 123 | + // results are thrown away later, so avoid needless work |
| 124 | + if ctx.Err() != nil { |
| 125 | + return nil //nolint:nilerr // this value doesn't matter to errgroup.Wait() |
| 126 | + } |
| 127 | + vuln, err := matcher.Client.GetVulnByID(ctx, vuln.ID) |
| 128 | + if err != nil { |
| 129 | + return err |
| 130 | + } |
| 131 | + vulnerabilities[batchIdx][resultIdx] = *vuln |
| 132 | + |
| 133 | + return nil |
| 134 | + }) |
| 135 | + } |
| 136 | + } |
| 137 | + |
| 138 | + if err := g.Wait(); err != nil { |
| 139 | + return err |
| 140 | + } |
| 141 | + |
| 142 | + if deadlineExceeded { |
| 143 | + return context.DeadlineExceeded |
| 144 | + } |
| 145 | + |
| 146 | + for i, vulns := range vulnerabilities { |
| 147 | + matcher.vulnCache.Store(queries[i].Package, vulns) |
| 148 | + } |
| 149 | + |
| 150 | + return nil |
| 151 | +} |
0 commit comments