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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
/*
* X.509 Certificate Path Validation
* (C) 2010,2011,2012 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/x509path.h>
#include <botan/ocsp.h>
#include <botan/http_util.h>
#include <botan/parsing.h>
#include <botan/pubkey.h>
#include <botan/oids.h>
#include <algorithm>
#include <chrono>
#include <memory>
#include <iostream>
namespace Botan {
namespace {
const X509_Certificate* find_issuing_cert(const X509_Certificate& cert,
const std::vector<Certificate_Store*>& certstores)
{
const X509_DN issuer_dn = cert.issuer_dn();
const std::vector<byte> auth_key_id = cert.authority_key_id();
for(size_t i = 0; i != certstores.size(); ++i)
{
if(const X509_Certificate* cert = certstores[i]->find_cert(issuer_dn, auth_key_id))
return cert;
}
return nullptr;
}
const X509_CRL* find_crls_from(const X509_Certificate& cert,
const std::vector<Certificate_Store*>& certstores)
{
const X509_DN issuer_dn = cert.subject_dn();
const std::vector<byte> auth_key_id = cert.subject_key_id();
for(size_t i = 0; i != certstores.size(); ++i)
{
if(const X509_CRL* crl = certstores[i]->find_crl(cert))
return crl;
}
#if 0
const std::string crl_url = cert.crl_distribution_point();
if(crl_url != "")
{
std::cout << "Downloading CRL " << crl_url << "\n";
auto http = HTTP::GET_sync(crl_url);
std::cout << http.status_message() << "\n";
http.throw_unless_ok();
// check the mime type
std::unique_ptr<X509_CRL> crl(new X509_CRL(http.body()));
return crl.release();
}
#endif
return nullptr;
}
Certificate_Status_Code check_chain(const std::vector<X509_Certificate>& cert_path,
const Path_Validation_Restrictions& restrictions,
const std::vector<Certificate_Store*>& certstores)
{
const std::set<std::string>& trusted_hashes = restrictions.trusted_hashes();
const bool self_signed_ee_cert = (cert_path.size() == 1);
X509_Time current_time(std::chrono::system_clock::now());
std::vector<std::future<OCSP::Response>> ocsp_responses;
for(size_t i = 0; i != cert_path.size(); ++i)
{
const bool at_self_signed_root = (i == cert_path.size() - 1);
const X509_Certificate& subject = cert_path[i];
const X509_Certificate& issuer = cert_path[at_self_signed_root ? (i) : (i + 1)];
const Certificate_Store* trusted = certstores[0]; // fixme
if(i == 0 || restrictions.ocsp_all_intermediates())
ocsp_responses.push_back(
std::async(std::launch::async,
OCSP::online_check, issuer, subject, trusted));
// Check all certs for valid time range
if(current_time < X509_Time(subject.start_time()))
return Certificate_Status_Code::CERT_NOT_YET_VALID;
if(current_time > X509_Time(subject.end_time()))
return Certificate_Status_Code::CERT_HAS_EXPIRED;
// Check issuer constraints
// Don't require CA bit set on self-signed end entity cert
if(!issuer.is_CA_cert() && !self_signed_ee_cert)
return Certificate_Status_Code::CA_CERT_NOT_FOR_CERT_ISSUER;
if(issuer.path_limit() < i)
return Certificate_Status_Code::CERT_CHAIN_TOO_LONG;
std::unique_ptr<Public_Key> issuer_key(issuer.subject_public_key());
if(subject.check_signature(*issuer_key) == false)
return Certificate_Status_Code::SIGNATURE_ERROR;
if(issuer_key->estimated_strength() < restrictions.minimum_key_strength())
return Certificate_Status_Code::SIGNATURE_METHOD_TOO_WEAK;
if(!trusted_hashes.empty() && !at_self_signed_root)
if(!trusted_hashes.count(subject.hash_used_for_signature()))
return Certificate_Status_Code::UNTRUSTED_HASH;
}
for(size_t i = 0; i != cert_path.size() - 1; ++i)
{
const X509_Certificate& subject = cert_path[i];
const X509_Certificate& ca = cert_path[i+1];
if(i < ocsp_responses.size())
{
try
{
OCSP::Response ocsp = ocsp_responses[i].get();
auto status = ocsp.status_for(ca, subject);
if(status == CERT_IS_REVOKED)
return status;
if(status == OCSP_RESPONSE_GOOD)
{
if(i == 0 && !restrictions.ocsp_all_intermediates())
return status; // return immediately to just OCSP end cert
else
continue;
}
}
catch(std::exception& e)
{
}
}
const X509_CRL* crl_p = find_crls_from(ca, certstores);
if(!crl_p)
{
if(restrictions.require_revocation_information())
return Certificate_Status_Code::NO_REVOCATION_DATA;
continue;
}
const X509_CRL& crl = *crl_p;
if(!ca.allowed_usage(CRL_SIGN))
return Certificate_Status_Code::CA_CERT_NOT_FOR_CRL_ISSUER;
if(current_time < X509_Time(crl.this_update()))
return Certificate_Status_Code::CRL_NOT_YET_VALID;
if(current_time > X509_Time(crl.next_update()))
return Certificate_Status_Code::CRL_HAS_EXPIRED;
if(crl.check_signature(ca.subject_public_key()) == false)
return Certificate_Status_Code::SIGNATURE_ERROR;
if(crl.is_revoked(subject))
return Certificate_Status_Code::CERT_IS_REVOKED;
}
if(self_signed_ee_cert)
return Certificate_Status_Code::CANNOT_ESTABLISH_TRUST;
return Certificate_Status_Code::VERIFIED;
}
}
Path_Validation_Result x509_path_validate(
const std::vector<X509_Certificate>& end_certs,
const Path_Validation_Restrictions& restrictions,
const std::vector<Certificate_Store*>& certstores)
{
if(end_certs.empty())
throw std::invalid_argument("x509_path_validate called with no subjects");
std::vector<X509_Certificate> cert_path = end_certs;
// iterate until we reach a root or cannot find the issuer
while(!cert_path.back().is_self_signed())
{
const X509_Certificate* cert = find_issuing_cert(cert_path.back(), certstores);
if(!cert)
return Path_Validation_Result(Certificate_Status_Code::CERT_ISSUER_NOT_FOUND);
cert_path.push_back(*cert);
}
Certificate_Status_Code res = check_chain(cert_path, restrictions, certstores);
return Path_Validation_Result(res, std::move(cert_path));
}
Path_Validation_Result x509_path_validate(
const X509_Certificate& end_cert,
const Path_Validation_Restrictions& restrictions,
const std::vector<Certificate_Store*>& certstores)
{
std::vector<X509_Certificate> certs;
certs.push_back(end_cert);
return x509_path_validate(certs, restrictions, certstores);
}
Path_Validation_Result x509_path_validate(
const std::vector<X509_Certificate>& end_certs,
const Path_Validation_Restrictions& restrictions,
const Certificate_Store& store)
{
std::vector<Certificate_Store*> certstores;
certstores.push_back(const_cast<Certificate_Store*>(&store));
return x509_path_validate(end_certs, restrictions, certstores);
}
Path_Validation_Result x509_path_validate(
const X509_Certificate& end_cert,
const Path_Validation_Restrictions& restrictions,
const Certificate_Store& store)
{
std::vector<X509_Certificate> certs;
certs.push_back(end_cert);
std::vector<Certificate_Store*> certstores;
certstores.push_back(const_cast<Certificate_Store*>(&store));
return x509_path_validate(certs, restrictions, certstores);
}
Path_Validation_Restrictions::Path_Validation_Restrictions(bool require_rev,
size_t key_strength,
bool ocsp_all) :
m_require_revocation_information(require_rev),
m_ocsp_all_intermediates(ocsp_all),
m_minimum_key_strength(key_strength)
{
if(key_strength <= 80)
m_trusted_hashes.insert("SHA-160");
m_trusted_hashes.insert("SHA-224");
m_trusted_hashes.insert("SHA-256");
m_trusted_hashes.insert("SHA-384");
m_trusted_hashes.insert("SHA-512");
}
const X509_Certificate& Path_Validation_Result::trust_root() const
{
return m_cert_path[m_cert_path.size()-1];
}
std::set<std::string> Path_Validation_Result::trusted_hashes() const
{
std::set<std::string> hashes;
for(size_t i = 0; i != m_cert_path.size(); ++i)
hashes.insert(m_cert_path[i].hash_used_for_signature());
return hashes;
}
bool Path_Validation_Result::successful_validation() const
{
if(status() == VERIFIED || status() == OCSP_RESPONSE_GOOD)
return true;
return false;
}
std::string Path_Validation_Result::result_string() const
{
return status_string(m_status);
}
std::string Path_Validation_Result::status_string(Certificate_Status_Code code)
{
switch(code)
{
case VERIFIED:
return "verified";
case UNKNOWN_X509_ERROR:
return "unknown error";
case CANNOT_ESTABLISH_TRUST:
return "cannot establish trust";
case CERT_CHAIN_TOO_LONG:
return "certificate chain too long";
case SIGNATURE_ERROR:
return "signature error";
case SIGNATURE_METHOD_TOO_WEAK:
return "signature method too weak";
case POLICY_ERROR:
return "policy error";
case INVALID_USAGE:
return "invalid usage";
case UNTRUSTED_HASH:
return "untrusted hash function";
case CERT_MULTIPLE_ISSUERS_FOUND:
return "Multiple certificate issuers found";
case CERT_FORMAT_ERROR:
return "Certificate format error";
case CERT_ISSUER_NOT_FOUND:
return "Certificate issuer not found";
case CERT_NOT_YET_VALID:
return "Certificate is not yet valid";
case CERT_HAS_EXPIRED:
return "Certificate has expired";
case CERT_IS_REVOKED:
return "Certificate is revoked";
case NO_REVOCATION_DATA:
return "No revocation data available";
case CRL_FORMAT_ERROR:
return "CRL format error";
case CRL_NOT_YET_VALID:
return "CRL is not yet valid";
case CRL_HAS_EXPIRED:
return "CRL has expired";
case CRL_NOT_FOUND:
return "CRL not found";
case CA_CERT_CANNOT_SIGN:
return "CA certificate cannot sign";
case CA_CERT_NOT_FOR_CERT_ISSUER:
return "CA certificate not allowed to issue certs";
case CA_CERT_NOT_FOR_CRL_ISSUER:
return "CA certificate not allowed to issue CRLs";
case OCSP_CERT_NOT_LISTED:
return "OCSP response does not included requested cert";
case OCSP_NOT_YET_VALID:
return "OCSP response is from the future";
case OCSP_EXPIRED:
return "OCSP response is expired";
case OCSP_BAD_STATUS:
return "OCSP response had unknown/bad status";
case OCSP_RESPONSE_GOOD:
return "OCSP response had good status";
}
// default case
return "Unknown code " + std::to_string(code);
}
}
|