2008-06-06 16:40:11 +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/. */
|
2008-06-06 16:40:11 +04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "prerror.h"
|
|
|
|
#include "secitem.h"
|
|
|
|
#include "prnetdb.h"
|
|
|
|
#include "cert.h"
|
|
|
|
#include "nspr.h"
|
|
|
|
#include "secder.h"
|
|
|
|
#include "key.h"
|
|
|
|
#include "nss.h"
|
|
|
|
#include "ssl.h"
|
2016-02-23 02:50:19 +03:00
|
|
|
#include "pk11func.h" /* for PK11_ function calls */
|
2017-11-24 11:00:26 +03:00
|
|
|
#include "sslimpl.h"
|
2008-06-06 16:40:11 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This callback used by SSL to pull client sertificate upon
|
|
|
|
* server request
|
|
|
|
*/
|
2016-02-23 02:50:19 +03:00
|
|
|
SECStatus
|
|
|
|
NSS_GetClientAuthData(void *arg,
|
|
|
|
PRFileDesc *socket,
|
|
|
|
struct CERTDistNamesStr *caNames,
|
|
|
|
struct CERTCertificateStr **pRetCert,
|
|
|
|
struct SECKEYPrivateKeyStr **pRetKey)
|
2008-06-06 16:40:11 +04:00
|
|
|
{
|
2016-02-23 02:50:19 +03:00
|
|
|
CERTCertificate *cert = NULL;
|
|
|
|
SECKEYPrivateKey *privkey = NULL;
|
|
|
|
char *chosenNickName = (char *)arg; /* CONST */
|
|
|
|
void *proto_win = NULL;
|
|
|
|
SECStatus rv = SECFailure;
|
|
|
|
|
|
|
|
proto_win = SSL_RevealPinArg(socket);
|
|
|
|
|
|
|
|
if (chosenNickName) {
|
|
|
|
cert = CERT_FindUserCertByUsage(CERT_GetDefaultCertDB(),
|
|
|
|
chosenNickName, certUsageSSLClient,
|
|
|
|
PR_FALSE, proto_win);
|
|
|
|
if (cert) {
|
|
|
|
privkey = PK11_FindKeyByAnyCert(cert, proto_win);
|
|
|
|
if (privkey) {
|
|
|
|
rv = SECSuccess;
|
2016-02-26 13:23:11 +03:00
|
|
|
} else {
|
2016-02-23 02:50:19 +03:00
|
|
|
CERT_DestroyCertificate(cert);
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 13:23:11 +03:00
|
|
|
} else { /* no name given, automatically find the right cert. */
|
2016-02-23 02:50:19 +03:00
|
|
|
CERTCertNicknames *names;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
names = CERT_GetCertNicknames(CERT_GetDefaultCertDB(),
|
|
|
|
SEC_CERT_NICKNAMES_USER, proto_win);
|
|
|
|
if (names != NULL) {
|
|
|
|
for (i = 0; i < names->numnicknames; i++) {
|
|
|
|
cert = CERT_FindUserCertByUsage(CERT_GetDefaultCertDB(),
|
|
|
|
names->nicknames[i], certUsageSSLClient,
|
|
|
|
PR_FALSE, proto_win);
|
|
|
|
if (!cert)
|
|
|
|
continue;
|
|
|
|
/* Only check unexpired certs */
|
2017-11-24 11:00:26 +03:00
|
|
|
if (CERT_CheckCertValidTimes(cert, ssl_TimeUsec(), PR_TRUE) !=
|
2016-02-23 02:50:19 +03:00
|
|
|
secCertTimeValid) {
|
|
|
|
CERT_DestroyCertificate(cert);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
rv = NSS_CmpCertChainWCANames(cert, caNames);
|
|
|
|
if (rv == SECSuccess) {
|
|
|
|
privkey =
|
|
|
|
PK11_FindKeyByAnyCert(cert, proto_win);
|
|
|
|
if (privkey)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rv = SECFailure;
|
|
|
|
CERT_DestroyCertificate(cert);
|
|
|
|
}
|
|
|
|
CERT_FreeNicknames(names);
|
|
|
|
}
|
2008-06-06 16:40:11 +04:00
|
|
|
}
|
2016-02-23 02:50:19 +03:00
|
|
|
if (rv == SECSuccess) {
|
|
|
|
*pRetCert = cert;
|
|
|
|
*pRetKey = privkey;
|
|
|
|
}
|
|
|
|
return rv;
|
2008-06-06 16:40:11 +04:00
|
|
|
}
|