Source file
src/crypto/x509/cert_pool.go
1
2
3
4
5 package x509
6
7 import (
8 "bytes"
9 "crypto/sha256"
10 "encoding/pem"
11 "sync"
12 )
13
14 type sum224 [sha256.Size224]byte
15
16
17 type CertPool struct {
18 byName map[string][]int
19
20
21
22 lazyCerts []lazyCert
23
24
25
26
27
28
29 haveSum map[sum224]bool
30
31
32
33
34
35 systemPool bool
36 }
37
38
39
40 type lazyCert struct {
41
42
43
44
45 rawSubject []byte
46
47
48
49
50 constraint func([]*Certificate) error
51
52
53
54
55
56
57
58
59
60 getCert func() (*Certificate, error)
61 }
62
63
64 func NewCertPool() *CertPool {
65 return &CertPool{
66 byName: make(map[string][]int),
67 haveSum: make(map[sum224]bool),
68 }
69 }
70
71
72
73 func (s *CertPool) len() int {
74 if s == nil {
75 return 0
76 }
77 return len(s.lazyCerts)
78 }
79
80
81 func (s *CertPool) cert(n int) (*Certificate, func([]*Certificate) error, error) {
82 cert, err := s.lazyCerts[n].getCert()
83 return cert, s.lazyCerts[n].constraint, err
84 }
85
86
87 func (s *CertPool) Clone() *CertPool {
88 p := &CertPool{
89 byName: make(map[string][]int, len(s.byName)),
90 lazyCerts: make([]lazyCert, len(s.lazyCerts)),
91 haveSum: make(map[sum224]bool, len(s.haveSum)),
92 systemPool: s.systemPool,
93 }
94 for k, v := range s.byName {
95 indexes := make([]int, len(v))
96 copy(indexes, v)
97 p.byName[k] = indexes
98 }
99 for k := range s.haveSum {
100 p.haveSum[k] = true
101 }
102 copy(p.lazyCerts, s.lazyCerts)
103 return p
104 }
105
106
107
108
109
110
111
112
113
114
115
116
117 func SystemCertPool() (*CertPool, error) {
118 if sysRoots := systemRootsPool(); sysRoots != nil {
119 return sysRoots.Clone(), nil
120 }
121
122 return loadSystemRoots()
123 }
124
125 type potentialParent struct {
126 cert *Certificate
127 constraint func([]*Certificate) error
128 }
129
130
131
132 func (s *CertPool) findPotentialParents(cert *Certificate) []potentialParent {
133 if s == nil {
134 return nil
135 }
136
137
138
139
140
141
142
143 var matchingKeyID, oneKeyID, mismatchKeyID []potentialParent
144 for _, c := range s.byName[string(cert.RawIssuer)] {
145 candidate, constraint, err := s.cert(c)
146 if err != nil {
147 continue
148 }
149 kidMatch := bytes.Equal(candidate.SubjectKeyId, cert.AuthorityKeyId)
150 switch {
151 case kidMatch:
152 matchingKeyID = append(matchingKeyID, potentialParent{candidate, constraint})
153 case (len(candidate.SubjectKeyId) == 0 && len(cert.AuthorityKeyId) > 0) ||
154 (len(candidate.SubjectKeyId) > 0 && len(cert.AuthorityKeyId) == 0):
155 oneKeyID = append(oneKeyID, potentialParent{candidate, constraint})
156 default:
157 mismatchKeyID = append(mismatchKeyID, potentialParent{candidate, constraint})
158 }
159 }
160
161 found := len(matchingKeyID) + len(oneKeyID) + len(mismatchKeyID)
162 if found == 0 {
163 return nil
164 }
165 candidates := make([]potentialParent, 0, found)
166 candidates = append(candidates, matchingKeyID...)
167 candidates = append(candidates, oneKeyID...)
168 candidates = append(candidates, mismatchKeyID...)
169 return candidates
170 }
171
172 func (s *CertPool) contains(cert *Certificate) bool {
173 if s == nil {
174 return false
175 }
176 return s.haveSum[sha256.Sum224(cert.Raw)]
177 }
178
179
180 func (s *CertPool) AddCert(cert *Certificate) {
181 if cert == nil {
182 panic("adding nil Certificate to CertPool")
183 }
184 s.addCertFunc(sha256.Sum224(cert.Raw), string(cert.RawSubject), func() (*Certificate, error) {
185 return cert, nil
186 }, nil)
187 }
188
189
190
191
192
193
194 func (s *CertPool) addCertFunc(rawSum224 sum224, rawSubject string, getCert func() (*Certificate, error), constraint func([]*Certificate) error) {
195 if getCert == nil {
196 panic("getCert can't be nil")
197 }
198
199
200 if s.haveSum[rawSum224] {
201 return
202 }
203
204 s.haveSum[rawSum224] = true
205 s.lazyCerts = append(s.lazyCerts, lazyCert{
206 rawSubject: []byte(rawSubject),
207 getCert: getCert,
208 constraint: constraint,
209 })
210 s.byName[rawSubject] = append(s.byName[rawSubject], len(s.lazyCerts)-1)
211 }
212
213
214
215
216
217
218
219 func (s *CertPool) AppendCertsFromPEM(pemCerts []byte) (ok bool) {
220 for len(pemCerts) > 0 {
221 var block *pem.Block
222 block, pemCerts = pem.Decode(pemCerts)
223 if block == nil {
224 break
225 }
226 if block.Type != "CERTIFICATE" || len(block.Headers) != 0 {
227 continue
228 }
229
230 certBytes := block.Bytes
231 cert, err := ParseCertificate(certBytes)
232 if err != nil {
233 continue
234 }
235 var lazyCert struct {
236 sync.Once
237 v *Certificate
238 }
239 s.addCertFunc(sha256.Sum224(cert.Raw), string(cert.RawSubject), func() (*Certificate, error) {
240 lazyCert.Do(func() {
241
242 lazyCert.v, _ = ParseCertificate(certBytes)
243 certBytes = nil
244 })
245 return lazyCert.v, nil
246 }, nil)
247 ok = true
248 }
249
250 return ok
251 }
252
253
254
255
256
257
258 func (s *CertPool) Subjects() [][]byte {
259 res := make([][]byte, s.len())
260 for i, lc := range s.lazyCerts {
261 res[i] = lc.rawSubject
262 }
263 return res
264 }
265
266
267 func (s *CertPool) Equal(other *CertPool) bool {
268 if s == nil || other == nil {
269 return s == other
270 }
271 if s.systemPool != other.systemPool || len(s.haveSum) != len(other.haveSum) {
272 return false
273 }
274 for h := range s.haveSum {
275 if !other.haveSum[h] {
276 return false
277 }
278 }
279 return true
280 }
281
282
283
284
285
286
287 func (s *CertPool) AddCertWithConstraint(cert *Certificate, constraint func([]*Certificate) error) {
288 if cert == nil {
289 panic("adding nil Certificate to CertPool")
290 }
291 s.addCertFunc(sha256.Sum224(cert.Raw), string(cert.RawSubject), func() (*Certificate, error) {
292 return cert, nil
293 }, constraint)
294 }
295
View as plain text