instance.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $RCSfile: instance.c,v $ $Revision: 1.1 $ $Date: 2000/05/15 20:39:56 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #include "ckdbm.h"
  37. static CK_RV
  38. nss_dbm_mdInstance_Initialize
  39. (
  40.   NSSCKMDInstance *mdInstance,                                    
  41.   NSSCKFWInstance *fwInstance,
  42.   NSSUTF8 *configurationData
  43. )
  44. {
  45.   CK_RV rv = CKR_OK;
  46.   NSSArena *arena;
  47.   nss_dbm_instance_t *instance;
  48.   arena = NSSCKFWInstance_GetArena(fwInstance, &rv);
  49.   if( ((NSSArena *)NULL == arena) && (CKR_OK != rv) ) {
  50.     return rv;
  51.   }
  52.   instance = nss_ZNEW(arena, nss_dbm_instance_t);
  53.   if( (nss_dbm_instance_t *)NULL == instance ) {
  54.     return CKR_HOST_MEMORY;
  55.   }
  56.   instance->arena = arena;
  57.   /*
  58.    * This should parse the configuration data for information on
  59.    * number and locations of databases, modes (e.g. readonly), etc.
  60.    * But for now, we'll have one slot with a creatable read-write
  61.    * database called "cert8.db."
  62.    */
  63.   instance->nSlots = 1;
  64.   instance->filenames = nss_ZNEWARRAY(arena, char *, instance->nSlots);
  65.   if( (char **)NULL == instance->filenames ) {
  66.     return CKR_HOST_MEMORY;
  67.   }
  68.   instance->flags = nss_ZNEWARRAY(arena, int, instance->nSlots);
  69.   if( (int *)NULL == instance->flags ) {
  70.     return CKR_HOST_MEMORY;
  71.   }
  72.   instance->filenames[0] = "cert8.db";
  73.   instance->flags[0] = O_RDWR|O_CREAT;
  74.   mdInstance->etc = (void *)instance;
  75.   return CKR_OK;
  76. }
  77. /* nss_dbm_mdInstance_Finalize is not required */
  78. static CK_ULONG
  79. nss_dbm_mdInstance_GetNSlots
  80. (
  81.   NSSCKMDInstance *mdInstance,                                    
  82.   NSSCKFWInstance *fwInstance,
  83.   CK_RV *pError
  84. )
  85. {
  86.   nss_dbm_instance_t *instance = (nss_dbm_instance_t *)mdInstance->etc;
  87.   return instance->nSlots;
  88. }
  89. static CK_VERSION
  90. nss_dbm_mdInstance_GetCryptokiVersion
  91. (
  92.   NSSCKMDInstance *mdInstance,                                    
  93.   NSSCKFWInstance *fwInstance
  94. )
  95. {
  96.   static CK_VERSION rv = { 2, 1 };
  97.   return rv;
  98. }
  99. static NSSUTF8 *
  100. nss_dbm_mdInstance_GetManufacturerID
  101. (
  102.   NSSCKMDInstance *mdInstance,                                    
  103.   NSSCKFWInstance *fwInstance,
  104.   CK_RV *pError
  105. )
  106. {
  107.   return "Netscape Communications Corp.";
  108. }
  109. static NSSUTF8 *
  110. nss_dbm_mdInstance_GetLibraryDescription
  111. (
  112.   NSSCKMDInstance *mdInstance,                                    
  113.   NSSCKFWInstance *fwInstance,
  114.   CK_RV *pError
  115. )
  116. {
  117.   return "Berkeley Database Module";
  118. }
  119. static CK_VERSION
  120. nss_dbm_mdInstance_GetLibraryVersion
  121. (
  122.   NSSCKMDInstance *mdInstance,                                    
  123.   NSSCKFWInstance *fwInstance
  124. )
  125. {
  126.   static CK_VERSION rv = { 1, 0 }; /* My own version number */
  127.   return rv;
  128. }
  129. static CK_BBOOL
  130. nss_dbm_mdInstance_ModuleHandlesSessionObjects
  131. (
  132.   NSSCKMDInstance *mdInstance,                                    
  133.   NSSCKFWInstance *fwInstance
  134. )
  135. {
  136.   return CK_TRUE;
  137. }
  138. static CK_RV
  139. nss_dbm_mdInstance_GetSlots
  140. (
  141.   NSSCKMDInstance *mdInstance,                                    
  142.   NSSCKFWInstance *fwInstance,
  143.   NSSCKMDSlot *slots[]
  144. )
  145. {
  146.   nss_dbm_instance_t *instance = (nss_dbm_instance_t *)mdInstance->etc;
  147.   CK_ULONG i;
  148.   CK_RV rv = CKR_OK;
  149.   for( i = 0; i < instance->nSlots; i++ ) {
  150.     slots[i] = nss_dbm_mdSlot_factory(instance, instance->filenames[i], 
  151.                                       instance->flags[i], &rv);
  152.     if( (NSSCKMDSlot *)NULL == slots[i] ) {
  153.       return rv;
  154.     }
  155.   }
  156.   return rv;
  157. }
  158. /* nss_dbm_mdInstance_WaitForSlotEvent is not relevant */
  159. NSS_IMPLEMENT_DATA NSSCKMDInstance 
  160. nss_dbm_mdInstance = {
  161.   NULL, /* etc; filled in later */
  162.   nss_dbm_mdInstance_Initialize,
  163.   NULL, /* nss_dbm_mdInstance_Finalize */
  164.   nss_dbm_mdInstance_GetNSlots,
  165.   nss_dbm_mdInstance_GetCryptokiVersion,
  166.   nss_dbm_mdInstance_GetManufacturerID,
  167.   nss_dbm_mdInstance_GetLibraryDescription,
  168.   nss_dbm_mdInstance_GetLibraryVersion,
  169.   nss_dbm_mdInstance_ModuleHandlesSessionObjects,
  170.   nss_dbm_mdInstance_GetSlots,
  171.   NULL, /* nss_dbm_mdInstance_WaitForSlotEvent */
  172.   NULL /* terminator */
  173. };