blob: 05c82de8a64c3b8143903eb90684c88877886543 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2012, Google Inc.
4 * Copyright 2012, RTFM, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
wu@webrtc.org4551b792013-10-09 15:37:36 +000029#include <algorithm>
30#include <string>
31#include <vector>
32
henrike@webrtc.org28e20752013-07-10 00:45:36 +000033#if HAVE_CONFIG_H
34#include "config.h"
35#endif // HAVE_CONFIG_H
36
37#if HAVE_NSS_SSL_H
38
39#include "talk/base/nssidentity.h"
40
henrike@webrtc.org28e20752013-07-10 00:45:36 +000041#include "cert.h"
42#include "cryptohi.h"
43#include "keyhi.h"
44#include "nss.h"
45#include "pk11pub.h"
46#include "sechash.h"
47
henrike@webrtc.org28e20752013-07-10 00:45:36 +000048#include "talk/base/logging.h"
49#include "talk/base/helpers.h"
50#include "talk/base/nssstreamadapter.h"
jiayl@webrtc.orga576faf2014-01-29 17:45:53 +000051#include "talk/base/safe_conversions.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000052
53namespace talk_base {
54
wu@webrtc.orgf6d6ed02014-01-03 22:08:47 +000055// Certificate validity lifetime in seconds.
56static const int CERTIFICATE_LIFETIME = 60*60*24*30; // 30 days, arbitrarily
57// Certificate validity window in seconds.
58// This is to compensate for slightly incorrect system clocks.
59static const int CERTIFICATE_WINDOW = -60*60*24;
60
henrike@webrtc.org28e20752013-07-10 00:45:36 +000061NSSKeyPair::~NSSKeyPair() {
62 if (privkey_)
63 SECKEY_DestroyPrivateKey(privkey_);
64 if (pubkey_)
65 SECKEY_DestroyPublicKey(pubkey_);
66}
67
68NSSKeyPair *NSSKeyPair::Generate() {
69 SECKEYPrivateKey *privkey = NULL;
70 SECKEYPublicKey *pubkey = NULL;
71 PK11RSAGenParams rsaparams;
72 rsaparams.keySizeInBits = 1024;
73 rsaparams.pe = 0x010001; // 65537 -- a common RSA public exponent.
74
75 privkey = PK11_GenerateKeyPair(NSSContext::GetSlot(),
76 CKM_RSA_PKCS_KEY_PAIR_GEN,
77 &rsaparams, &pubkey, PR_FALSE /*permanent*/,
78 PR_FALSE /*sensitive*/, NULL);
79 if (!privkey) {
80 LOG(LS_ERROR) << "Couldn't generate key pair";
81 return NULL;
82 }
83
84 return new NSSKeyPair(privkey, pubkey);
85}
86
87// Just make a copy.
88NSSKeyPair *NSSKeyPair::GetReference() {
89 SECKEYPrivateKey *privkey = SECKEY_CopyPrivateKey(privkey_);
90 if (!privkey)
91 return NULL;
92
93 SECKEYPublicKey *pubkey = SECKEY_CopyPublicKey(pubkey_);
94 if (!pubkey) {
95 SECKEY_DestroyPrivateKey(privkey);
96 return NULL;
97 }
98
99 return new NSSKeyPair(privkey, pubkey);
100}
101
wu@webrtc.org4551b792013-10-09 15:37:36 +0000102NSSCertificate::NSSCertificate(CERTCertificate* cert)
103 : certificate_(CERT_DupCertificate(cert)) {
104 ASSERT(certificate_ != NULL);
105}
106
107static void DeleteCert(SSLCertificate* cert) {
108 delete cert;
109}
110
111NSSCertificate::NSSCertificate(CERTCertList* cert_list) {
112 // Copy the first cert into certificate_.
113 CERTCertListNode* node = CERT_LIST_HEAD(cert_list);
114 certificate_ = CERT_DupCertificate(node->cert);
115
116 // Put any remaining certificates into the chain.
117 node = CERT_LIST_NEXT(node);
118 std::vector<SSLCertificate*> certs;
119 for (; !CERT_LIST_END(node, cert_list); node = CERT_LIST_NEXT(node)) {
120 certs.push_back(new NSSCertificate(node->cert));
121 }
122
123 if (!certs.empty())
124 chain_.reset(new SSLCertChain(certs));
125
126 // The SSLCertChain constructor copies its input, so now we have to delete
127 // the originals.
128 std::for_each(certs.begin(), certs.end(), DeleteCert);
129}
130
131NSSCertificate::NSSCertificate(CERTCertificate* cert, SSLCertChain* chain)
132 : certificate_(CERT_DupCertificate(cert)) {
133 ASSERT(certificate_ != NULL);
134 if (chain)
135 chain_.reset(chain->Copy());
136}
137
138
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000139NSSCertificate *NSSCertificate::FromPEMString(const std::string &pem_string) {
140 std::string der;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000141 if (!SSLIdentity::PemToDer(kPemTypeCertificate, pem_string, &der))
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000142 return NULL;
143
144 SECItem der_cert;
145 der_cert.data = reinterpret_cast<unsigned char *>(const_cast<char *>(
146 der.data()));
jiayl@webrtc.orga576faf2014-01-29 17:45:53 +0000147 der_cert.len = checked_cast<unsigned int>(der.size());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000148 CERTCertificate *cert = CERT_NewTempCertificate(CERT_GetDefaultCertDB(),
149 &der_cert, NULL, PR_FALSE, PR_TRUE);
150
151 if (!cert)
152 return NULL;
153
wu@webrtc.org4551b792013-10-09 15:37:36 +0000154 NSSCertificate* ret = new NSSCertificate(cert);
155 CERT_DestroyCertificate(cert);
156 return ret;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000157}
158
159NSSCertificate *NSSCertificate::GetReference() const {
wu@webrtc.org4551b792013-10-09 15:37:36 +0000160 return new NSSCertificate(certificate_, chain_.get());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000161}
162
163std::string NSSCertificate::ToPEMString() const {
wu@webrtc.org91053e72013-08-10 07:18:04 +0000164 return SSLIdentity::DerToPem(kPemTypeCertificate,
165 certificate_->derCert.data,
166 certificate_->derCert.len);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000167}
168
wu@webrtc.org4551b792013-10-09 15:37:36 +0000169void NSSCertificate::ToDER(Buffer* der_buffer) const {
170 der_buffer->SetData(certificate_->derCert.data, certificate_->derCert.len);
171}
172
wu@webrtc.orgf6d6ed02014-01-03 22:08:47 +0000173static bool Certifies(CERTCertificate* parent, CERTCertificate* child) {
174 // TODO(bemasc): Identify stricter validation checks to use here. In the
175 // context of some future identity standard, it might make sense to check
176 // the certificates' roles, expiration dates, self-signatures (if
177 // self-signed), certificate transparency logging, or many other attributes.
178 // NOTE: Future changes to this validation may reject some previously allowed
179 // certificate chains. Users should be advised not to deploy chained
180 // certificates except in controlled environments until the validity
181 // requirements are finalized.
182
183 // Check that the parent's name is the same as the child's claimed issuer.
184 SECComparison name_status =
185 CERT_CompareName(&child->issuer, &parent->subject);
186 if (name_status != SECEqual)
187 return false;
188
189 // Extract the parent's public key, or fail if the key could not be read
190 // (e.g. certificate is corrupted).
191 SECKEYPublicKey* parent_key = CERT_ExtractPublicKey(parent);
192 if (!parent_key)
193 return false;
194
195 // Check that the parent's privkey was actually used to generate the child's
196 // signature.
197 SECStatus verified = CERT_VerifySignedDataWithPublicKey(
198 &child->signatureWrap, parent_key, NULL);
199 SECKEY_DestroyPublicKey(parent_key);
200 return verified == SECSuccess;
201}
202
203bool NSSCertificate::IsValidChain(const CERTCertList* cert_list) {
204 CERTCertListNode* child = CERT_LIST_HEAD(cert_list);
205 for (CERTCertListNode* parent = CERT_LIST_NEXT(child);
206 !CERT_LIST_END(parent, cert_list);
207 child = parent, parent = CERT_LIST_NEXT(parent)) {
208 if (!Certifies(parent->cert, child->cert))
209 return false;
210 }
211 return true;
212}
213
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214bool NSSCertificate::GetDigestLength(const std::string &algorithm,
215 std::size_t *length) {
216 const SECHashObject *ho;
217
218 if (!GetDigestObject(algorithm, &ho))
219 return false;
220
221 *length = ho->length;
222
223 return true;
224}
225
mallinath@webrtc.org19f27e62013-10-13 17:18:27 +0000226bool NSSCertificate::GetSignatureDigestAlgorithm(std::string* algorithm) const {
227 // The function sec_DecodeSigAlg in NSS provides this mapping functionality.
228 // Unfortunately it is private, so the functionality must be duplicated here.
229 // See https://bugzilla.mozilla.org/show_bug.cgi?id=925165 .
230 SECOidTag sig_alg = SECOID_GetAlgorithmTag(&certificate_->signature);
231 switch (sig_alg) {
232 case SEC_OID_PKCS1_MD5_WITH_RSA_ENCRYPTION:
233 *algorithm = DIGEST_MD5;
234 break;
235 case SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION:
236 case SEC_OID_ISO_SHA_WITH_RSA_SIGNATURE:
237 case SEC_OID_ISO_SHA1_WITH_RSA_SIGNATURE:
238 case SEC_OID_ANSIX9_DSA_SIGNATURE_WITH_SHA1_DIGEST:
239 case SEC_OID_BOGUS_DSA_SIGNATURE_WITH_SHA1_DIGEST:
240 case SEC_OID_ANSIX962_ECDSA_SHA1_SIGNATURE:
241 case SEC_OID_MISSI_DSS:
242 case SEC_OID_MISSI_KEA_DSS:
243 case SEC_OID_MISSI_KEA_DSS_OLD:
244 case SEC_OID_MISSI_DSS_OLD:
245 *algorithm = DIGEST_SHA_1;
246 break;
247 case SEC_OID_ANSIX962_ECDSA_SHA224_SIGNATURE:
248 case SEC_OID_PKCS1_SHA224_WITH_RSA_ENCRYPTION:
249 case SEC_OID_NIST_DSA_SIGNATURE_WITH_SHA224_DIGEST:
250 *algorithm = DIGEST_SHA_224;
251 break;
252 case SEC_OID_ANSIX962_ECDSA_SHA256_SIGNATURE:
253 case SEC_OID_PKCS1_SHA256_WITH_RSA_ENCRYPTION:
254 case SEC_OID_NIST_DSA_SIGNATURE_WITH_SHA256_DIGEST:
255 *algorithm = DIGEST_SHA_256;
256 break;
257 case SEC_OID_ANSIX962_ECDSA_SHA384_SIGNATURE:
258 case SEC_OID_PKCS1_SHA384_WITH_RSA_ENCRYPTION:
259 *algorithm = DIGEST_SHA_384;
260 break;
261 case SEC_OID_ANSIX962_ECDSA_SHA512_SIGNATURE:
262 case SEC_OID_PKCS1_SHA512_WITH_RSA_ENCRYPTION:
263 *algorithm = DIGEST_SHA_512;
264 break;
265 default:
266 // Unknown algorithm. There are several unhandled options that are less
267 // common and more complex.
268 algorithm->clear();
269 return false;
270 }
271 return true;
272}
273
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000274bool NSSCertificate::ComputeDigest(const std::string &algorithm,
275 unsigned char *digest, std::size_t size,
276 std::size_t *length) const {
277 const SECHashObject *ho;
278
279 if (!GetDigestObject(algorithm, &ho))
280 return false;
281
282 if (size < ho->length) // Sanity check for fit
283 return false;
284
285 SECStatus rv = HASH_HashBuf(ho->type, digest,
286 certificate_->derCert.data,
287 certificate_->derCert.len);
288 if (rv != SECSuccess)
289 return false;
290
291 *length = ho->length;
292
293 return true;
294}
295
wu@webrtc.org4551b792013-10-09 15:37:36 +0000296bool NSSCertificate::GetChain(SSLCertChain** chain) const {
297 if (!chain_)
298 return false;
299
300 *chain = chain_->Copy();
301 return true;
302}
303
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000304bool NSSCertificate::Equals(const NSSCertificate *tocompare) const {
305 if (!certificate_->derCert.len)
306 return false;
307 if (!tocompare->certificate_->derCert.len)
308 return false;
309
310 if (certificate_->derCert.len != tocompare->certificate_->derCert.len)
311 return false;
312
313 return memcmp(certificate_->derCert.data,
314 tocompare->certificate_->derCert.data,
315 certificate_->derCert.len) == 0;
316}
317
318
319bool NSSCertificate::GetDigestObject(const std::string &algorithm,
320 const SECHashObject **hop) {
321 const SECHashObject *ho;
322 HASH_HashType hash_type;
323
324 if (algorithm == DIGEST_SHA_1) {
325 hash_type = HASH_AlgSHA1;
326 // HASH_AlgSHA224 is not supported in the chromium linux build system.
327#if 0
328 } else if (algorithm == DIGEST_SHA_224) {
329 hash_type = HASH_AlgSHA224;
330#endif
331 } else if (algorithm == DIGEST_SHA_256) {
332 hash_type = HASH_AlgSHA256;
333 } else if (algorithm == DIGEST_SHA_384) {
334 hash_type = HASH_AlgSHA384;
335 } else if (algorithm == DIGEST_SHA_512) {
336 hash_type = HASH_AlgSHA512;
337 } else {
338 return false;
339 }
340
341 ho = HASH_GetHashObject(hash_type);
342
343 ASSERT(ho->length >= 20); // Can't happen
344 *hop = ho;
345
346 return true;
347}
348
349
wu@webrtc.orgf6d6ed02014-01-03 22:08:47 +0000350NSSIdentity* NSSIdentity::GenerateInternal(const SSLIdentityParams& params) {
351 std::string subject_name_string = "CN=" + params.common_name;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000352 CERTName *subject_name = CERT_AsciiToName(
353 const_cast<char *>(subject_name_string.c_str()));
354 NSSIdentity *identity = NULL;
355 CERTSubjectPublicKeyInfo *spki = NULL;
356 CERTCertificateRequest *certreq = NULL;
357 CERTValidity *validity;
358 CERTCertificate *certificate = NULL;
359 NSSKeyPair *keypair = NSSKeyPair::Generate();
360 SECItem inner_der;
361 SECStatus rv;
362 PLArenaPool* arena;
363 SECItem signed_cert;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000364 PRTime now = PR_Now();
wu@webrtc.orgf6d6ed02014-01-03 22:08:47 +0000365 PRTime not_before =
366 now + static_cast<PRTime>(params.not_before) * PR_USEC_PER_SEC;
367 PRTime not_after =
368 now + static_cast<PRTime>(params.not_after) * PR_USEC_PER_SEC;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000369
370 inner_der.len = 0;
371 inner_der.data = NULL;
372
373 if (!keypair) {
374 LOG(LS_ERROR) << "Couldn't generate key pair";
375 goto fail;
376 }
377
378 if (!subject_name) {
379 LOG(LS_ERROR) << "Couldn't convert subject name " << subject_name;
380 goto fail;
381 }
382
383 spki = SECKEY_CreateSubjectPublicKeyInfo(keypair->pubkey());
384 if (!spki) {
385 LOG(LS_ERROR) << "Couldn't create SPKI";
386 goto fail;
387 }
388
389 certreq = CERT_CreateCertificateRequest(subject_name, spki, NULL);
390 if (!certreq) {
391 LOG(LS_ERROR) << "Couldn't create certificate signing request";
392 goto fail;
393 }
394
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000395 validity = CERT_CreateValidity(not_before, not_after);
396 if (!validity) {
397 LOG(LS_ERROR) << "Couldn't create validity";
398 goto fail;
399 }
400
401 unsigned long serial;
402 // Note: This serial in principle could collide, but it's unlikely
403 rv = PK11_GenerateRandom(reinterpret_cast<unsigned char *>(&serial),
404 sizeof(serial));
405 if (rv != SECSuccess) {
406 LOG(LS_ERROR) << "Couldn't generate random serial";
407 goto fail;
408 }
409
410 certificate = CERT_CreateCertificate(serial, subject_name, validity, certreq);
411 if (!certificate) {
412 LOG(LS_ERROR) << "Couldn't create certificate";
413 goto fail;
414 }
415
416 arena = certificate->arena;
417
418 rv = SECOID_SetAlgorithmID(arena, &certificate->signature,
419 SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION, NULL);
420 if (rv != SECSuccess)
421 goto fail;
422
423 // Set version to X509v3.
424 *(certificate->version.data) = 2;
425 certificate->version.len = 1;
426
427 if (!SEC_ASN1EncodeItem(arena, &inner_der, certificate,
428 SEC_ASN1_GET(CERT_CertificateTemplate)))
429 goto fail;
430
431 rv = SEC_DerSignData(arena, &signed_cert, inner_der.data, inner_der.len,
432 keypair->privkey(),
433 SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION);
434 if (rv != SECSuccess) {
435 LOG(LS_ERROR) << "Couldn't sign certificate";
436 goto fail;
437 }
438 certificate->derCert = signed_cert;
439
440 identity = new NSSIdentity(keypair, new NSSCertificate(certificate));
441
442 goto done;
443
444 fail:
445 delete keypair;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000446
447 done:
wu@webrtc.org4551b792013-10-09 15:37:36 +0000448 if (certificate) CERT_DestroyCertificate(certificate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000449 if (subject_name) CERT_DestroyName(subject_name);
450 if (spki) SECKEY_DestroySubjectPublicKeyInfo(spki);
451 if (certreq) CERT_DestroyCertificateRequest(certreq);
452 if (validity) CERT_DestroyValidity(validity);
453 return identity;
454}
455
wu@webrtc.orgf6d6ed02014-01-03 22:08:47 +0000456NSSIdentity* NSSIdentity::Generate(const std::string &common_name) {
457 SSLIdentityParams params;
458 params.common_name = common_name;
459 params.not_before = CERTIFICATE_WINDOW;
460 params.not_after = CERTIFICATE_LIFETIME;
461 return GenerateInternal(params);
462}
463
464NSSIdentity* NSSIdentity::GenerateForTest(const SSLIdentityParams& params) {
465 return GenerateInternal(params);
466}
467
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000468SSLIdentity* NSSIdentity::FromPEMStrings(const std::string& private_key,
469 const std::string& certificate) {
470 std::string private_key_der;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000471 if (!SSLIdentity::PemToDer(
472 kPemTypeRsaPrivateKey, private_key, &private_key_der))
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000473 return NULL;
474
475 SECItem private_key_item;
jiayl@webrtc.orga576faf2014-01-29 17:45:53 +0000476 private_key_item.data = reinterpret_cast<unsigned char *>(
477 const_cast<char *>(private_key_der.c_str()));
478 private_key_item.len = checked_cast<unsigned int>(private_key_der.size());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000479
480 const unsigned int key_usage = KU_KEY_ENCIPHERMENT | KU_DATA_ENCIPHERMENT |
481 KU_DIGITAL_SIGNATURE;
482
483 SECKEYPrivateKey* privkey = NULL;
484 SECStatus rv =
485 PK11_ImportDERPrivateKeyInfoAndReturnKey(NSSContext::GetSlot(),
486 &private_key_item,
487 NULL, NULL, PR_FALSE, PR_FALSE,
488 key_usage, &privkey, NULL);
489 if (rv != SECSuccess) {
490 LOG(LS_ERROR) << "Couldn't import private key";
491 return NULL;
492 }
493
494 SECKEYPublicKey *pubkey = SECKEY_ConvertToPublicKey(privkey);
495 if (rv != SECSuccess) {
496 SECKEY_DestroyPrivateKey(privkey);
497 LOG(LS_ERROR) << "Couldn't convert private key to public key";
498 return NULL;
499 }
500
501 // Assign to a scoped_ptr so we don't leak on error.
502 scoped_ptr<NSSKeyPair> keypair(new NSSKeyPair(privkey, pubkey));
503
504 scoped_ptr<NSSCertificate> cert(NSSCertificate::FromPEMString(certificate));
505 if (!cert) {
506 LOG(LS_ERROR) << "Couldn't parse certificate";
507 return NULL;
508 }
509
510 // TODO(ekr@rtfm.com): Check the public key against the certificate.
511
512 return new NSSIdentity(keypair.release(), cert.release());
513}
514
515NSSIdentity *NSSIdentity::GetReference() const {
516 NSSKeyPair *keypair = keypair_->GetReference();
517 if (!keypair)
518 return NULL;
519
520 NSSCertificate *certificate = certificate_->GetReference();
521 if (!certificate) {
522 delete keypair;
523 return NULL;
524 }
525
526 return new NSSIdentity(keypair, certificate);
527}
528
529
530NSSCertificate &NSSIdentity::certificate() const {
531 return *certificate_;
532}
533
534
535} // talk_base namespace
536
537#endif // HAVE_NSS_SSL_H
538