blob: 873ffeee1dae21703a5c0cdf3a92da42780c4d48 [file] [log] [blame]
Brent Austinba3052e2015-04-21 16:08:23 -07001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package x509
6
Dan Willemsenb57d8522017-01-19 15:07:53 -08007import (
Colin Cross1f805522021-05-14 11:10:59 -07008 "bytes"
9 "crypto/sha256"
Dan Willemsenb57d8522017-01-19 15:07:53 -080010 "encoding/pem"
Colin Cross1f805522021-05-14 11:10:59 -070011 "sync"
Dan Willemsenb57d8522017-01-19 15:07:53 -080012)
Brent Austinba3052e2015-04-21 16:08:23 -070013
Colin Cross1f805522021-05-14 11:10:59 -070014type sum224 [sha256.Size224]byte
15
Brent Austinba3052e2015-04-21 16:08:23 -070016// CertPool is a set of certificates.
17type CertPool struct {
Colin Cross1f805522021-05-14 11:10:59 -070018 byName map[string][]int // cert.RawSubject => index into lazyCerts
19
20 // lazyCerts contains funcs that return a certificate,
21 // lazily parsing/decompressing it as needed.
22 lazyCerts []lazyCert
23
24 // haveSum maps from sum224(cert.Raw) to true. It's used only
25 // for AddCert duplicate detection, to avoid CertPool.contains
26 // calls in the AddCert path (because the contains method can
27 // call getCert and otherwise negate savings from lazy getCert
28 // funcs).
29 haveSum map[sum224]bool
Dan Willemsenbc60c3c2021-12-15 01:09:00 -080030
31 // systemPool indicates whether this is a special pool derived from the
32 // system roots. If it includes additional roots, it requires doing two
33 // verifications, one using the roots provided by the caller, and one using
34 // the system platform verifier.
35 systemPool bool
Colin Cross1f805522021-05-14 11:10:59 -070036}
37
38// lazyCert is minimal metadata about a Cert and a func to retrieve it
39// in its normal expanded *Certificate form.
40type lazyCert struct {
41 // rawSubject is the Certificate.RawSubject value.
42 // It's the same as the CertPool.byName key, but in []byte
43 // form to make CertPool.Subjects (as used by crypto/tls) do
44 // fewer allocations.
45 rawSubject []byte
46
47 // getCert returns the certificate.
48 //
49 // It is not meant to do network operations or anything else
50 // where a failure is likely; the func is meant to lazily
51 // parse/decompress data that is already known to be good. The
52 // error in the signature primarily is meant for use in the
53 // case where a cert file existed on local disk when the program
54 // started up is deleted later before it's read.
55 getCert func() (*Certificate, error)
Brent Austinba3052e2015-04-21 16:08:23 -070056}
57
58// NewCertPool returns a new, empty CertPool.
59func NewCertPool() *CertPool {
60 return &CertPool{
Colin Cross1f805522021-05-14 11:10:59 -070061 byName: make(map[string][]int),
62 haveSum: make(map[sum224]bool),
Brent Austinba3052e2015-04-21 16:08:23 -070063 }
64}
65
Colin Cross1f805522021-05-14 11:10:59 -070066// len returns the number of certs in the set.
67// A nil set is a valid empty set.
68func (s *CertPool) len() int {
69 if s == nil {
70 return 0
71 }
72 return len(s.lazyCerts)
73}
74
75// cert returns cert index n in s.
76func (s *CertPool) cert(n int) (*Certificate, error) {
77 return s.lazyCerts[n].getCert()
78}
79
Dan Willemsenc7413322018-08-27 23:21:26 -070080func (s *CertPool) copy() *CertPool {
81 p := &CertPool{
Dan Willemsenbc60c3c2021-12-15 01:09:00 -080082 byName: make(map[string][]int, len(s.byName)),
83 lazyCerts: make([]lazyCert, len(s.lazyCerts)),
84 haveSum: make(map[sum224]bool, len(s.haveSum)),
85 systemPool: s.systemPool,
Dan Willemsenc7413322018-08-27 23:21:26 -070086 }
87 for k, v := range s.byName {
88 indexes := make([]int, len(v))
89 copy(indexes, v)
90 p.byName[k] = indexes
91 }
Colin Cross1f805522021-05-14 11:10:59 -070092 for k := range s.haveSum {
93 p.haveSum[k] = true
94 }
95 copy(p.lazyCerts, s.lazyCerts)
Dan Willemsenc7413322018-08-27 23:21:26 -070096 return p
97}
98
Dan Willemsen38f2dba2016-07-08 14:54:35 -070099// SystemCertPool returns a copy of the system cert pool.
100//
Patrice Arruda4fc930d2020-08-03 23:20:51 +0000101// On Unix systems other than macOS the environment variables SSL_CERT_FILE and
102// SSL_CERT_DIR can be used to override the system default locations for the SSL
103// certificate file and SSL certificate files directory, respectively. The
104// latter can be a colon-separated list.
Dan Willemsenc7413322018-08-27 23:21:26 -0700105//
Patrice Arruda4fc930d2020-08-03 23:20:51 +0000106// Any mutations to the returned pool are not written to disk and do not affect
107// any other pool returned by SystemCertPool.
108//
109// New changes in the system cert pool might not be reflected in subsequent calls.
Dan Willemsen38f2dba2016-07-08 14:54:35 -0700110func SystemCertPool() (*CertPool, error) {
Dan Willemsenc7413322018-08-27 23:21:26 -0700111 if sysRoots := systemRootsPool(); sysRoots != nil {
112 return sysRoots.copy(), nil
113 }
114
Dan Willemsen38f2dba2016-07-08 14:54:35 -0700115 return loadSystemRoots()
116}
117
Colin Crossd9c6b802019-03-19 21:10:31 -0700118// findPotentialParents returns the indexes of certificates in s which might
Colin Cross1f805522021-05-14 11:10:59 -0700119// have signed cert.
120func (s *CertPool) findPotentialParents(cert *Certificate) []*Certificate {
Brent Austinba3052e2015-04-21 16:08:23 -0700121 if s == nil {
Colin Crossd9c6b802019-03-19 21:10:31 -0700122 return nil
Brent Austinba3052e2015-04-21 16:08:23 -0700123 }
Brent Austinba3052e2015-04-21 16:08:23 -0700124
Colin Cross1f805522021-05-14 11:10:59 -0700125 // consider all candidates where cert.Issuer matches cert.Subject.
126 // when picking possible candidates the list is built in the order
127 // of match plausibility as to save cycles in buildChains:
128 // AKID and SKID match
129 // AKID present, SKID missing / AKID missing, SKID present
130 // AKID and SKID don't match
131 var matchingKeyID, oneKeyID, mismatchKeyID []*Certificate
132 for _, c := range s.byName[string(cert.RawIssuer)] {
133 candidate, err := s.cert(c)
134 if err != nil {
135 continue
136 }
137 kidMatch := bytes.Equal(candidate.SubjectKeyId, cert.AuthorityKeyId)
138 switch {
139 case kidMatch:
140 matchingKeyID = append(matchingKeyID, candidate)
141 case (len(candidate.SubjectKeyId) == 0 && len(cert.AuthorityKeyId) > 0) ||
142 (len(candidate.SubjectKeyId) > 0 && len(cert.AuthorityKeyId) == 0):
143 oneKeyID = append(oneKeyID, candidate)
144 default:
145 mismatchKeyID = append(mismatchKeyID, candidate)
146 }
Brent Austinba3052e2015-04-21 16:08:23 -0700147 }
Colin Cross1f805522021-05-14 11:10:59 -0700148
149 found := len(matchingKeyID) + len(oneKeyID) + len(mismatchKeyID)
150 if found == 0 {
151 return nil
Brent Austinba3052e2015-04-21 16:08:23 -0700152 }
Colin Cross1f805522021-05-14 11:10:59 -0700153 candidates := make([]*Certificate, 0, found)
154 candidates = append(candidates, matchingKeyID...)
155 candidates = append(candidates, oneKeyID...)
156 candidates = append(candidates, mismatchKeyID...)
Colin Crossd9c6b802019-03-19 21:10:31 -0700157 return candidates
Brent Austinba3052e2015-04-21 16:08:23 -0700158}
159
Dan Willemsenebae3022017-01-13 23:01:08 -0800160func (s *CertPool) contains(cert *Certificate) bool {
161 if s == nil {
162 return false
163 }
Colin Cross1f805522021-05-14 11:10:59 -0700164 return s.haveSum[sha256.Sum224(cert.Raw)]
Dan Willemsenebae3022017-01-13 23:01:08 -0800165}
166
Brent Austinba3052e2015-04-21 16:08:23 -0700167// AddCert adds a certificate to a pool.
168func (s *CertPool) AddCert(cert *Certificate) {
169 if cert == nil {
170 panic("adding nil Certificate to CertPool")
171 }
Colin Cross1f805522021-05-14 11:10:59 -0700172 s.addCertFunc(sha256.Sum224(cert.Raw), string(cert.RawSubject), func() (*Certificate, error) {
173 return cert, nil
174 })
175}
176
177// addCertFunc adds metadata about a certificate to a pool, along with
178// a func to fetch that certificate later when needed.
179//
180// The rawSubject is Certificate.RawSubject and must be non-empty.
181// The getCert func may be called 0 or more times.
182func (s *CertPool) addCertFunc(rawSum224 sum224, rawSubject string, getCert func() (*Certificate, error)) {
183 if getCert == nil {
184 panic("getCert can't be nil")
185 }
Brent Austinba3052e2015-04-21 16:08:23 -0700186
187 // Check that the certificate isn't being added twice.
Colin Cross1f805522021-05-14 11:10:59 -0700188 if s.haveSum[rawSum224] {
Dan Willemsenebae3022017-01-13 23:01:08 -0800189 return
Brent Austinba3052e2015-04-21 16:08:23 -0700190 }
191
Colin Cross1f805522021-05-14 11:10:59 -0700192 s.haveSum[rawSum224] = true
193 s.lazyCerts = append(s.lazyCerts, lazyCert{
194 rawSubject: []byte(rawSubject),
195 getCert: getCert,
196 })
197 s.byName[rawSubject] = append(s.byName[rawSubject], len(s.lazyCerts)-1)
Brent Austinba3052e2015-04-21 16:08:23 -0700198}
199
200// AppendCertsFromPEM attempts to parse a series of PEM encoded certificates.
Dan Willemsen09eb3b12015-09-16 14:34:17 -0700201// It appends any certificates found to s and reports whether any certificates
Brent Austinba3052e2015-04-21 16:08:23 -0700202// were successfully parsed.
203//
204// On many Linux systems, /etc/ssl/cert.pem will contain the system wide set
205// of root CAs in a format suitable for this function.
206func (s *CertPool) AppendCertsFromPEM(pemCerts []byte) (ok bool) {
207 for len(pemCerts) > 0 {
208 var block *pem.Block
209 block, pemCerts = pem.Decode(pemCerts)
210 if block == nil {
211 break
212 }
213 if block.Type != "CERTIFICATE" || len(block.Headers) != 0 {
214 continue
215 }
216
Colin Cross1f805522021-05-14 11:10:59 -0700217 certBytes := block.Bytes
218 cert, err := ParseCertificate(certBytes)
Brent Austinba3052e2015-04-21 16:08:23 -0700219 if err != nil {
220 continue
221 }
Colin Cross1f805522021-05-14 11:10:59 -0700222 var lazyCert struct {
223 sync.Once
224 v *Certificate
225 }
226 s.addCertFunc(sha256.Sum224(cert.Raw), string(cert.RawSubject), func() (*Certificate, error) {
227 lazyCert.Do(func() {
228 // This can't fail, as the same bytes already parsed above.
229 lazyCert.v, _ = ParseCertificate(certBytes)
230 certBytes = nil
231 })
232 return lazyCert.v, nil
233 })
Brent Austinba3052e2015-04-21 16:08:23 -0700234 ok = true
235 }
236
Colin Cross1f805522021-05-14 11:10:59 -0700237 return ok
Brent Austinba3052e2015-04-21 16:08:23 -0700238}
239
240// Subjects returns a list of the DER-encoded subjects of
241// all of the certificates in the pool.
Dan Willemsenbc60c3c2021-12-15 01:09:00 -0800242//
243// Deprecated: if s was returned by SystemCertPool, Subjects
244// will not include the system roots.
Dan Willemsen38f2dba2016-07-08 14:54:35 -0700245func (s *CertPool) Subjects() [][]byte {
Colin Cross1f805522021-05-14 11:10:59 -0700246 res := make([][]byte, s.len())
247 for i, lc := range s.lazyCerts {
248 res[i] = lc.rawSubject
Brent Austinba3052e2015-04-21 16:08:23 -0700249 }
Dan Willemsen38f2dba2016-07-08 14:54:35 -0700250 return res
Brent Austinba3052e2015-04-21 16:08:23 -0700251}