-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
centos.go
62 lines (49 loc) · 1.4 KB
/
centos.go
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
package redhatbase
import (
"bufio"
"context"
"os"
"strings"
"golang.org/x/xerrors"
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
fos "github.com/aquasecurity/trivy/pkg/fanal/analyzer/os"
"github.com/aquasecurity/trivy/pkg/fanal/types"
"github.com/aquasecurity/trivy/pkg/fanal/utils"
)
const centosAnalyzerVersion = 1
func init() {
analyzer.RegisterAnalyzer(¢OSAnalyzer{})
}
type centOSAnalyzer struct{}
func (a centOSAnalyzer) Analyze(_ context.Context, input analyzer.AnalysisInput) (*analyzer.AnalysisResult, error) {
scanner := bufio.NewScanner(input.Content)
for scanner.Scan() {
line := scanner.Text()
result := redhatRe.FindStringSubmatch(strings.TrimSpace(line))
if len(result) != 3 {
return nil, xerrors.New("centos: invalid centos-release")
}
switch strings.ToLower(result[1]) {
case "centos", "centos linux":
return &analyzer.AnalysisResult{
OS: types.OS{
Family: types.CentOS,
Name: result[2],
},
}, nil
}
}
return nil, xerrors.Errorf("centos: %w", fos.AnalyzeOSError)
}
func (a centOSAnalyzer) Required(filePath string, _ os.FileInfo) bool {
return utils.StringInSlice(filePath, a.requiredFiles())
}
func (a centOSAnalyzer) requiredFiles() []string {
return []string{"etc/centos-release"}
}
func (a centOSAnalyzer) Type() analyzer.Type {
return analyzer.TypeCentOS
}
func (a centOSAnalyzer) Version() int {
return centosAnalyzerVersion
}