2008-06-06 05:40:11 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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 the Netscape security libraries.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1994-2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Code for dealing with x.509 v3 CRL Distribution Point extension.
|
|
|
|
*/
|
|
|
|
#include "genname.h"
|
|
|
|
#include "certt.h"
|
|
|
|
#include "secerr.h"
|
|
|
|
|
|
|
|
SEC_ASN1_MKSUB(SEC_AnyTemplate)
|
|
|
|
SEC_ASN1_MKSUB(SEC_BitStringTemplate)
|
|
|
|
|
|
|
|
extern void PrepareBitStringForEncoding (SECItem *bitMap, SECItem *value);
|
|
|
|
|
|
|
|
static const SEC_ASN1Template FullNameTemplate[] = {
|
|
|
|
{SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_CONSTRUCTED | 0,
|
2008-08-14 21:12:54 -07:00
|
|
|
offsetof (CRLDistributionPoint,derFullName),
|
|
|
|
CERT_GeneralNamesTemplate}
|
2008-06-06 05:40:11 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const SEC_ASN1Template RelativeNameTemplate[] = {
|
|
|
|
{SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_CONSTRUCTED | 1,
|
2008-08-14 21:12:54 -07:00
|
|
|
offsetof (CRLDistributionPoint,distPoint.relativeName),
|
|
|
|
CERT_RDNTemplate}
|
2008-06-06 05:40:11 -07:00
|
|
|
};
|
2008-08-14 21:12:54 -07:00
|
|
|
|
|
|
|
static const SEC_ASN1Template DistributionPointNameTemplate[] = {
|
|
|
|
{ SEC_ASN1_CHOICE,
|
|
|
|
offsetof(CRLDistributionPoint, distPointType), NULL,
|
|
|
|
sizeof(CRLDistributionPoint) },
|
|
|
|
{ SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_CONSTRUCTED | 0,
|
|
|
|
offsetof (CRLDistributionPoint, derFullName),
|
|
|
|
CERT_GeneralNamesTemplate, generalName },
|
|
|
|
{ SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_CONSTRUCTED | 1,
|
|
|
|
offsetof (CRLDistributionPoint, distPoint.relativeName),
|
|
|
|
CERT_RDNTemplate, relativeDistinguishedName },
|
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2008-06-06 05:40:11 -07:00
|
|
|
static const SEC_ASN1Template CRLDistributionPointTemplate[] = {
|
|
|
|
{ SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CRLDistributionPoint) },
|
|
|
|
{ SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
SEC_ASN1_CONSTRUCTED | SEC_ASN1_EXPLICIT | SEC_ASN1_XTRN | 0,
|
|
|
|
offsetof(CRLDistributionPoint,derDistPoint),
|
|
|
|
SEC_ASN1_SUB(SEC_AnyTemplate)},
|
|
|
|
{ SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_XTRN | 1,
|
|
|
|
offsetof(CRLDistributionPoint,bitsmap),
|
|
|
|
SEC_ASN1_SUB(SEC_BitStringTemplate) },
|
|
|
|
{ SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
SEC_ASN1_CONSTRUCTED | 2,
|
2008-08-14 21:12:54 -07:00
|
|
|
offsetof(CRLDistributionPoint, derCrlIssuer),
|
|
|
|
CERT_GeneralNamesTemplate},
|
2008-06-06 05:40:11 -07:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
const SEC_ASN1Template CERTCRLDistributionPointsTemplate[] = {
|
|
|
|
{SEC_ASN1_SEQUENCE_OF, 0, CRLDistributionPointTemplate}
|
|
|
|
};
|
|
|
|
|
|
|
|
SECStatus
|
2008-08-14 21:12:54 -07:00
|
|
|
CERT_EncodeCRLDistributionPoints (PLArenaPool *arena,
|
|
|
|
CERTCrlDistributionPoints *value,
|
2008-06-06 05:40:11 -07:00
|
|
|
SECItem *derValue)
|
|
|
|
{
|
|
|
|
CRLDistributionPoint **pointList, *point;
|
2008-08-14 21:12:54 -07:00
|
|
|
PLArenaPool *ourPool = NULL;
|
2008-06-06 05:40:11 -07:00
|
|
|
SECStatus rv = SECSuccess;
|
|
|
|
|
|
|
|
PORT_Assert (derValue);
|
|
|
|
PORT_Assert (value && value->distPoints);
|
|
|
|
|
|
|
|
do {
|
|
|
|
ourPool = PORT_NewArena (SEC_ASN1_DEFAULT_ARENA_SIZE);
|
|
|
|
if (ourPool == NULL) {
|
|
|
|
rv = SECFailure;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pointList = value->distPoints;
|
|
|
|
while (*pointList) {
|
|
|
|
point = *pointList;
|
|
|
|
point->derFullName = NULL;
|
|
|
|
point->derDistPoint.data = NULL;
|
|
|
|
|
2008-08-14 21:12:54 -07:00
|
|
|
switch (point->distPointType) {
|
|
|
|
case generalName:
|
2008-06-06 05:40:11 -07:00
|
|
|
point->derFullName = cert_EncodeGeneralNames
|
|
|
|
(ourPool, point->distPoint.fullName);
|
|
|
|
|
2008-08-14 21:12:54 -07:00
|
|
|
if (!point->derFullName ||
|
|
|
|
!SEC_ASN1EncodeItem (ourPool, &point->derDistPoint,
|
|
|
|
point, FullNameTemplate))
|
2008-06-06 05:40:11 -07:00
|
|
|
rv = SECFailure;
|
2008-08-14 21:12:54 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case relativeDistinguishedName:
|
|
|
|
if (!SEC_ASN1EncodeItem(ourPool, &point->derDistPoint,
|
|
|
|
point, RelativeNameTemplate))
|
2008-06-06 05:40:11 -07:00
|
|
|
rv = SECFailure;
|
2008-08-14 21:12:54 -07:00
|
|
|
break;
|
|
|
|
|
2008-06-06 05:40:11 -07:00
|
|
|
/* distributionPointName is omitted */
|
2008-08-14 21:12:54 -07:00
|
|
|
case 0: break;
|
|
|
|
|
|
|
|
default:
|
2008-06-06 05:40:11 -07:00
|
|
|
PORT_SetError (SEC_ERROR_EXTENSION_VALUE_INVALID);
|
|
|
|
rv = SECFailure;
|
2008-08-14 21:12:54 -07:00
|
|
|
break;
|
2008-06-06 05:40:11 -07:00
|
|
|
}
|
2008-08-14 21:12:54 -07:00
|
|
|
|
2008-06-06 05:40:11 -07:00
|
|
|
if (rv != SECSuccess)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (point->reasons.data)
|
|
|
|
PrepareBitStringForEncoding (&point->bitsmap, &point->reasons);
|
|
|
|
|
|
|
|
if (point->crlIssuer) {
|
|
|
|
point->derCrlIssuer = cert_EncodeGeneralNames
|
|
|
|
(ourPool, point->crlIssuer);
|
2008-08-14 21:12:54 -07:00
|
|
|
if (!point->derCrlIssuer) {
|
|
|
|
rv = SECFailure;
|
2008-06-06 05:40:11 -07:00
|
|
|
break;
|
2008-08-14 21:12:54 -07:00
|
|
|
}
|
2008-06-06 05:40:11 -07:00
|
|
|
}
|
|
|
|
++pointList;
|
|
|
|
}
|
|
|
|
if (rv != SECSuccess)
|
|
|
|
break;
|
2008-08-14 21:12:54 -07:00
|
|
|
if (!SEC_ASN1EncodeItem(arena, derValue, value,
|
|
|
|
CERTCRLDistributionPointsTemplate)) {
|
2008-06-06 05:40:11 -07:00
|
|
|
rv = SECFailure;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
PORT_FreeArena (ourPool, PR_FALSE);
|
2008-08-14 21:12:54 -07:00
|
|
|
return rv;
|
2008-06-06 05:40:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
CERTCrlDistributionPoints *
|
2008-08-14 21:12:54 -07:00
|
|
|
CERT_DecodeCRLDistributionPoints (PLArenaPool *arena, SECItem *encodedValue)
|
2008-06-06 05:40:11 -07:00
|
|
|
{
|
|
|
|
CERTCrlDistributionPoints *value = NULL;
|
|
|
|
CRLDistributionPoint **pointList, *point;
|
2008-08-14 21:12:54 -07:00
|
|
|
SECStatus rv = SECSuccess;
|
2008-06-06 05:40:11 -07:00
|
|
|
SECItem newEncodedValue;
|
|
|
|
|
|
|
|
PORT_Assert (arena);
|
|
|
|
do {
|
2008-08-14 21:12:54 -07:00
|
|
|
value = PORT_ArenaZNew(arena, CERTCrlDistributionPoints);
|
2008-06-06 05:40:11 -07:00
|
|
|
if (value == NULL) {
|
|
|
|
rv = SECFailure;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy the DER into the arena, since Quick DER returns data that points
|
|
|
|
into the DER input, which may get freed by the caller */
|
|
|
|
rv = SECITEM_CopyItem(arena, &newEncodedValue, encodedValue);
|
2008-08-14 21:12:54 -07:00
|
|
|
if (rv != SECSuccess)
|
2008-06-06 05:40:11 -07:00
|
|
|
break;
|
|
|
|
|
2008-08-14 21:12:54 -07:00
|
|
|
rv = SEC_QuickDERDecodeItem(arena, &value->distPoints,
|
|
|
|
CERTCRLDistributionPointsTemplate, &newEncodedValue);
|
2008-06-06 05:40:11 -07:00
|
|
|
if (rv != SECSuccess)
|
|
|
|
break;
|
|
|
|
|
|
|
|
pointList = value->distPoints;
|
2008-08-14 21:12:54 -07:00
|
|
|
while (NULL != (point = *pointList)) {
|
2008-06-06 05:40:11 -07:00
|
|
|
|
|
|
|
/* get the data if the distributionPointName is not omitted */
|
|
|
|
if (point->derDistPoint.data != NULL) {
|
2008-08-14 21:12:54 -07:00
|
|
|
rv = SEC_QuickDERDecodeItem(arena, point,
|
|
|
|
DistributionPointNameTemplate, &(point->derDistPoint));
|
|
|
|
if (rv != SECSuccess)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (point->distPointType) {
|
|
|
|
case generalName:
|
|
|
|
point->distPoint.fullName =
|
|
|
|
cert_DecodeGeneralNames(arena, point->derFullName);
|
|
|
|
rv = point->distPoint.fullName ? SECSuccess : SECFailure;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case relativeDistinguishedName:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-06-06 05:40:11 -07:00
|
|
|
PORT_SetError (SEC_ERROR_EXTENSION_VALUE_INVALID);
|
2008-08-14 21:12:54 -07:00
|
|
|
rv = SECFailure;
|
2008-06-06 05:40:11 -07:00
|
|
|
break;
|
2008-08-14 21:12:54 -07:00
|
|
|
} /* end switch */
|
|
|
|
if (rv != SECSuccess)
|
|
|
|
break;
|
|
|
|
} /* end if */
|
2008-06-06 05:40:11 -07:00
|
|
|
|
|
|
|
/* Get the reason code if it's not omitted in the encoding */
|
|
|
|
if (point->bitsmap.data != NULL) {
|
2008-08-14 21:12:54 -07:00
|
|
|
SECItem bitsmap = point->bitsmap;
|
|
|
|
DER_ConvertBitString(&bitsmap);
|
|
|
|
rv = SECITEM_CopyItem(arena, &point->reasons, &bitsmap);
|
|
|
|
if (rv != SECSuccess)
|
2008-06-06 05:40:11 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the crl issuer name if it's not omitted in the encoding */
|
|
|
|
if (point->derCrlIssuer != NULL) {
|
2008-08-14 21:12:54 -07:00
|
|
|
point->crlIssuer = cert_DecodeGeneralNames(arena,
|
|
|
|
point->derCrlIssuer);
|
2008-06-06 05:40:11 -07:00
|
|
|
if (!point->crlIssuer)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++pointList;
|
2008-08-14 21:12:54 -07:00
|
|
|
} /* end while points remain */
|
2008-06-06 05:40:11 -07:00
|
|
|
} while (0);
|
|
|
|
return (rv == SECSuccess ? value : NULL);
|
|
|
|
}
|