author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
25859 | 1 |
/* |
40563
4bff68330f39
8074838: Resolve disabled warnings for libj2pkcs11
ascarpino
parents:
25859
diff
changeset
|
2 |
* Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. |
25859 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
#include <stdio.h> |
|
27 |
#include <stdlib.h> |
|
28 |
#include <string.h> |
|
29 |
||
30 |
#include <dlfcn.h> |
|
31 |
||
32 |
#include <jni_util.h> |
|
33 |
||
34 |
#include "j2secmod.h" |
|
35 |
#include "pkcs11wrapper.h" |
|
36 |
||
37 |
void *findFunction(JNIEnv *env, jlong jHandle, const char *functionName) { |
|
38 |
void *hModule = (void*)jlong_to_ptr(jHandle); |
|
39 |
void *fAddress = dlsym(hModule, functionName); |
|
40 |
if (fAddress == NULL) { |
|
41 |
char errorMessage[256]; |
|
42 |
snprintf(errorMessage, sizeof(errorMessage), "Symbol not found: %s", functionName); |
|
43 |
throwNullPointerException(env, errorMessage); |
|
44 |
return NULL; |
|
45 |
} |
|
46 |
return fAddress; |
|
47 |
} |
|
48 |
||
49 |
JNIEXPORT jlong JNICALL Java_sun_security_pkcs11_Secmod_nssGetLibraryHandle |
|
50 |
(JNIEnv *env, jclass thisClass, jstring jLibName) |
|
51 |
{ |
|
40563
4bff68330f39
8074838: Resolve disabled warnings for libj2pkcs11
ascarpino
parents:
25859
diff
changeset
|
52 |
void *hModule; |
25859 | 53 |
const char *libName = (*env)->GetStringUTFChars(env, jLibName, NULL); |
54 |
if (libName == NULL) { |
|
55 |
return 0L; |
|
56 |
} |
|
57 |
||
58 |
// look up existing handle only, do not load |
|
59 |
#if defined(AIX) |
|
40563
4bff68330f39
8074838: Resolve disabled warnings for libj2pkcs11
ascarpino
parents:
25859
diff
changeset
|
60 |
hModule = dlopen(libName, RTLD_LAZY); |
25859 | 61 |
#else |
40563
4bff68330f39
8074838: Resolve disabled warnings for libj2pkcs11
ascarpino
parents:
25859
diff
changeset
|
62 |
hModule = dlopen(libName, RTLD_NOLOAD); |
25859 | 63 |
#endif |
64 |
dprintf2("-handle for %s: %u\n", libName, hModule); |
|
65 |
(*env)->ReleaseStringUTFChars(env, jLibName, libName); |
|
66 |
return ptr_to_jlong(hModule); |
|
67 |
} |
|
68 |
||
69 |
JNIEXPORT jlong JNICALL Java_sun_security_pkcs11_Secmod_nssLoadLibrary |
|
70 |
(JNIEnv *env, jclass thisClass, jstring jLibName) |
|
71 |
{ |
|
72 |
void *hModule; |
|
73 |
const char *libName = (*env)->GetStringUTFChars(env, jLibName, NULL); |
|
74 |
if (libName == NULL) { |
|
75 |
return 0L; |
|
76 |
} |
|
77 |
||
78 |
dprintf1("-lib %s\n", libName); |
|
79 |
hModule = dlopen(libName, RTLD_LAZY); |
|
80 |
(*env)->ReleaseStringUTFChars(env, jLibName, libName); |
|
81 |
dprintf2("-handle: %u (0X%X)\n", hModule, hModule); |
|
82 |
||
83 |
if (hModule == NULL) { |
|
84 |
throwIOException(env, dlerror()); |
|
85 |
return 0; |
|
86 |
} |
|
87 |
||
88 |
return ptr_to_jlong(hModule); |
|
89 |
} |