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
|
// Copyright 2015 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 <cert.h> // Must be included before certdb.h
#include <certdb.h>
#include <cryptohi.h>
#include <nss.h>
#include <pk11pub.h>
#include <prerror.h>
#include <secder.h>
#include <secmod.h>
#include <secport.h>
#include <memory>
#include "base/debug/leak_annotations.h"
#include "base/logging.h"
#include "base/memory/singleton.h"
#include "base/numerics/safe_conversions.h"
#include "base/pickle.h"
#include "base/strings/stringprintf.h"
#include "crypto/ec_private_key.h"
#include "crypto/nss_util.h"
#include "crypto/nss_util_internal.h"
#include "crypto/rsa_private_key.h"
#include "crypto/scoped_nss_types.h"
#include "net/cert/x509_certificate.h"
#include "net/cert/x509_util.h"
#include "net/cert/x509_util_nss.h"
namespace net {
namespace {
// Microsoft User Principal Name: 1.3.6.1.4.1.311.20.2.3
const uint8_t kUpnOid[] = {0x2b, 0x6, 0x1, 0x4, 0x1,
0x82, 0x37, 0x14, 0x2, 0x3};
// Callback for CERT_DecodeCertPackage(), used in
// CreateOSCertHandlesFromBytes().
SECStatus PR_CALLBACK CollectCertsCallback(void* arg,
SECItem** certs,
int num_certs) {
X509Certificate::OSCertHandles* results =
reinterpret_cast<X509Certificate::OSCertHandles*>(arg);
for (int i = 0; i < num_certs; ++i) {
X509Certificate::OSCertHandle handle =
X509Certificate::CreateOSCertHandleFromBytes(
reinterpret_cast<char*>(certs[i]->data), certs[i]->len);
if (handle)
results->push_back(handle);
}
return SECSuccess;
}
typedef std::unique_ptr<CERTName,
crypto::NSSDestroyer<CERTName, CERT_DestroyName>>
ScopedCERTName;
// Create a new CERTName object from its encoded representation.
// |arena| is the allocation pool to use.
// |data| points to a DER-encoded X.509 DistinguishedName.
// Return a new CERTName pointer on success, or NULL.
CERTName* CreateCertNameFromEncoded(PLArenaPool* arena,
const base::StringPiece& data) {
if (!arena)
return NULL;
ScopedCERTName name(PORT_ArenaZNew(arena, CERTName));
if (!name.get())
return NULL;
SECItem item;
item.len = static_cast<unsigned int>(data.length());
item.data = reinterpret_cast<unsigned char*>(const_cast<char*>(data.data()));
SECStatus rv = SEC_ASN1DecodeItem(arena, name.get(),
SEC_ASN1_GET(CERT_NameTemplate), &item);
if (rv != SECSuccess)
return NULL;
return name.release();
}
} // namespace
namespace x509_util {
void ParsePrincipal(CERTName* name, CertPrincipal* principal) {
// Starting in NSS 3.15, CERTGetNameFunc takes a const CERTName* argument.
#if NSS_VMINOR >= 15
typedef char* (*CERTGetNameFunc)(const CERTName* name);
#else
typedef char* (*CERTGetNameFunc)(CERTName * name);
#endif
// TODO(jcampan): add business_category and serial_number.
// TODO(wtc): NSS has the CERT_GetOrgName, CERT_GetOrgUnitName, and
// CERT_GetDomainComponentName functions, but they return only the most
// general (the first) RDN. NSS doesn't have a function for the street
// address.
static const SECOidTag kOIDs[] = {
SEC_OID_AVA_STREET_ADDRESS, SEC_OID_AVA_ORGANIZATION_NAME,
SEC_OID_AVA_ORGANIZATIONAL_UNIT_NAME, SEC_OID_AVA_DC};
std::vector<std::string>* values[] = {
&principal->street_addresses, &principal->organization_names,
&principal->organization_unit_names, &principal->domain_components};
DCHECK_EQ(arraysize(kOIDs), arraysize(values));
CERTRDN** rdns = name->rdns;
for (size_t rdn = 0; rdns[rdn]; ++rdn) {
CERTAVA** avas = rdns[rdn]->avas;
for (size_t pair = 0; avas[pair] != 0; ++pair) {
SECOidTag tag = CERT_GetAVATag(avas[pair]);
for (size_t oid = 0; oid < arraysize(kOIDs); ++oid) {
if (kOIDs[oid] == tag) {
SECItem* decode_item = CERT_DecodeAVAValue(&avas[pair]->value);
if (!decode_item)
break;
// TODO(wtc): Pass decode_item to CERT_RFC1485_EscapeAndQuote.
std::string value(reinterpret_cast<char*>(decode_item->data),
decode_item->len);
values[oid]->push_back(value);
SECITEM_FreeItem(decode_item, PR_TRUE);
break;
}
}
}
}
// Get CN, L, S, and C.
CERTGetNameFunc get_name_funcs[4] = {CERT_GetCommonName, CERT_GetLocalityName,
CERT_GetStateName, CERT_GetCountryName};
std::string* single_values[4] = {
&principal->common_name, &principal->locality_name,
&principal->state_or_province_name, &principal->country_name};
for (size_t i = 0; i < arraysize(get_name_funcs); ++i) {
char* value = get_name_funcs[i](name);
if (value) {
single_values[i]->assign(value);
PORT_Free(value);
}
}
}
void ParseDate(const SECItem* der_date, base::Time* result) {
PRTime prtime;
SECStatus rv = DER_DecodeTimeChoice(&prtime, der_date);
DCHECK_EQ(SECSuccess, rv);
*result = crypto::PRTimeToBaseTime(prtime);
}
std::string ParseSerialNumber(const CERTCertificate* certificate) {
return std::string(reinterpret_cast<char*>(certificate->serialNumber.data),
certificate->serialNumber.len);
}
bool GetSubjectAltName(CERTCertificate* cert_handle,
std::vector<std::string>* dns_names,
std::vector<std::string>* ip_addrs) {
if (dns_names)
dns_names->clear();
if (ip_addrs)
ip_addrs->clear();
SECItem alt_name;
SECStatus rv = CERT_FindCertExtension(
cert_handle, SEC_OID_X509_SUBJECT_ALT_NAME, &alt_name);
if (rv != SECSuccess)
return false;
crypto::ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
CERTGeneralName* alt_name_list;
alt_name_list = CERT_DecodeAltNameExtension(arena.get(), &alt_name);
SECITEM_FreeItem(&alt_name, PR_FALSE);
bool has_san = false;
CERTGeneralName* name = alt_name_list;
while (name) {
// DNSName and IPAddress are encoded as IA5String and OCTET STRINGs
// respectively, both of which can be byte copied from
// SECItemType::data into the appropriate output vector.
if (name->type == certDNSName) {
has_san = true;
if (dns_names) {
dns_names->push_back(
std::string(reinterpret_cast<char*>(name->name.other.data),
name->name.other.len));
}
} else if (name->type == certIPAddress) {
has_san = true;
if (ip_addrs) {
ip_addrs->push_back(
std::string(reinterpret_cast<char*>(name->name.other.data),
name->name.other.len));
}
}
// Fast path: Found at least one subjectAltName and the caller doesn't
// need the actual values.
if (has_san && !ip_addrs && !dns_names)
return true;
name = CERT_GetNextGeneralName(name);
if (name == alt_name_list)
break;
}
return has_san;
}
void GetRFC822SubjectAltNames(CERTCertificate* cert_handle,
std::vector<std::string>* names) {
crypto::ScopedSECItem alt_name(SECITEM_AllocItem(NULL, NULL, 0));
DCHECK(alt_name.get());
names->clear();
SECStatus rv = CERT_FindCertExtension(
cert_handle, SEC_OID_X509_SUBJECT_ALT_NAME, alt_name.get());
if (rv != SECSuccess)
return;
crypto::ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
DCHECK(arena.get());
CERTGeneralName* alt_name_list;
alt_name_list = CERT_DecodeAltNameExtension(arena.get(), alt_name.get());
CERTGeneralName* name = alt_name_list;
while (name) {
if (name->type == certRFC822Name) {
names->push_back(
std::string(reinterpret_cast<char*>(name->name.other.data),
name->name.other.len));
}
name = CERT_GetNextGeneralName(name);
if (name == alt_name_list)
break;
}
}
void GetUPNSubjectAltNames(CERTCertificate* cert_handle,
std::vector<std::string>* names) {
crypto::ScopedSECItem alt_name(SECITEM_AllocItem(NULL, NULL, 0));
DCHECK(alt_name.get());
names->clear();
SECStatus rv = CERT_FindCertExtension(
cert_handle, SEC_OID_X509_SUBJECT_ALT_NAME, alt_name.get());
if (rv != SECSuccess)
return;
crypto::ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
DCHECK(arena.get());
CERTGeneralName* alt_name_list;
alt_name_list = CERT_DecodeAltNameExtension(arena.get(), alt_name.get());
CERTGeneralName* name = alt_name_list;
while (name) {
if (name->type == certOtherName) {
OtherName* on = &name->name.OthName;
if (on->oid.len == sizeof(kUpnOid) &&
memcmp(on->oid.data, kUpnOid, sizeof(kUpnOid)) == 0) {
SECItem decoded;
if (SEC_QuickDERDecodeItem(arena.get(), &decoded,
SEC_ASN1_GET(SEC_UTF8StringTemplate),
&name->name.OthName.name) == SECSuccess) {
names->push_back(
std::string(reinterpret_cast<char*>(decoded.data), decoded.len));
}
}
}
name = CERT_GetNextGeneralName(name);
if (name == alt_name_list)
break;
}
}
X509Certificate::OSCertHandles CreateOSCertHandlesFromBytes(
const char* data,
size_t length,
X509Certificate::Format format) {
X509Certificate::OSCertHandles results;
crypto::EnsureNSSInit();
if (!NSS_IsInitialized())
return results;
switch (format) {
case X509Certificate::FORMAT_SINGLE_CERTIFICATE: {
X509Certificate::OSCertHandle handle =
X509Certificate::CreateOSCertHandleFromBytes(data, length);
if (handle)
results.push_back(handle);
break;
}
case X509Certificate::FORMAT_PKCS7: {
// Make a copy since CERT_DecodeCertPackage may modify it
std::vector<char> data_copy(data, data + length);
SECStatus result = CERT_DecodeCertPackage(
data_copy.data(), base::checked_cast<int>(data_copy.size()),
CollectCertsCallback, &results);
if (result != SECSuccess)
results.clear();
break;
}
default:
NOTREACHED() << "Certificate format " << format << " unimplemented";
break;
}
return results;
}
X509Certificate::OSCertHandle ReadOSCertHandleFromPickle(
base::PickleIterator* pickle_iter) {
const char* data;
int length;
if (!pickle_iter->ReadData(&data, &length))
return NULL;
return X509Certificate::CreateOSCertHandleFromBytes(data, length);
}
void GetPublicKeyInfo(CERTCertificate* handle,
size_t* size_bits,
X509Certificate::PublicKeyType* type) {
// Since we might fail, set the output parameters to default values first.
*type = X509Certificate::kPublicKeyTypeUnknown;
*size_bits = 0;
crypto::ScopedSECKEYPublicKey key(CERT_ExtractPublicKey(handle));
if (!key.get())
return;
*size_bits = SECKEY_PublicKeyStrengthInBits(key.get());
switch (key->keyType) {
case rsaKey:
*type = X509Certificate::kPublicKeyTypeRSA;
break;
case dsaKey:
*type = X509Certificate::kPublicKeyTypeDSA;
break;
case dhKey:
*type = X509Certificate::kPublicKeyTypeDH;
break;
case ecKey:
*type = X509Certificate::kPublicKeyTypeECDSA;
break;
default:
*type = X509Certificate::kPublicKeyTypeUnknown;
*size_bits = 0;
break;
}
}
bool GetIssuersFromEncodedList(const std::vector<std::string>& encoded_issuers,
PLArenaPool* arena,
std::vector<CERTName*>* out) {
std::vector<CERTName*> result;
for (size_t n = 0; n < encoded_issuers.size(); ++n) {
CERTName* name = CreateCertNameFromEncoded(arena, encoded_issuers[n]);
if (name != NULL)
result.push_back(name);
}
if (result.size() == encoded_issuers.size()) {
out->swap(result);
return true;
}
for (size_t n = 0; n < result.size(); ++n)
CERT_DestroyName(result[n]);
return false;
}
bool IsCertificateIssuedBy(const std::vector<CERTCertificate*>& cert_chain,
const std::vector<CERTName*>& valid_issuers) {
for (size_t n = 0; n < cert_chain.size(); ++n) {
CERTName* cert_issuer = &cert_chain[n]->issuer;
for (size_t i = 0; i < valid_issuers.size(); ++i) {
if (CERT_CompareName(valid_issuers[i], cert_issuer) == SECEqual)
return true;
}
}
return false;
}
std::string GetUniqueNicknameForSlot(const std::string& nickname,
const SECItem* subject,
PK11SlotInfo* slot) {
int index = 2;
std::string new_name = nickname;
std::string temp_nickname = new_name;
std::string token_name;
if (!slot)
return new_name;
if (!PK11_IsInternalKeySlot(slot)) {
token_name.assign(PK11_GetTokenName(slot));
token_name.append(":");
temp_nickname = token_name + new_name;
}
while (SEC_CertNicknameConflict(temp_nickname.c_str(),
const_cast<SECItem*>(subject),
CERT_GetDefaultCertDB())) {
base::SStringPrintf(&new_name, "%s #%d", nickname.c_str(), index++);
temp_nickname = token_name + new_name;
}
return new_name;
}
} // namespace x509_util
} // namespace net
|