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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
|
/*
* X.509 Certificates
* (C) 1999-2010,2015 Jack Lloyd
* (C) 2016 René Korthaus, Rohde & Schwarz Cybersecurity
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/x509cert.h>
#include <botan/x509_ext.h>
#include <botan/der_enc.h>
#include <botan/ber_dec.h>
#include <botan/internal/stl_util.h>
#include <botan/parsing.h>
#include <botan/bigint.h>
#include <botan/oids.h>
#include <botan/pem.h>
#include <botan/hash.h>
#include <botan/hex.h>
#include <algorithm>
#include <iterator>
#include <sstream>
namespace Botan {
namespace {
/*
* Lookup each OID in the vector
*/
std::vector<std::string> lookup_oids(const std::vector<std::string>& in)
{
std::vector<std::string> out;
for(auto i = in.begin(); i != in.end(); ++i)
out.push_back(OIDS::lookup(OID(*i)));
return out;
}
}
/*
* X509_Certificate Constructor
*/
X509_Certificate::X509_Certificate(DataSource& in) :
X509_Object(in, "CERTIFICATE/X509 CERTIFICATE"),
m_self_signed(false),
m_v3_extensions(false)
{
do_decode();
}
/*
* X509_Certificate Constructor
*/
X509_Certificate::X509_Certificate(const std::string& in) :
X509_Object(in, "CERTIFICATE/X509 CERTIFICATE"),
m_self_signed(false),
m_v3_extensions(false)
{
do_decode();
}
/*
* X509_Certificate Constructor
*/
X509_Certificate::X509_Certificate(const std::vector<byte>& in) :
X509_Object(in, "CERTIFICATE/X509 CERTIFICATE"),
m_self_signed(false),
m_v3_extensions(false)
{
do_decode();
}
/*
* Decode the TBSCertificate data
*/
void X509_Certificate::force_decode()
{
size_t version;
BigInt serial_bn;
AlgorithmIdentifier sig_algo_inner;
X509_DN dn_issuer, dn_subject;
X509_Time start, end;
BER_Decoder tbs_cert(m_tbs_bits);
tbs_cert.decode_optional(version, ASN1_Tag(0),
ASN1_Tag(CONSTRUCTED | CONTEXT_SPECIFIC))
.decode(serial_bn)
.decode(sig_algo_inner)
.decode(dn_issuer)
.start_cons(SEQUENCE)
.decode(start)
.decode(end)
.verify_end()
.end_cons()
.decode(dn_subject);
if(version > 2)
throw Decoding_Error("Unknown X.509 cert version " + std::to_string(version));
if(m_sig_algo != sig_algo_inner)
throw Decoding_Error("Algorithm identifier mismatch");
m_self_signed = (dn_subject == dn_issuer);
m_subject.add(dn_subject.contents());
m_issuer.add(dn_issuer.contents());
m_subject.add("X509.Certificate.dn_bits", ASN1::put_in_sequence(dn_subject.get_bits()));
m_issuer.add("X509.Certificate.dn_bits", ASN1::put_in_sequence(dn_issuer.get_bits()));
BER_Object public_key = tbs_cert.get_next_object();
if(public_key.type_tag != SEQUENCE || public_key.class_tag != CONSTRUCTED)
throw BER_Bad_Tag("X509_Certificate: Unexpected tag for public key",
public_key.type_tag, public_key.class_tag);
std::vector<byte> v2_issuer_key_id, v2_subject_key_id;
tbs_cert.decode_optional_string(v2_issuer_key_id, BIT_STRING, 1);
tbs_cert.decode_optional_string(v2_subject_key_id, BIT_STRING, 2);
BER_Object v3_exts_data = tbs_cert.get_next_object();
if(v3_exts_data.type_tag == 3 &&
v3_exts_data.class_tag == ASN1_Tag(CONSTRUCTED | CONTEXT_SPECIFIC))
{
BER_Decoder(v3_exts_data.value).decode(m_v3_extensions).verify_end();
m_v3_extensions.contents_to(m_subject, m_issuer);
}
else if(v3_exts_data.type_tag != NO_OBJECT)
throw BER_Bad_Tag("Unknown tag in X.509 cert",
v3_exts_data.type_tag, v3_exts_data.class_tag);
if(tbs_cert.more_items())
throw Decoding_Error("TBSCertificate has more items that expected");
m_subject.add("X509.Certificate.version", static_cast<u32bit>(version));
m_subject.add("X509.Certificate.serial", BigInt::encode(serial_bn));
m_subject.add("X509.Certificate.start", start.to_string());
m_subject.add("X509.Certificate.end", end.to_string());
m_issuer.add("X509.Certificate.v2.key_id", v2_issuer_key_id);
m_subject.add("X509.Certificate.v2.key_id", v2_subject_key_id);
m_subject.add("X509.Certificate.public_key",
hex_encode(public_key.value));
if(m_self_signed && version == 0)
{
m_subject.add("X509v3.BasicConstraints.is_ca", 1);
m_subject.add("X509v3.BasicConstraints.path_constraint", Cert_Extension::NO_CERT_PATH_LIMIT);
}
if(is_CA_cert() &&
!m_subject.has_value("X509v3.BasicConstraints.path_constraint"))
{
const size_t limit = (x509_version() < 3) ?
Cert_Extension::NO_CERT_PATH_LIMIT : 0;
m_subject.add("X509v3.BasicConstraints.path_constraint", static_cast<u32bit>(limit));
}
}
/*
* Return the X.509 version in use
*/
u32bit X509_Certificate::x509_version() const
{
return (m_subject.get1_u32bit("X509.Certificate.version") + 1);
}
/*
* Return the time this cert becomes valid
*/
std::string X509_Certificate::start_time() const
{
return m_subject.get1("X509.Certificate.start");
}
/*
* Return the time this cert becomes invalid
*/
std::string X509_Certificate::end_time() const
{
return m_subject.get1("X509.Certificate.end");
}
/*
* Return information about the subject
*/
std::vector<std::string>
X509_Certificate::subject_info(const std::string& what) const
{
return m_subject.get(X509_DN::deref_info_field(what));
}
/*
* Return information about the issuer
*/
std::vector<std::string>
X509_Certificate::issuer_info(const std::string& what) const
{
return m_issuer.get(X509_DN::deref_info_field(what));
}
/*
* Return the public key in this certificate
*/
Public_Key* X509_Certificate::subject_public_key() const
{
return X509::load_key(
ASN1::put_in_sequence(this->subject_public_key_bits()));
}
std::vector<byte> X509_Certificate::subject_public_key_bits() const
{
return hex_decode(m_subject.get1("X509.Certificate.public_key"));
}
/*
* Check if the certificate is for a CA
*/
bool X509_Certificate::is_CA_cert() const
{
if(!m_subject.get1_u32bit("X509v3.BasicConstraints.is_ca"))
return false;
return allowed_usage(Key_Constraints(KEY_CERT_SIGN));
}
bool X509_Certificate::allowed_usage(Key_Constraints usage) const
{
if(constraints() == NO_CONSTRAINTS)
return true;
return ((constraints() & usage) == usage);
}
bool X509_Certificate::allowed_extended_usage(const std::string& usage) const
{
const std::vector<std::string> ex = ex_constraints();
if(ex.empty())
return true;
if(std::find(ex.begin(), ex.end(), usage) != ex.end())
return true;
return false;
}
bool X509_Certificate::allowed_usage(Usage_Type usage) const
{
// These follow suggestions in RFC 5280 4.2.1.12
switch(usage)
{
case Usage_Type::UNSPECIFIED:
return true;
case Usage_Type::TLS_SERVER_AUTH:
return (allowed_usage(KEY_AGREEMENT) || allowed_usage(KEY_ENCIPHERMENT) || allowed_usage(DIGITAL_SIGNATURE)) && allowed_extended_usage("PKIX.ServerAuth");
case Usage_Type::TLS_CLIENT_AUTH:
return (allowed_usage(DIGITAL_SIGNATURE) || allowed_usage(KEY_AGREEMENT)) && allowed_extended_usage("PKIX.ClientAuth");
case Usage_Type::OCSP_RESPONDER:
return (allowed_usage(DIGITAL_SIGNATURE) || allowed_usage(NON_REPUDIATION)) && allowed_extended_usage("PKIX.OCSPSigning");
case Usage_Type::CERTIFICATE_AUTHORITY:
return is_CA_cert();
}
return false;
}
bool X509_Certificate::has_constraints(Key_Constraints constraints) const
{
if(this->constraints() == NO_CONSTRAINTS)
{
return false;
}
return ((this->constraints() & constraints) != 0);
}
bool X509_Certificate::has_ex_constraint(const std::string& ex_constraint) const
{
const std::vector<std::string> ex = ex_constraints();
if(ex.empty())
{
return false;
}
if(std::find(ex.begin(), ex.end(), ex_constraint) != ex.end())
{
return true;
}
return false;
}
/*
* Return the path length constraint
*/
u32bit X509_Certificate::path_limit() const
{
return m_subject.get1_u32bit("X509v3.BasicConstraints.path_constraint", 0);
}
/*
* Return if a certificate extension is marked critical
*/
bool X509_Certificate::is_critical(const std::string& ex_name) const
{
return !!m_subject.get1_u32bit(ex_name + ".is_critical",0);
}
/*
* Return the key usage constraints
*/
Key_Constraints X509_Certificate::constraints() const
{
return Key_Constraints(m_subject.get1_u32bit("X509v3.KeyUsage",
NO_CONSTRAINTS));
}
/*
* Return the list of extended key usage OIDs
*/
std::vector<std::string> X509_Certificate::ex_constraints() const
{
return lookup_oids(m_subject.get("X509v3.ExtendedKeyUsage"));
}
/*
* Return the name constraints
*/
NameConstraints X509_Certificate::name_constraints() const
{
std::vector<GeneralSubtree> permit, exclude;
for(const std::string& v: m_subject.get("X509v3.NameConstraints.permitted"))
{
permit.push_back(GeneralSubtree(v));
}
for(const std::string& v: m_subject.get("X509v3.NameConstraints.excluded"))
{
exclude.push_back(GeneralSubtree(v));
}
return NameConstraints(std::move(permit),std::move(exclude));
}
/*
* Return the list of certificate policies
*/
std::vector<std::string> X509_Certificate::policies() const
{
return lookup_oids(m_subject.get("X509v3.CertificatePolicies"));
}
Extensions X509_Certificate::v3_extensions() const
{
return m_v3_extensions;
}
std::string X509_Certificate::ocsp_responder() const
{
return m_subject.get1("OCSP.responder", "");
}
std::string X509_Certificate::crl_distribution_point() const
{
return m_subject.get1("CRL.DistributionPoint", "");
}
/*
* Return the authority key id
*/
std::vector<byte> X509_Certificate::authority_key_id() const
{
return m_issuer.get1_memvec("X509v3.AuthorityKeyIdentifier");
}
/*
* Return the subject key id
*/
std::vector<byte> X509_Certificate::subject_key_id() const
{
return m_subject.get1_memvec("X509v3.SubjectKeyIdentifier");
}
/*
* Return the certificate serial number
*/
std::vector<byte> X509_Certificate::serial_number() const
{
return m_subject.get1_memvec("X509.Certificate.serial");
}
X509_DN X509_Certificate::issuer_dn() const
{
return create_dn(m_issuer);
}
std::vector<byte> X509_Certificate::raw_issuer_dn() const
{
return m_issuer.get1_memvec("X509.Certificate.dn_bits");
}
X509_DN X509_Certificate::subject_dn() const
{
return create_dn(m_subject);
}
std::vector<byte> X509_Certificate::raw_subject_dn() const
{
return m_subject.get1_memvec("X509.Certificate.dn_bits");
}
std::string X509_Certificate::fingerprint(const std::string& hash_name) const
{
std::unique_ptr<HashFunction> hash(HashFunction::create(hash_name));
hash->update(this->BER_encode());
const auto hex_print = hex_encode(hash->final());
std::string formatted_print;
for(size_t i = 0; i != hex_print.size(); i += 2)
{
formatted_print.push_back(hex_print[i]);
formatted_print.push_back(hex_print[i+1]);
if(i != hex_print.size() - 2)
formatted_print.push_back(':');
}
return formatted_print;
}
bool X509_Certificate::matches_dns_name(const std::string& name) const
{
if(name.empty())
return false;
std::vector<std::string> issued_names = subject_info("DNS");
// Fall back to CN only if no DNS names are set (RFC 6125 sec 6.4.4)
if(issued_names.empty())
issued_names = subject_info("Name");
for(size_t i = 0; i != issued_names.size(); ++i)
{
if(host_wildcard_match(issued_names[i], name))
return true;
}
return false;
}
/*
* Compare two certificates for equality
*/
bool X509_Certificate::operator==(const X509_Certificate& other) const
{
return (m_sig == other.m_sig &&
m_sig_algo == other.m_sig_algo &&
m_self_signed == other.m_self_signed &&
m_issuer == other.m_issuer &&
m_subject == other.m_subject);
}
bool X509_Certificate::operator<(const X509_Certificate& other) const
{
/* If signature values are not equal, sort by lexicographic ordering of that */
if(m_sig != other.m_sig)
{
if(m_sig < other.m_sig)
return true;
return false;
}
// Then compare the signed contents
return m_tbs_bits < other.m_tbs_bits;
}
/*
* X.509 Certificate Comparison
*/
bool operator!=(const X509_Certificate& cert1, const X509_Certificate& cert2)
{
return !(cert1 == cert2);
}
std::string X509_Certificate::to_string() const
{
const std::vector<std::string> dn_fields{
"Name",
"Email",
"Organization",
"Organizational Unit",
"Locality",
"State",
"Country",
"IP",
"DNS",
"URI",
"PKIX.XMPPAddr"
};
std::ostringstream out;
for(auto&& field : dn_fields)
{
for(auto&& val : subject_info(field))
{
out << "Subject " << field << ": " << val << "\n";
}
}
for(auto&& field : dn_fields)
{
for(auto&& val : issuer_info(field))
{
out << "Issuer " << field << ": " << val << "\n";
}
}
out << "Version: " << this->x509_version() << "\n";
out << "Not valid before: " << this->start_time() << "\n";
out << "Not valid after: " << this->end_time() << "\n";
out << "Constraints:\n";
Key_Constraints constraints = this->constraints();
if(constraints == NO_CONSTRAINTS)
out << " None\n";
else
{
if(constraints & DIGITAL_SIGNATURE)
out << " Digital Signature\n";
if(constraints & NON_REPUDIATION)
out << " Non-Repudiation\n";
if(constraints & KEY_ENCIPHERMENT)
out << " Key Encipherment\n";
if(constraints & DATA_ENCIPHERMENT)
out << " Data Encipherment\n";
if(constraints & KEY_AGREEMENT)
out << " Key Agreement\n";
if(constraints & KEY_CERT_SIGN)
out << " Cert Sign\n";
if(constraints & CRL_SIGN)
out << " CRL Sign\n";
if(constraints & ENCIPHER_ONLY)
out << " Encipher Only\n";
if(constraints & DECIPHER_ONLY)
out << " Decipher Only\n";
}
std::vector<std::string> policies = this->policies();
if(!policies.empty())
{
out << "Policies: " << "\n";
for(size_t i = 0; i != policies.size(); i++)
out << " " << policies[i] << "\n";
}
std::vector<std::string> ex_constraints = this->ex_constraints();
if(!ex_constraints.empty())
{
out << "Extended Constraints:\n";
for(size_t i = 0; i != ex_constraints.size(); i++)
out << " " << ex_constraints[i] << "\n";
}
NameConstraints name_constraints = this->name_constraints();
if(!name_constraints.permitted().empty() ||
!name_constraints.excluded().empty())
{
out << "Name Constraints:\n";
if(!name_constraints.permitted().empty())
{
out << " Permit";
for(auto st: name_constraints.permitted())
{
out << " " << st.base();
}
out << "\n";
}
if(!name_constraints.excluded().empty())
{
out << " Exclude";
for(auto st: name_constraints.excluded())
{
out << " " << st.base();
}
out << "\n";
}
}
if(!ocsp_responder().empty())
out << "OCSP responder " << ocsp_responder() << "\n";
if(!crl_distribution_point().empty())
out << "CRL " << crl_distribution_point() << "\n";
out << "Signature algorithm: " <<
OIDS::lookup(this->signature_algorithm().oid) << "\n";
out << "Serial number: " << hex_encode(this->serial_number()) << "\n";
if(this->authority_key_id().size())
out << "Authority keyid: " << hex_encode(this->authority_key_id()) << "\n";
if(this->subject_key_id().size())
out << "Subject keyid: " << hex_encode(this->subject_key_id()) << "\n";
std::unique_ptr<X509_PublicKey> pubkey(this->subject_public_key());
out << "Public Key:\n" << X509::PEM_encode(*pubkey);
return out.str();
}
/*
* Create and populate a X509_DN
*/
X509_DN create_dn(const Data_Store& info)
{
auto names = info.search_for(
[](const std::string& key, const std::string&)
{
return (key.find("X520.") != std::string::npos);
});
X509_DN dn;
for(auto i = names.begin(); i != names.end(); ++i)
dn.add_attribute(i->first, i->second);
return dn;
}
/*
* Create and populate an AlternativeName
*/
AlternativeName create_alt_name(const Data_Store& info)
{
auto names = info.search_for(
[](const std::string& key, const std::string&)
{
return (key == "RFC822" ||
key == "DNS" ||
key == "URI" ||
key == "IP");
});
AlternativeName alt_name;
for(auto i = names.begin(); i != names.end(); ++i)
alt_name.add_attribute(i->first, i->second);
return alt_name;
}
}
|