123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- /* 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/. */
- /*
- * CMS User Define Types
- */
- #include "cmslocal.h"
- #include "prinit.h"
- #include "pk11func.h"
- #include "secitem.h"
- #include "secoid.h"
- #include "secerr.h"
- #include "nss.h"
- typedef struct nsscmstypeInfoStr nsscmstypeInfo;
- struct nsscmstypeInfoStr {
- SECOidTag type;
- SEC_ASN1Template *template;
- size_t size;
- PRBool isData;
- NSSCMSGenericWrapperDataDestroy destroy;
- NSSCMSGenericWrapperDataCallback decode_before;
- NSSCMSGenericWrapperDataCallback decode_after;
- NSSCMSGenericWrapperDataCallback decode_end;
- NSSCMSGenericWrapperDataCallback encode_start;
- NSSCMSGenericWrapperDataCallback encode_before;
- NSSCMSGenericWrapperDataCallback encode_after;
- };
- /* make sure the global tables are only initialized once */
- static PRCallOnceType nsscmstypeOnce;
- static PRCallOnceType nsscmstypeClearOnce;
- /* lock for adding a new entry */
- static PRLock *nsscmstypeAddLock;
- /* lock for the hash table */
- static PRLock *nsscmstypeHashLock;
- /* the hash table itself */
- static PLHashTable *nsscmstypeHash;
- /* arena to hold all the hash table data */
- static PLArenaPool *nsscmstypeArena;
- /*
- * clean up our global tables
- */
- SECStatus
- nss_cmstype_shutdown(void *appData, void *reserved)
- {
- if (nsscmstypeHashLock) {
- PR_Lock(nsscmstypeHashLock);
- }
- if (nsscmstypeHash) {
- PL_HashTableDestroy(nsscmstypeHash);
- nsscmstypeHash = NULL;
- }
- if (nsscmstypeArena) {
- PORT_FreeArena(nsscmstypeArena, PR_FALSE);
- nsscmstypeArena = NULL;
- }
- if (nsscmstypeAddLock) {
- PR_DestroyLock(nsscmstypeAddLock);
- }
- if (nsscmstypeHashLock) {
- PRLock *oldLock = nsscmstypeHashLock;
- nsscmstypeHashLock = NULL;
- PR_Unlock(oldLock);
- PR_DestroyLock(oldLock);
- }
- /* don't clear out the PR_ONCE data if we failed our inital call */
- if (appData == NULL) {
- nsscmstypeOnce = nsscmstypeClearOnce;
- }
- return SECSuccess;
- }
- static PLHashNumber
- nss_cmstype_hash_key(const void *key)
- {
- return (PLHashNumber)((char *)key - (char *)NULL);
- }
- static PRIntn
- nss_cmstype_compare_keys(const void *v1, const void *v2)
- {
- PLHashNumber value1 = nss_cmstype_hash_key(v1);
- PLHashNumber value2 = nss_cmstype_hash_key(v2);
- return (value1 == value2);
- }
- /*
- * initialize our hash tables, called once on the first attemat to register
- * a new SMIME type.
- */
- static PRStatus
- nss_cmstype_init(void)
- {
- SECStatus rv;
- nsscmstypeHashLock = PR_NewLock();
- if (nsscmstypeHashLock == NULL) {
- return PR_FAILURE;
- }
- nsscmstypeAddLock = PR_NewLock();
- if (nsscmstypeHashLock == NULL) {
- goto fail;
- }
- nsscmstypeHash = PL_NewHashTable(64, nss_cmstype_hash_key,
- nss_cmstype_compare_keys,
- PL_CompareValues, NULL, NULL);
- if (nsscmstypeHash == NULL) {
- goto fail;
- }
- nsscmstypeArena = PORT_NewArena(2048);
- if (nsscmstypeArena == NULL) {
- goto fail;
- }
- rv = NSS_RegisterShutdown(nss_cmstype_shutdown, NULL);
- if (rv != SECSuccess) {
- goto fail;
- }
- return PR_SUCCESS;
- fail:
- nss_cmstype_shutdown(&nsscmstypeOnce, NULL);
- return PR_FAILURE;
- }
- /*
- * look up and registered SIME type
- */
- static const nsscmstypeInfo *
- nss_cmstype_lookup(SECOidTag type)
- {
- nsscmstypeInfo *typeInfo = NULL;
- ;
- if (!nsscmstypeHash) {
- return NULL;
- }
- PR_Lock(nsscmstypeHashLock);
- if (nsscmstypeHash) {
- typeInfo = PL_HashTableLookupConst(nsscmstypeHash, (void *)type);
- }
- PR_Unlock(nsscmstypeHashLock);
- return typeInfo;
- }
- /*
- * add a new type to the SMIME type table
- */
- static SECStatus
- nss_cmstype_add(SECOidTag type, nsscmstypeInfo *typeinfo)
- {
- PLHashEntry *entry;
- if (!nsscmstypeHash) {
- /* assert? this shouldn't happen */
- return SECFailure;
- }
- PR_Lock(nsscmstypeHashLock);
- /* this is really paranoia. If we really are racing nsscmstypeHash, we'll
- * also be racing nsscmstypeHashLock... */
- if (!nsscmstypeHash) {
- PR_Unlock(nsscmstypeHashLock);
- return SECFailure;
- }
- entry = PL_HashTableAdd(nsscmstypeHash, (void *)type, typeinfo);
- PR_Unlock(nsscmstypeHashLock);
- return entry ? SECSuccess : SECFailure;
- }
- /* helper functions to manage new content types
- */
- PRBool
- NSS_CMSType_IsWrapper(SECOidTag type)
- {
- const nsscmstypeInfo *typeInfo = NULL;
- switch (type) {
- case SEC_OID_PKCS7_SIGNED_DATA:
- case SEC_OID_PKCS7_ENVELOPED_DATA:
- case SEC_OID_PKCS7_DIGESTED_DATA:
- case SEC_OID_PKCS7_ENCRYPTED_DATA:
- return PR_TRUE;
- default:
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo && !typeInfo->isData) {
- return PR_TRUE;
- }
- }
- return PR_FALSE;
- }
- PRBool
- NSS_CMSType_IsData(SECOidTag type)
- {
- const nsscmstypeInfo *typeInfo = NULL;
- switch (type) {
- case SEC_OID_PKCS7_DATA:
- return PR_TRUE;
- default:
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo && typeInfo->isData) {
- return PR_TRUE;
- }
- }
- return PR_FALSE;
- }
- const SEC_ASN1Template *
- NSS_CMSType_GetTemplate(SECOidTag type)
- {
- const nsscmstypeInfo *typeInfo = nss_cmstype_lookup(type);
- if (typeInfo && typeInfo->template) {
- return typeInfo->template;
- }
- return SEC_ASN1_GET(SEC_PointerToOctetStringTemplate);
- }
- size_t
- NSS_CMSType_GetContentSize(SECOidTag type)
- {
- const nsscmstypeInfo *typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- return typeInfo->size;
- }
- return sizeof(SECItem *);
- }
- void
- NSS_CMSGenericWrapperData_Destroy(SECOidTag type, NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo = nss_cmstype_lookup(type);
- if (typeInfo && (typeInfo->destroy) && (gd != NULL)) {
- (*typeInfo->destroy)(gd);
- }
- }
- SECStatus
- NSS_CMSGenericWrapperData_Decode_BeforeData(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->decode_before) {
- return (*typeInfo->decode_before)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSGenericWrapperData_Decode_AfterData(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->decode_after) {
- return (*typeInfo->decode_after)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSGenericWrapperData_Decode_AfterEnd(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->decode_end) {
- return (*typeInfo->decode_end)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSGenericWrapperData_Encode_BeforeStart(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->encode_start) {
- return (*typeInfo->encode_start)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSGenericWrapperData_Encode_BeforeData(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->encode_before) {
- return (*typeInfo->encode_before)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSGenericWrapperData_Encode_AfterData(SECOidTag type,
- NSSCMSGenericWrapperData *gd)
- {
- const nsscmstypeInfo *typeInfo;
- /* short cut common case */
- if (type == SEC_OID_PKCS7_DATA) {
- return SECSuccess;
- }
- typeInfo = nss_cmstype_lookup(type);
- if (typeInfo) {
- if (typeInfo->encode_after) {
- return (*typeInfo->encode_after)(gd);
- }
- /* decoder ops optional for data tags */
- if (typeInfo->isData) {
- return SECSuccess;
- }
- }
- /* expected a function, but none existed */
- return SECFailure;
- }
- SECStatus
- NSS_CMSType_RegisterContentType(SECOidTag type,
- SEC_ASN1Template *asn1Template, size_t size,
- NSSCMSGenericWrapperDataDestroy destroy,
- NSSCMSGenericWrapperDataCallback decode_before,
- NSSCMSGenericWrapperDataCallback decode_after,
- NSSCMSGenericWrapperDataCallback decode_end,
- NSSCMSGenericWrapperDataCallback encode_start,
- NSSCMSGenericWrapperDataCallback encode_before,
- NSSCMSGenericWrapperDataCallback encode_after,
- PRBool isData)
- {
- PRStatus rc;
- SECStatus rv;
- nsscmstypeInfo *typeInfo;
- const nsscmstypeInfo *exists;
- rc = PR_CallOnce(&nsscmstypeOnce, nss_cmstype_init);
- if (rc == PR_FAILURE) {
- return SECFailure;
- }
- PR_Lock(nsscmstypeAddLock);
- exists = nss_cmstype_lookup(type);
- if (exists) {
- PR_Unlock(nsscmstypeAddLock);
- /* already added */
- return SECSuccess;
- }
- typeInfo = PORT_ArenaNew(nsscmstypeArena, nsscmstypeInfo);
- typeInfo->type = type;
- typeInfo->size = size;
- typeInfo->isData = isData;
- typeInfo->template = asn1Template;
- typeInfo->destroy = destroy;
- typeInfo->decode_before = decode_before;
- typeInfo->decode_after = decode_after;
- typeInfo->decode_end = decode_end;
- typeInfo->encode_start = encode_start;
- typeInfo->encode_before = encode_before;
- typeInfo->encode_after = encode_after;
- rv = nss_cmstype_add(type, typeInfo);
- PR_Unlock(nsscmstypeAddLock);
- return rv;
- }
|