r=cls/wtc sr=kin/simon git-svn-id: svn://10.0.0.236/trunk@113784 18797224-902f-48f8-a5cc-f745e15eee43
1951 lines
56 KiB
C++
1951 lines
56 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Hubbie Shaw
|
|
* Doug Turner <dougt@netscape.com>
|
|
* Mitch Stoltz <mstoltz@netscape.com>
|
|
* Brian Ryner <bryner@netscape.com>
|
|
* Kai Engert <kaie@netscape.com>
|
|
*/
|
|
|
|
#include "nsNSSComponent.h"
|
|
#include "nsNSSCallbacks.h"
|
|
#include "nsNSSIOLayer.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
#include "nsDirectoryService.h"
|
|
#include "nsIStreamListener.h"
|
|
#include "nsIStringBundle.h"
|
|
#include "nsIDirectoryService.h"
|
|
#include "nsCURILoader.h"
|
|
#include "nsDirectoryServiceDefs.h"
|
|
#include "nsIProxyObjectManager.h"
|
|
#include "nsINSSDialogs.h"
|
|
#include "nsIX509Cert.h"
|
|
#include "nsIX509CertDB.h"
|
|
#include "nsIProfileChangeStatus.h"
|
|
#include "nsNSSCertificate.h"
|
|
#include "nsNSSHelper.h"
|
|
#include "prlog.h"
|
|
#include "nsIPref.h"
|
|
#include "nsIDateTimeFormat.h"
|
|
#include "nsDateTimeFormatCID.h"
|
|
#include "nsAutoLock.h"
|
|
#include "nsIEventQueueService.h"
|
|
#include "nsIEventQueue.h"
|
|
#include "nsIRunnable.h"
|
|
#include "plevent.h"
|
|
|
|
#include "nsIWindowWatcher.h"
|
|
#include "nsIPrompt.h"
|
|
#include "nsProxiedService.h"
|
|
#include "nsICertificatePrincipal.h"
|
|
#include "nsReadableUtils.h"
|
|
#include "nsIDateTimeFormat.h"
|
|
#include "prtypes.h"
|
|
#include "nsInt64.h"
|
|
#include "nsTime.h"
|
|
#include "nsIEntropyCollector.h"
|
|
#include "nsIBufEntropyCollector.h"
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nss.h"
|
|
#include "pk11func.h"
|
|
#include "ssl.h"
|
|
#include "sslproto.h"
|
|
#include "secmod.h"
|
|
#include "sechash.h"
|
|
#include "secmime.h"
|
|
#include "ocsp.h"
|
|
#include "cms.h"
|
|
extern "C" {
|
|
#ifndef NSS_3_4
|
|
#include "pkcs11.h"
|
|
#endif
|
|
#include "pkcs12.h"
|
|
#include "p12plcy.h"
|
|
}
|
|
|
|
#ifdef PR_LOGGING
|
|
PRLogModuleInfo* gPIPNSSLog = nsnull;
|
|
#endif
|
|
|
|
static NS_DEFINE_CID(kDateTimeFormatCID, NS_DATETIMEFORMAT_CID);
|
|
static NS_DEFINE_CID(kNSSComponentCID, NS_NSSCOMPONENT_CID);
|
|
int nsNSSComponent::mInstanceCount = 0;
|
|
|
|
// XXX tmp callback for slot password
|
|
#ifdef NSS_3_4
|
|
extern char * PR_CALLBACK
|
|
#else
|
|
extern char *
|
|
#endif
|
|
pk11PasswordPrompt(PK11SlotInfo *slot, PRBool retry, void *arg);
|
|
|
|
#define PIPNSS_STRBUNDLE_URL "chrome://pipnss/locale/pipnss.properties"
|
|
|
|
|
|
static PLHashNumber PR_CALLBACK certHashtable_keyHash(const void *key)
|
|
{
|
|
if (!key)
|
|
return 0;
|
|
|
|
SECItem *certKey = (SECItem*)key;
|
|
|
|
// lazy hash function, sum up all char values of SECItem
|
|
|
|
PLHashNumber hash = 0;
|
|
unsigned int i = 0;
|
|
unsigned char *c = certKey->data;
|
|
|
|
for (i = 0; i < certKey->len; ++i, ++c) {
|
|
hash += *c;
|
|
}
|
|
|
|
return hash;
|
|
}
|
|
|
|
static PRIntn PR_CALLBACK certHashtable_keyCompare(const void *k1, const void *k2)
|
|
{
|
|
// return type is a bool, answering the question "are the keys equal?"
|
|
|
|
if (!k1 || !k2)
|
|
return PR_FALSE;
|
|
|
|
SECItem *certKey1 = (SECItem*)k1;
|
|
SECItem *certKey2 = (SECItem*)k2;
|
|
|
|
if (certKey1->len != certKey2->len) {
|
|
return PR_FALSE;
|
|
}
|
|
|
|
unsigned int i = 0;
|
|
unsigned char *c1 = certKey1->data;
|
|
unsigned char *c2 = certKey2->data;
|
|
|
|
for (i = 0; i < certKey1->len; ++i, ++c1, ++c2) {
|
|
if (*c1 != *c2) {
|
|
return PR_FALSE;
|
|
}
|
|
}
|
|
|
|
return PR_TRUE;
|
|
}
|
|
|
|
static PRIntn PR_CALLBACK certHashtable_valueCompare(const void *v1, const void *v2)
|
|
{
|
|
// two values are identical if their keys are identical
|
|
|
|
if (!v1 || !v2)
|
|
return PR_FALSE;
|
|
|
|
CERTCertificate *cert1 = (CERTCertificate*)v1;
|
|
CERTCertificate *cert2 = (CERTCertificate*)v2;
|
|
|
|
return certHashtable_keyCompare(&cert1->certKey, &cert2->certKey);
|
|
}
|
|
|
|
static PRIntn PR_CALLBACK certHashtable_clearEntry(PLHashEntry *he, PRIntn /*index*/, void * /*userdata*/)
|
|
{
|
|
if (he && he->value) {
|
|
CERT_DestroyCertificate((CERTCertificate*)he->value);
|
|
}
|
|
|
|
return HT_ENUMERATE_NEXT;
|
|
}
|
|
|
|
static PRBool PR_CALLBACK crlHashTable_clearEntry(nsHashKey * aKey, void * aData, void* aClosure)
|
|
{
|
|
if (aKey != nsnull) {
|
|
delete (nsStringKey *)aKey;
|
|
}
|
|
return PR_TRUE;
|
|
}
|
|
|
|
struct CRLDownloadEvent : PLEvent {
|
|
nsCAutoString *urlString;
|
|
nsIStreamListener *psmDownloader;
|
|
};
|
|
//Note that nsNSSComponent is a singleton object across all threads, and automatic downloads
|
|
//are always scheduled sequentially - that is, once one crl download is complete, the next one
|
|
//is scheduled
|
|
static void PR_CALLBACK HandleCRLImportPLEvent(CRLDownloadEvent *aEvent)
|
|
{
|
|
nsresult rv;
|
|
nsIURI *pURL;
|
|
|
|
if((aEvent->psmDownloader==nsnull) || (aEvent->urlString==nsnull) )
|
|
return;
|
|
|
|
rv = NS_NewURI(&pURL, aEvent->urlString->get());
|
|
if(NS_SUCCEEDED(rv)){
|
|
NS_OpenURI(aEvent->psmDownloader, nsnull, pURL);
|
|
}
|
|
}
|
|
|
|
static void PR_CALLBACK DestroyCRLImportPLEvent(CRLDownloadEvent* aEvent)
|
|
{
|
|
delete aEvent->urlString;
|
|
delete aEvent;
|
|
}
|
|
|
|
nsNSSComponent::nsNSSComponent()
|
|
:mNSSInitialized(PR_FALSE)
|
|
{
|
|
NS_INIT_ISUPPORTS();
|
|
mutex = PR_NewLock();
|
|
|
|
#ifdef PR_LOGGING
|
|
if (!gPIPNSSLog)
|
|
gPIPNSSLog = PR_NewLogModule("pipnss");
|
|
#endif
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent::ctor\n"));
|
|
mUpdateTimerInitialized = PR_FALSE;
|
|
crlDownloadTimerOn = PR_FALSE;
|
|
crlsScheduledForDownload = nsnull;
|
|
mTimer = nsnull;
|
|
mCrlTimerLock = nsnull;
|
|
mObserversRegistered = PR_FALSE;
|
|
|
|
NS_ASSERTION( (0 == mInstanceCount), "nsNSSComponent is a singleton, but instantiated multiple times!");
|
|
++mInstanceCount;
|
|
hashTableCerts = nsnull;
|
|
}
|
|
|
|
nsNSSComponent::~nsNSSComponent()
|
|
{
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent::dtor\n"));
|
|
|
|
if(mUpdateTimerInitialized == PR_TRUE){
|
|
PR_Lock(mCrlTimerLock);
|
|
if(crlDownloadTimerOn == PR_TRUE){
|
|
mTimer->Cancel();
|
|
}
|
|
crlDownloadTimerOn = PR_FALSE;
|
|
PR_Unlock(mCrlTimerLock);
|
|
PR_DestroyLock(mCrlTimerLock);
|
|
if(crlsScheduledForDownload != nsnull){
|
|
crlsScheduledForDownload->Enumerate(crlHashTable_clearEntry);
|
|
crlsScheduledForDownload->Reset();
|
|
delete crlsScheduledForDownload;
|
|
}
|
|
|
|
mUpdateTimerInitialized = PR_FALSE;
|
|
}
|
|
|
|
// All cleanup code requiring services needs to happen in xpcom_shutdown
|
|
|
|
ShutdownNSS();
|
|
nsSSLIOLayerFreeTLSIntolerantSites();
|
|
--mInstanceCount;
|
|
|
|
if (mutex) {
|
|
PR_DestroyLock(mutex);
|
|
mutex = nsnull;
|
|
}
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent::dtor finished\n"));
|
|
}
|
|
|
|
#ifdef XP_MAC
|
|
#ifdef DEBUG
|
|
#define LOADABLE_CERTS_MODULE "NSSckbiDebug.shlb"
|
|
#else
|
|
#define LOADABLE_CERTS_MODULE "NSSckbi.shlb"
|
|
#endif /*DEBUG*/
|
|
#endif /*XP_MAC*/
|
|
|
|
static void setOCSPOptions(nsIPref * pref);
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::PIPBundleFormatStringFromName(const PRUnichar *name,
|
|
const PRUnichar **params,
|
|
PRUint32 numParams,
|
|
PRUnichar **outString)
|
|
{
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
if (mPIPNSSBundle && name) {
|
|
rv = mPIPNSSBundle->FormatStringFromName(name, params,
|
|
numParams, outString);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::GetPIPNSSBundleString(const PRUnichar *name,
|
|
nsAString &outString)
|
|
{
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
outString.SetLength(0);
|
|
if (mPIPNSSBundle && name) {
|
|
nsXPIDLString result;
|
|
rv = mPIPNSSBundle->GetStringFromName(name, getter_Copies(result));
|
|
if (NS_SUCCEEDED(rv)) {
|
|
outString = result;
|
|
rv = NS_OK;
|
|
}
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::GetPIPNSSBundleString(const PRUnichar *name,
|
|
PRUnichar **outString)
|
|
{
|
|
if (!mPIPNSSBundle || !name) {
|
|
*outString = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return mPIPNSSBundle->GetStringFromName(name, outString);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::DisableOCSP()
|
|
{
|
|
CERTCertDBHandle *certdb = CERT_GetDefaultCertDB();
|
|
|
|
SECStatus rv = CERT_DisableOCSPChecking(certdb);
|
|
return (rv == SECSuccess) ? NS_OK : NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::EnableOCSP()
|
|
{
|
|
setOCSPOptions(mPref);
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsNSSComponent::InstallLoadableRoots()
|
|
{
|
|
PRBool hasRoot = PR_FALSE;
|
|
PK11SlotListElement *listElement;
|
|
PK11SlotList *slotList = PK11_GetAllTokens(CKM_INVALID_MECHANISM,
|
|
PR_FALSE, PR_FALSE, nsnull);
|
|
if (slotList) {
|
|
for (listElement=slotList->head; listElement != NULL;
|
|
listElement = listElement->next) {
|
|
if (PK11_HasRootCerts(listElement->slot)) {
|
|
hasRoot = PR_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
PK11_FreeSlotList(slotList);
|
|
}
|
|
if (!hasRoot) {
|
|
nsresult rv;
|
|
nsString modName;
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("RootCertModuleName").get(),
|
|
modName);
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
nsCOMPtr<nsILocalFile> mozFile;
|
|
nsCOMPtr<nsIProperties> directoryService(do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID));
|
|
if (!directoryService)
|
|
return;
|
|
|
|
directoryService->Get( NS_XPCOM_CURRENT_PROCESS_DIR,
|
|
NS_GET_IID(nsIFile),
|
|
getter_AddRefs(mozFile));
|
|
|
|
if (!mozFile) {
|
|
return;
|
|
}
|
|
char *fullModuleName = nsnull;
|
|
#ifdef XP_MAC
|
|
char *unixModulePath=nsnull;
|
|
mozFile->Append("Essential Files");
|
|
mozFile->Append(LOADABLE_CERTS_MODULE);
|
|
mozFile->GetPath(&fullModuleName);
|
|
#else
|
|
char *processDir = nsnull;
|
|
mozFile->GetPath(&processDir);
|
|
fullModuleName = PR_GetLibraryName(processDir, "nssckbi");
|
|
nsMemory::Free(processDir);
|
|
#endif
|
|
/* If a module exists with the same name, delete it. */
|
|
char *modNameCString = ToNewCString(modName);
|
|
int modType;
|
|
SECMOD_DeleteModule(modNameCString, &modType);
|
|
SECMOD_AddNewModule(modNameCString, fullModuleName, 0, 0);
|
|
nsMemory::Free(fullModuleName);
|
|
nsMemory::Free(modNameCString);
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::ConfigureInternalPKCS11Token()
|
|
{
|
|
nsXPIDLString manufacturerID;
|
|
nsXPIDLString libraryDescription;
|
|
nsXPIDLString tokenDescription;
|
|
nsXPIDLString privateTokenDescription;
|
|
nsXPIDLString slotDescription;
|
|
nsXPIDLString privateSlotDescription;
|
|
nsXPIDLString fipsSlotDescription;
|
|
nsXPIDLString fipsPrivateSlotDescription;
|
|
|
|
nsresult rv;
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("ManufacturerID").get(),
|
|
getter_Copies(manufacturerID));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("LibraryDescription").get(),
|
|
getter_Copies(libraryDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("TokenDescription").get(),
|
|
getter_Copies(tokenDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("PrivateTokenDescription").get(),
|
|
getter_Copies(privateTokenDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("SlotDescription").get(),
|
|
getter_Copies(slotDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("PrivateSlotDescription").get(),
|
|
getter_Copies(privateSlotDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("FipsSlotDescription").get(),
|
|
getter_Copies(fipsSlotDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = GetPIPNSSBundleString(NS_LITERAL_STRING("FipsPrivateSlotDescription").get(),
|
|
getter_Copies(fipsPrivateSlotDescription));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
PK11_ConfigurePKCS11(NS_LossyConvertUCS2toASCII(manufacturerID).get(),
|
|
NS_LossyConvertUCS2toASCII(libraryDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(tokenDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(privateTokenDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(slotDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(privateSlotDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(fipsSlotDescription).get(),
|
|
NS_LossyConvertUCS2toASCII(fipsPrivateSlotDescription).get(),
|
|
0, 0);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::InitializePIPNSSBundle()
|
|
{
|
|
// Called during init only, no mutex required.
|
|
|
|
nsresult rv;
|
|
nsCOMPtr<nsIStringBundleService> bundleService(do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv));
|
|
if (NS_FAILED(rv) || !bundleService)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
bundleService->CreateBundle(PIPNSS_STRBUNDLE_URL,
|
|
getter_AddRefs(mPIPNSSBundle));
|
|
if (!mPIPNSSBundle)
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::RegisterPSMContentListener()
|
|
{
|
|
// Called during init only, no mutex required.
|
|
|
|
nsresult rv = NS_OK;
|
|
if (!mPSMContentListener) {
|
|
nsCOMPtr<nsIURILoader> dispatcher(do_GetService(NS_URI_LOADER_CONTRACTID));
|
|
if (dispatcher) {
|
|
mPSMContentListener = do_CreateInstance(NS_PSMCONTENTLISTEN_CONTRACTID);
|
|
rv = dispatcher->RegisterContentListener(mPSMContentListener);
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/* Table of pref names and SSL cipher ID */
|
|
typedef struct {
|
|
const char* pref;
|
|
long id;
|
|
} CipherPref;
|
|
|
|
static CipherPref CipherPrefs[] = {
|
|
/* SSL2 ciphers */
|
|
{"security.ssl2.rc4_128", SSL_EN_RC4_128_WITH_MD5},
|
|
{"security.ssl2.rc2_128", SSL_EN_RC2_128_CBC_WITH_MD5},
|
|
{"security.ssl2.des_ede3_192", SSL_EN_DES_192_EDE3_CBC_WITH_MD5},
|
|
{"security.ssl2.des_64", SSL_EN_DES_64_CBC_WITH_MD5},
|
|
{"security.ssl2.rc4_40", SSL_EN_RC4_128_EXPORT40_WITH_MD5},
|
|
{"security.ssl2.rc2_40", SSL_EN_RC2_128_CBC_EXPORT40_WITH_MD5},
|
|
/* SSL3 ciphers */
|
|
{"security.ssl3.fortezza_fortezza_sha", SSL_FORTEZZA_DMS_WITH_FORTEZZA_CBC_SHA},
|
|
{"security.ssl3.fortezza_rc4_sha", SSL_FORTEZZA_DMS_WITH_RC4_128_SHA},
|
|
{"security.ssl3.rsa_rc4_128_md5", SSL_RSA_WITH_RC4_128_MD5},
|
|
{"security.ssl3.rsa_fips_des_ede3_sha", SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA},
|
|
{"security.ssl3.rsa_des_ede3_sha", SSL_RSA_WITH_3DES_EDE_CBC_SHA},
|
|
{"security.ssl3.rsa_fips_des_sha", SSL_RSA_FIPS_WITH_DES_CBC_SHA},
|
|
{"security.ssl3.rsa_des_sha", SSL_RSA_WITH_DES_CBC_SHA},
|
|
{"security.ssl3.rsa_1024_rc4_56_sha", TLS_RSA_EXPORT1024_WITH_RC4_56_SHA},
|
|
{"security.ssl3.rsa_1024_des_cbc_sha", TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA},
|
|
{"security.ssl3.rsa_rc4_40_md5", SSL_RSA_EXPORT_WITH_RC4_40_MD5},
|
|
{"security.ssl3.rsa_rc2_40_md5", SSL_RSA_EXPORT_WITH_RC2_CBC_40_MD5},
|
|
{"security.ssl3.fortezza_null_sha", SSL_FORTEZZA_DMS_WITH_NULL_SHA},
|
|
{"security.ssl3.rsa_null_md5", SSL_RSA_WITH_NULL_MD5},
|
|
{NULL, 0} /* end marker */
|
|
};
|
|
|
|
static void setOCSPOptions(nsIPref * pref)
|
|
{
|
|
// Set up OCSP //
|
|
PRInt32 ocspEnabled;
|
|
pref->GetIntPref("security.OCSP.enabled", &ocspEnabled);
|
|
switch (ocspEnabled) {
|
|
case 0:
|
|
CERT_DisableOCSPChecking(CERT_GetDefaultCertDB());
|
|
CERT_DisableOCSPDefaultResponder(CERT_GetDefaultCertDB());
|
|
break;
|
|
case 1:
|
|
CERT_EnableOCSPChecking(CERT_GetDefaultCertDB());
|
|
break;
|
|
case 2:
|
|
{
|
|
char *signingCA = nsnull;
|
|
char *url = nsnull;
|
|
|
|
// Get the signing CA and service url //
|
|
pref->CopyCharPref("security.OCSP.signingCA", &signingCA);
|
|
pref->CopyCharPref("security.OCSP.URL", &url);
|
|
|
|
// Set OCSP up
|
|
CERT_EnableOCSPChecking(CERT_GetDefaultCertDB());
|
|
CERT_SetOCSPDefaultResponder(CERT_GetDefaultCertDB(), url, signingCA);
|
|
CERT_EnableOCSPDefaultResponder(CERT_GetDefaultCertDB());
|
|
|
|
nsMemory::Free(signingCA);
|
|
nsMemory::Free(url);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::PostCRLImportEvent(nsCAutoString *urlString, PSMContentDownloader *psmDownloader)
|
|
{
|
|
nsresult rv;
|
|
|
|
//Create the event
|
|
CRLDownloadEvent *event = new CRLDownloadEvent;
|
|
PL_InitEvent(event, this, (PLHandleEventProc)HandleCRLImportPLEvent, (PLDestroyEventProc)DestroyCRLImportPLEvent);
|
|
event->urlString = urlString;
|
|
event->psmDownloader = (nsIStreamListener *)psmDownloader;
|
|
|
|
//Get a handle to the ui event queue
|
|
nsCOMPtr<nsIEventQueueService> service =
|
|
do_GetService(NS_EVENTQUEUESERVICE_CONTRACTID, &rv);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
nsIEventQueue* result = nsnull;
|
|
rv = service->GetThreadEventQueue(NS_UI_THREAD, &result);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
nsCOMPtr<nsIEventQueue>uiQueue = dont_AddRef(result);
|
|
|
|
//Post the event
|
|
return uiQueue->PostEvent(event);
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::DownloadCRLDirectly(nsAutoString url, nsAutoString key)
|
|
{
|
|
//This api is meant to support dierct interactive update of crl from the crl manager
|
|
//or other such ui.
|
|
PSMContentDownloader *psmDownloader = new PSMContentDownloader(PSMContentDownloader::PKCS7_CRL);
|
|
|
|
nsCAutoString *urlString = new nsCAutoString();
|
|
urlString->AssignWithConversion(url.get());
|
|
|
|
return PostCRLImportEvent(urlString, psmDownloader);
|
|
}
|
|
|
|
nsresult nsNSSComponent::DownloadCrlSilently()
|
|
{
|
|
//Add this attempt to the hashtable
|
|
nsStringKey *hashKey = new nsStringKey(mCrlUpdateKey.get());
|
|
crlsScheduledForDownload->Put(hashKey,(void *)nsnull);
|
|
|
|
//Set up the download handler
|
|
PSMContentDownloader *psmDownloader = new PSMContentDownloader(PSMContentDownloader::PKCS7_CRL);
|
|
psmDownloader->setSilentDownload(PR_TRUE);
|
|
psmDownloader->setCrlAutodownloadKey(mCrlUpdateKey);
|
|
|
|
//Now get the url string
|
|
nsCAutoString *urlString = new nsCAutoString();
|
|
urlString->AssignWithConversion(mDownloadURL);
|
|
|
|
return PostCRLImportEvent(urlString, psmDownloader);
|
|
}
|
|
|
|
nsresult nsNSSComponent::getParamsForNextCrlToDownload(nsAutoString *url, PRTime *time, nsAutoString *key)
|
|
{
|
|
const char *updateEnabledPref = CRL_AUTOUPDATE_ENABLED_PREF;
|
|
const char *updateTimePref = CRL_AUTOUPDATE_TIME_PREF;
|
|
const char *updateURLPref = CRL_AUTOUPDATE_URL_PREF;
|
|
char **allCrlsToBeUpdated;
|
|
PRUint32 noOfCrls;
|
|
PRTime nearestUpdateTime = 0;
|
|
nsAutoString crlKey;
|
|
char *tempUrl;
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIPref> pref = do_GetService(NS_PREF_CONTRACTID,&rv);
|
|
if(NS_FAILED(rv)){
|
|
return rv;
|
|
}
|
|
|
|
rv = pref->GetChildList(updateEnabledPref, &noOfCrls, &allCrlsToBeUpdated);
|
|
if ( (NS_FAILED(rv)) || (noOfCrls==0) ){
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
for(PRInt32 i=0;i<noOfCrls;i++) {
|
|
PRBool autoUpdateEnabled;
|
|
nsAutoString tempCrlKey;
|
|
|
|
//First check if update pref is enabled for this crl
|
|
rv = pref->GetBoolPref(*(allCrlsToBeUpdated+i), &autoUpdateEnabled);
|
|
if( (NS_FAILED(rv)) || (autoUpdateEnabled==PR_FALSE) ){
|
|
continue;
|
|
}
|
|
|
|
//Now, generate the crl key. Same key would be used as hashkey as well
|
|
nsCAutoString enabledPrefCString(*(allCrlsToBeUpdated+i));
|
|
enabledPrefCString.ReplaceSubstring(updateEnabledPref,".");
|
|
tempCrlKey.AssignWithConversion(enabledPrefCString.get());
|
|
|
|
//Check if this crl has alreday been scheduled. If its present in the hashtable
|
|
//It would imply that it has been scheduled alreday in this client session, and
|
|
//is either in the precess of being downloaded, or its download has not succeeded
|
|
//for some reason. In the second case, we willnot retry in the current client session
|
|
nsStringKey hashKey(tempCrlKey.get());
|
|
if(crlsScheduledForDownload->Exists(&hashKey)){
|
|
continue;
|
|
}
|
|
|
|
char *tempTimeString;
|
|
PRTime tempTime;
|
|
nsCAutoString timingPrefCString(updateTimePref);
|
|
timingPrefCString.AppendWithConversion(tempCrlKey);
|
|
rv = pref->GetCharPref(timingPrefCString.get(), &tempTimeString);
|
|
if (NS_FAILED(rv)){
|
|
continue;
|
|
}
|
|
rv = PR_ParseTimeString(tempTimeString,PR_TRUE, &tempTime);
|
|
nsMemory::Free(tempTimeString);
|
|
if (NS_FAILED(rv)){
|
|
continue;
|
|
}
|
|
|
|
if(nearestUpdateTime == 0 || tempTime < nearestUpdateTime){
|
|
nsCAutoString urlPrefCString(updateURLPref);
|
|
urlPrefCString.AppendWithConversion(tempCrlKey);
|
|
rv = pref->GetCharPref(urlPrefCString.get(), &tempUrl);
|
|
if (NS_FAILED(rv) || (!tempUrl)){
|
|
continue;
|
|
}
|
|
nearestUpdateTime = tempTime;
|
|
crlKey = tempCrlKey;
|
|
}
|
|
}
|
|
|
|
if(noOfCrls > 0)
|
|
NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(noOfCrls, allCrlsToBeUpdated);
|
|
|
|
if(nearestUpdateTime > 0){
|
|
*time = nearestUpdateTime;
|
|
url->AssignWithConversion((const char *)tempUrl);
|
|
nsMemory::Free(tempUrl);
|
|
*key = crlKey;
|
|
rv = NS_OK;
|
|
} else{
|
|
rv = NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
void nsNSSComponent::Notify(nsITimer *timer)
|
|
{
|
|
nsresult rv;
|
|
|
|
//Timer has fired. So set the flag accordingly
|
|
PR_Lock(mCrlTimerLock);
|
|
crlDownloadTimerOn = PR_FALSE;
|
|
PR_Unlock(mCrlTimerLock);
|
|
|
|
//First, Handle handle this do0wnload
|
|
rv = DownloadCrlSilently();
|
|
|
|
//Dont Worry if successful or not
|
|
//Set the next timer
|
|
DefineNextTimer();
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::RemoveCrlFromList(nsAutoString key)
|
|
{
|
|
nsStringKey hashKey(key.get());
|
|
if(crlsScheduledForDownload->Exists(&hashKey)){
|
|
crlsScheduledForDownload->Remove(&hashKey);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::DefineNextTimer()
|
|
{
|
|
PRTime nextFiring;
|
|
PRTime now = PR_Now();
|
|
PRUint64 diff;
|
|
PRUint32 interval;
|
|
PRUint32 primaryDelay = CRL_AUTOUPDATE_DEFAULT_DELAY;
|
|
nsresult rv;
|
|
|
|
if(!mTimer){
|
|
mTimer = do_CreateInstance("@mozilla.org/timer;1", &rv);
|
|
if(NS_FAILED(rv))
|
|
return rv;
|
|
}
|
|
|
|
//If some timer is already running, cancel it. Thus, the request that came last,
|
|
//wins. This would ensure that in no way we end up setting to diffenent timers
|
|
//This part should be syncronized, for this function might be called from separate
|
|
//threads
|
|
|
|
//Lock the lock
|
|
PR_Lock(mCrlTimerLock);
|
|
|
|
if(crlDownloadTimerOn == PR_TRUE){
|
|
mTimer->Cancel();
|
|
}
|
|
|
|
rv = getParamsForNextCrlToDownload(&mDownloadURL, &nextFiring, &mCrlUpdateKey);
|
|
//If there are no more crls to be updated any time in future
|
|
if(NS_FAILED(rv)){
|
|
//Free the lock and return - no error - just implies nothing to schedule
|
|
PR_Unlock(mCrlTimerLock);
|
|
return NS_OK;
|
|
}
|
|
|
|
//Define the firing interval, from NOW
|
|
if ( now < nextFiring) {
|
|
LL_SUB(diff,nextFiring,now);
|
|
LL_L2UI(interval, diff);
|
|
//Now, we are doing 32 operations - so, don't need LL_ functions...
|
|
interval = interval/PR_USEC_PER_MSEC;
|
|
}else {
|
|
interval = primaryDelay;
|
|
}
|
|
|
|
mTimer->Init(NS_STATIC_CAST(nsITimerCallback*, this), interval);
|
|
crlDownloadTimerOn = PR_TRUE;
|
|
//Release
|
|
PR_Unlock(mCrlTimerLock);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
//Note that the StopCRLUpdateTimer and InitializeCRLUpdateTimer functions should never be called
|
|
//simultaneously from diff threads - they are NOT threadsafe. But, since there is no chance of
|
|
//that happening, there is not much benefit it trying to make it so at this point
|
|
nsresult
|
|
nsNSSComponent::StopCRLUpdateTimer()
|
|
{
|
|
|
|
//If it is at all runing.
|
|
if(mUpdateTimerInitialized == PR_TRUE){
|
|
if(crlsScheduledForDownload != nsnull){
|
|
crlsScheduledForDownload->Enumerate(crlHashTable_clearEntry);
|
|
crlsScheduledForDownload->Reset();
|
|
delete crlsScheduledForDownload;
|
|
crlsScheduledForDownload = nsnull;
|
|
}
|
|
|
|
PR_Lock(mCrlTimerLock);
|
|
if(crlDownloadTimerOn == PR_TRUE){
|
|
mTimer->Cancel();
|
|
}
|
|
crlDownloadTimerOn = PR_FALSE;
|
|
PR_Unlock(mCrlTimerLock);
|
|
PR_DestroyLock(mCrlTimerLock);
|
|
|
|
mUpdateTimerInitialized = PR_FALSE;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::InitializeCRLUpdateTimer()
|
|
{
|
|
nsresult rv;
|
|
|
|
//First Check if this is already initialized. Ten we stop it,
|
|
if(mUpdateTimerInitialized == PR_FALSE){
|
|
mTimer = do_CreateInstance("@mozilla.org/timer;1", &rv);
|
|
if(NS_FAILED(rv)){
|
|
return rv;
|
|
}
|
|
crlsScheduledForDownload = new nsHashtable(PR_TRUE);
|
|
mCrlTimerLock = PR_NewLock();
|
|
DefineNextTimer();
|
|
mUpdateTimerInitialized = PR_TRUE;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::InitializeNSS()
|
|
{
|
|
// Can be called both during init and profile change.
|
|
// Needs mutex protection.
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent::InitializeNSS\n"));
|
|
|
|
// variables used for flow control within this function
|
|
|
|
enum { problem_none, problem_no_rw, problem_no_security_at_all }
|
|
which_nss_problem = problem_none;
|
|
|
|
{
|
|
nsAutoLock lock(mutex);
|
|
|
|
// Init phase 1, prepare own variables used for NSS
|
|
|
|
if (mNSSInitialized) {
|
|
PR_ASSERT(!"Trying to initialize NSS twice"); // We should never try to
|
|
// initialize NSS more than
|
|
// once in a process.
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mNSSInitialized = PR_TRUE;
|
|
|
|
hashTableCerts = PL_NewHashTable( 0, certHashtable_keyHash, certHashtable_keyCompare,
|
|
certHashtable_valueCompare, 0, 0 );
|
|
|
|
nsresult rv;
|
|
nsXPIDLCString profileStr;
|
|
nsCOMPtr<nsIFile> profilePath;
|
|
|
|
rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
|
|
getter_AddRefs(profilePath));
|
|
if (NS_FAILED(rv)) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_ERROR, ("Unable to get profile directory\n"));
|
|
return rv;
|
|
}
|
|
|
|
#ifdef XP_MAC
|
|
// On the Mac we place all NSS DBs in the Security
|
|
// Folder in the profile directory.
|
|
profilePath->Append("Security");
|
|
profilePath->Create(nsIFile::DIRECTORY_TYPE, 0); //This is for Mac, don't worry about
|
|
//permissions.
|
|
#endif
|
|
|
|
rv = profilePath->GetPath(getter_Copies(profileStr));
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
PRBool supress_warning_preference = PR_FALSE;
|
|
rv = mPref->GetBoolPref("security.suppress_nss_rw_impossible_warning", &supress_warning_preference);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
supress_warning_preference = PR_FALSE;
|
|
}
|
|
|
|
// init phase 2, init calls to NSS library
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("NSS Initialization beginning\n"));
|
|
|
|
// The call to ConfigureInternalPKCS11Token needs to be done before NSS is initialized,
|
|
// but affects only static data.
|
|
// If we could assume i18n will not change between profiles, one call per application
|
|
// run were sufficient. As I can't predict what happens in the future, let's repeat
|
|
// this call for every re-init of NSS.
|
|
|
|
ConfigureInternalPKCS11Token();
|
|
|
|
if (::NSS_InitReadWrite(profileStr) != SECSuccess) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can not init NSS r/w in %s\n", profileStr));
|
|
|
|
if (supress_warning_preference) {
|
|
which_nss_problem = problem_none;
|
|
}
|
|
else {
|
|
which_nss_problem = problem_no_rw;
|
|
}
|
|
|
|
// try to init r/o
|
|
if (NSS_Init(profileStr) != SECSuccess) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can not init in r/o either\n"));
|
|
which_nss_problem = problem_no_security_at_all;
|
|
|
|
NSS_NoDB_Init(profileStr);
|
|
}
|
|
}
|
|
|
|
// init phase 3, only if phase 2 was successful
|
|
|
|
if (problem_no_security_at_all != which_nss_problem) {
|
|
::NSS_SetDomesticPolicy();
|
|
// SSL_EnableCipher(SSL_RSA_WITH_NULL_MD5, SSL_ALLOWED);
|
|
|
|
PK11_SetPasswordFunc(PK11PasswordPrompt);
|
|
|
|
// Register a callback so we can inform NSS when these prefs change
|
|
mPref->RegisterCallback("security.", nsNSSComponent::PrefChangedCallback,
|
|
(void*) this);
|
|
|
|
PRBool enabled;
|
|
mPref->GetBoolPref("security.enable_ssl2", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_SSL2, enabled);
|
|
mPref->GetBoolPref("security.enable_ssl3", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_SSL3, enabled);
|
|
mPref->GetBoolPref("security.enable_tls", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_TLS, enabled);
|
|
|
|
// Set SSL/TLS ciphers
|
|
for (CipherPref* cp = CipherPrefs; cp->pref; ++cp) {
|
|
mPref->GetBoolPref(cp->pref, &enabled);
|
|
|
|
SSL_CipherPrefSetDefault(cp->id, enabled);
|
|
}
|
|
|
|
// Enable ciphers for PKCS#12
|
|
SEC_PKCS12EnableCipher(PKCS12_RC4_40, 1);
|
|
SEC_PKCS12EnableCipher(PKCS12_RC4_128, 1);
|
|
SEC_PKCS12EnableCipher(PKCS12_RC2_CBC_40, 1);
|
|
SEC_PKCS12EnableCipher(PKCS12_RC2_CBC_128, 1);
|
|
SEC_PKCS12EnableCipher(PKCS12_DES_56, 1);
|
|
SEC_PKCS12EnableCipher(PKCS12_DES_EDE3_168, 1);
|
|
SEC_PKCS12SetPreferredCipher(PKCS12_DES_EDE3_168, 1);
|
|
PORT_SetUCS2_ASCIIConversionFunction(pip_ucs2_ascii_conversion_fn);
|
|
|
|
// Set up OCSP //
|
|
setOCSPOptions(mPref);
|
|
|
|
InstallLoadableRoots();
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("NSS Initialization done\n"));
|
|
}
|
|
}
|
|
|
|
if (problem_none != which_nss_problem) {
|
|
nsString message;
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("NSS problem, trying to bring up GUI error message\n"));
|
|
|
|
// We might want to use different messages, depending on what failed.
|
|
// For now, let's use the same message.
|
|
nsresult rv = GetPIPNSSBundleString(NS_LITERAL_STRING("NSSInitProblem").get(), message);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can't get error string\n"));
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService("@mozilla.org/embedcomp/window-watcher;1"));
|
|
if (!wwatch) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can't get window watcher\n"));
|
|
}
|
|
else {
|
|
nsCOMPtr<nsIPrompt> prompter;
|
|
wwatch->GetNewPrompter(0, getter_AddRefs(prompter));
|
|
if (!prompter) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can't get window prompter\n"));
|
|
}
|
|
else {
|
|
nsCOMPtr<nsIProxyObjectManager> proxyman(do_GetService(NS_XPCOMPROXY_CONTRACTID));
|
|
if (!proxyman) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can't get proxy manager\n"));
|
|
}
|
|
else {
|
|
nsCOMPtr<nsIPrompt> proxyPrompt;
|
|
proxyman->GetProxyForObject(NS_UI_THREAD_EVENTQ, NS_GET_IID(nsIPrompt),
|
|
prompter, PROXY_SYNC, getter_AddRefs(proxyPrompt));
|
|
if (!proxyPrompt) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can't get proxy for nsIPrompt\n"));
|
|
}
|
|
else {
|
|
proxyPrompt->Alert(nsnull, message.get());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::ShutdownNSS()
|
|
{
|
|
// Can be called both during init and profile change,
|
|
// needs mutex protection.
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent::ShutdownNSS\n"));
|
|
|
|
nsAutoLock lock(mutex);
|
|
|
|
if (hashTableCerts) {
|
|
PL_HashTableEnumerateEntries(hashTableCerts, certHashtable_clearEntry, 0);
|
|
PL_HashTableDestroy(hashTableCerts);
|
|
hashTableCerts = nsnull;
|
|
}
|
|
|
|
if (mNSSInitialized) {
|
|
mNSSInitialized = PR_FALSE;
|
|
|
|
PK11_SetPasswordFunc((PK11PasswordFunc)nsnull);
|
|
|
|
if (mPref) {
|
|
mPref->UnregisterCallback("security.", nsNSSComponent::PrefChangedCallback,
|
|
(void*) this);
|
|
}
|
|
|
|
::NSS_Shutdown();
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::Init()
|
|
{
|
|
// No mutex protection.
|
|
// Assume Init happens before any concurrency on "this" can start.
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("Beginning NSS initialization\n"));
|
|
rv = InitializePIPNSSBundle();
|
|
if (NS_FAILED(rv)) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_ERROR, ("Unable to create pipnss bundle.\n"));
|
|
return rv;
|
|
}
|
|
|
|
if (!mPref) {
|
|
mPref = do_GetService(NS_PREF_CONTRACTID);
|
|
NS_ASSERTION(mPref, "Unable to get pref service");
|
|
}
|
|
|
|
// Do that before NSS init, to make sure we won't get unloaded.
|
|
RegisterObservers();
|
|
|
|
rv = InitializeNSS();
|
|
if (NS_FAILED(rv)) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_ERROR, ("Unable to Initialize NSS.\n"));
|
|
return rv;
|
|
}
|
|
|
|
InitializeCRLUpdateTimer();
|
|
RegisterPSMContentListener();
|
|
|
|
nsCOMPtr<nsIEntropyCollector> ec
|
|
= do_GetService(NS_ENTROPYCOLLECTOR_CONTRACTID);
|
|
|
|
nsCOMPtr<nsIBufEntropyCollector> bec;
|
|
|
|
if (ec) {
|
|
bec = do_QueryInterface(ec);
|
|
}
|
|
|
|
NS_ASSERTION(bec, "No buffering entropy collector. "
|
|
"This means no entropy will be collected.");
|
|
if (bec) {
|
|
bec->ForwardTo(this);
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
/* nsISupports Implementation for the class */
|
|
NS_IMPL_THREADSAFE_ISUPPORTS6(nsNSSComponent,
|
|
nsISecurityManagerComponent,
|
|
nsISignatureVerifier,
|
|
nsIEntropyCollector,
|
|
nsINSSComponent,
|
|
nsIObserver,
|
|
nsISupportsWeakReference);
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::DisplaySecurityAdvisor()
|
|
{
|
|
return NS_ERROR_NOT_IMPLEMENTED; // not implemented
|
|
}
|
|
|
|
|
|
//---------------------------------------------
|
|
// Functions Implementing nsISignatureVerifier
|
|
//---------------------------------------------
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::HashBegin(PRUint32 alg, HASHContext** id)
|
|
{
|
|
*id = HASH_Create((HASH_HashType)alg);
|
|
if (*id) {
|
|
HASH_Begin(*id);
|
|
return NS_OK;
|
|
} else {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::HashUpdate(HASHContext* ctx, const char* buf, PRUint32 buflen)
|
|
{
|
|
HASH_Update(ctx, (const unsigned char*)buf, buflen);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::HashEnd(HASHContext* ctx, unsigned char** hash,
|
|
PRUint32* hashLen, PRUint32 maxLen)
|
|
{
|
|
HASH_End(ctx, *hash, hashLen, maxLen);
|
|
HASH_Destroy(ctx);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::GetPassword(char **aRet)
|
|
{
|
|
// This functionality is only used in wallet.
|
|
// This interface can go away once we get rid of PSM 1.x.
|
|
*aRet = nsnull;
|
|
return NS_OK;
|
|
}
|
|
|
|
/* Callback functions for decoder. For now, use empty/default functions. */
|
|
static void ContentCallback(void *arg,
|
|
const char *buf,
|
|
unsigned long len)
|
|
{
|
|
}
|
|
|
|
static PK11SymKey * GetDecryptKeyCallback(void *arg,
|
|
SECAlgorithmID *algid)
|
|
{
|
|
return nsnull;
|
|
}
|
|
|
|
static PRBool DecryptionAllowedCallback(SECAlgorithmID *algid,
|
|
PK11SymKey *bulkkey)
|
|
{
|
|
return SECMIME_DecryptionAllowed(algid, bulkkey);
|
|
}
|
|
|
|
#ifdef NSS_3_4
|
|
static void * GetPasswordKeyCallback(void *arg, void *handle)
|
|
#else
|
|
static SECItem * GetPasswordKeyCallback(void *arg,
|
|
SECKEYKeyDBHandle *handle)
|
|
#endif
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::VerifySignature(const char* aRSABuf, PRUint32 aRSABufLen,
|
|
const char* aPlaintext, PRUint32 aPlaintextLen,
|
|
PRInt32* aErrorCode,
|
|
nsIPrincipal** aPrincipal)
|
|
{
|
|
SEC_PKCS7DecoderContext * p7_ctxt = nsnull;
|
|
SEC_PKCS7ContentInfo * p7_info = nsnull;
|
|
unsigned char hash[SHA1_LENGTH];
|
|
PRBool rv;
|
|
|
|
if (!aPrincipal || !aErrorCode)
|
|
return NS_ERROR_NULL_POINTER;
|
|
*aErrorCode = 0;
|
|
*aPrincipal = nsnull;
|
|
|
|
p7_ctxt = SEC_PKCS7DecoderStart(ContentCallback,
|
|
nsnull,
|
|
GetPasswordKeyCallback,
|
|
nsnull,
|
|
GetDecryptKeyCallback,
|
|
nsnull,
|
|
DecryptionAllowedCallback);
|
|
if (!p7_ctxt) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (SEC_PKCS7DecoderUpdate(p7_ctxt,aRSABuf, aRSABufLen) != SECSuccess) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
p7_info = SEC_PKCS7DecoderFinish(p7_ctxt);
|
|
if (!p7_info) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
//-- If a plaintext was provided, hash it.
|
|
SECItem digest;
|
|
digest.data = nsnull;
|
|
digest.len = 0;
|
|
|
|
if (aPlaintext) {
|
|
HASHContext* hash_ctxt;
|
|
PRUint32 hashLen = 0;
|
|
|
|
hash_ctxt = HASH_Create(HASH_AlgSHA1);
|
|
HASH_Begin(hash_ctxt);
|
|
HASH_Update(hash_ctxt,(const unsigned char*)aPlaintext, aPlaintextLen);
|
|
HASH_End(hash_ctxt, hash, &hashLen, SHA1_LENGTH);
|
|
HASH_Destroy(hash_ctxt);
|
|
|
|
digest.data = hash;
|
|
digest.len = SHA1_LENGTH;
|
|
}
|
|
|
|
//-- Verify signature
|
|
rv = SEC_PKCS7VerifyDetachedSignature(p7_info, certUsageObjectSigner, &digest, HASH_AlgSHA1, PR_TRUE);
|
|
if (rv != PR_TRUE) {
|
|
*aErrorCode = PR_GetError();
|
|
return NS_OK;
|
|
}
|
|
|
|
// Get the signing cert //
|
|
CERTCertificate *cert = p7_info->content.signedData->signerInfos[0]->cert;
|
|
if (cert) {
|
|
nsresult rv2;
|
|
nsCOMPtr<nsIX509Cert> pCert = new nsNSSCertificate(cert);
|
|
if (!mScriptSecurityManager) {
|
|
nsAutoLock lock(mutex);
|
|
// re-test the condition to prevent double initialization
|
|
if (!mScriptSecurityManager) {
|
|
mScriptSecurityManager =
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv2);
|
|
if (NS_FAILED(rv2)) return rv2;
|
|
}
|
|
}
|
|
//-- Create a certificate principal with id and organization data
|
|
PRUnichar* fingerprint;
|
|
rv2 = pCert->GetSha1Fingerprint(&fingerprint);
|
|
nsCAutoString fingerprintStr;
|
|
fingerprintStr.AssignWithConversion(fingerprint);
|
|
PR_FREEIF(fingerprint);
|
|
if (NS_FAILED(rv2)) return rv2;
|
|
rv2 = mScriptSecurityManager->GetCertificatePrincipal(fingerprintStr.get(), aPrincipal);
|
|
if (NS_FAILED(rv2) || !*aPrincipal) return rv2;
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certPrincipal = do_QueryInterface(*aPrincipal, &rv2);
|
|
if (NS_FAILED(rv2)) return rv2;
|
|
PRUnichar* orgName;
|
|
rv2 = pCert->GetOrganization(&orgName);
|
|
if (NS_FAILED(rv2)) return rv2;
|
|
nsCAutoString orgNameStr;
|
|
orgNameStr.AssignWithConversion(orgName);
|
|
PR_FREEIF(orgName);
|
|
rv2 = certPrincipal->SetCommonName(orgNameStr.get());
|
|
if (NS_FAILED(rv2)) return rv2;
|
|
}
|
|
|
|
if (p7_info) {
|
|
SEC_PKCS7DestroyContentInfo(p7_info);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::RandomUpdate(void *entropy, PRInt32 bufLen)
|
|
{
|
|
// Asynchronous event happening often,
|
|
// must not interfere with initialization or profile switch.
|
|
|
|
nsAutoLock lock(mutex);
|
|
|
|
if (!mNSSInitialized)
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
PK11_RandomUpdate(entropy, bufLen);
|
|
return NS_OK;
|
|
}
|
|
|
|
int PR_CALLBACK
|
|
nsNSSComponent::PrefChangedCallback(const char* aPrefName, void* data)
|
|
{
|
|
nsNSSComponent* nss = NS_STATIC_CAST(nsNSSComponent*, data);
|
|
if (nss)
|
|
nss->PrefChanged(aPrefName);
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
nsNSSComponent::PrefChanged(const char* prefName)
|
|
{
|
|
PRBool enabled;
|
|
|
|
if (!nsCRT::strcmp(prefName, "security.enable_ssl2")) {
|
|
mPref->GetBoolPref("security.enable_ssl2", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_SSL2, enabled);
|
|
} else if (!nsCRT::strcmp(prefName, "security.enable_ssl3")) {
|
|
mPref->GetBoolPref("security.enable_ssl3", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_SSL3, enabled);
|
|
} else if (!nsCRT::strcmp(prefName, "security.enable_tls")) {
|
|
mPref->GetBoolPref("security.enable_tls", &enabled);
|
|
SSL_OptionSetDefault(SSL_ENABLE_TLS, enabled);
|
|
} else if (!nsCRT::strcmp(prefName, "security.OCSP.enabled")) {
|
|
setOCSPOptions(mPref);
|
|
} else {
|
|
/* Look through the cipher table and set according to pref setting */
|
|
for (CipherPref* cp = CipherPrefs; cp->pref; ++cp) {
|
|
if (!nsCRT::strcmp(prefName, cp->pref)) {
|
|
mPref->GetBoolPref(cp->pref, &enabled);
|
|
SSL_CipherPrefSetDefault(cp->id, enabled);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
#define PROFILE_CHANGE_NET_TEARDOWN_TOPIC NS_LITERAL_CSTRING("profile-change-net-teardown").get()
|
|
#define PROFILE_CHANGE_NET_RESTORE_TOPIC NS_LITERAL_CSTRING("profile-change-net-restore").get()
|
|
#endif
|
|
|
|
#define PROFILE_BEFORE_CHANGE_TOPIC NS_LITERAL_CSTRING("profile-before-change").get()
|
|
#define PROFILE_AFTER_CHANGE_TOPIC NS_LITERAL_CSTRING("profile-after-change").get()
|
|
#define SESSION_LOGOUT_TOPIC NS_LITERAL_CSTRING("session-logout").get()
|
|
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::Observe(nsISupports *aSubject, const char *aTopic,
|
|
const PRUnichar *someData)
|
|
{
|
|
#ifdef DEBUG
|
|
static PRBool isNetworkDown = PR_FALSE;
|
|
#endif
|
|
|
|
if (nsCRT::strcmp(aTopic, PROFILE_BEFORE_CHANGE_TOPIC) == 0) {
|
|
#ifdef DEBUG
|
|
NS_ASSERTION(isNetworkDown, "nsNSSComponent relies on profile manager to wait for synchronous shutdown of all network activity");
|
|
#endif
|
|
|
|
PRBool needsCleanup = PR_TRUE;
|
|
|
|
{
|
|
nsAutoLock lock(mutex);
|
|
|
|
if (!mNSSInitialized) {
|
|
// Make sure we don't try to cleanup if we have already done so.
|
|
// This makes sure we behave safely, in case we are notified
|
|
// multiple times.
|
|
needsCleanup = PR_FALSE;
|
|
}
|
|
}
|
|
|
|
StopCRLUpdateTimer();
|
|
|
|
if (needsCleanup) {
|
|
ShutdownNSS();
|
|
}
|
|
}
|
|
else if (nsCRT::strcmp(aTopic, PROFILE_AFTER_CHANGE_TOPIC) == 0) {
|
|
|
|
PRBool needsInit = PR_TRUE;
|
|
|
|
{
|
|
nsAutoLock lock(mutex);
|
|
|
|
if (mNSSInitialized) {
|
|
// We have already initialized NSS before the profile came up,
|
|
// no need to do it again
|
|
needsInit = PR_FALSE;
|
|
}
|
|
}
|
|
|
|
if (needsInit) {
|
|
if (NS_FAILED(InitializeNSS())) {
|
|
PR_LOG(gPIPNSSLog, PR_LOG_ERROR, ("Unable to Initialize NSS after profile switch.\n"));
|
|
}
|
|
}
|
|
|
|
InitializeCRLUpdateTimer();
|
|
}
|
|
else if (nsCRT::strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID) == 0) {
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent: XPCom shutdown observed\n"));
|
|
|
|
// Cleanup code that requires services, it's too late in destructor.
|
|
|
|
if (mPSMContentListener) {
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIURILoader> dispatcher(do_GetService(NS_URI_LOADER_CONTRACTID));
|
|
if (dispatcher) {
|
|
rv = dispatcher->UnRegisterContentListener(mPSMContentListener);
|
|
}
|
|
mPSMContentListener = nsnull;
|
|
}
|
|
|
|
nsCOMPtr<nsIEntropyCollector> ec
|
|
= do_GetService(NS_ENTROPYCOLLECTOR_CONTRACTID);
|
|
|
|
if (ec) {
|
|
nsCOMPtr<nsIBufEntropyCollector> bec
|
|
= do_QueryInterface(ec);
|
|
if (bec) {
|
|
bec->DontForward();
|
|
}
|
|
}
|
|
}
|
|
else if ((nsCRT::strcmp(aTopic, SESSION_LOGOUT_TOPIC) == 0) && mNSSInitialized) {
|
|
PK11_LogoutAll();
|
|
}
|
|
|
|
|
|
#ifdef DEBUG
|
|
else if (nsCRT::strcmp(aTopic, PROFILE_CHANGE_NET_TEARDOWN_TOPIC) == 0) {
|
|
isNetworkDown = PR_TRUE;
|
|
}
|
|
else if (nsCRT::strcmp(aTopic, PROFILE_CHANGE_NET_RESTORE_TOPIC) == 0) {
|
|
isNetworkDown = PR_FALSE;
|
|
}
|
|
#endif
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsNSSComponent::RegisterObservers()
|
|
{
|
|
// Happens once during init only, no mutex protection.
|
|
|
|
nsCOMPtr<nsIObserverService> observerService(do_GetService("@mozilla.org/observer-service;1"));
|
|
NS_ASSERTION(observerService, "could not get observer service");
|
|
if (observerService) {
|
|
mObserversRegistered = PR_TRUE;
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent: adding observers\n"));
|
|
|
|
// We are a service.
|
|
// Once we are loaded, don't allow being removed from memory.
|
|
// This makes sense, as initializing NSS is expensive.
|
|
|
|
// By using PR_FALSE for parameter ownsWeak in AddObserver,
|
|
// we make sure that we won't get unloaded until the application shuts down.
|
|
|
|
observerService->AddObserver(this, NS_XPCOM_SHUTDOWN_OBSERVER_ID, PR_FALSE);
|
|
|
|
observerService->AddObserver(this, PROFILE_BEFORE_CHANGE_TOPIC, PR_FALSE);
|
|
observerService->AddObserver(this, PROFILE_AFTER_CHANGE_TOPIC, PR_FALSE);
|
|
observerService->AddObserver(this, SESSION_LOGOUT_TOPIC, PR_FALSE);
|
|
#ifdef DEBUG
|
|
observerService->AddObserver(this, PROFILE_CHANGE_NET_TEARDOWN_TOPIC, PR_FALSE);
|
|
observerService->AddObserver(this, PROFILE_CHANGE_NET_RESTORE_TOPIC, PR_FALSE);
|
|
#endif
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSComponent::RememberCert(CERTCertificate *cert)
|
|
{
|
|
// Must not interfere with init / shutdown / profile switch.
|
|
|
|
nsAutoLock lock(mutex);
|
|
|
|
if (!hashTableCerts || !cert)
|
|
return NS_OK;
|
|
|
|
void *found = PL_HashTableLookup(hashTableCerts, (void*)&cert->certKey);
|
|
|
|
if (found) {
|
|
// we remember that cert already
|
|
return NS_OK;
|
|
}
|
|
|
|
CERTCertificate *myDupCert = CERT_DupCertificate(cert);
|
|
|
|
if (!myDupCert)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
if (!PL_HashTableAdd(hashTableCerts, (void*)&myDupCert->certKey, myDupCert)) {
|
|
CERT_DestroyCertificate(myDupCert);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(PipUIContext, nsIInterfaceRequestor)
|
|
|
|
PipUIContext::PipUIContext()
|
|
{
|
|
NS_INIT_ISUPPORTS();
|
|
}
|
|
|
|
PipUIContext::~PipUIContext()
|
|
{
|
|
}
|
|
|
|
/* void getInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result); */
|
|
NS_IMETHODIMP PipUIContext::GetInterface(const nsIID & uuid, void * *result)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
|
|
if (uuid.Equals(NS_GET_IID(nsIPrompt))) {
|
|
nsCOMPtr<nsIProxyObjectManager> proxyman(do_GetService(NS_XPCOMPROXY_CONTRACTID));
|
|
if (!proxyman) return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIPrompt> prompter;
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService("@mozilla.org/embedcomp/window-watcher;1"));
|
|
if (wwatch) {
|
|
wwatch->GetNewPrompter(0, getter_AddRefs(prompter));
|
|
if (prompter) {
|
|
nsCOMPtr<nsIPrompt> proxyPrompt;
|
|
proxyman->GetProxyForObject(NS_UI_THREAD_EVENTQ, NS_GET_IID(nsIPrompt),
|
|
prompter, PROXY_SYNC, getter_AddRefs(proxyPrompt));
|
|
if (!proxyPrompt) return NS_ERROR_FAILURE;
|
|
*result = proxyPrompt;
|
|
NS_ADDREF((nsIPrompt*)*result);
|
|
}
|
|
}
|
|
} else {
|
|
rv = NS_ERROR_NO_INTERFACE;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
static const char *kNSSDialogsContractId = NS_NSSDIALOGS_CONTRACTID;
|
|
|
|
nsresult
|
|
getNSSDialogs(void **_result, REFNSIID aIID)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsISupports> result;
|
|
nsCOMPtr<nsISupports> proxiedResult;
|
|
|
|
rv = nsServiceManager::GetService(kNSSDialogsContractId,
|
|
NS_GET_IID(nsINSSDialogs),
|
|
getter_AddRefs(result));
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
nsCOMPtr<nsIProxyObjectManager> proxyman(do_GetService(NS_XPCOMPROXY_CONTRACTID));
|
|
if (!proxyman)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
proxyman->GetProxyForObject(NS_UI_THREAD_EVENTQ,
|
|
aIID, result, PROXY_SYNC,
|
|
getter_AddRefs(proxiedResult));
|
|
|
|
if (!proxiedResult) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
rv = proxiedResult->QueryInterface(aIID, _result);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
setPassword(PK11SlotInfo *slot, nsIInterfaceRequestor *ctx)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
|
|
if (PK11_NeedUserInit(slot)) {
|
|
nsITokenPasswordDialogs *dialogs;
|
|
PRBool canceled;
|
|
NS_ConvertUTF8toUCS2 tokenName(PK11_GetTokenName(slot));
|
|
|
|
rv = getNSSDialogs((void**)&dialogs,
|
|
NS_GET_IID(nsITokenPasswordDialogs));
|
|
|
|
if (NS_FAILED(rv)) goto loser;
|
|
|
|
rv = dialogs->SetPassword(ctx,
|
|
tokenName.get(),
|
|
&canceled);
|
|
NS_RELEASE(dialogs);
|
|
if (NS_FAILED(rv)) goto loser;
|
|
|
|
if (canceled) { rv = NS_ERROR_NOT_AVAILABLE; goto loser; }
|
|
}
|
|
loser:
|
|
return rv;
|
|
}
|
|
|
|
|
|
PSMContentDownloader::PSMContentDownloader(PRUint32 type)
|
|
: mByteData(nsnull),
|
|
mType(type),
|
|
mDoSilentDownload(PR_FALSE)
|
|
{
|
|
NS_INIT_ISUPPORTS();
|
|
mNSS = do_GetService(PSM_COMPONENT_CONTRACTID);
|
|
}
|
|
|
|
PSMContentDownloader::~PSMContentDownloader()
|
|
{
|
|
if (mByteData)
|
|
nsMemory::Free(mByteData);
|
|
}
|
|
|
|
/*NS_IMPL_ISUPPORTS1(CertDownloader, nsIStreamListener)*/
|
|
NS_IMPL_ISUPPORTS1(PSMContentDownloader,nsIStreamListener)
|
|
|
|
const PRInt32 kDefaultCertAllocLength = 2048;
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentDownloader::OnStartRequest(nsIRequest* request, nsISupports* context)
|
|
{
|
|
nsresult rv;
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("CertDownloader::OnStartRequest\n"));
|
|
nsCOMPtr<nsIChannel> channel(do_QueryInterface(request));
|
|
if (!channel) return NS_ERROR_FAILURE;
|
|
|
|
// Get the URI //
|
|
channel->GetURI(getter_AddRefs(mURI));
|
|
|
|
rv = channel->GetContentLength(&mContentLength);
|
|
if (rv != NS_OK || mContentLength == -1)
|
|
mContentLength = kDefaultCertAllocLength;
|
|
|
|
mBufferOffset = 0;
|
|
mByteData = (char*) nsMemory::Alloc(mContentLength);
|
|
if (!mByteData)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentDownloader::OnDataAvailable(nsIRequest* request,
|
|
nsISupports* context,
|
|
nsIInputStream *aIStream,
|
|
PRUint32 aSourceOffset,
|
|
PRUint32 aLength)
|
|
{
|
|
if (!mByteData)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
PRUint32 amt;
|
|
nsresult err;
|
|
//Do a check to see if we need to allocate more memory.
|
|
if ((mBufferOffset + (PRInt32)aLength) > mContentLength) {
|
|
size_t newSize = mContentLength + kDefaultCertAllocLength;
|
|
char *newBuffer;
|
|
newBuffer = (char*)nsMemory::Realloc(mByteData, newSize);
|
|
if (newBuffer == nsnull) {
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
mByteData = newBuffer;
|
|
mContentLength = newSize;
|
|
}
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("CertDownloader::OnDataAvailable\n"));
|
|
do {
|
|
err = aIStream->Read(mByteData+mBufferOffset,
|
|
mContentLength-mBufferOffset, &amt);
|
|
if (amt == 0) break;
|
|
if (NS_FAILED(err)) return err;
|
|
|
|
aLength -= amt;
|
|
mBufferOffset += amt;
|
|
|
|
} while (aLength > 0);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentDownloader::OnStopRequest(nsIRequest* request,
|
|
nsISupports* context,
|
|
nsresult aStatus)
|
|
{
|
|
//Check if the download succeeded - it might have failed due to
|
|
//network issues, etc.
|
|
if (NS_FAILED(aStatus)){
|
|
handleContentDownloadError(aStatus);
|
|
return aStatus;
|
|
}
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("CertDownloader::OnStopRequest\n"));
|
|
/* this will init NSS if it hasn't happened already */
|
|
nsCOMPtr<nsIX509CertDB> certdb = do_GetService(NS_X509CERTDB_CONTRACTID);
|
|
|
|
nsresult rv;
|
|
nsCOMPtr<nsIInterfaceRequestor> ctx = new PipUIContext();
|
|
|
|
switch (mType) {
|
|
case PSMContentDownloader::X509_CA_CERT:
|
|
return certdb->ImportCertificates(mByteData, mBufferOffset, mType, ctx);
|
|
case PSMContentDownloader::X509_USER_CERT:
|
|
return certdb->ImportUserCertificate(mByteData, mBufferOffset, ctx);
|
|
case PSMContentDownloader::X509_EMAIL_CERT:
|
|
return certdb->ImportEmailCertificate(mByteData, mBufferOffset, ctx);
|
|
case PSMContentDownloader::PKCS7_CRL:
|
|
return certdb->ImportCrl(mByteData, mBufferOffset, mURI, SEC_CRL_TYPE, mDoSilentDownload, mCrlAutoDownloadKey.get());
|
|
default:
|
|
rv = NS_ERROR_FAILURE;
|
|
break;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
|
|
nsresult
|
|
PSMContentDownloader::handleContentDownloadError(nsresult errCode)
|
|
{
|
|
nsString tmpMessage;
|
|
nsresult rv;
|
|
nsCOMPtr<nsINSSComponent> nssComponent(do_GetService(kNSSComponentCID, &rv));
|
|
if(NS_FAILED(rv)){
|
|
return rv;
|
|
}
|
|
|
|
//Handling errors for crl download only, for now.
|
|
switch (mType){
|
|
case PSMContentDownloader::PKCS7_CRL:
|
|
|
|
//TO DO: Handle network errors in details
|
|
//XXXXXXXXXXXXXXXXXX
|
|
nssComponent->GetPIPNSSBundleString(NS_LITERAL_STRING("CrlImportFailureNetworkProblem").get(), tmpMessage);
|
|
|
|
if(mDoSilentDownload == PR_TRUE){
|
|
//This is the case for automatic download. Update failure history
|
|
nsCAutoString updateErrCntPrefStr(CRL_AUTOUPDATE_ERRCNT_PREF);
|
|
nsCAutoString updateErrDetailPrefStr(CRL_AUTOUPDATE_ERRDETAIL_PREF);
|
|
PRUnichar *nameInDb;
|
|
nsCString errMsg;
|
|
PRInt32 errCnt;
|
|
|
|
nsCOMPtr<nsIPref> pref = do_GetService(NS_PREF_CONTRACTID,&rv);
|
|
if(NS_FAILED(rv)){
|
|
return rv;
|
|
}
|
|
|
|
nameInDb = (PRUnichar *)mCrlAutoDownloadKey.get();
|
|
updateErrCntPrefStr.AppendWithConversion(nameInDb);
|
|
updateErrDetailPrefStr.AppendWithConversion(nameInDb);
|
|
errMsg.AssignWithConversion(tmpMessage.get());
|
|
|
|
rv = pref->GetIntPref(updateErrCntPrefStr.get(),&errCnt);
|
|
if( (NS_FAILED(rv)) || (errCnt == 0) ){
|
|
pref->SetIntPref(updateErrCntPrefStr.get(),1);
|
|
}else{
|
|
pref->SetIntPref(updateErrCntPrefStr.get(),errCnt+1);
|
|
}
|
|
pref->SetCharPref(updateErrDetailPrefStr.get(),errMsg.get());
|
|
pref->SavePrefFile(nsnull);
|
|
}else{
|
|
nsString message;
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService("@mozilla.org/embedcomp/window-watcher;1"));
|
|
nsCOMPtr<nsIPrompt> prompter;
|
|
if (wwatch){
|
|
wwatch->GetNewPrompter(0, getter_AddRefs(prompter));
|
|
nssComponent->GetPIPNSSBundleString(NS_LITERAL_STRING("CrlImportFailure1").get(), message);
|
|
message.Append(NS_LITERAL_STRING("\n").get());
|
|
message.Append(tmpMessage);
|
|
nssComponent->GetPIPNSSBundleString(NS_LITERAL_STRING("CrlImportFailure2").get(), tmpMessage);
|
|
message.Append(NS_LITERAL_STRING("\n").get());
|
|
message.Append(tmpMessage);
|
|
|
|
if(prompter)
|
|
prompter->Alert(0, message.get());
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
void
|
|
PSMContentDownloader::setSilentDownload(PRBool flag)
|
|
{
|
|
mDoSilentDownload = flag;
|
|
}
|
|
|
|
void
|
|
PSMContentDownloader::setCrlAutodownloadKey(nsAutoString key)
|
|
{
|
|
mCrlAutoDownloadKey = key;
|
|
}
|
|
|
|
|
|
/* other mime types that we should handle sometime:
|
|
|
|
application/x-pkcs7-crl
|
|
application/x-pkcs7-mime
|
|
application/pkcs7-signature
|
|
application/pre-encrypted
|
|
|
|
*/
|
|
|
|
PRUint32
|
|
getPSMContentType(const char * aContentType)
|
|
{
|
|
// Don't forget to update RegisterPSMContentListeners in nsNSSModule.cpp
|
|
// for every supported content type.
|
|
|
|
if (!nsCRT::strcasecmp(aContentType, "application/x-x509-ca-cert"))
|
|
return PSMContentDownloader::X509_CA_CERT;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/x-x509-server-cert"))
|
|
return PSMContentDownloader::X509_SERVER_CERT;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/x-x509-user-cert"))
|
|
return PSMContentDownloader::X509_USER_CERT;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/x-x509-email-cert"))
|
|
return PSMContentDownloader::X509_EMAIL_CERT;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/x-pkcs7-crl"))
|
|
return PSMContentDownloader::PKCS7_CRL;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/x-x509-crl"))
|
|
return PSMContentDownloader::PKCS7_CRL;
|
|
else if (!nsCRT::strcasecmp(aContentType, "application/pkix-crl"))
|
|
return PSMContentDownloader::PKCS7_CRL;
|
|
return PSMContentDownloader::UNKNOWN_TYPE;
|
|
}
|
|
|
|
|
|
NS_IMPL_ISUPPORTS2(PSMContentListener,
|
|
nsIURIContentListener,
|
|
nsISupportsWeakReference);
|
|
|
|
PSMContentListener::PSMContentListener()
|
|
{
|
|
NS_INIT_ISUPPORTS();
|
|
mLoadCookie = nsnull;
|
|
mParentContentListener = nsnull;
|
|
}
|
|
|
|
PSMContentListener::~PSMContentListener()
|
|
{
|
|
}
|
|
|
|
nsresult
|
|
PSMContentListener::init()
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::OnStartURIOpen(nsIURI *aURI, PRBool *aAbortOpen)
|
|
{
|
|
//if we don't want to handle the URI, return PR_TRUE in
|
|
//*aAbortOpen
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::IsPreferred(const char * aContentType,
|
|
char ** aDesiredContentType,
|
|
PRBool * aCanHandleContent)
|
|
{
|
|
return CanHandleContent(aContentType, PR_TRUE,
|
|
aDesiredContentType, aCanHandleContent);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::CanHandleContent(const char * aContentType,
|
|
PRBool aIsContentPreferred,
|
|
char ** aDesiredContentType,
|
|
PRBool * aCanHandleContent)
|
|
{
|
|
PRUint32 type;
|
|
type = getPSMContentType(aContentType);
|
|
if (type == nsIX509Cert::UNKNOWN_CERT) {
|
|
*aCanHandleContent = PR_FALSE;
|
|
} else {
|
|
*aCanHandleContent = PR_TRUE;
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::DoContent(const char * aContentType,
|
|
PRBool aIsContentPreferred,
|
|
nsIRequest * aRequest,
|
|
nsIStreamListener ** aContentHandler,
|
|
PRBool * aAbortProcess)
|
|
{
|
|
PSMContentDownloader *downLoader;
|
|
PRUint32 type;
|
|
type = getPSMContentType(aContentType);
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("PSMContentListener::DoContent\n"));
|
|
if (type != nsIX509Cert::UNKNOWN_CERT) {
|
|
downLoader = new PSMContentDownloader(type);
|
|
if (downLoader) {
|
|
downLoader->QueryInterface(NS_GET_IID(nsIStreamListener),
|
|
(void **)aContentHandler);
|
|
return NS_OK;
|
|
}
|
|
}
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::GetLoadCookie(nsISupports * *aLoadCookie)
|
|
{
|
|
*aLoadCookie = mLoadCookie;
|
|
NS_IF_ADDREF(*aLoadCookie);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::SetLoadCookie(nsISupports * aLoadCookie)
|
|
{
|
|
mLoadCookie = aLoadCookie;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::GetParentContentListener(nsIURIContentListener ** aContentListener)
|
|
{
|
|
*aContentListener = mParentContentListener;
|
|
NS_IF_ADDREF(*aContentListener);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PSMContentListener::SetParentContentListener(nsIURIContentListener * aContentListener)
|
|
{
|
|
mParentContentListener = aContentListener;
|
|
return NS_OK;
|
|
}
|