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 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package vulncheck
import (
"context"
"fmt"
"go/token"
"sort"
"sync"
"golang.org/x/tools/go/callgraph"
"golang.org/x/tools/go/ssa"
"golang.org/x/vuln/internal"
"golang.org/x/vuln/internal/derrors"
"golang.org/x/vuln/internal/semver"
"golang.org/x/vuln/osv"
)
// Source detects vulnerabilities in packages. The result will contain:
//
// 1) An ImportGraph related to an import of a package with some known
// vulnerabilities.
//
// 2) A RequireGraph related to a require of a module with a package that has
// some known vulnerabilities.
//
// 3) A CallGraph leading to the use of a known vulnerable function or method.
func Source(ctx context.Context, pkgs []*Package, cfg *Config) (_ *Result, err error) {
defer derrors.Wrap(&err, "vulncheck.Source")
// buildSSA builds a whole program that assumes all packages use the same FileSet.
// Check all packages in pkgs are using the same FileSet.
// TODO(hyangah): Alternative is to take FileSet out of Package and
// let Source take a single FileSet. That will make the enforcement
// clearer from the API level.
var fset *token.FileSet
for _, p := range pkgs {
if fset == nil {
fset = p.Fset
} else {
if fset != p.Fset {
return nil, fmt.Errorf("[]*Package must have created with the same FileSet")
}
}
}
// set the stdlib version for detection of vulns in the standard library
// TODO(#53740): what if Go version is not in semver format?
if cfg.SourceGoVersion != "" {
stdlibModule.Version = semver.GoTagToSemver(cfg.SourceGoVersion)
} else {
gover, err := internal.GoEnv("GOVERSION")
if err != nil {
return nil, err
}
stdlibModule.Version = semver.GoTagToSemver(gover)
}
ctx, cancel := context.WithCancel(ctx)
defer cancel()
// If we are building the callgraph, build ssa and the callgraph in parallel
// with fetching vulnerabilities. If the vulns set is empty, return without
// waiting for SSA construction or callgraph to finish.
var (
wg sync.WaitGroup // guards entries, cg, and buildErr
entries []*ssa.Function
cg *callgraph.Graph
buildErr error
)
if !cfg.ImportsOnly {
wg.Add(1)
go func() {
defer wg.Done()
prog, ssaPkgs := buildSSA(pkgs, fset)
entries = entryPoints(ssaPkgs)
cg, buildErr = callGraph(ctx, prog, entries)
}()
}
mods := extractModules(pkgs)
modVulns, err := fetchVulnerabilities(ctx, cfg.Client, mods)
if err != nil {
return nil, err
}
modVulns = modVulns.filter(cfg.GOOS, cfg.GOARCH)
result := &Result{
Imports: &ImportGraph{Packages: make(map[int]*PkgNode)},
Requires: &RequireGraph{Modules: make(map[int]*ModNode)},
Calls: &CallGraph{Functions: make(map[int]*FuncNode)},
}
vulnPkgModSlice(pkgs, modVulns, result)
setModules(result, mods)
// Return result immediately if in ImportsOnly mode or
// if there are no vulnerable packages.
if cfg.ImportsOnly || len(result.Imports.Packages) == 0 {
return result, nil
}
wg.Wait() // wait for build to finish
if buildErr != nil {
return nil, err
}
vulnCallGraphSlice(entries, modVulns, cg, result)
// Release residual memory.
for _, p := range result.Imports.Packages {
p.pkg = nil
}
return result, nil
}
// Set r.Modules to an adjusted list of modules.
func setModules(r *Result, mods []*Module) {
// Remove Dirs from modules; they aren't needed and complicate testing.
for _, m := range mods {
m.Dir = ""
if m.Replace != nil {
m.Replace.Dir = ""
}
}
// Sort for determinism.
sort.Slice(mods, func(i, j int) bool { return mods[i].Path < mods[j].Path })
r.Modules = append(r.Modules, mods...)
}
// pkgID is an id counter for nodes of Imports graph.
var pkgID int = 0
func nextPkgID() int {
pkgID++
return pkgID
}
// vulnPkgModSlice computes the slice of pkgs imports and requires graph
// leading to imports/requires of vulnerable packages/modules in modVulns
// and stores the computed slices to result.
func vulnPkgModSlice(pkgs []*Package, modVulns moduleVulnerabilities, result *Result) {
// analyzedPkgs contains information on packages analyzed thus far.
// If a package is mapped to nil, this means it has been visited
// but it does not lead to a vulnerable imports. Otherwise, a
// visited package is mapped to Imports package node.
analyzedPkgs := make(map[*Package]*PkgNode)
for _, pkg := range pkgs {
// Top level packages that lead to vulnerable imports are
// stored as result.Imports graph entry points.
if e := vulnImportSlice(pkg, modVulns, result, analyzedPkgs); e != nil {
result.Imports.Entries = append(result.Imports.Entries, e.ID)
}
}
// Populate module requires slice as an overlay
// of package imports slice.
vulnModuleSlice(result)
}
// vulnImportSlice checks if pkg has some vulnerabilities or transitively imports
// a package with known vulnerabilities. If that is the case, populates result.Imports
// graph with this reachability information and returns the result.Imports package
// node for pkg. Otherwise, returns nil.
func vulnImportSlice(pkg *Package, modVulns moduleVulnerabilities, result *Result, analyzed map[*Package]*PkgNode) *PkgNode {
if pn, ok := analyzed[pkg]; ok {
return pn
}
analyzed[pkg] = nil
// Recursively compute which direct dependencies lead to an import of
// a vulnerable package and remember the nodes of such dependencies.
var onSlice []*PkgNode
for _, imp := range pkg.Imports {
if impNode := vulnImportSlice(imp, modVulns, result, analyzed); impNode != nil {
onSlice = append(onSlice, impNode)
}
}
// Check if pkg has known vulnerabilities.
vulns := modVulns.vulnsForPackage(pkg.PkgPath)
// If pkg is not vulnerable nor it transitively leads
// to vulnerabilities, jump out.
if len(onSlice) == 0 && len(vulns) == 0 {
return nil
}
// Module id gets populated later.
id := nextPkgID()
pkgNode := &PkgNode{
ID: id,
Name: pkg.Name,
Path: pkg.PkgPath,
pkg: pkg,
}
analyzed[pkg] = pkgNode
result.Imports.Packages[id] = pkgNode
// Save node predecessor information.
for _, impSliceNode := range onSlice {
impSliceNode.ImportedBy = append(impSliceNode.ImportedBy, id)
}
// Create Vuln entry for each symbol of known OSV entries for pkg.
for _, osv := range vulns {
for _, affected := range osv.Affected {
for _, p := range affected.EcosystemSpecific.Imports {
if p.Path != pkgNode.Path {
continue
}
symbols := p.Symbols
if len(symbols) == 0 {
symbols = allSymbols(pkg.Pkg)
}
for _, symbol := range symbols {
vuln := &Vuln{
OSV: osv,
Symbol: symbol,
PkgPath: pkgNode.Path,
ImportSink: id,
}
result.Vulns = append(result.Vulns, vuln)
}
}
}
}
return pkgNode
}
// vulnModuleSlice populates result.Requires as an overlay
// of result.Imports.
func vulnModuleSlice(result *Result) {
// Map from module nodes, identified with their
// path and version, to their unique ids.
modNodeIDs := make(map[string]int)
// We first collect inverse requires by (predecessor)
// relation on module node ids.
modPredRelation := make(map[int]map[int]bool)
// Sort keys so modules are assigned IDs deterministically, for tests.
var pkgIDs []int
for id := range result.Imports.Packages {
pkgIDs = append(pkgIDs, id)
}
sort.Ints(pkgIDs)
for _, id := range pkgIDs {
pkgNode := result.Imports.Packages[id]
// Create or get module node for pkgNode.
modID := moduleNodeID(pkgNode, result, modNodeIDs)
pkgNode.Module = modID
// Update the set of predecessors.
if _, ok := modPredRelation[modID]; !ok {
modPredRelation[modID] = make(map[int]bool)
}
predSet := modPredRelation[modID]
for _, predPkgID := range pkgNode.ImportedBy {
predModID := moduleNodeID(result.Imports.Packages[predPkgID], result, modNodeIDs)
// We don't add module edges for imports
// of packages in the same module as that
// will create self-loops in Requires graphs.
if predModID == modID {
continue
}
predSet[predModID] = true
}
}
// Add entry module IDs.
seenEntries := make(map[int]bool)
for _, epID := range result.Imports.Entries {
entryModID := moduleNodeID(result.Imports.Packages[epID], result, modNodeIDs)
if seenEntries[entryModID] {
continue
}
seenEntries[entryModID] = true
result.Requires.Entries = append(result.Requires.Entries, entryModID)
}
// Store the predecessor requires relation to result.
for modID := range modPredRelation {
if modID == 0 {
continue
}
var predIDs []int
for predID := range modPredRelation[modID] {
predIDs = append(predIDs, predID)
}
modNode := result.Requires.Modules[modID]
modNode.RequiredBy = predIDs
}
// And finally update Vulns with module information.
for _, vuln := range result.Vulns {
pkgNode := result.Imports.Packages[vuln.ImportSink]
modNode := result.Requires.Modules[pkgNode.Module]
vuln.RequireSink = pkgNode.Module
vuln.ModPath = modNode.Path
}
}
// modID is an id counter for nodes of Requires graph.
var modID int = 0
func nextModID() int {
modID++
return modID
}
// moduleNode creates a module node associated with pkgNode, if one does
// not exist already, and returns id of the module node. The actual module
// node is stored to result.
func moduleNodeID(pkgNode *PkgNode, result *Result, modNodeIDs map[string]int) int {
mod := pkgNode.pkg.Module
if isStdPackage(pkgNode.Path) {
// standard library packages don't have a module.
mod = stdlibModule
}
if mod == nil {
return 0
}
mk := modKey(mod)
if id, ok := modNodeIDs[mk]; ok {
return id
}
id := nextModID()
n := &ModNode{
ID: id,
Path: mod.Path,
Version: mod.Version,
}
result.Requires.Modules[id] = n
modNodeIDs[mk] = id
// Create a replace module too when applicable.
if mod.Replace != nil {
rmk := modKey(mod.Replace)
if rid, ok := modNodeIDs[rmk]; ok {
n.Replace = rid
} else {
rid := nextModID()
rn := &ModNode{
Path: mod.Replace.Path,
Version: mod.Replace.Version,
}
result.Requires.Modules[rid] = rn
modNodeIDs[rmk] = rid
n.Replace = rid
}
}
return id
}
// vulnCallGraphSlice checks if known vulnerabilities are transitively reachable from sources
// via call graph cg. If so, populates result.Calls graph with this reachability information.
func vulnCallGraphSlice(sources []*ssa.Function, modVulns moduleVulnerabilities, cg *callgraph.Graph, result *Result) {
sinksWithVulns := vulnFuncs(cg, modVulns)
// Compute call graph backwards reachable
// from vulnerable functions and methods.
var sinks []*callgraph.Node
for n := range sinksWithVulns {
sinks = append(sinks, n)
}
bcg := callGraphSlice(sinks, false)
// Interesect backwards call graph with forward
// reachable graph to remove redundant edges.
var filteredSources []*callgraph.Node
for _, e := range sources {
if n, ok := bcg.Nodes[e]; ok {
filteredSources = append(filteredSources, n)
}
}
fcg := callGraphSlice(filteredSources, true)
// Get the sinks that are in fact reachable from entry points.
filteredSinks := make(map[*callgraph.Node][]*osv.Entry)
for n, vs := range sinksWithVulns {
if fn, ok := fcg.Nodes[n.Func]; ok {
filteredSinks[fn] = vs
}
}
// Transform the resulting call graph slice into
// vulncheck representation and store it to result.
vulnCallGraph(filteredSources, filteredSinks, result)
}
// callGraphSlice computes a slice of callgraph beginning at starts
// in the direction (forward/backward) controlled by forward flag.
func callGraphSlice(starts []*callgraph.Node, forward bool) *callgraph.Graph {
g := &callgraph.Graph{Nodes: make(map[*ssa.Function]*callgraph.Node)}
visited := make(map[*callgraph.Node]bool)
var visit func(*callgraph.Node)
visit = func(n *callgraph.Node) {
if visited[n] {
return
}
visited[n] = true
var edges []*callgraph.Edge
if forward {
edges = n.Out
} else {
edges = n.In
}
for _, edge := range edges {
nCallee := g.CreateNode(edge.Callee.Func)
nCaller := g.CreateNode(edge.Caller.Func)
callgraph.AddEdge(nCaller, edge.Site, nCallee)
if forward {
visit(edge.Callee)
} else {
visit(edge.Caller)
}
}
}
for _, s := range starts {
visit(s)
}
return g
}
// funID is an id counter for nodes of Calls graph.
var funID int = 0
func nextFunID() int {
funID++
return funID
}
// vulnCallGraph creates vulnerability call graph from sources -> sinks reachability info.
func vulnCallGraph(sources []*callgraph.Node, sinks map[*callgraph.Node][]*osv.Entry, result *Result) {
nodes := make(map[*ssa.Function]*FuncNode)
createNode := func(f *ssa.Function) *FuncNode {
if fn, ok := nodes[f]; ok {
return fn
}
fn := funcNode(f)
nodes[f] = fn
result.Calls.Functions[fn.ID] = fn
return fn
}
// First create entries and sinks and store relevant information.
for _, s := range sources {
fn := createNode(s.Func)
result.Calls.Entries = append(result.Calls.Entries, fn.ID)
}
for s, vulns := range sinks {
f := s.Func
funNode := createNode(s.Func)
// Populate CallSink field for each detected vuln symbol.
for _, osv := range vulns {
if vulnMatchesPackage(osv, funNode.PkgPath) {
addCallSinkForVuln(funNode.ID, osv, dbFuncName(f), funNode.PkgPath, result)
}
}
}
visited := make(map[*callgraph.Node]bool)
var visit func(*callgraph.Node)
visit = func(n *callgraph.Node) {
if visited[n] {
return
}
visited[n] = true
for _, edge := range n.In {
nCallee := createNode(edge.Callee.Func)
nCaller := createNode(edge.Caller.Func)
call := edge.Site
cs := &CallSite{
Parent: nCaller.ID,
Name: call.Common().Value.Name(),
RecvType: callRecvType(call),
Resolved: resolved(call),
Pos: instrPosition(call),
}
nCallee.CallSites = append(nCallee.CallSites, cs)
visit(edge.Caller)
}
}
for s := range sinks {
visit(s)
}
}
// vulnFuncs returns vulnerability information for vulnerable functions in cg.
func vulnFuncs(cg *callgraph.Graph, modVulns moduleVulnerabilities) map[*callgraph.Node][]*osv.Entry {
m := make(map[*callgraph.Node][]*osv.Entry)
for f, n := range cg.Nodes {
vulns := modVulns.vulnsForSymbol(pkgPath(f), dbFuncName(f))
if len(vulns) > 0 {
m[n] = vulns
}
}
return m
}
// pkgPath returns the path of the f's enclosing package, if any.
// Otherwise, returns "".
func pkgPath(f *ssa.Function) string {
if f.Package() != nil && f.Package().Pkg != nil {
return f.Package().Pkg.Path()
}
return ""
}
func funcNode(f *ssa.Function) *FuncNode {
id := nextFunID()
return &FuncNode{
ID: id,
Name: f.Name(),
PkgPath: pkgPath(f),
RecvType: funcRecvType(f),
Pos: funcPosition(f),
}
}
// addCallSinkForVuln adds callID as call sink to vuln of result.Vulns
// identified with <osv, symbol, pkg>.
func addCallSinkForVuln(callID int, osv *osv.Entry, symbol, pkg string, result *Result) {
for _, vuln := range result.Vulns {
if vuln.OSV == osv && vuln.Symbol == symbol && vuln.PkgPath == pkg {
vuln.CallSink = callID
return
}
}
}
|