forked from zmap/zlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zlint.go
108 lines (95 loc) · 3.2 KB
/
zlint.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
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
/*
* ZLint Copyright 2020 Regents of the University of Michigan
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
// Used to check parsed info from certificate for compliance
package zlint
import (
"encoding/json"
"io"
"regexp"
"time"
"github.com/zmap/zcrypto/x509"
"github.com/zmap/zlint/lint"
_ "github.com/zmap/zlint/lints/apple"
_ "github.com/zmap/zlint/lints/cabf_br"
_ "github.com/zmap/zlint/lints/cabf_ev"
_ "github.com/zmap/zlint/lints/community"
_ "github.com/zmap/zlint/lints/etsi"
_ "github.com/zmap/zlint/lints/rfc"
)
const Version int64 = 3
// ResultSet contains the output of running all lints against a single certificate.
type ResultSet struct {
Version int64 `json:"version"`
Timestamp int64 `json:"timestamp"`
Results map[string]*lint.LintResult `json:"lints"`
NoticesPresent bool `json:"notices_present"`
WarningsPresent bool `json:"warnings_present"`
ErrorsPresent bool `json:"errors_present"`
FatalsPresent bool `json:"fatals_present"`
}
func (z *ResultSet) execute(cert *x509.Certificate, filter *regexp.Regexp) {
z.Results = make(map[string]*lint.LintResult, len(lint.Lints))
for name, l := range lint.Lints {
if filter != nil && !filter.MatchString(name) {
continue
}
res := l.Execute(cert)
z.Results[name] = res
z.updateErrorStatePresent(res)
}
}
func (z *ResultSet) updateErrorStatePresent(result *lint.LintResult) {
switch result.Status {
case lint.Notice:
z.NoticesPresent = true
case lint.Warn:
z.WarningsPresent = true
case lint.Error:
z.ErrorsPresent = true
case lint.Fatal:
z.FatalsPresent = true
}
}
// EncodeLintDescriptionsToJSON outputs a description of each lint as JSON
// object, one object per line.
func EncodeLintDescriptionsToJSON(w io.Writer) {
enc := json.NewEncoder(w)
enc.SetEscapeHTML(false)
for _, lint := range lint.Lints {
_ = enc.Encode(lint)
}
}
// LintCertificate runs all registered lints on c, producing a ZLint.
func LintCertificate(c *x509.Certificate) *ResultSet {
// Instead of panicing on nil certificate, just returns nil and let the client
// panic when accessing ZLint, if they're into panicing.
if c == nil {
return nil
}
// Run all tests
return LintCertificateFiltered(c, nil)
}
// LintCertificateFiltered runs all lints with names matching the provided
// regexp on c, producing a ResultSet.
func LintCertificateFiltered(c *x509.Certificate, filter *regexp.Regexp) *ResultSet {
if c == nil {
return nil
}
// Run tests with provided filter
res := new(ResultSet)
res.execute(c, filter)
res.Version = Version
res.Timestamp = time.Now().Unix()
return res
}