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

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: object.c,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:43:50 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #include "builtins.h"
  37. /*
  38.  * builtins/object.c
  39.  *
  40.  * This file implements the NSSCKMDObject object for the
  41.  * "builtin objects" cryptoki module.
  42.  */
  43. /*
  44.  * Finalize - unneeded
  45.  * Destroy - CKR_SESSION_READ_ONLY
  46.  * IsTokenObject - CK_TRUE
  47.  * GetAttributeCount
  48.  * GetAttributeTypes
  49.  * GetAttributeSize
  50.  * GetAttribute
  51.  * SetAttribute - unneeded
  52.  * GetObjectSize
  53.  */
  54. static CK_RV
  55. builtins_mdObject_Destroy
  56. (
  57.   NSSCKMDObject *mdObject,
  58.   NSSCKFWObject *fwObject,
  59.   NSSCKMDSession *mdSession,
  60.   NSSCKFWSession *fwSession,
  61.   NSSCKMDToken *mdToken,
  62.   NSSCKFWToken *fwToken,
  63.   NSSCKMDInstance *mdInstance,
  64.   NSSCKFWInstance *fwInstance
  65. )
  66. {
  67.   return CKR_SESSION_READ_ONLY;
  68. }
  69. static CK_BBOOL
  70. builtins_mdObject_IsTokenObject
  71. (
  72.   NSSCKMDObject *mdObject,
  73.   NSSCKFWObject *fwObject,
  74.   NSSCKMDSession *mdSession,
  75.   NSSCKFWSession *fwSession,
  76.   NSSCKMDToken *mdToken,
  77.   NSSCKFWToken *fwToken,
  78.   NSSCKMDInstance *mdInstance,
  79.   NSSCKFWInstance *fwInstance
  80. )
  81. {
  82.   return CK_TRUE;
  83. }
  84. static CK_ULONG
  85. builtins_mdObject_GetAttributeCount
  86. (
  87.   NSSCKMDObject *mdObject,
  88.   NSSCKFWObject *fwObject,
  89.   NSSCKMDSession *mdSession,
  90.   NSSCKFWSession *fwSession,
  91.   NSSCKMDToken *mdToken,
  92.   NSSCKFWToken *fwToken,
  93.   NSSCKMDInstance *mdInstance,
  94.   NSSCKFWInstance *fwInstance,
  95.   CK_RV *pError
  96. )
  97. {
  98.   builtinsInternalObject *io = (builtinsInternalObject *)mdObject->etc;
  99.   return io->n;
  100. }
  101. static CK_RV
  102. builtins_mdObject_GetAttributeTypes
  103. (
  104.   NSSCKMDObject *mdObject,
  105.   NSSCKFWObject *fwObject,
  106.   NSSCKMDSession *mdSession,
  107.   NSSCKFWSession *fwSession,
  108.   NSSCKMDToken *mdToken,
  109.   NSSCKFWToken *fwToken,
  110.   NSSCKMDInstance *mdInstance,
  111.   NSSCKFWInstance *fwInstance,
  112.   CK_ATTRIBUTE_TYPE_PTR typeArray,
  113.   CK_ULONG ulCount
  114. )
  115. {
  116.   builtinsInternalObject *io = (builtinsInternalObject *)mdObject->etc;
  117.   CK_ULONG i;
  118.   if( io->n != ulCount ) {
  119.     return CKR_BUFFER_TOO_SMALL;
  120.   }
  121.   for( i = 0; i < io->n; i++ ) {
  122.     typeArray[i] = io->types[i];
  123.   }
  124.   return CKR_OK;
  125. }
  126. static CK_ULONG
  127. builtins_mdObject_GetAttributeSize
  128. (
  129.   NSSCKMDObject *mdObject,
  130.   NSSCKFWObject *fwObject,
  131.   NSSCKMDSession *mdSession,
  132.   NSSCKFWSession *fwSession,
  133.   NSSCKMDToken *mdToken,
  134.   NSSCKFWToken *fwToken,
  135.   NSSCKMDInstance *mdInstance,
  136.   NSSCKFWInstance *fwInstance,
  137.   CK_ATTRIBUTE_TYPE attribute,
  138.   CK_RV *pError
  139. )
  140. {
  141.   builtinsInternalObject *io = (builtinsInternalObject *)mdObject->etc;
  142.   CK_ULONG i;
  143.   for( i = 0; i < io->n; i++ ) {
  144.     if( attribute == io->types[i] ) {
  145.       return (CK_ULONG)(io->items[i].size);
  146.     }
  147.   }
  148.   *pError = CKR_ATTRIBUTE_TYPE_INVALID;
  149.   return 0;
  150. }
  151. static NSSItem *
  152. builtins_mdObject_GetAttribute
  153. (
  154.   NSSCKMDObject *mdObject,
  155.   NSSCKFWObject *fwObject,
  156.   NSSCKMDSession *mdSession,
  157.   NSSCKFWSession *fwSession,
  158.   NSSCKMDToken *mdToken,
  159.   NSSCKFWToken *fwToken,
  160.   NSSCKMDInstance *mdInstance,
  161.   NSSCKFWInstance *fwInstance,
  162.   CK_ATTRIBUTE_TYPE attribute,
  163.   CK_RV *pError
  164. )
  165. {
  166.   builtinsInternalObject *io = (builtinsInternalObject *)mdObject->etc;
  167.   CK_ULONG i;
  168.   for( i = 0; i < io->n; i++ ) {
  169.     if( attribute == io->types[i] ) {
  170.       return &io->items[i];
  171.     }
  172.   }
  173.   *pError = CKR_ATTRIBUTE_TYPE_INVALID;
  174.   return (NSSItem *)NULL;
  175. }
  176. static CK_ULONG
  177. builtins_mdObject_GetObjectSize
  178. (
  179.   NSSCKMDObject *mdObject,
  180.   NSSCKFWObject *fwObject,
  181.   NSSCKMDSession *mdSession,
  182.   NSSCKFWSession *fwSession,
  183.   NSSCKMDToken *mdToken,
  184.   NSSCKFWToken *fwToken,
  185.   NSSCKMDInstance *mdInstance,
  186.   NSSCKFWInstance *fwInstance,
  187.   CK_RV *pError
  188. )
  189. {
  190.   builtinsInternalObject *io = (builtinsInternalObject *)mdObject->etc;
  191.   CK_ULONG i;
  192.   CK_ULONG rv = sizeof(CK_ULONG);
  193.   for( i = 0; i < io->n; i++ ) {
  194.     rv += sizeof(CK_ATTRIBUTE_TYPE) + sizeof(NSSItem) + io->items[i].size;
  195.   }
  196.   return rv;
  197. }
  198. static NSSCKMDObject
  199. builtins_prototype_mdObject = {
  200.   (void *)NULL, /* etc */
  201.   NULL, /* Finalize */
  202.   builtins_mdObject_Destroy,
  203.   builtins_mdObject_IsTokenObject,
  204.   builtins_mdObject_GetAttributeCount,
  205.   builtins_mdObject_GetAttributeTypes,
  206.   builtins_mdObject_GetAttributeSize,
  207.   builtins_mdObject_GetAttribute,
  208.   NULL, /* SetAttribute */
  209.   builtins_mdObject_GetObjectSize,
  210.   (void *)NULL /* null terminator */
  211. };
  212. NSS_IMPLEMENT NSSCKMDObject *
  213. nss_builtins_CreateMDObject
  214. (
  215.   NSSArena *arena,
  216.   builtinsInternalObject *io,
  217.   CK_RV *pError
  218. )
  219. {
  220.   NSSCKMDObject *rv;
  221.   rv = nss_ZNEW(arena, NSSCKMDObject);
  222.   if( (NSSCKMDObject *)NULL == rv ) {
  223.     *pError = CKR_HOST_MEMORY;
  224.     return (NSSCKMDObject *)NULL;
  225.   }
  226.   *rv = builtins_prototype_mdObject;
  227.   rv->etc = (void *)io;
  228.   return rv;
  229. }