Documentation ¶
Index ¶
- func ArchMatch(pkgArch string, requiredPkgArch string, operation oval.Operation) bool
- func DpkgDefsToVulns(ctx context.Context, root *oval.Root, protoVulns ProtoVulnsFunc) ([]*claircore.Vulnerability, error)
- func Links(def oval.Definition) string
- func Operation(value, requiredValue string, operation oval.Operation) bool
- func RPMDefsToVulns(ctx context.Context, root *oval.Root, protoVulns ProtoVulnsFunc) ([]*claircore.Vulnerability, error)
- func TestLookup(root *oval.Root, ref string, f func(kind string) bool) (oval.Test, error)
- type Compressor
- type Fetcher
- type ProtoVulnsFunc
- type RPMInfo
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ArchMatch ¶ added in v0.1.0
ArchMatch checks if given package arch match with requited arch based on operator
func DpkgDefsToVulns ¶ added in v0.1.0
func DpkgDefsToVulns(ctx context.Context, root *oval.Root, protoVulns ProtoVulnsFunc) ([]*claircore.Vulnerability, error)
DpkgDefsToVulns iterates over the definitions in an oval root and assumes DpkgInfo objects and states.
Each Criterion encountered with an EVR string will be translated into a claircore.Vulnerability
func Links ¶
func Links(def oval.Definition) string
Links joins all the links in the cve definition into a single string.
func RPMDefsToVulns ¶ added in v0.0.14
func RPMDefsToVulns(ctx context.Context, root *oval.Root, protoVulns ProtoVulnsFunc) ([]*claircore.Vulnerability, error)
RPMDefsToVulns iterates over the definitions in an oval root and assumes RPMInfo objects and states.
Each Criterion encountered with an EVR string will be translated into a claircore.Vulnerability
Types ¶
type Compressor ¶
type Compressor uint
Compressor is used by Fetcher to decompress data it fetches.
const ( CompressionNone Compressor = iota // none CompressionGzip // gzip CompressionBzip2 // bzip2 )
These are the kinds of Compession a Fetcher can deal with.
func ParseCompressor ¶
func ParseCompressor(s string) (c Compressor, err error)
ParseCompressor reports the Compressor indicated by the passed in string.
func (Compressor) String ¶
func (i Compressor) String() string
type Fetcher ¶
type Fetcher struct { Compression Compressor URL *url.URL Client *http.Client }
Fetcher implements the driver.Fetcher interface.
Fetcher expects all of its exported members to be filled out appropriately, and may panic if not.
func (*Fetcher) Fetch ¶ added in v0.0.8
func (f *Fetcher) Fetch(ctx context.Context, hint driver.Fingerprint) (io.ReadCloser, driver.Fingerprint, error)
Fetch fetches the resource as specified by Fetcher.URL and Fetcher.Compression, using the client provided as Fetcher.Client.
Fetch makes GET requests, and will make conditional requests using the passed-in hint.
Tmp.File is used to return a ReadCloser that outlives the passed-in context.
type ProtoVulnsFunc ¶ added in v0.1.0
type ProtoVulnsFunc func(def oval.Definition) ([]*claircore.Vulnerability, error)
ProtoVulnsFunc allows a caller to create prototype vulnerabilities that will be copied and further defined for every applicable oval.Criterion discovered.
This allows the caller to use oval.Definition fields and closure syntax when defining how a vulnerability should be parsed
type RPMInfo ¶
type RPMInfo struct {
// contains filtered or unexported fields
}
RPMInfo holds information for extracting Vulnerabilities from an OVAL database with rpm_info states, objects, and tests.
func NewRPMInfo ¶
NewRPMInfo creates an RPMInfo ready to examine the passed-in OVAL database.