author | littlee |
Fri, 16 Mar 2012 10:47:25 +0800 | |
changeset 12195 | 14f20316b1b8 |
parent 12047 | 320a714614e9 |
child 14342 | 8435a30053c1 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
5506 | 2 |
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
*/ |
4 |
||
5 |
/* Copyright (c) 2002 Graz University of Technology. All rights reserved. |
|
6 |
* |
|
7 |
* Redistribution and use in source and binary forms, with or without |
|
8 |
* modification, are permitted provided that the following conditions are met: |
|
9 |
* |
|
10 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
11 |
* this list of conditions and the following disclaimer. |
|
12 |
* |
|
13 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
14 |
* this list of conditions and the following disclaimer in the documentation |
|
15 |
* and/or other materials provided with the distribution. |
|
16 |
* |
|
17 |
* 3. The end-user documentation included with the redistribution, if any, must |
|
18 |
* include the following acknowledgment: |
|
19 |
* |
|
20 |
* "This product includes software developed by IAIK of Graz University of |
|
21 |
* Technology." |
|
22 |
* |
|
23 |
* Alternately, this acknowledgment may appear in the software itself, if |
|
24 |
* and wherever such third-party acknowledgments normally appear. |
|
25 |
* |
|
26 |
* 4. The names "Graz University of Technology" and "IAIK of Graz University of |
|
27 |
* Technology" must not be used to endorse or promote products derived from |
|
28 |
* this software without prior written permission. |
|
29 |
* |
|
30 |
* 5. Products derived from this software may not be called |
|
31 |
* "IAIK PKCS Wrapper", nor may "IAIK" appear in their name, without prior |
|
32 |
* written permission of Graz University of Technology. |
|
33 |
* |
|
34 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
|
35 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
|
36 |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
37 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE |
|
38 |
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, |
|
39 |
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
40 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, |
|
41 |
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
|
42 |
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
43 |
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
|
44 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
45 |
* POSSIBILITY OF SUCH DAMAGE. |
|
46 |
*/ |
|
47 |
||
48 |
/* |
|
49 |
* pkcs11wrapper.c |
|
50 |
* 18.05.2001 |
|
51 |
* |
|
52 |
* This module contains the native functions of the Java to PKCS#11 interface |
|
53 |
* which are platform dependent. This includes loading a dynamic link libary, |
|
54 |
* retrieving the function list and unloading the dynamic link library. |
|
55 |
* |
|
56 |
* @author Karl Scheibelhofer <Karl.Scheibelhofer@iaik.at> |
|
57 |
*/ |
|
58 |
||
59 |
#include "pkcs11wrapper.h" |
|
60 |
||
61 |
#include <stdio.h> |
|
62 |
#include <stdlib.h> |
|
63 |
#include <string.h> |
|
64 |
#include <assert.h> |
|
65 |
||
66 |
#include <dlfcn.h> |
|
67 |
||
68 |
#include <jni.h> |
|
69 |
||
70 |
#include "sun_security_pkcs11_wrapper_PKCS11.h" |
|
71 |
||
72 |
/* |
|
73 |
* Class: sun_security_pkcs11_wrapper_PKCS11 |
|
74 |
* Method: connect |
|
75 |
* Signature: (Ljava/lang/String;)V |
|
76 |
*/ |
|
77 |
JNIEXPORT void JNICALL Java_sun_security_pkcs11_wrapper_PKCS11_connect |
|
78 |
(JNIEnv *env, jobject obj, jstring jPkcs11ModulePath, jstring jGetFunctionList) |
|
79 |
{ |
|
80 |
void *hModule; |
|
81 |
char *error; |
|
82 |
CK_C_GetFunctionList C_GetFunctionList; |
|
83 |
CK_RV rv; |
|
84 |
ModuleData *moduleData; |
|
85 |
jobject globalPKCS11ImplementationReference; |
|
86 |
char *systemErrorMessage; |
|
87 |
char *exceptionMessage; |
|
88 |
const char *getFunctionListStr; |
|
89 |
||
90 |
const char *libraryNameStr = (*env)->GetStringUTFChars(env, jPkcs11ModulePath, 0); |
|
91 |
TRACE1("DEBUG: connect to PKCS#11 module: %s ... ", libraryNameStr); |
|
92 |
||
93 |
||
94 |
/* |
|
95 |
* Load the PKCS #11 DLL |
|
96 |
*/ |
|
97 |
dlerror(); /* clear any old error message not fetched */ |
|
98 |
#ifdef DEBUG |
|
99 |
hModule = dlopen(libraryNameStr, RTLD_NOW); |
|
100 |
#else |
|
101 |
hModule = dlopen(libraryNameStr, RTLD_LAZY); |
|
102 |
#endif /* DEBUG */ |
|
103 |
||
104 |
if (hModule == NULL) { |
|
105 |
systemErrorMessage = dlerror(); |
|
106 |
exceptionMessage = (char *) malloc(sizeof(char) * (strlen(systemErrorMessage) + strlen(libraryNameStr) + 1)); |
|
107 |
strcpy(exceptionMessage, systemErrorMessage); |
|
108 |
strcat(exceptionMessage, libraryNameStr); |
|
109 |
throwIOException(env, exceptionMessage); |
|
110 |
(*env)->ReleaseStringUTFChars(env, jPkcs11ModulePath, libraryNameStr); |
|
111 |
free(exceptionMessage); |
|
112 |
return; |
|
113 |
} |
|
114 |
||
115 |
/* |
|
116 |
* Get function pointer to C_GetFunctionList |
|
117 |
*/ |
|
118 |
dlerror(); /* clear any old error message not fetched */ |
|
119 |
// with the old JAR file jGetFunctionList is null, temporarily check for that |
|
120 |
if (jGetFunctionList != NULL) { |
|
121 |
getFunctionListStr = (*env)->GetStringUTFChars(env, jGetFunctionList, 0); |
|
122 |
C_GetFunctionList = (CK_C_GetFunctionList) dlsym(hModule, getFunctionListStr); |
|
123 |
(*env)->ReleaseStringUTFChars(env, jGetFunctionList, getFunctionListStr); |
|
124 |
} |
|
295
3711f2ad2f6d
6469580: 1.5.0_08 JVM crashes in SignatureHandlerLibrary::add on Fujitsu Primepower platform
wetmore
parents:
2
diff
changeset
|
125 |
if (C_GetFunctionList == NULL) { |
3711f2ad2f6d
6469580: 1.5.0_08 JVM crashes in SignatureHandlerLibrary::add on Fujitsu Primepower platform
wetmore
parents:
2
diff
changeset
|
126 |
throwIOException(env, "ERROR: C_GetFunctionList == NULL"); |
3711f2ad2f6d
6469580: 1.5.0_08 JVM crashes in SignatureHandlerLibrary::add on Fujitsu Primepower platform
wetmore
parents:
2
diff
changeset
|
127 |
return; |
3711f2ad2f6d
6469580: 1.5.0_08 JVM crashes in SignatureHandlerLibrary::add on Fujitsu Primepower platform
wetmore
parents:
2
diff
changeset
|
128 |
} else if ( (systemErrorMessage = dlerror()) != NULL ){ |
2 | 129 |
throwIOException(env, systemErrorMessage); |
130 |
return; |
|
131 |
} |
|
132 |
||
133 |
/* |
|
134 |
* Get function pointers to all PKCS #11 functions |
|
135 |
*/ |
|
136 |
moduleData = (ModuleData *) malloc(sizeof(ModuleData)); |
|
137 |
moduleData->hModule = hModule; |
|
138 |
moduleData->applicationMutexHandler = NULL; |
|
139 |
rv = (C_GetFunctionList)(&(moduleData->ckFunctionListPtr)); |
|
140 |
globalPKCS11ImplementationReference = (*env)->NewGlobalRef(env, obj); |
|
141 |
putModuleEntry(env, globalPKCS11ImplementationReference, moduleData); |
|
142 |
||
143 |
(*env)->ReleaseStringUTFChars(env, jPkcs11ModulePath, libraryNameStr); |
|
144 |
TRACE0("FINISHED\n"); |
|
145 |
||
146 |
if(ckAssertReturnValueOK(env, rv) != CK_ASSERT_OK) { return; } |
|
147 |
} |
|
148 |
||
149 |
/* |
|
150 |
* Class: sun_security_pkcs11_wrapper_PKCS11 |
|
151 |
* Method: disconnect |
|
152 |
* Signature: ()V |
|
153 |
*/ |
|
154 |
JNIEXPORT void JNICALL Java_sun_security_pkcs11_wrapper_PKCS11_disconnect |
|
155 |
(JNIEnv *env, jobject obj) |
|
156 |
{ |
|
157 |
ModuleData *moduleData; |
|
158 |
TRACE0("DEBUG: disconnecting module..."); |
|
159 |
moduleData = removeModuleEntry(env, obj); |
|
160 |
||
161 |
if (moduleData != NULL) { |
|
162 |
dlclose(moduleData->hModule); |
|
163 |
} |
|
164 |
||
165 |
free(moduleData); |
|
166 |
TRACE0("FINISHED\n"); |
|
167 |
||
168 |
} |