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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
/*
* (C) 2016 Kai Michaelis, Rohde & Schwarz Cybersecurity
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include <sstream>
#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/x509cert.h>
#include <botan/certstor.h>
#include <botan/internal/filesystem.h>
#include <botan/pkcs8.h>
#include <botan/pk_keys.h>
#if defined(BOTAN_HAS_CERTSTOR_SQLITE3)
#include <botan/certstor_sqlite.h>
#include <botan/sqlite3.h>
#endif
#endif
namespace Botan_Tests {
namespace {
#if defined(BOTAN_HAS_X509_CERTIFICATES) && defined(BOTAN_HAS_RSA) && defined(BOTAN_TARGET_OS_HAS_FILESYSTEM)
struct CertificateAndKey
{
const Botan::X509_Certificate certificate;
const std::shared_ptr<Botan::Private_Key> private_key;
bool operator!=(const CertificateAndKey& rhs) const
{
return std::tie(certificate, private_key) != std::tie(rhs.certificate, rhs.private_key);
}
};
#if defined(BOTAN_HAS_CERTSTOR_SQLITE3)
Test::Result test_certstor_sqlite3_insert_find_remove_test(const std::vector<CertificateAndKey>& certsandkeys)
{
Test::Result result("Certificate Store SQLITE3 - Insert, Find, Remove");
try
{
auto& rng = Test::rng();
const std::string passwd(reinterpret_cast<const char*>(rng.random_vec(8).data()), 8);
// Just create a database in memory for testing (https://sqlite.org/inmemorydb.html)
Botan::Certificate_Store_In_SQLite store(":memory:", passwd, rng);
for(const auto& a : certsandkeys)
{
store.insert_key(a.certificate, *a.private_key);
}
for(const auto certandkey : certsandkeys)
{
const auto cert = certandkey.certificate;
const auto key = certandkey.private_key;
const auto wo_keyid = store.find_cert(cert.subject_dn(), {});
const auto w_keyid = store.find_cert(cert.subject_dn(), cert.subject_key_id());
if(!wo_keyid || !w_keyid)
{
result.test_failure("Can't retrieve certificate");
return result;
}
const auto priv = store.find_key(cert);
if(!priv && (certsandkeys[1] != certandkey && certsandkeys[0] != certandkey))
{
result.test_failure("Can't retrieve private key for " + cert.fingerprint("SHA1"));
return result;
}
result.test_eq("Got wrong certificate", cert.fingerprint(), w_keyid->fingerprint());
if(priv)
{
result.test_eq("Got wrong private key", key->private_key_bits(), priv->private_key_bits());
const auto rev_certs = store.find_certs_for_key(*priv);
if(rev_certs.empty())
{
result.test_failure("No certificate");
}
else
{
const bool found = std::any_of(rev_certs.begin(),
rev_certs.end(), [&](std::shared_ptr<const Botan::X509_Certificate> c) { return c->fingerprint() == cert.fingerprint(); });
result.test_eq("Got wrong/no certificate", found, true);
}
}
if(certsandkeys[4] != certandkey && certsandkeys[5] != certandkey)
{
result.test_eq("Got wrong certificate", cert.fingerprint(), wo_keyid->fingerprint());
}
result.test_eq("Can't remove certificate", store.remove_cert(cert), true);
result.test_eq("Can't remove certificate", !store.find_cert(cert.subject_dn(), cert.subject_key_id()), true);
if(priv)
{
store.remove_key(*key);
}
result.test_eq("Can't remove key", !store.find_key(cert), true);
}
return result;
}
catch(std::exception& e)
{
result.test_failure(e.what());
return result;
}
}
Test::Result test_certstor_sqlite3_crl_test(const std::vector<CertificateAndKey>& certsandkeys)
{
Test::Result result("Certificate Store SQLITE3 - CRL");
try
{
auto& rng = Test::rng();
const std::string passwd(reinterpret_cast<const char*>(rng.random_vec(8).data()), 8);
// Just create a database in memory for testing (https://sqlite.org/inmemorydb.html)
Botan::Certificate_Store_In_SQLite store(":memory:", passwd, rng);
for(const auto& a : certsandkeys)
{
store.insert_cert(a.certificate);
}
store.revoke_cert(certsandkeys[0].certificate, Botan::CA_COMPROMISE);
store.revoke_cert(certsandkeys[3].certificate, Botan::CA_COMPROMISE);
store.revoke_cert(certsandkeys[3].certificate, Botan::CA_COMPROMISE);
{
const auto crls = store.generate_crls();
result.test_eq("Can't revoke certificate", crls.size(), 2);
result.test_eq("Can't revoke certificate",
crls[0].is_revoked(certsandkeys[0].certificate) ^ crls[1].is_revoked(certsandkeys[0].certificate), true);
result.test_eq("Can't revoke certificate",
crls[0].is_revoked(certsandkeys[3].certificate) ^ crls[1].is_revoked(certsandkeys[3].certificate), true);
}
store.affirm_cert(certsandkeys[3].certificate);
{
const auto crls = store.generate_crls();
result.test_eq("Can't revoke certificate, wrong crl size", crls.size(), 1);
result.test_eq("Can't revoke certificate, cert 0 not revoked", crls[0].is_revoked(certsandkeys[0].certificate), true);
}
const auto cert0_crl = store.find_crl_for(certsandkeys[0].certificate);
result.test_eq("Can't revoke certificate, crl for cert 0", !cert0_crl, false);
result.test_eq("Can't revoke certificate, crl for cert 0 size check", cert0_crl->get_revoked().size(), 1);
result.test_eq("Can't revoke certificate, no crl for cert 0", cert0_crl->is_revoked(certsandkeys[0].certificate), true);
const auto cert3_crl = store.find_crl_for(certsandkeys[3].certificate);
result.test_eq("Can't revoke certificate, crl for cert 3", !cert3_crl, true);
return result;
}
catch(std::exception& e)
{
result.test_failure(e.what());
return result;
}
}
Test::Result test_certstor_sqlite3_all_subjects_test(const std::vector<CertificateAndKey>& certsandkeys)
{
Test::Result result("Certificate Store SQLITE3 - All subjects");
try
{
auto& rng = Test::rng();
const std::string passwd(reinterpret_cast<const char*>(rng.random_vec(8).data()), 8);
// Just create a database in memory for testing (https://sqlite.org/inmemorydb.html)
Botan::Certificate_Store_In_SQLite store(":memory:", passwd, rng);
for(const auto& a : certsandkeys)
{
store.insert_cert(a.certificate);
}
const auto subjects = store.all_subjects();
result.test_eq("Check subject list length", subjects.size(), 6);
for(const auto sub : subjects)
{
std::stringstream ss;
ss << sub;
result.test_eq("Check subject " + ss.str(),
certsandkeys[0].certificate.subject_dn() == sub ||
certsandkeys[1].certificate.subject_dn() == sub ||
certsandkeys[2].certificate.subject_dn() == sub ||
certsandkeys[3].certificate.subject_dn() == sub ||
certsandkeys[4].certificate.subject_dn() == sub ||
certsandkeys[5].certificate.subject_dn() == sub,
true);
}
return result;
}
catch(std::exception& e)
{
result.test_failure(e.what());
return result;
}
}
Test::Result test_certstor_sqlite3_find_all_certs_test(const std::vector<CertificateAndKey>& certsandkeys)
{
Test::Result result("Certificate Store SQLITE3 - Find all certs");
try
{
auto& rng = Test::rng();
const std::string passwd(reinterpret_cast<const char*>(rng.random_vec(8).data()), 8);
// Just create a database in memory for testing (https://sqlite.org/inmemorydb.html)
Botan::Certificate_Store_In_SQLite store(":memory:", passwd, rng);
for(const auto& a : certsandkeys)
{
store.insert_cert(a.certificate);
}
for(const auto& a : certsandkeys)
{
auto res_vec = store.find_all_certs(a.certificate.subject_dn(), a.certificate.subject_key_id());
if(res_vec.size() != 1)
{
result.test_failure("SQLITE all lookup error");
return result;
}
else
{
std::stringstream a_ss;
a_ss << a.certificate.subject_dn();
std::stringstream res_ss;
res_ss << res_vec.at(0)->subject_dn();
result.test_eq("Check subject " + a_ss.str(), a_ss.str(), res_ss.str());
}
}
Botan::X509_Certificate same_dn_1 = Botan::X509_Certificate(
"./src/tests/data/x509/bsi/cert_path_common_14/cert_path_common_14_sub_ca.ca.pem.crt");
Botan::X509_Certificate same_dn_2 = Botan::X509_Certificate(
"./src/tests/data/x509/bsi/cert_path_common_14/cert_path_common_14_wrong_sub_ca.ca.pem.crt");
store.insert_cert(same_dn_1);
store.insert_cert(same_dn_2);
auto res_vec = store.find_all_certs(same_dn_1.subject_dn(), {});
if(res_vec.size() != 2)
{
result.test_failure("SQLITE all lookup error (duplicate) " + std::to_string(res_vec.size()));
return result;
}
else
{
std::stringstream cert_ss;
cert_ss << same_dn_1.subject_dn();
std::stringstream res_ss;
res_ss << res_vec.at(0)->subject_dn();
result.test_eq("Check subject " + cert_ss.str(), cert_ss.str(), res_ss.str());
res_ss.str("");
res_ss << res_vec.at(1)->subject_dn();
result.test_eq("Check subject " + cert_ss.str(), cert_ss.str(), res_ss.str());
}
}
catch(const std::exception& e)
{
result.test_failure(e.what());
return result;
}
return result;
}
#endif
Test::Result test_certstor_find_hash_subject(const std::vector<CertificateAndKey>& certsandkeys)
{
Test::Result result("Certificate Store - Find by subject hash");
try
{
Botan::Certificate_Store_In_Memory store;
for(const auto& a : certsandkeys)
{
store.add_certificate(a.certificate);
}
for(const auto certandkey : certsandkeys)
{
const auto cert = certandkey.certificate;
const auto hash = cert.raw_subject_dn_sha256();
const auto found = store.find_cert_by_raw_subject_dn_sha256(hash);
if(!found)
{
result.test_failure("Can't retrieve certificate " + cert.fingerprint("SHA1"));
return result;
}
result.test_eq("Got wrong certificate", hash, found->raw_subject_dn_sha256());
}
const auto found = store.find_cert_by_raw_subject_dn_sha256(std::vector<uint8_t>(32, 0));
if(found)
{
result.test_failure("Certificate found for dummy hash");
return result;
}
return result;
}
catch(std::exception& e)
{
result.test_failure(e.what());
return result;
}
}
Test::Result test_certstor_load_allcert()
{
Test::Result result("Certificate Store - Load every cert of every files");
// test_dir_bundled dir should contain only one file with 2 certificates
// concatenated (ValidCert and root)
const std::string test_dir_bundled = Test::data_dir() + "/x509/misc/bundledcertdir";
try
{
result.test_note("load certs from dir: " + test_dir_bundled);
// Certificate_Store_In_Memory constructor loads every cert of every files of the dir.
Botan::Certificate_Store_In_Memory store(test_dir_bundled);
// X509_Certificate constructor loads only the first certificate found in the file.
Botan::X509_Certificate root_cert(Test::data_dir() + "/x509/x509test/root.pem");
Botan::X509_Certificate valid_cert(Test::data_dir() + "/x509/x509test/ValidCert.pem");
std::vector<uint8_t> key_id;
result.confirm("Root cert found", store.find_cert(root_cert.subject_dn(), key_id) != nullptr);
result.confirm("ValidCert found", store.find_cert(valid_cert.subject_dn(), key_id) != nullptr);
return result;
}
catch(std::exception& e)
{
result.test_failure(e.what());
return result;
}
}
class Certstor_Tests final : public Test
{
public:
std::vector<Test::Result> run() override
{
if(Botan::has_filesystem_impl() == false)
{
return {Test::Result::Note("Certificate Store",
"Skipping due to missing filesystem access")};
}
const std::string test_dir = Test::data_dir() + "/x509/certstor";
struct CertificateAndKeyFilenames
{
const std::string certificate;
const std::string private_key;
} const certsandkeys_filenames[]
{
{"cert1.crt", "key01.pem"},
{"cert2.crt", "key01.pem"},
{"cert3.crt", "key03.pem"},
{"cert4.crt", "key04.pem"},
{"cert5a.crt", "key05.pem"},
{"cert5b.crt", "key06.pem"},
};
const std::vector<std::string> all_files = Botan::get_files_recursive(test_dir);
if(all_files.empty())
{
Test::Result result("Certificate Store");
result.test_failure("No test files found in " + test_dir);
return {result};
}
auto& rng = Test::rng();
std::vector<CertificateAndKey> certsandkeys;
for(const auto& certandkey_filenames : certsandkeys_filenames)
{
const Botan::X509_Certificate certificate(test_dir + "/" + certandkey_filenames.certificate);
std::shared_ptr<Botan::Private_Key> private_key(Botan::PKCS8::load_key(test_dir + "/" +
certandkey_filenames.private_key, rng));
if(!private_key)
{
Test::Result result("Certificate Store");
result.test_failure("Failed to load key from disk at path: " + test_dir + "/" + certandkey_filenames.private_key);
return {result};
}
certsandkeys.push_back({certificate, private_key});
}
std::vector<Test::Result> results;
results.push_back(test_certstor_find_hash_subject(certsandkeys));
results.push_back(test_certstor_load_allcert());
#if defined(BOTAN_HAS_CERTSTOR_SQLITE3)
results.push_back(test_certstor_sqlite3_insert_find_remove_test(certsandkeys));
results.push_back(test_certstor_sqlite3_crl_test(certsandkeys));
results.push_back(test_certstor_sqlite3_all_subjects_test(certsandkeys));
results.push_back(test_certstor_sqlite3_find_all_certs_test(certsandkeys));
#endif
return results;
}
};
BOTAN_REGISTER_TEST("certstor", Certstor_Tests);
#endif
}
}
|