2014-01-20 22:10:33 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "NSSCertDBTrustDomain.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
#include "ExtendedValidation.h"
|
2014-07-06 15:55:38 -07:00
|
|
|
#include "nsNSSCertificate.h"
|
2014-05-28 15:28:03 -07:00
|
|
|
#include "NSSErrorsService.h"
|
2014-05-01 15:07:55 -07:00
|
|
|
#include "OCSPRequestor.h"
|
2013-07-08 16:30:59 -07:00
|
|
|
#include "certdb.h"
|
2014-03-13 09:41:03 -07:00
|
|
|
#include "mozilla/Telemetry.h"
|
2014-01-20 22:10:33 -08:00
|
|
|
#include "nss.h"
|
2013-07-08 16:30:59 -07:00
|
|
|
#include "pk11pub.h"
|
2014-05-01 15:07:55 -07:00
|
|
|
#include "pkix/pkix.h"
|
2014-07-06 15:55:38 -07:00
|
|
|
#include "pkix/ScopedPtr.h"
|
2014-01-20 22:10:33 -08:00
|
|
|
#include "prerror.h"
|
2013-07-08 16:30:59 -07:00
|
|
|
#include "prmem.h"
|
2014-01-20 22:10:33 -08:00
|
|
|
#include "prprf.h"
|
2014-07-03 21:49:56 -07:00
|
|
|
#include "ScopedNSSTypes.h"
|
2014-01-20 22:10:33 -08:00
|
|
|
#include "secerr.h"
|
|
|
|
#include "secmod.h"
|
|
|
|
|
2014-07-03 21:49:56 -07:00
|
|
|
using namespace mozilla;
|
2014-03-20 14:29:21 -07:00
|
|
|
using namespace mozilla::pkix;
|
2014-01-20 22:10:33 -08:00
|
|
|
|
2014-02-10 11:41:12 -08:00
|
|
|
#ifdef PR_LOGGING
|
|
|
|
extern PRLogModuleInfo* gCertVerifierLog;
|
|
|
|
#endif
|
|
|
|
|
2014-01-20 22:10:33 -08:00
|
|
|
namespace mozilla { namespace psm {
|
|
|
|
|
|
|
|
const char BUILTIN_ROOTS_MODULE_DEFAULT_NAME[] = "Builtin Roots Module";
|
|
|
|
|
2014-03-12 13:08:48 -07:00
|
|
|
void PORT_Free_string(char* str) { PORT_Free(str); }
|
2014-01-20 22:10:33 -08:00
|
|
|
|
2014-03-12 13:08:48 -07:00
|
|
|
namespace {
|
2014-01-20 22:10:33 -08:00
|
|
|
|
|
|
|
typedef ScopedPtr<SECMODModule, SECMOD_DestroyModule> ScopedSECMODModule;
|
|
|
|
|
2014-02-10 11:41:12 -08:00
|
|
|
} // unnamed namespace
|
|
|
|
|
|
|
|
NSSCertDBTrustDomain::NSSCertDBTrustDomain(SECTrustType certDBTrustType,
|
2014-02-23 22:15:53 -08:00
|
|
|
OCSPFetching ocspFetching,
|
2014-03-12 13:08:48 -07:00
|
|
|
OCSPCache& ocspCache,
|
2014-07-06 15:55:38 -07:00
|
|
|
/*optional but shouldn't be*/ void* pinArg,
|
2014-05-21 15:42:21 -07:00
|
|
|
CertVerifier::ocsp_get_config ocspGETConfig,
|
2014-07-06 15:55:38 -07:00
|
|
|
/*optional*/ CERTChainVerifyCallback* checkChainCallback,
|
|
|
|
/*optional*/ ScopedCERTCertList* builtChain)
|
2014-02-10 11:41:12 -08:00
|
|
|
: mCertDBTrustType(certDBTrustType)
|
2014-02-23 22:15:53 -08:00
|
|
|
, mOCSPFetching(ocspFetching)
|
2014-03-12 13:08:48 -07:00
|
|
|
, mOCSPCache(ocspCache)
|
2014-02-10 11:41:12 -08:00
|
|
|
, mPinArg(pinArg)
|
2014-05-21 15:42:21 -07:00
|
|
|
, mOCSPGetConfig(ocspGETConfig)
|
2014-02-05 14:49:10 -08:00
|
|
|
, mCheckChainCallback(checkChainCallback)
|
2014-07-06 15:55:38 -07:00
|
|
|
, mBuiltChain(builtChain)
|
2014-02-10 11:41:12 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SECStatus
|
2014-07-02 16:15:16 -07:00
|
|
|
NSSCertDBTrustDomain::FindIssuer(const SECItem& encodedIssuerName,
|
|
|
|
IssuerChecker& checker, PRTime time)
|
2014-02-10 11:41:12 -08:00
|
|
|
{
|
|
|
|
// TODO: NSS seems to be ambiguous between "no potential issuers found" and
|
|
|
|
// "there was an error trying to retrieve the potential issuers."
|
2014-07-06 15:55:38 -07:00
|
|
|
ScopedCERTCertList
|
2014-07-02 16:15:16 -07:00
|
|
|
candidates(CERT_CreateSubjectCertList(nullptr, CERT_GetDefaultCertDB(),
|
|
|
|
&encodedIssuerName, time, true));
|
|
|
|
if (candidates) {
|
|
|
|
for (CERTCertListNode* n = CERT_LIST_HEAD(candidates);
|
|
|
|
!CERT_LIST_END(n, candidates); n = CERT_LIST_NEXT(n)) {
|
|
|
|
bool keepGoing;
|
|
|
|
SECStatus srv = checker.Check(n->cert->derCert, keepGoing);
|
|
|
|
if (srv != SECSuccess) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
if (!keepGoing) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 11:41:12 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
NSSCertDBTrustDomain::GetCertTrust(EndEntityOrCA endEntityOrCA,
|
2014-05-15 18:59:52 -07:00
|
|
|
const CertPolicyId& policy,
|
2014-06-03 10:47:25 -07:00
|
|
|
const SECItem& candidateCertDER,
|
2014-02-10 11:41:12 -08:00
|
|
|
/*out*/ TrustLevel* trustLevel)
|
|
|
|
{
|
2014-02-24 12:37:45 -08:00
|
|
|
PR_ASSERT(trustLevel);
|
2014-02-23 22:15:53 -08:00
|
|
|
|
2014-06-03 10:47:25 -07:00
|
|
|
if (!trustLevel) {
|
2014-02-24 12:37:45 -08:00
|
|
|
PR_SetError(SEC_ERROR_INVALID_ARGS, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
#ifdef MOZ_NO_EV_CERTS
|
2014-05-15 18:59:52 -07:00
|
|
|
if (!policy.IsAnyPolicy()) {
|
2014-02-24 12:37:45 -08:00
|
|
|
PR_SetError(SEC_ERROR_POLICY_VALIDATION_FAILED, 0);
|
2014-02-10 11:41:12 -08:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-02-23 22:15:53 -08:00
|
|
|
#endif
|
2014-02-10 11:41:12 -08:00
|
|
|
|
2014-06-03 10:47:25 -07:00
|
|
|
// XXX: This would be cleaner and more efficient if we could get the trust
|
|
|
|
// information without constructing a CERTCertificate here, but NSS doesn't
|
|
|
|
// expose it in any other easy-to-use fashion. The use of
|
|
|
|
// CERT_NewTempCertificate to get a CERTCertificate shouldn't be a
|
|
|
|
// performance problem because NSS will just find the existing
|
|
|
|
// CERTCertificate in its in-memory cache and return it.
|
|
|
|
ScopedCERTCertificate candidateCert(
|
|
|
|
CERT_NewTempCertificate(CERT_GetDefaultCertDB(),
|
|
|
|
const_cast<SECItem*>(&candidateCertDER), nullptr,
|
|
|
|
false, true));
|
|
|
|
if (!candidateCert) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-02-10 11:41:12 -08:00
|
|
|
// XXX: CERT_GetCertTrust seems to be abusing SECStatus as a boolean, where
|
|
|
|
// SECSuccess means that there is a trust record and SECFailure means there
|
|
|
|
// is not a trust record. I looked at NSS's internal uses of
|
|
|
|
// CERT_GetCertTrust, and all that code uses the result as a boolean meaning
|
|
|
|
// "We have a trust record."
|
|
|
|
CERTCertTrust trust;
|
2014-06-03 10:47:25 -07:00
|
|
|
if (CERT_GetCertTrust(candidateCert.get(), &trust) == SECSuccess) {
|
2014-02-10 11:41:12 -08:00
|
|
|
PRUint32 flags = SEC_GET_TRUST_FLAGS(&trust, mCertDBTrustType);
|
|
|
|
|
|
|
|
// For DISTRUST, we use the CERTDB_TRUSTED or CERTDB_TRUSTED_CA bit,
|
|
|
|
// because we can have active distrust for either type of cert. Note that
|
|
|
|
// CERTDB_TERMINAL_RECORD means "stop trying to inherit trust" so if the
|
|
|
|
// relevant trust bit isn't set then that means the cert must be considered
|
|
|
|
// distrusted.
|
2014-04-25 16:29:26 -07:00
|
|
|
PRUint32 relevantTrustBit =
|
|
|
|
endEntityOrCA == EndEntityOrCA::MustBeCA ? CERTDB_TRUSTED_CA
|
|
|
|
: CERTDB_TRUSTED;
|
2014-02-10 11:41:12 -08:00
|
|
|
if (((flags & (relevantTrustBit|CERTDB_TERMINAL_RECORD)))
|
|
|
|
== CERTDB_TERMINAL_RECORD) {
|
2014-04-25 16:29:26 -07:00
|
|
|
*trustLevel = TrustLevel::ActivelyDistrusted;
|
2014-02-10 11:41:12 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For TRUST, we only use the CERTDB_TRUSTED_CA bit, because Gecko hasn't
|
|
|
|
// needed to consider end-entity certs to be their own trust anchors since
|
|
|
|
// Gecko implemented nsICertOverrideService.
|
|
|
|
if (flags & CERTDB_TRUSTED_CA) {
|
2014-05-15 18:59:52 -07:00
|
|
|
if (policy.IsAnyPolicy()) {
|
2014-04-25 16:29:26 -07:00
|
|
|
*trustLevel = TrustLevel::TrustAnchor;
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
#ifndef MOZ_NO_EV_CERTS
|
2014-06-03 10:47:25 -07:00
|
|
|
if (CertIsAuthoritativeForEVPolicy(candidateCert.get(), policy)) {
|
2014-04-25 16:29:26 -07:00
|
|
|
*trustLevel = TrustLevel::TrustAnchor;
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
#endif
|
2014-02-10 11:41:12 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-25 16:29:26 -07:00
|
|
|
*trustLevel = TrustLevel::InheritsTrust;
|
2014-02-10 11:41:12 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECStatus
|
2014-07-03 16:59:42 -07:00
|
|
|
NSSCertDBTrustDomain::VerifySignedData(const CERTSignedData& signedData,
|
2014-06-05 15:18:32 -07:00
|
|
|
const SECItem& subjectPublicKeyInfo)
|
2014-02-10 11:41:12 -08:00
|
|
|
{
|
2014-06-05 15:18:32 -07:00
|
|
|
return ::mozilla::pkix::VerifySignedData(signedData, subjectPublicKeyInfo,
|
|
|
|
mPinArg);
|
2014-02-10 11:41:12 -08:00
|
|
|
}
|
|
|
|
|
2014-05-01 15:07:55 -07:00
|
|
|
static PRIntervalTime
|
|
|
|
OCSPFetchingTypeToTimeoutTime(NSSCertDBTrustDomain::OCSPFetching ocspFetching)
|
|
|
|
{
|
|
|
|
switch (ocspFetching) {
|
|
|
|
case NSSCertDBTrustDomain::FetchOCSPForDVSoftFail:
|
|
|
|
return PR_SecondsToInterval(2);
|
|
|
|
case NSSCertDBTrustDomain::FetchOCSPForEV:
|
|
|
|
case NSSCertDBTrustDomain::FetchOCSPForDVHardFail:
|
|
|
|
return PR_SecondsToInterval(10);
|
|
|
|
// The rest of these are error cases. Assert in debug builds, but return
|
|
|
|
// the default value corresponding to 2 seconds in release builds.
|
|
|
|
case NSSCertDBTrustDomain::NeverFetchOCSP:
|
|
|
|
case NSSCertDBTrustDomain::LocalOnlyOCSPForEV:
|
|
|
|
PR_NOT_REACHED("we should never see this OCSPFetching type here");
|
|
|
|
default:
|
|
|
|
PR_NOT_REACHED("we're not handling every OCSPFetching type");
|
|
|
|
}
|
|
|
|
return PR_SecondsToInterval(2);
|
|
|
|
}
|
|
|
|
|
2014-06-20 10:10:51 -07:00
|
|
|
// Copied and modified from CERT_GetOCSPAuthorityInfoAccessLocation and
|
|
|
|
// CERT_GetGeneralNameByType. Returns SECFailure on error, SECSuccess
|
|
|
|
// with url == nullptr when an OCSP URI was not found, and SECSuccess with
|
|
|
|
// url != nullptr when an OCSP URI was found. The output url will be owned
|
|
|
|
// by the arena.
|
|
|
|
static SECStatus
|
|
|
|
GetOCSPAuthorityInfoAccessLocation(PLArenaPool* arena,
|
|
|
|
const SECItem& aiaExtension,
|
|
|
|
/*out*/ char const*& url)
|
|
|
|
{
|
|
|
|
url = nullptr;
|
|
|
|
|
|
|
|
// TODO(bug 1028380): Remove the const_cast.
|
|
|
|
CERTAuthInfoAccess** aia = CERT_DecodeAuthInfoAccessExtension(
|
|
|
|
arena,
|
|
|
|
const_cast<SECItem*>(&aiaExtension));
|
|
|
|
if (!aia) {
|
|
|
|
PR_SetError(SEC_ERROR_CERT_BAD_ACCESS_LOCATION, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
for (size_t i = 0; aia[i]; ++i) {
|
|
|
|
if (SECOID_FindOIDTag(&aia[i]->method) == SEC_OID_PKIX_OCSP) {
|
|
|
|
// NSS chooses the **last** OCSP URL; we choose the **first**
|
|
|
|
CERTGeneralName* current = aia[i]->location;
|
|
|
|
if (!current) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
if (current->type == certURI) {
|
|
|
|
const SECItem& location = current->name.other;
|
|
|
|
// (location.len + 1) must be small enough to fit into a uint32_t,
|
|
|
|
// but we limit it to a smaller bound to reduce OOM risk.
|
|
|
|
if (location.len > 1024 || memchr(location.data, 0, location.len)) {
|
|
|
|
// Reject embedded nulls. (NSS doesn't do this)
|
|
|
|
PR_SetError(SEC_ERROR_CERT_BAD_ACCESS_LOCATION, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
// Copy the non-null-terminated SECItem into a null-terminated string.
|
|
|
|
char* nullTerminatedURL(static_cast<char*>(
|
|
|
|
PORT_ArenaAlloc(arena, location.len + 1)));
|
|
|
|
if (!nullTerminatedURL) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
memcpy(nullTerminatedURL, location.data, location.len);
|
|
|
|
nullTerminatedURL[location.len] = 0;
|
|
|
|
url = nullTerminatedURL;
|
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
current = CERT_GetNextGeneralName(current);
|
|
|
|
} while (current != aia[i]->location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
2014-02-16 17:35:40 -08:00
|
|
|
SECStatus
|
2014-06-20 10:10:51 -07:00
|
|
|
NSSCertDBTrustDomain::CheckRevocation(EndEntityOrCA endEntityOrCA,
|
|
|
|
const CertID& certID, PRTime time,
|
|
|
|
/*optional*/ const SECItem* stapledOCSPResponse,
|
|
|
|
/*optional*/ const SECItem* aiaExtension)
|
2014-02-16 17:35:40 -08:00
|
|
|
{
|
|
|
|
// Actively distrusted certificates will have already been blocked by
|
|
|
|
// GetCertTrust.
|
|
|
|
|
|
|
|
// TODO: need to verify that IsRevoked isn't called for trust anchors AND
|
2014-03-20 14:29:21 -07:00
|
|
|
// that that fact is documented in mozillapkix.
|
2014-02-16 17:35:40 -08:00
|
|
|
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: Top of CheckRevocation\n"));
|
|
|
|
|
2014-05-30 16:12:36 -07:00
|
|
|
// Bug 991815: The BR allow OCSP for intermediates to be up to one year old.
|
|
|
|
// Since this affects EV there is no reason why DV should be more strict
|
|
|
|
// so all intermediatates are allowed to have OCSP responses up to one year
|
|
|
|
// old.
|
|
|
|
uint16_t maxOCSPLifetimeInDays = 10;
|
|
|
|
if (endEntityOrCA == EndEntityOrCA::MustBeCA) {
|
|
|
|
maxOCSPLifetimeInDays = 365;
|
|
|
|
}
|
|
|
|
|
2014-02-16 17:35:40 -08:00
|
|
|
// If we have a stapled OCSP response then the verification of that response
|
|
|
|
// determines the result unless the OCSP response is expired. We make an
|
|
|
|
// exception for expired responses because some servers, nginx in particular,
|
|
|
|
// are known to serve expired responses due to bugs.
|
2014-06-20 09:01:57 -07:00
|
|
|
// We keep track of the result of verifying the stapled response but don't
|
|
|
|
// immediately return failure if the response has expired.
|
|
|
|
PRErrorCode stapledOCSPResponseErrorCode = 0;
|
2014-02-16 17:35:40 -08:00
|
|
|
if (stapledOCSPResponse) {
|
2014-04-25 16:29:26 -07:00
|
|
|
PR_ASSERT(endEntityOrCA == EndEntityOrCA::MustBeEndEntity);
|
2014-06-20 09:01:57 -07:00
|
|
|
bool expired;
|
2014-06-20 10:10:51 -07:00
|
|
|
SECStatus rv = VerifyAndMaybeCacheEncodedOCSPResponse(certID, time,
|
2014-05-30 16:12:36 -07:00
|
|
|
maxOCSPLifetimeInDays,
|
2014-06-20 10:10:51 -07:00
|
|
|
*stapledOCSPResponse,
|
2014-06-20 09:01:57 -07:00
|
|
|
ResponseWasStapled,
|
|
|
|
expired);
|
2014-02-16 17:35:40 -08:00
|
|
|
if (rv == SECSuccess) {
|
2014-03-13 09:41:03 -07:00
|
|
|
// stapled OCSP response present and good
|
|
|
|
Telemetry::Accumulate(Telemetry::SSL_OCSP_STAPLING, 1);
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: stapled OCSP response: good"));
|
2014-02-16 17:35:40 -08:00
|
|
|
return rv;
|
|
|
|
}
|
2014-06-20 09:01:57 -07:00
|
|
|
stapledOCSPResponseErrorCode = PR_GetError();
|
|
|
|
if (stapledOCSPResponseErrorCode == SEC_ERROR_OCSP_OLD_RESPONSE ||
|
|
|
|
expired) {
|
|
|
|
// stapled OCSP response present but expired
|
|
|
|
Telemetry::Accumulate(Telemetry::SSL_OCSP_STAPLING, 3);
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: expired stapled OCSP response"));
|
|
|
|
} else {
|
2014-03-13 09:41:03 -07:00
|
|
|
// stapled OCSP response present but invalid for some reason
|
|
|
|
Telemetry::Accumulate(Telemetry::SSL_OCSP_STAPLING, 4);
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: stapled OCSP response: failure"));
|
2014-02-16 17:35:40 -08:00
|
|
|
return rv;
|
|
|
|
}
|
2014-03-12 13:08:48 -07:00
|
|
|
} else {
|
2014-03-13 09:41:03 -07:00
|
|
|
// no stapled OCSP response
|
|
|
|
Telemetry::Accumulate(Telemetry::SSL_OCSP_STAPLING, 2);
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: no stapled OCSP response"));
|
2014-02-16 17:35:40 -08:00
|
|
|
}
|
|
|
|
|
2014-03-12 13:08:48 -07:00
|
|
|
PRErrorCode cachedResponseErrorCode = 0;
|
|
|
|
PRTime cachedResponseValidThrough = 0;
|
2014-06-20 10:10:51 -07:00
|
|
|
bool cachedResponsePresent = mOCSPCache.Get(certID,
|
2014-03-12 13:08:48 -07:00
|
|
|
cachedResponseErrorCode,
|
|
|
|
cachedResponseValidThrough);
|
|
|
|
if (cachedResponsePresent) {
|
|
|
|
if (cachedResponseErrorCode == 0 && cachedResponseValidThrough >= time) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: cached OCSP response: good"));
|
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
// If we have a cached revoked response, use it.
|
|
|
|
if (cachedResponseErrorCode == SEC_ERROR_REVOKED_CERTIFICATE) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: cached OCSP response: revoked"));
|
|
|
|
PR_SetError(SEC_ERROR_REVOKED_CERTIFICATE, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
// The cached response may indicate an unknown certificate or it may be
|
|
|
|
// expired. Don't return with either of these statuses yet - we may be
|
|
|
|
// able to fetch a more recent one.
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: cached OCSP response: error %ld valid "
|
|
|
|
"until %lld", cachedResponseErrorCode, cachedResponseValidThrough));
|
|
|
|
// When a good cached response has expired, it is more convenient
|
|
|
|
// to convert that to an error code and just deal with
|
|
|
|
// cachedResponseErrorCode from here on out.
|
|
|
|
if (cachedResponseErrorCode == 0 && cachedResponseValidThrough < time) {
|
|
|
|
cachedResponseErrorCode = SEC_ERROR_OCSP_OLD_RESPONSE;
|
|
|
|
}
|
2014-04-28 16:38:15 -07:00
|
|
|
// We may have a cached indication of server failure. Ignore it if
|
|
|
|
// it has expired.
|
|
|
|
if (cachedResponseErrorCode != 0 &&
|
|
|
|
cachedResponseErrorCode != SEC_ERROR_OCSP_UNKNOWN_CERT &&
|
|
|
|
cachedResponseErrorCode != SEC_ERROR_OCSP_OLD_RESPONSE &&
|
|
|
|
cachedResponseValidThrough < time) {
|
|
|
|
cachedResponseErrorCode = 0;
|
|
|
|
cachedResponsePresent = false;
|
|
|
|
}
|
2014-03-12 13:08:48 -07:00
|
|
|
} else {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: no cached OCSP response"));
|
|
|
|
}
|
|
|
|
// At this point, if and only if cachedErrorResponseCode is 0, there was no
|
|
|
|
// cached response.
|
|
|
|
PR_ASSERT((!cachedResponsePresent && cachedResponseErrorCode == 0) ||
|
|
|
|
(cachedResponsePresent && cachedResponseErrorCode != 0));
|
2014-02-16 17:35:40 -08:00
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
// TODO: We still need to handle the fallback for expired responses. But,
|
|
|
|
// if/when we disable OCSP fetching by default, it would be ambiguous whether
|
|
|
|
// security.OCSP.enable==0 means "I want the default" or "I really never want
|
|
|
|
// you to ever fetch OCSP."
|
2014-02-16 17:35:40 -08:00
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
if ((mOCSPFetching == NeverFetchOCSP) ||
|
2014-04-25 16:29:26 -07:00
|
|
|
(endEntityOrCA == EndEntityOrCA::MustBeCA &&
|
|
|
|
(mOCSPFetching == FetchOCSPForDVHardFail ||
|
|
|
|
mOCSPFetching == FetchOCSPForDVSoftFail))) {
|
2014-03-12 13:08:48 -07:00
|
|
|
// We're not going to be doing any fetching, so if there was a cached
|
|
|
|
// "unknown" response, say so.
|
|
|
|
if (cachedResponseErrorCode == SEC_ERROR_OCSP_UNKNOWN_CERT) {
|
|
|
|
PR_SetError(SEC_ERROR_OCSP_UNKNOWN_CERT, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
// If we're doing hard-fail, we want to know if we have a cached response
|
|
|
|
// that has expired.
|
|
|
|
if (mOCSPFetching == FetchOCSPForDVHardFail &&
|
|
|
|
cachedResponseErrorCode == SEC_ERROR_OCSP_OLD_RESPONSE) {
|
|
|
|
PR_SetError(SEC_ERROR_OCSP_OLD_RESPONSE, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mOCSPFetching == LocalOnlyOCSPForEV) {
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_SetError(cachedResponseErrorCode != 0 ? cachedResponseErrorCode
|
|
|
|
: SEC_ERROR_OCSP_UNKNOWN_CERT, 0);
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-06-20 10:10:51 -07:00
|
|
|
ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
|
|
|
|
if (!arena) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* url = nullptr; // owned by the arena
|
|
|
|
|
|
|
|
if (aiaExtension) {
|
|
|
|
if (GetOCSPAuthorityInfoAccessLocation(arena.get(), *aiaExtension, url)
|
|
|
|
!= SECSuccess) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
}
|
2014-02-23 22:15:53 -08:00
|
|
|
|
|
|
|
if (!url) {
|
2014-03-12 13:08:48 -07:00
|
|
|
if (mOCSPFetching == FetchOCSPForEV ||
|
|
|
|
cachedResponseErrorCode == SEC_ERROR_OCSP_UNKNOWN_CERT) {
|
|
|
|
PR_SetError(SEC_ERROR_OCSP_UNKNOWN_CERT, 0);
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-06-20 09:01:57 -07:00
|
|
|
if (cachedResponseErrorCode == SEC_ERROR_OCSP_OLD_RESPONSE) {
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_SetError(SEC_ERROR_OCSP_OLD_RESPONSE, 0);
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-06-20 09:01:57 -07:00
|
|
|
if (stapledOCSPResponseErrorCode != 0) {
|
|
|
|
PR_SetError(stapledOCSPResponseErrorCode, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-02-16 17:35:40 -08:00
|
|
|
|
|
|
|
// Nothing to do if we don't have an OCSP responder URI for the cert; just
|
|
|
|
// assume it is good. Note that this is the confusing, but intended,
|
|
|
|
// interpretation of "strict" revocation checking in the face of a
|
|
|
|
// certificate that lacks an OCSP responder URI.
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
2014-02-16 17:35:40 -08:00
|
|
|
|
2014-04-28 16:38:15 -07:00
|
|
|
// Only request a response if we didn't have a cached indication of failure
|
|
|
|
// (don't keep requesting responses from a failing server).
|
|
|
|
const SECItem* response = nullptr;
|
|
|
|
if (cachedResponseErrorCode == 0 ||
|
|
|
|
cachedResponseErrorCode == SEC_ERROR_OCSP_UNKNOWN_CERT ||
|
|
|
|
cachedResponseErrorCode == SEC_ERROR_OCSP_OLD_RESPONSE) {
|
2014-06-20 10:10:51 -07:00
|
|
|
const SECItem* request(CreateEncodedOCSPRequest(arena.get(), certID));
|
2014-04-28 16:38:15 -07:00
|
|
|
if (!request) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-06-20 10:10:51 -07:00
|
|
|
response = DoOCSPRequest(arena.get(), url, request,
|
2014-05-21 15:42:21 -07:00
|
|
|
OCSPFetchingTypeToTimeoutTime(mOCSPFetching),
|
|
|
|
mOCSPGetConfig == CertVerifier::ocsp_get_enabled);
|
2014-02-23 22:15:53 -08:00
|
|
|
}
|
2014-02-16 17:35:40 -08:00
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
if (!response) {
|
2014-04-28 16:38:15 -07:00
|
|
|
PRErrorCode error = PR_GetError();
|
|
|
|
if (error == 0) {
|
|
|
|
error = cachedResponseErrorCode;
|
|
|
|
}
|
|
|
|
PRTime timeout = time + ServerFailureDelay;
|
2014-06-20 10:10:51 -07:00
|
|
|
if (mOCSPCache.Put(certID, error, time, timeout) != SECSuccess) {
|
2014-04-28 16:38:15 -07:00
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
PR_SetError(error, 0);
|
2014-02-23 22:15:53 -08:00
|
|
|
if (mOCSPFetching != FetchOCSPForDVSoftFail) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning SECFailure after "
|
2014-05-01 15:07:55 -07:00
|
|
|
"OCSP request failure"));
|
2014-02-16 17:35:40 -08:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-03-12 13:08:48 -07:00
|
|
|
if (cachedResponseErrorCode == SEC_ERROR_OCSP_UNKNOWN_CERT) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning SECFailure from cached "
|
2014-05-01 15:07:55 -07:00
|
|
|
"response after OCSP request failure"));
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_SetError(cachedResponseErrorCode, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-06-20 09:01:57 -07:00
|
|
|
if (stapledOCSPResponseErrorCode != 0) {
|
2014-06-06 09:20:50 -07:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning SECFailure from expired "
|
|
|
|
"stapled response after OCSP request failure"));
|
2014-06-20 09:01:57 -07:00
|
|
|
PR_SetError(stapledOCSPResponseErrorCode, 0);
|
2014-06-06 09:20:50 -07:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-02-16 17:35:40 -08:00
|
|
|
|
2014-02-23 22:15:53 -08:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning SECSuccess after "
|
2014-05-01 15:07:55 -07:00
|
|
|
"OCSP request failure"));
|
2014-02-23 22:15:53 -08:00
|
|
|
return SECSuccess; // Soft fail -> success :(
|
|
|
|
}
|
|
|
|
|
2014-06-20 09:01:57 -07:00
|
|
|
// If the response from the network has expired but indicates a revoked
|
|
|
|
// or unknown certificate, PR_GetError() will return the appropriate error.
|
|
|
|
// We actually ignore expired here.
|
|
|
|
bool expired;
|
2014-06-20 10:10:51 -07:00
|
|
|
SECStatus rv = VerifyAndMaybeCacheEncodedOCSPResponse(certID, time,
|
2014-05-30 16:12:36 -07:00
|
|
|
maxOCSPLifetimeInDays,
|
2014-06-20 10:10:51 -07:00
|
|
|
*response,
|
2014-06-20 09:01:57 -07:00
|
|
|
ResponseIsFromNetwork,
|
|
|
|
expired);
|
2014-02-23 22:15:53 -08:00
|
|
|
if (rv == SECSuccess || mOCSPFetching != FetchOCSPForDVSoftFail) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning after VerifyEncodedOCSPResponse"));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRErrorCode error = PR_GetError();
|
|
|
|
if (error == SEC_ERROR_OCSP_UNKNOWN_CERT ||
|
|
|
|
error == SEC_ERROR_REVOKED_CERTIFICATE) {
|
|
|
|
return rv;
|
2014-02-16 17:35:40 -08:00
|
|
|
}
|
|
|
|
|
2014-06-20 09:01:57 -07:00
|
|
|
if (stapledOCSPResponseErrorCode != 0) {
|
2014-06-06 09:20:50 -07:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: returning SECFailure from expired stapled "
|
|
|
|
"response after OCSP request verification failure"));
|
2014-06-20 09:01:57 -07:00
|
|
|
PR_SetError(stapledOCSPResponseErrorCode, 0);
|
2014-06-06 09:20:50 -07:00
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
2014-02-16 17:35:40 -08:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: end of CheckRevocation"));
|
|
|
|
|
2014-06-06 09:20:50 -07:00
|
|
|
return SECSuccess; // Soft fail -> success :(
|
2014-02-16 17:35:40 -08:00
|
|
|
}
|
|
|
|
|
2014-03-12 13:08:48 -07:00
|
|
|
SECStatus
|
|
|
|
NSSCertDBTrustDomain::VerifyAndMaybeCacheEncodedOCSPResponse(
|
2014-06-20 10:10:51 -07:00
|
|
|
const CertID& certID, PRTime time, uint16_t maxLifetimeInDays,
|
|
|
|
const SECItem& encodedResponse, EncodedResponseSource responseSource,
|
|
|
|
/*out*/ bool& expired)
|
2014-03-12 13:08:48 -07:00
|
|
|
{
|
|
|
|
PRTime thisUpdate = 0;
|
|
|
|
PRTime validThrough = 0;
|
2014-06-20 10:10:51 -07:00
|
|
|
SECStatus rv = VerifyEncodedOCSPResponse(*this, certID, time,
|
2014-05-30 16:12:36 -07:00
|
|
|
maxLifetimeInDays, encodedResponse,
|
2014-06-20 09:01:57 -07:00
|
|
|
expired, &thisUpdate, &validThrough);
|
2014-03-12 13:08:48 -07:00
|
|
|
PRErrorCode error = (rv == SECSuccess ? 0 : PR_GetError());
|
2014-06-20 09:01:57 -07:00
|
|
|
// If a response was stapled and expired, we don't want to cache it. Return
|
|
|
|
// early to simplify the logic here.
|
|
|
|
if (responseSource == ResponseWasStapled && expired) {
|
|
|
|
PR_ASSERT(rv != SECSuccess);
|
|
|
|
return rv;
|
|
|
|
}
|
2014-04-28 16:38:15 -07:00
|
|
|
// validThrough is only trustworthy if the response successfully verifies
|
|
|
|
// or it indicates a revoked or unknown certificate.
|
|
|
|
// If this isn't the case, store an indication of failure (to prevent
|
|
|
|
// repeatedly requesting a response from a failing server).
|
|
|
|
if (rv != SECSuccess && error != SEC_ERROR_REVOKED_CERTIFICATE &&
|
|
|
|
error != SEC_ERROR_OCSP_UNKNOWN_CERT) {
|
|
|
|
validThrough = time + ServerFailureDelay;
|
|
|
|
}
|
|
|
|
if (responseSource == ResponseIsFromNetwork ||
|
|
|
|
rv == SECSuccess ||
|
|
|
|
error == SEC_ERROR_REVOKED_CERTIFICATE ||
|
2014-03-12 13:08:48 -07:00
|
|
|
error == SEC_ERROR_OCSP_UNKNOWN_CERT) {
|
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
|
|
|
("NSSCertDBTrustDomain: caching OCSP response"));
|
2014-06-20 10:10:51 -07:00
|
|
|
if (mOCSPCache.Put(certID, error, thisUpdate, validThrough) != SECSuccess) {
|
2014-03-12 13:08:48 -07:00
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-04-28 16:38:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the verification failed, re-set to that original error
|
|
|
|
// (the call to Put may have un-set it).
|
|
|
|
if (rv != SECSuccess) {
|
2014-03-12 13:08:48 -07:00
|
|
|
PR_SetError(error, 0);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-02-05 14:49:10 -08:00
|
|
|
SECStatus
|
2014-07-06 15:55:38 -07:00
|
|
|
NSSCertDBTrustDomain::IsChainValid(const DERArray& certArray)
|
|
|
|
{
|
2014-02-05 14:49:10 -08:00
|
|
|
PR_LOG(gCertVerifierLog, PR_LOG_DEBUG,
|
2014-07-06 15:55:38 -07:00
|
|
|
("NSSCertDBTrustDomain: Top of IsChainValid mCheckChainCallback=%p",
|
2014-02-05 14:49:10 -08:00
|
|
|
mCheckChainCallback));
|
|
|
|
|
2014-07-06 15:55:38 -07:00
|
|
|
if (!mBuiltChain && !mCheckChainCallback) {
|
|
|
|
// No need to create a CERTCertList, and nothing else to do.
|
2014-02-05 14:49:10 -08:00
|
|
|
return SECSuccess;
|
|
|
|
}
|
2014-07-06 15:55:38 -07:00
|
|
|
|
|
|
|
ScopedCERTCertList certList;
|
|
|
|
SECStatus rv = ConstructCERTCertListFromReversedDERArray(certArray, certList);
|
2014-02-05 14:49:10 -08:00
|
|
|
if (rv != SECSuccess) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-07-06 15:55:38 -07:00
|
|
|
|
|
|
|
if (mCheckChainCallback) {
|
|
|
|
if (!mCheckChainCallback->isChainValid) {
|
|
|
|
PR_SetError(SEC_ERROR_INVALID_ARGS, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
PRBool chainOK;
|
|
|
|
rv = (mCheckChainCallback->isChainValid)(
|
|
|
|
mCheckChainCallback->isChainValidArg, certList.get(), &chainOK);
|
|
|
|
if (rv != SECSuccess) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if (!chainOK) {
|
|
|
|
PR_SetError(PSM_ERROR_KEY_PINNING_FAILURE, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
2014-02-05 14:49:10 -08:00
|
|
|
}
|
2014-07-06 15:55:38 -07:00
|
|
|
|
|
|
|
if (mBuiltChain) {
|
|
|
|
*mBuiltChain = certList.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
return SECSuccess;
|
2014-02-05 14:49:10 -08:00
|
|
|
}
|
|
|
|
|
2014-02-10 11:41:12 -08:00
|
|
|
namespace {
|
|
|
|
|
2014-01-20 22:10:33 -08:00
|
|
|
static char*
|
|
|
|
nss_addEscape(const char* string, char quote)
|
|
|
|
{
|
2013-09-19 13:39:36 -07:00
|
|
|
char* newString = 0;
|
2014-05-14 17:46:32 -07:00
|
|
|
size_t escapes = 0, size = 0;
|
2013-09-19 13:39:36 -07:00
|
|
|
const char* src;
|
|
|
|
char* dest;
|
|
|
|
|
|
|
|
for (src = string; *src; src++) {
|
|
|
|
if ((*src == quote) || (*src == '\\')) {
|
|
|
|
escapes++;
|
|
|
|
}
|
|
|
|
size++;
|
|
|
|
}
|
2014-01-20 22:10:33 -08:00
|
|
|
|
2014-05-14 17:46:32 -07:00
|
|
|
newString = (char*) PORT_ZAlloc(escapes + size + 1u);
|
2013-09-19 13:39:36 -07:00
|
|
|
if (!newString) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-01-20 22:10:33 -08:00
|
|
|
|
2013-09-19 13:39:36 -07:00
|
|
|
for (src = string, dest = newString; *src; src++, dest++) {
|
|
|
|
if ((*src == quote) || (*src == '\\')) {
|
|
|
|
*dest++ = '\\';
|
2014-01-20 22:10:33 -08:00
|
|
|
}
|
2013-09-19 13:39:36 -07:00
|
|
|
*dest = *src;
|
|
|
|
}
|
2014-01-20 22:10:33 -08:00
|
|
|
|
2013-09-19 13:39:36 -07:00
|
|
|
return newString;
|
2014-01-20 22:10:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // unnamed namespace
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
InitializeNSS(const char* dir, bool readOnly)
|
|
|
|
{
|
|
|
|
// The NSS_INIT_NOROOTINIT flag turns off the loading of the root certs
|
|
|
|
// module by NSS_Initialize because we will load it in InstallLoadableRoots
|
|
|
|
// later. It also allows us to work around a bug in the system NSS in
|
|
|
|
// Ubuntu 8.04, which loads any nonexistent "<configdir>/libnssckbi.so" as
|
|
|
|
// "/usr/lib/nss/libnssckbi.so".
|
|
|
|
uint32_t flags = NSS_INIT_NOROOTINIT | NSS_INIT_OPTIMIZESPACE;
|
|
|
|
if (readOnly) {
|
|
|
|
flags |= NSS_INIT_READONLY;
|
|
|
|
}
|
|
|
|
return ::NSS_Initialize(dir, "", "", SECMOD_DB, flags);
|
|
|
|
}
|
|
|
|
|
2014-01-20 01:30:25 -08:00
|
|
|
void
|
|
|
|
DisableMD5()
|
|
|
|
{
|
|
|
|
NSS_SetAlgorithmPolicy(SEC_OID_MD5,
|
|
|
|
0, NSS_USE_ALG_IN_CERT_SIGNATURE | NSS_USE_ALG_IN_CMS_SIGNATURE);
|
|
|
|
NSS_SetAlgorithmPolicy(SEC_OID_PKCS1_MD5_WITH_RSA_ENCRYPTION,
|
|
|
|
0, NSS_USE_ALG_IN_CERT_SIGNATURE | NSS_USE_ALG_IN_CMS_SIGNATURE);
|
|
|
|
NSS_SetAlgorithmPolicy(SEC_OID_PKCS5_PBE_WITH_MD5_AND_DES_CBC,
|
|
|
|
0, NSS_USE_ALG_IN_CERT_SIGNATURE | NSS_USE_ALG_IN_CMS_SIGNATURE);
|
|
|
|
}
|
|
|
|
|
2014-01-20 22:10:33 -08:00
|
|
|
SECStatus
|
|
|
|
LoadLoadableRoots(/*optional*/ const char* dir, const char* modNameUTF8)
|
|
|
|
{
|
|
|
|
PR_ASSERT(modNameUTF8);
|
|
|
|
|
|
|
|
if (!modNameUTF8) {
|
|
|
|
PR_SetError(SEC_ERROR_INVALID_ARGS, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedPtr<char, PR_FreeLibraryName> fullLibraryPath(
|
|
|
|
PR_GetLibraryName(dir, "nssckbi"));
|
|
|
|
if (!fullLibraryPath) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedPtr<char, PORT_Free_string> escaped_fullLibraryPath(
|
|
|
|
nss_addEscape(fullLibraryPath.get(), '\"'));
|
|
|
|
if (!escaped_fullLibraryPath) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a module exists with the same name, delete it.
|
|
|
|
int modType;
|
|
|
|
SECMOD_DeleteModule(modNameUTF8, &modType);
|
|
|
|
|
|
|
|
ScopedPtr<char, PR_smprintf_free> pkcs11ModuleSpec(
|
|
|
|
PR_smprintf("name=\"%s\" library=\"%s\"", modNameUTF8,
|
|
|
|
escaped_fullLibraryPath.get()));
|
|
|
|
if (!pkcs11ModuleSpec) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedSECMODModule rootsModule(SECMOD_LoadUserModule(pkcs11ModuleSpec.get(),
|
|
|
|
nullptr, false));
|
|
|
|
if (!rootsModule) {
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rootsModule->loaded) {
|
|
|
|
PR_SetError(PR_INVALID_STATE_ERROR, 0);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SECSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UnloadLoadableRoots(const char* modNameUTF8)
|
|
|
|
{
|
|
|
|
PR_ASSERT(modNameUTF8);
|
|
|
|
ScopedSECMODModule rootsModule(SECMOD_FindModule(modNameUTF8));
|
|
|
|
|
|
|
|
if (rootsModule) {
|
|
|
|
SECMOD_UnloadUserModule(rootsModule.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-08 16:30:59 -07:00
|
|
|
char*
|
|
|
|
DefaultServerNicknameForCert(CERTCertificate* cert)
|
|
|
|
{
|
|
|
|
char* nickname = nullptr;
|
|
|
|
int count;
|
|
|
|
bool conflict;
|
|
|
|
char* servername = nullptr;
|
|
|
|
|
|
|
|
servername = CERT_GetCommonName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
// Certs without common names are strange, but they do exist...
|
|
|
|
// Let's try to use another string for the nickname
|
|
|
|
servername = CERT_GetOrgUnitName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
servername = CERT_GetOrgName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
servername = CERT_GetLocalityName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
servername = CERT_GetStateName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
servername = CERT_GetCountryName(&cert->subject);
|
|
|
|
if (!servername) {
|
|
|
|
// We tried hard, there is nothing more we can do.
|
|
|
|
// A cert without any names doesn't really make sense.
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
count = 1;
|
|
|
|
while (1) {
|
|
|
|
if (count == 1) {
|
|
|
|
nickname = PR_smprintf("%s", servername);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nickname = PR_smprintf("%s #%d", servername, count);
|
|
|
|
}
|
|
|
|
if (!nickname) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
conflict = SEC_CertNicknameConflict(nickname, &cert->derSubject,
|
|
|
|
cert->dbhandle);
|
|
|
|
if (!conflict) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PR_Free(nickname);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
PR_FREEIF(servername);
|
|
|
|
return nickname;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-07-06 15:55:38 -07:00
|
|
|
SaveIntermediateCerts(const ScopedCERTCertList& certList)
|
2013-07-08 16:30:59 -07:00
|
|
|
{
|
|
|
|
if (!certList) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEndEntity = true;
|
|
|
|
for (CERTCertListNode* node = CERT_LIST_HEAD(certList);
|
|
|
|
!CERT_LIST_END(node, certList);
|
|
|
|
node = CERT_LIST_NEXT(node)) {
|
|
|
|
if (isEndEntity) {
|
|
|
|
// Skip the end-entity; we only want to store intermediates
|
|
|
|
isEndEntity = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node->cert->slot) {
|
|
|
|
// This cert was found on a token, no need to remember it in the temp db.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node->cert->isperm) {
|
|
|
|
// We don't need to remember certs already stored in perm db.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have found a signer cert that we want to remember.
|
|
|
|
char* nickname = DefaultServerNicknameForCert(node->cert);
|
|
|
|
if (nickname && *nickname) {
|
|
|
|
ScopedPtr<PK11SlotInfo, PK11_FreeSlot> slot(PK11_GetInternalKeySlot());
|
|
|
|
if (slot) {
|
|
|
|
PK11_ImportCert(slot.get(), node->cert, CK_INVALID_HANDLE,
|
|
|
|
nickname, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PR_FREEIF(nickname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 22:10:33 -08:00
|
|
|
} } // namespace mozilla::psm
|