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

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: session.c,v $ $Revision: 1.1 $ $Date: 2000/05/15 20:39:57 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #include "ckdbm.h"
  37. static void
  38. nss_dbm_mdSession_Close
  39. (
  40.   NSSCKMDSession *mdSession,
  41.   NSSCKFWSession *fwSession,
  42.   NSSCKMDToken *mdToken,
  43.   NSSCKFWToken *fwToken,
  44.   NSSCKMDInstance *mdInstance,
  45.   NSSCKFWInstance *fwInstance
  46. )
  47. {
  48.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  49.   struct nss_dbm_dbt_node *w;
  50.   /* Lock */
  51.   {
  52.     if( CKR_OK != NSSCKFWMutex_Lock(session->list_lock) ) {
  53.       return;
  54.     }
  55.     w = session->session_objects;
  56.     session->session_objects = (struct nss_dbm_dbt_node *)NULL; /* sanity */
  57.     
  58.     (void)NSSCKFWMutex_Unlock(session->list_lock);
  59.   }
  60.   for( ; (struct nss_dbm_dbt_node *)NULL != w; w = w->next ) {
  61.     (void)nss_dbm_db_delete_object(w->dbt);
  62.   }
  63. }
  64. static CK_ULONG
  65. nss_dbm_mdSession_GetDeviceError
  66. (
  67.   NSSCKMDSession *mdSession,
  68.   NSSCKFWSession *fwSession,
  69.   NSSCKMDToken *mdToken,
  70.   NSSCKFWToken *fwToken,
  71.   NSSCKMDInstance *mdInstance,
  72.   NSSCKFWInstance *fwInstance
  73. )
  74. {
  75.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  76.   return session->deviceError;
  77. }
  78. /* Login isn't needed */
  79. /* Logout isn't needed */
  80. /* InitPIN is irrelevant */
  81. /* SetPIN is irrelevant */
  82. /* GetOperationStateLen is irrelevant */
  83. /* GetOperationState is irrelevant */
  84. /* SetOperationState is irrelevant */
  85. static NSSCKMDObject *
  86. nss_dbm_mdSession_CreateObject
  87. (
  88.   NSSCKMDSession *mdSession,
  89.   NSSCKFWSession *fwSession,
  90.   NSSCKMDToken *mdToken,
  91.   NSSCKFWToken *fwToken,
  92.   NSSCKMDInstance *mdInstance,
  93.   NSSCKFWInstance *fwInstance,
  94.   NSSArena *handyArenaPointer,
  95.   CK_ATTRIBUTE_PTR pTemplate,
  96.   CK_ULONG ulAttributeCount,
  97.   CK_RV *pError
  98. )
  99. {
  100.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  101.   nss_dbm_token_t *token = (nss_dbm_token_t *)mdToken->etc;
  102.   CK_ULONG i;
  103.   CK_BBOOL isToken = CK_FALSE; /* defaults to false */
  104.   NSSCKMDObject *rv;
  105.   struct nss_dbm_dbt_node *node = (struct nss_dbm_dbt_node *)NULL;
  106.   nss_dbm_object_t *object;
  107.   nss_dbm_db_t *which_db;
  108.   /* This framework should really pass this to me */
  109.   for( i = 0; i < ulAttributeCount; i++ ) {
  110.     if( CKA_TOKEN == pTemplate[i].type ) {
  111.       isToken = *(CK_BBOOL *)pTemplate[i].pValue;
  112.       break;
  113.     }
  114.   }
  115.   object = nss_ZNEW(handyArenaPointer, nss_dbm_object_t);
  116.   if( (nss_dbm_object_t *)NULL == object ) {
  117.     *pError = CKR_HOST_MEMORY;
  118.     return (NSSCKMDObject *)NULL;
  119.   }
  120.   object->arena = handyArenaPointer;
  121.   which_db = isToken ? token->slot->token_db : token->session_db;
  122.   /* Do this before the actual database call; it's easier to recover from */
  123.   rv = nss_dbm_mdObject_factory(object, pError);
  124.   if( (NSSCKMDObject *)NULL == rv ) {
  125.     return (NSSCKMDObject *)NULL;
  126.   }
  127.   if( CK_FALSE == isToken ) {
  128.     node = nss_ZNEW(session->arena, struct nss_dbm_dbt_node);
  129.     if( (struct nss_dbm_dbt_node *)NULL == node ) {
  130.       *pError = CKR_HOST_MEMORY;
  131.       return (NSSCKMDObject *)NULL;
  132.     }
  133.   }
  134.   object->handle = nss_dbm_db_create_object(handyArenaPointer, which_db, 
  135.                                             pTemplate, ulAttributeCount,
  136.                                             pError, &session->deviceError);
  137.   if( (nss_dbm_dbt_t *)NULL == object->handle ) {
  138.     return (NSSCKMDObject *)NULL;
  139.   }
  140.   if( CK_FALSE == isToken ) {
  141.     node->dbt = object->handle;
  142.     /* Lock */
  143.     {
  144.       *pError = NSSCKFWMutex_Lock(session->list_lock);
  145.       if( CKR_OK != *pError ) {
  146.         (void)nss_dbm_db_delete_object(object->handle);
  147.         return (NSSCKMDObject *)NULL;
  148.       }
  149.       
  150.       node->next = session->session_objects;
  151.       session->session_objects = node;
  152.       
  153.       *pError = NSSCKFWMutex_Unlock(session->list_lock);
  154.     }
  155.   }
  156.   return rv;
  157. }
  158. /* CopyObject isn't needed; the framework will use CreateObject */
  159. static NSSCKMDFindObjects *
  160. nss_dbm_mdSession_FindObjectsInit
  161. (
  162.   NSSCKMDSession *mdSession,
  163.   NSSCKFWSession *fwSession,
  164.   NSSCKMDToken *mdToken,
  165.   NSSCKFWToken *fwToken,
  166.   NSSCKMDInstance *mdInstance,
  167.   NSSCKFWInstance *fwInstance,
  168.   CK_ATTRIBUTE_PTR pTemplate,
  169.   CK_ULONG ulAttributeCount,
  170.   CK_RV *pError
  171. )
  172. {
  173.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  174.   nss_dbm_token_t *token = (nss_dbm_token_t *)mdToken->etc;
  175.   NSSArena *arena;
  176.   nss_dbm_find_t *find;
  177.   NSSCKMDFindObjects *rv;
  178.   arena = NSSArena_Create();
  179.   if( (NSSArena *)NULL == arena ) {
  180.     *pError = CKR_HOST_MEMORY;
  181.     goto loser;
  182.   }
  183.   find = nss_ZNEW(arena, nss_dbm_find_t);
  184.   if( (nss_dbm_find_t *)NULL == find ) {
  185.     *pError = CKR_HOST_MEMORY;
  186.     goto loser;
  187.   }
  188.   find->arena = arena;
  189.   find->list_lock = NSSCKFWInstance_CreateMutex(fwInstance, arena, pError);
  190.   if( (NSSCKFWMutex *)NULL == find->list_lock ) {
  191.     goto loser;
  192.   }
  193.   *pError = nss_dbm_db_find_objects(find, token->slot->token_db, pTemplate, 
  194.                                     ulAttributeCount, &session->deviceError);
  195.   if( CKR_OK != *pError ) {
  196.     goto loser;
  197.   }
  198.   *pError = nss_dbm_db_find_objects(find, token->session_db, pTemplate, 
  199.                                     ulAttributeCount, &session->deviceError);
  200.   if( CKR_OK != *pError ) {
  201.     goto loser;
  202.   }
  203.   rv = nss_dbm_mdFindObjects_factory(find, pError);
  204.   if( (NSSCKMDFindObjects *)NULL == rv ) {
  205.     goto loser;
  206.   }
  207.   return rv;
  208.  loser:
  209.   if( (NSSArena *)NULL != arena ) {
  210.     (void)NSSArena_Destroy(arena);
  211.   }
  212.   return (NSSCKMDFindObjects *)NULL;
  213. }
  214. /* SeedRandom is irrelevant */
  215. /* GetRandom is irrelevant */
  216. NSS_IMPLEMENT NSSCKMDSession *
  217. nss_dbm_mdSession_factory
  218. (
  219.   nss_dbm_token_t *token,
  220.   NSSCKFWSession *fwSession,
  221.   NSSCKFWInstance *fwInstance,
  222.   CK_BBOOL rw,
  223.   CK_RV *pError
  224. )
  225. {
  226.   NSSArena *arena;
  227.   nss_dbm_session_t *session;
  228.   NSSCKMDSession *rv;
  229.   arena = NSSCKFWSession_GetArena(fwSession, pError);
  230.   session = nss_ZNEW(arena, nss_dbm_session_t);
  231.   if( (nss_dbm_session_t *)NULL == session ) {
  232.     *pError = CKR_HOST_MEMORY;
  233.     return (NSSCKMDSession *)NULL;
  234.   }
  235.   rv = nss_ZNEW(arena, NSSCKMDSession);
  236.   if( (NSSCKMDSession *)NULL == rv ) {
  237.     *pError = CKR_HOST_MEMORY;
  238.     return (NSSCKMDSession *)NULL;
  239.   }
  240.   session->arena = arena;
  241.   session->token = token;
  242.   session->list_lock = NSSCKFWInstance_CreateMutex(fwInstance, arena, pError);
  243.   if( (NSSCKFWMutex *)NULL == session->list_lock ) {
  244.     return (NSSCKMDSession *)NULL;
  245.   }
  246.   rv->etc = (void *)session;
  247.   rv->Close = nss_dbm_mdSession_Close;
  248.   rv->GetDeviceError = nss_dbm_mdSession_GetDeviceError;
  249.   /*  Login isn't needed */
  250.   /*  Logout isn't needed */
  251.   /*  InitPIN is irrelevant */
  252.   /*  SetPIN is irrelevant */
  253.   /*  GetOperationStateLen is irrelevant */
  254.   /*  GetOperationState is irrelevant */
  255.   /*  SetOperationState is irrelevant */
  256.   rv->CreateObject = nss_dbm_mdSession_CreateObject;
  257.   /*  CopyObject isn't needed; the framework will use CreateObject */
  258.   rv->FindObjectsInit = nss_dbm_mdSession_FindObjectsInit;
  259.   rv->null = NULL;
  260.   return rv;
  261. }