4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
35 #include <security/pkcs11t.h>
37 #define K_SOLARIS_PLATFORM
40 #define KMSTOKEN_SESSION_MAGIC 0xECF00004
42 #define CRYPTO_OPERATION_ACTIVE 0x01
43 #define CRYPTO_OPERATION_UPDATE 0x02
56 #define KMSOFFSETOF(s, m) ((size_t)(&(((s *)0)->m)))
59 * Data stored in the KMS profile config file.
64 char agentAddr
[BUFSIZ
];
71 typedef struct session
{
72 CK_ULONG magic_marker
; /* magic # be validated for integrity */
73 pthread_mutex_t session_mutex
; /* session's mutex lock */
74 pthread_mutex_t ses_free_mutex
; /* mutex used during closing session */
75 pthread_cond_t ses_free_cond
; /* cond variable for signal and wait */
76 uint32_t ses_refcnt
; /* session reference count */
77 uint32_t ses_close_sync
; /* session closing flags */
78 boolean_t ses_RO
; /* RO or RW session flag */
79 CK_SLOT_ID ses_slotid
; /* slotID saved from C_OpenSession() */
81 /* Place holder for parameters passed in the C_OpenSession */
84 CK_VOID_PTR pApplication
;
86 /* Pointers to form the global session list */
87 struct session
*next
; /* points to next session on the list */
88 struct session
*prev
; /* points to prev session on the list */
90 struct object
*object_list
; /* points to list of objects */
92 kms_active_op_t find_objects
;
93 kms_active_op_t encrypt
;
94 kms_active_op_t decrypt
;
96 kms_cfg_info_t configInfo
;
98 avl_tree_t objlabel_tree
;
99 KMSClientProfile kmsProfile
;
103 * The following structure is used to link the to-be-freed sessions
104 * into a linked list. The sessions on this linked list have
105 * not yet been freed via free() after C_CloseSession() call; instead
106 * they are added to this list. The actual free will take place when
107 * the number of sessions queued reaches MAX_SES_TO_BE_FREED, at which
108 * time the first session in the list will be freed.
110 #define MAX_SES_TO_BE_FREED 300
112 typedef struct ses_to_be_freed_list
{
113 kms_session_t
*first
; /* points to the first session in the list */
114 kms_session_t
*last
; /* points to the last session in the list */
115 uint32_t count
; /* current total sessions in the list */
116 pthread_mutex_t ses_to_be_free_mutex
;
117 } ses_to_be_freed_list_t
;
119 extern ses_to_be_freed_list_t ses_delay_freed
;
120 extern CK_ULONG kms_session_cnt
;
121 extern CK_ULONG kms_session_rw_cnt
;
124 * Flag definitions for ses_close_sync
126 #define SESSION_IS_CLOSING 1 /* Session is in a closing state */
127 #define SESSION_REFCNT_WAITING 2 /* Waiting for session reference */
128 /* count to become zero */
130 * This macro is used to decrement the session reference count by one.
132 * The caller of this macro uses the argument lock_held to indicate that
133 * whether the caller holds the lock on the session or not.
135 * REFRELE macro does the following:
136 * 1) Get the session lock if the caller does not hold it.
137 * 2) Decrement the session reference count by one.
138 * 3) If the session reference count becomes zero after being decremented,
139 * and there is a closing session thread in the wait state, then
140 * call pthread_cond_signal() to wake up that thread who is blocked
141 * in the session deletion routine due to non-zero reference ount.
142 * 4) Always release the session lock.
144 #define REFRELE(s, ses_lock_held) { \
145 if (!ses_lock_held) \
146 (void) pthread_mutex_lock(&s->session_mutex); \
147 if ((--((s)->ses_refcnt) == 0) && \
148 (s->ses_close_sync & SESSION_REFCNT_WAITING)) { \
149 (void) pthread_mutex_unlock(&s->session_mutex); \
150 (void) pthread_cond_signal(&s->ses_free_cond); \
152 (void) pthread_mutex_unlock(&s->session_mutex); \
158 * Function Prototypes.
161 handle2session(CK_SESSION_HANDLE hSession
, kms_session_t
**session_p
);
164 kms_delete_all_sessions(boolean_t wrapper_only
);
167 kms_delete_all_objects_in_session(kms_session_t
*sp
,
168 boolean_t wrapper_only
);
171 kms_add_session(CK_SLOT_ID slotID
, CK_FLAGS flags
,
172 CK_VOID_PTR pApplication
, CK_NOTIFY notify
, CK_ULONG
*phSession
);
175 kms_delete_session(kms_session_t
*sp
,
176 boolean_t lock_held
, boolean_t wrapper_only
);
179 kms_session_delay_free(kms_session_t
*sp
);
181 void kms_acquire_all_slots_mutexes();
182 void kms_release_all_slots_mutexes();
188 #endif /* _KMSSESSION_H */