123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- /* 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/. */
- /*
- * X.509 Extension Encoding
- */
- #include "prtypes.h"
- #include "seccomon.h"
- #include "secdert.h"
- #include "secoidt.h"
- #include "secasn1t.h"
- #include "secasn1.h"
- #include "cert.h"
- #include "secder.h"
- #include "prprf.h"
- #include "xconst.h"
- #include "genname.h"
- #include "secasn1.h"
- #include "secerr.h"
- static const SEC_ASN1Template CERTSubjectKeyIDTemplate[] = {
- { SEC_ASN1_OCTET_STRING }
- };
- static const SEC_ASN1Template CERTIA5TypeTemplate[] = {
- { SEC_ASN1_IA5_STRING }
- };
- SEC_ASN1_MKSUB(SEC_GeneralizedTimeTemplate)
- static const SEC_ASN1Template CERTPrivateKeyUsagePeriodTemplate[] = {
- { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CERTPrivKeyUsagePeriod) },
- { SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_XTRN | 0,
- offsetof(CERTPrivKeyUsagePeriod, notBefore),
- SEC_ASN1_SUB(SEC_GeneralizedTimeTemplate) },
- { SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_XTRN | 1,
- offsetof(CERTPrivKeyUsagePeriod, notAfter),
- SEC_ASN1_SUB(SEC_GeneralizedTimeTemplate) },
- { 0 }
- };
- const SEC_ASN1Template CERTAltNameTemplate[] = {
- { SEC_ASN1_CONSTRUCTED, offsetof(CERTAltNameEncodedContext, encodedGenName),
- CERT_GeneralNamesTemplate }
- };
- const SEC_ASN1Template CERTAuthInfoAccessItemTemplate[] = {
- { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CERTAuthInfoAccess) },
- { SEC_ASN1_OBJECT_ID, offsetof(CERTAuthInfoAccess, method) },
- { SEC_ASN1_ANY, offsetof(CERTAuthInfoAccess, derLocation) },
- { 0 }
- };
- const SEC_ASN1Template CERTAuthInfoAccessTemplate[] = {
- { SEC_ASN1_SEQUENCE_OF, 0, CERTAuthInfoAccessItemTemplate }
- };
- SECStatus
- CERT_EncodeSubjectKeyID(PLArenaPool *arena, const SECItem *srcString,
- SECItem *encodedValue)
- {
- SECStatus rv = SECSuccess;
- if (!srcString) {
- PORT_SetError(SEC_ERROR_INVALID_ARGS);
- return SECFailure;
- }
- if (SEC_ASN1EncodeItem(arena, encodedValue, srcString,
- CERTSubjectKeyIDTemplate) == NULL) {
- rv = SECFailure;
- }
- return (rv);
- }
- SECStatus
- CERT_EncodePrivateKeyUsagePeriod(PLArenaPool *arena,
- CERTPrivKeyUsagePeriod *pkup,
- SECItem *encodedValue)
- {
- SECStatus rv = SECSuccess;
- if (SEC_ASN1EncodeItem(arena, encodedValue, pkup,
- CERTPrivateKeyUsagePeriodTemplate) == NULL) {
- rv = SECFailure;
- }
- return (rv);
- }
- CERTPrivKeyUsagePeriod *
- CERT_DecodePrivKeyUsagePeriodExtension(PLArenaPool *arena, SECItem *extnValue)
- {
- SECStatus rv;
- CERTPrivKeyUsagePeriod *pPeriod;
- SECItem newExtnValue;
- /* allocate the certificate policies structure */
- pPeriod = PORT_ArenaZNew(arena, CERTPrivKeyUsagePeriod);
- if (pPeriod == NULL) {
- goto loser;
- }
- pPeriod->arena = arena;
- /* 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, &newExtnValue, extnValue);
- if (rv != SECSuccess) {
- goto loser;
- }
- rv = SEC_QuickDERDecodeItem(
- arena, pPeriod, CERTPrivateKeyUsagePeriodTemplate, &newExtnValue);
- if (rv != SECSuccess) {
- goto loser;
- }
- return pPeriod;
- loser:
- return NULL;
- }
- SECStatus
- CERT_EncodeIA5TypeExtension(PLArenaPool *arena, char *value,
- SECItem *encodedValue)
- {
- SECItem encodeContext;
- SECStatus rv = SECSuccess;
- PORT_Memset(&encodeContext, 0, sizeof(encodeContext));
- if (value != NULL) {
- encodeContext.data = (unsigned char *)value;
- encodeContext.len = strlen(value);
- }
- if (SEC_ASN1EncodeItem(arena, encodedValue, &encodeContext,
- CERTIA5TypeTemplate) == NULL) {
- rv = SECFailure;
- }
- return (rv);
- }
- SECStatus
- CERT_EncodeAltNameExtension(PLArenaPool *arena, CERTGeneralName *value,
- SECItem *encodedValue)
- {
- SECItem **encodedGenName;
- SECStatus rv = SECSuccess;
- encodedGenName = cert_EncodeGeneralNames(arena, value);
- if (SEC_ASN1EncodeItem(arena, encodedValue, &encodedGenName,
- CERT_GeneralNamesTemplate) == NULL) {
- rv = SECFailure;
- }
- return rv;
- }
- CERTGeneralName *
- CERT_DecodeAltNameExtension(PLArenaPool *reqArena, SECItem *EncodedAltName)
- {
- SECStatus rv = SECSuccess;
- CERTAltNameEncodedContext encodedContext;
- SECItem *newEncodedAltName;
- if (!reqArena) {
- PORT_SetError(SEC_ERROR_INVALID_ARGS);
- return NULL;
- }
- newEncodedAltName = SECITEM_ArenaDupItem(reqArena, EncodedAltName);
- if (!newEncodedAltName) {
- return NULL;
- }
- encodedContext.encodedGenName = NULL;
- PORT_Memset(&encodedContext, 0, sizeof(CERTAltNameEncodedContext));
- rv = SEC_QuickDERDecodeItem(reqArena, &encodedContext,
- CERT_GeneralNamesTemplate, newEncodedAltName);
- if (rv == SECFailure) {
- goto loser;
- }
- if (encodedContext.encodedGenName && encodedContext.encodedGenName[0])
- return cert_DecodeGeneralNames(reqArena, encodedContext.encodedGenName);
- /* Extension contained an empty GeneralNames sequence */
- /* Treat as extension not found */
- PORT_SetError(SEC_ERROR_EXTENSION_NOT_FOUND);
- loser:
- return NULL;
- }
- SECStatus
- CERT_EncodeNameConstraintsExtension(PLArenaPool *arena,
- CERTNameConstraints *value,
- SECItem *encodedValue)
- {
- SECStatus rv = SECSuccess;
- rv = cert_EncodeNameConstraints(value, arena, encodedValue);
- return rv;
- }
- CERTNameConstraints *
- CERT_DecodeNameConstraintsExtension(PLArenaPool *arena,
- const SECItem *encodedConstraints)
- {
- return cert_DecodeNameConstraints(arena, encodedConstraints);
- }
- CERTAuthInfoAccess **
- CERT_DecodeAuthInfoAccessExtension(PLArenaPool *reqArena,
- const SECItem *encodedExtension)
- {
- CERTAuthInfoAccess **info = NULL;
- SECStatus rv;
- int i;
- SECItem *newEncodedExtension;
- if (!reqArena) {
- PORT_SetError(SEC_ERROR_INVALID_ARGS);
- return NULL;
- }
- newEncodedExtension = SECITEM_ArenaDupItem(reqArena, encodedExtension);
- if (!newEncodedExtension) {
- return NULL;
- }
- rv = SEC_QuickDERDecodeItem(reqArena, &info, CERTAuthInfoAccessTemplate,
- newEncodedExtension);
- if (rv != SECSuccess || info == NULL) {
- return NULL;
- }
- for (i = 0; info[i] != NULL; i++) {
- info[i]->location =
- CERT_DecodeGeneralName(reqArena, &(info[i]->derLocation), NULL);
- }
- return info;
- }
- SECStatus
- CERT_EncodeInfoAccessExtension(PLArenaPool *arena, CERTAuthInfoAccess **info,
- SECItem *dest)
- {
- SECItem *dummy;
- int i;
- PORT_Assert(info != NULL);
- PORT_Assert(dest != NULL);
- if (info == NULL || dest == NULL) {
- return SECFailure;
- }
- for (i = 0; info[i] != NULL; i++) {
- if (CERT_EncodeGeneralName(info[i]->location, &(info[i]->derLocation),
- arena) == NULL)
- /* Note that this may leave some of the locations filled in. */
- return SECFailure;
- }
- dummy = SEC_ASN1EncodeItem(arena, dest, &info, CERTAuthInfoAccessTemplate);
- if (dummy == NULL) {
- return SECFailure;
- }
- return SECSuccess;
- }
|