2011-08-19 19:27:10 +04:00
|
|
|
/*
|
|
|
|
* NSS utility functions
|
|
|
|
*
|
2012-10-01 22:02:15 +04:00
|
|
|
* 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/. */
|
2011-08-19 19:27:10 +04:00
|
|
|
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "prinit.h"
|
|
|
|
#include "seccomon.h"
|
|
|
|
#include "secerr.h"
|
|
|
|
#include "ssl.h"
|
2011-10-23 04:46:33 +04:00
|
|
|
#include "sslimpl.h"
|
2016-01-25 18:14:18 +03:00
|
|
|
#include "sslproto.h"
|
2011-08-19 19:27:10 +04:00
|
|
|
|
2016-01-25 18:14:18 +03:00
|
|
|
static int ssl_isInited = 0;
|
2016-02-23 02:50:19 +03:00
|
|
|
static PRCallOnceType ssl_init = { 0 };
|
2011-08-19 19:27:10 +04:00
|
|
|
|
2016-01-25 18:14:18 +03:00
|
|
|
PRStatus
|
|
|
|
ssl_InitCallOnce(void *arg)
|
2011-08-19 19:27:10 +04:00
|
|
|
{
|
2016-01-25 18:14:18 +03:00
|
|
|
int *error = (int *)arg;
|
|
|
|
SECStatus rv;
|
2013-11-18 01:50:25 +04:00
|
|
|
|
2016-01-25 18:14:18 +03:00
|
|
|
rv = ssl_InitializePRErrorTable();
|
|
|
|
if (rv != SECSuccess) {
|
2016-02-23 02:50:19 +03:00
|
|
|
*error = SEC_ERROR_NO_MEMORY;
|
|
|
|
return PR_FAILURE;
|
2016-01-25 18:14:18 +03:00
|
|
|
}
|
2013-11-18 01:50:25 +04:00
|
|
|
#ifdef DEBUG
|
2016-02-23 02:50:19 +03:00
|
|
|
ssl3_CheckCipherSuiteOrderConsistency();
|
2013-11-18 01:50:25 +04:00
|
|
|
#endif
|
|
|
|
|
2016-01-25 18:14:18 +03:00
|
|
|
rv = ssl3_ApplyNSSPolicy();
|
|
|
|
if (rv != SECSuccess) {
|
2016-02-23 02:50:19 +03:00
|
|
|
*error = PORT_GetError();
|
|
|
|
return PR_FAILURE;
|
2016-01-25 18:14:18 +03:00
|
|
|
}
|
|
|
|
return PR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
ssl_Init(void)
|
|
|
|
{
|
|
|
|
PRStatus nrv;
|
|
|
|
|
|
|
|
/* short circuit test if we are already inited */
|
|
|
|
if (!ssl_isInited) {
|
2016-02-23 02:50:19 +03:00
|
|
|
int error;
|
|
|
|
/* only do this once at init time, block all others until we are done */
|
|
|
|
nrv = PR_CallOnceWithArg(&ssl_init, ssl_InitCallOnce, &error);
|
|
|
|
if (nrv != PR_SUCCESS) {
|
|
|
|
PORT_SetError(error);
|
|
|
|
return SECFailure;
|
|
|
|
}
|
|
|
|
ssl_isInited = 1;
|
2011-08-19 19:27:10 +04:00
|
|
|
}
|
|
|
|
return SECSuccess;
|
|
|
|
}
|