forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificate_pattern_matcher.cc
193 lines (159 loc) · 5.94 KB
/
certificate_pattern_matcher.cc
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/network/certificate_pattern_matcher.h"
#include <cert.h>
#include <pk11pub.h>
#include <list>
#include <string>
#include <vector>
#include "chromeos/network/certificate_pattern.h"
#include "net/base/net_errors.h"
#include "net/cert/cert_database.h"
#include "net/cert/nss_cert_database.h"
#include "net/cert/x509_cert_types.h"
#include "net/cert/x509_certificate.h"
namespace chromeos {
namespace {
// Returns true only if any fields set in this pattern match exactly with
// similar fields in the principal. If organization_ or organizational_unit_
// are set, then at least one of the organizations or units in the principal
// must match.
bool CertPrincipalMatches(const IssuerSubjectPattern& pattern,
const net::CertPrincipal& principal) {
if (!pattern.common_name().empty() &&
pattern.common_name() != principal.common_name) {
return false;
}
if (!pattern.locality().empty() &&
pattern.locality() != principal.locality_name) {
return false;
}
if (!pattern.organization().empty()) {
if (std::find(principal.organization_names.begin(),
principal.organization_names.end(),
pattern.organization()) ==
principal.organization_names.end()) {
return false;
}
}
if (!pattern.organizational_unit().empty()) {
if (std::find(principal.organization_unit_names.begin(),
principal.organization_unit_names.end(),
pattern.organizational_unit()) ==
principal.organization_unit_names.end()) {
return false;
}
}
return true;
}
// Functor to filter out non-matching issuers.
class IssuerFilter {
public:
explicit IssuerFilter(const IssuerSubjectPattern& issuer)
: issuer_(issuer) {}
bool operator()(const scoped_refptr<net::X509Certificate>& cert) const {
return !CertPrincipalMatches(issuer_, cert.get()->issuer());
}
private:
const IssuerSubjectPattern& issuer_;
};
// Functor to filter out non-matching subjects.
class SubjectFilter {
public:
explicit SubjectFilter(const IssuerSubjectPattern& subject)
: subject_(subject) {}
bool operator()(const scoped_refptr<net::X509Certificate>& cert) const {
return !CertPrincipalMatches(subject_, cert.get()->subject());
}
private:
const IssuerSubjectPattern& subject_;
};
// Functor to filter out certs that don't have private keys, or are invalid.
class PrivateKeyFilter {
public:
explicit PrivateKeyFilter(net::CertDatabase* cert_db) : cert_db_(cert_db) {}
bool operator()(const scoped_refptr<net::X509Certificate>& cert) const {
return cert_db_->CheckUserCert(cert.get()) != net::OK;
}
private:
net::CertDatabase* cert_db_;
};
// Functor to filter out certs that don't have an issuer in the associated
// IssuerCAPEMs list.
class IssuerCaFilter {
public:
explicit IssuerCaFilter(const std::vector<std::string>& issuer_ca_pems)
: issuer_ca_pems_(issuer_ca_pems) {}
bool operator()(const scoped_refptr<net::X509Certificate>& cert) const {
// Find the certificate issuer for each certificate.
// TODO(gspencer): this functionality should be available from
// X509Certificate or NSSCertDatabase.
CERTCertificate* issuer_cert = CERT_FindCertIssuer(
cert.get()->os_cert_handle(), PR_Now(), certUsageAnyCA);
if (!issuer_cert)
return true;
std::string pem_encoded;
if (!net::X509Certificate::GetPEMEncoded(issuer_cert, &pem_encoded)) {
LOG(ERROR) << "Couldn't PEM-encode certificate.";
return true;
}
return (std::find(issuer_ca_pems_.begin(), issuer_ca_pems_.end(),
pem_encoded) ==
issuer_ca_pems_.end());
}
private:
const std::vector<std::string>& issuer_ca_pems_;
};
} // namespace
namespace certificate_pattern {
scoped_refptr<net::X509Certificate> GetCertificateMatch(
const CertificatePattern& pattern) {
typedef std::list<scoped_refptr<net::X509Certificate> > CertificateStlList;
// Start with all the certs, and narrow it down from there.
net::CertificateList all_certs;
CertificateStlList matching_certs;
net::NSSCertDatabase::GetInstance()->ListCerts(&all_certs);
if (all_certs.empty())
return NULL;
for (net::CertificateList::iterator iter = all_certs.begin();
iter != all_certs.end(); ++iter) {
matching_certs.push_back(*iter);
}
// Strip off any certs that don't have the right issuer and/or subject.
if (!pattern.issuer().Empty()) {
matching_certs.remove_if(IssuerFilter(pattern.issuer()));
if (matching_certs.empty())
return NULL;
}
if (!pattern.subject().Empty()) {
matching_certs.remove_if(SubjectFilter(pattern.subject()));
if (matching_certs.empty())
return NULL;
}
if (!pattern.issuer_ca_pems().empty()) {
matching_certs.remove_if(IssuerCaFilter(pattern.issuer_ca_pems()));
if (matching_certs.empty())
return NULL;
}
// Eliminate any certs that don't have private keys associated with
// them. The CheckUserCert call in the filter is a little slow (because of
// underlying PKCS11 calls), so we do this last to reduce the number of times
// we have to call it.
PrivateKeyFilter private_filter(net::CertDatabase::GetInstance());
matching_certs.remove_if(private_filter);
if (matching_certs.empty())
return NULL;
// We now have a list of certificates that match the pattern we're
// looking for. Now we find the one with the latest start date.
scoped_refptr<net::X509Certificate> latest(NULL);
// Iterate over the rest looking for the one that was issued latest.
for (CertificateStlList::iterator iter = matching_certs.begin();
iter != matching_certs.end(); ++iter) {
if (!latest.get() || (*iter)->valid_start() > latest->valid_start())
latest = *iter;
}
return latest;
}
} // namespace certificate_pattern
} // namespace chromeos