-
Notifications
You must be signed in to change notification settings - Fork 751
/
Copy pathclassloadersearch.c
335 lines (292 loc) · 10.1 KB
/
classloadersearch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*******************************************************************************
* Copyright (c) 1991, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution and
* is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following
* Secondary Licenses when the conditions for such availability set
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
* General Public License, version 2 with the GNU Classpath
* Exception [1] and GNU General Public License, version 2 with the
* OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] http://openjdk.java.net/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
*******************************************************************************/
#include "j9.h"
#include "j9cfg.h"
#include "j9protos.h"
#include "j9consts.h"
#include "j2sever.h"
#include "jvminit.h"
#include "zipsup.h"
#include "zip_api.h"
#include "ut_j9vm.h"
#include "classloadersearch.h"
static UDATA addToSystemProperty(J9JavaVM * vm, const char * propertyName, const char * segment);
static UDATA addZipToLoader(J9JavaVM * vm, const char * filename, J9ClassLoader * classLoader, BOOLEAN enforceJarRestriction);
/**
* @brief Append a single pathSegment to the bootstrap classloader
* @param *vm
* @param *pathSegment a single path segment specifying the path to be added
* @param classLoaderType bits specifying which class loaders the path should be added to
* @param enforceJarRestriction when true, fail if the pathSegment is not a jar file and we are adding to the system classloader
* @return error code
*/
UDATA
addToBootstrapClassLoaderSearch(J9JavaVM * vm, const char * pathSegment,
UDATA classLoaderType, BOOLEAN enforceJarRestriction)
{
UDATA rc = CLS_ERROR_NONE;
Trc_VM_addToBootstrapClassLoaderSearch_Entry(pathSegment);
if (pathSegment == NULL) {
return CLS_ERROR_NULL_POINTER;
}
if (classLoaderType & CLS_TYPE_ADD_TO_SYSTEM_PROPERTY) {
if (J2SE_VERSION(vm) < J2SE_V11) {
rc = addToSystemProperty(vm, BOOT_PATH_SYS_PROP, pathSegment);
} else {
rc = addToSystemProperty(vm, BOOT_CLASS_PATH_APPEND_PROP, pathSegment);
}
if (rc != CLS_ERROR_NONE) {
goto done;
}
}
if (classLoaderType & CLS_TYPE_ADD_TO_SYSTEM_CLASSLOADER) {
rc = addZipToLoader(vm, pathSegment, vm->systemClassLoader, enforceJarRestriction);
if (rc != CLS_ERROR_NONE) {
goto done;
}
}
done:
Trc_VM_addToBootstrapClassLoaderSearch_Exit();
return rc;
}
/**
* @brief Append a single pathSegment to the system classloader
* @param *vm
* @param *pathSegment a single path segment specifying the path to be added
* @param enforceJarRestriction when true, fail if the pathSegment is not a jar file
*
* @return error code
*/
UDATA
addToSystemClassLoaderSearch(J9JavaVM * vm, const char* pathSegment,
UDATA classLoaderType, BOOLEAN enforceJarRestriction)
{
UDATA rc = CLS_ERROR_NONE;
#if defined(WIN32)
char *jarPath = NULL;
int32_t size = 0;
BOOLEAN conversionSucceed = FALSE;
PORT_ACCESS_FROM_JAVAVM(vm);
#endif /* defined(WIN32) */
Trc_VM_addToSystemClassLoaderSearch_Entry(pathSegment);
if (NULL == pathSegment) {
rc = CLS_ERROR_NULL_POINTER;
goto done;
}
#if defined(WIN32)
/* This method is called by jvmtiAddToSystemClassLoaderSearch, and eventually invoked by
* java.instrument/share/native/libinstrument/InvocationAdapter.c & JPLISAgent.c
* which pass pathSegment in system default code page encoding.
*/
size = j9str_convert(J9STR_CODE_WINDEFAULTACP, J9STR_CODE_MUTF8, pathSegment, strlen(pathSegment), NULL, 0);
if (size > 0) {
size += 1; /* leave room for null */
jarPath = j9mem_allocate_memory(size, OMRMEM_CATEGORY_VM);
if (NULL != jarPath) {
size = j9str_convert(J9STR_CODE_WINDEFAULTACP, J9STR_CODE_MUTF8, pathSegment, strlen(pathSegment), jarPath, size);
if (size > 0) {
conversionSucceed = TRUE;
}
}
}
if (!conversionSucceed) {
rc = CLS_ERROR_INTERNAL;
goto done;
}
pathSegment = jarPath;
#endif /* defined(WIN32) */
if (classLoaderType & CLS_TYPE_ADD_TO_SYSTEM_PROPERTY) {
rc = addToSystemProperty(vm, "java.class.path", pathSegment);
if (rc != CLS_ERROR_NONE) {
goto done;
}
}
if (classLoaderType & CLS_TYPE_ADD_TO_SYSTEM_CLASSLOADER) {
rc = addZipToLoader(vm, pathSegment, vm->applicationClassLoader, enforceJarRestriction);
if (rc != CLS_ERROR_NONE) {
goto done;
}
}
done:
#if defined(WIN32)
if (NULL != jarPath) {
j9mem_free_memory(jarPath);
}
#endif /* defined(WIN32) */
Trc_VM_addToSystemClassLoaderSearch_Exit();
return rc;
}
static UDATA
addToSystemProperty(J9JavaVM * vm, const char * propertyName, const char * segment)
{
J9VMSystemProperty * systemProperty;
UDATA rc = CLS_ERROR_NONE;
PORT_ACCESS_FROM_JAVAVM(vm);
/* Use the system classloader mutex as we are dealing with the boot classpaths */
omrthread_monitor_enter(vm->systemPropertiesMutex);
if (getSystemProperty(vm, propertyName, &systemProperty) == J9SYSPROP_ERROR_NONE) {
char * newValue;
UDATA currentLength = strlen(systemProperty->value);
newValue = j9mem_allocate_memory(currentLength + strlen(segment) + 2, OMRMEM_CATEGORY_VM); /* +1 for nul, +1 for separator */
if (newValue == NULL) {
rc = CLS_ERROR_OUT_OF_MEMORY;
} else {
strcpy(newValue, systemProperty->value);
if (currentLength != 0) {
newValue[currentLength] = (char) j9sysinfo_get_classpathSeparator();
newValue[currentLength + 1] = '\0';
}
strcat(newValue, segment);
setSystemProperty(vm, systemProperty, newValue);
j9mem_free_memory(newValue);
}
} else {
rc = CLS_ERROR_INTERNAL;
}
omrthread_monitor_exit(vm->systemPropertiesMutex);
return rc;
}
static UDATA
addZipToLoader(J9JavaVM * vm, const char * filename, J9ClassLoader * classLoader, BOOLEAN enforceJarRestriction)
{
UDATA rc = CLS_ERROR_NONE;
/* Handle JCLs which don't have class loaders */
if (classLoader == NULL) {
return CLS_ERROR_CLASS_LOADER_UNSUPPORTED;
}
/* Validate the zip file */
if (enforceJarRestriction == TRUE) {
J9ZipFile zipFile;
I_32 zipResult = zip_openZipFile(vm->portLibrary, (char *) filename, &zipFile, NULL, J9ZIP_OPEN_NO_FLAGS);
if (zipResult) {
return CLS_ERROR_ILLEGAL_ARGUMENT;
}
zip_releaseZipFile(vm->portLibrary, &zipFile);
}
if ((classLoader == vm->systemClassLoader) && (J2SE_VERSION(vm) >= J2SE_V11)) {
if (0 == addJarToSystemClassLoaderClassPathEntries(vm, filename)) {
rc = CLS_ERROR_OUT_OF_MEMORY;
}
} else {
/* Call appendToClassPathForInstrumentation */
J9VMThread *currentThread = currentVMThread(vm);
if (currentThread != NULL) {
JNIEnv * env = (JNIEnv *) currentThread;
jobject classLoaderRef = NULL;
jstring filenameString = NULL;
jclass classLoaderClass = NULL;
jmethodID mid = NULL;
if (J2SE_VERSION(vm) >= J2SE_V11) {
jclass jimModules = getJimModules(currentThread);
jstring moduleNameString = NULL;
jobject vmModule = NULL;
jmethodID loadModule = NULL;
if (NULL == jimModules) {
rc = CLS_ERROR_NOT_FOUND;
goto cleanup;
}
loadModule = (*env)->GetStaticMethodID(env, jimModules, "loadModule", "(Ljava/lang/String;)Ljava/lang/Module;");
if (NULL == loadModule) {
rc = CLS_ERROR_NOT_FOUND;
goto cleanup;
}
moduleNameString = (*env)->NewStringUTF(env, "java.instrument");
if (NULL == moduleNameString) {
rc = CLS_ERROR_OUT_OF_MEMORY;
goto cleanup;
}
vmModule = (*env)->CallStaticObjectMethod(env, jimModules, loadModule, moduleNameString);
(*env)->DeleteLocalRef(env, vmModule);
(*env)->DeleteLocalRef(env, moduleNameString);
if ((*env)->ExceptionOccurred(env)) {
rc = CLS_ERROR_INTERNAL;
goto cleanup;
}
}
internalEnterVMFromJNI(currentThread);
classLoaderRef = j9jni_createLocalRef(env, classLoader->classLoaderObject);
internalExitVMToJNI(currentThread);
if (classLoaderRef == NULL) {
rc = CLS_ERROR_OUT_OF_MEMORY;
goto cleanup;
}
filenameString = (*env)->NewStringUTF(env, filename);
if (filenameString == NULL) {
rc = CLS_ERROR_OUT_OF_MEMORY;
goto cleanup;
}
classLoaderClass = (*env)->GetObjectClass(env, classLoaderRef);
if (classLoaderClass == NULL) {
rc = CLS_ERROR_OUT_OF_MEMORY;
goto cleanup;
}
mid = (*env)->GetMethodID(env, classLoaderClass, "appendToClassPathForInstrumentation", "(Ljava/lang/String;)V");
if (mid == NULL) {
rc = CLS_ERROR_CLASS_LOADER_UNSUPPORTED;
goto cleanup;
}
(*env)->CallVoidMethod(env, classLoaderRef, mid, filenameString);
if ((*env)->ExceptionCheck(env)) {
rc = CLS_ERROR_OUT_OF_MEMORY;
}
cleanup:
(*env)->ExceptionClear(env);
(*env)->DeleteLocalRef(env, classLoaderClass);
(*env)->DeleteLocalRef(env, filenameString);
(*env)->DeleteLocalRef(env, classLoaderRef);
}
}
return rc;
}
jclass
getJimModules(J9VMThread *currentThread)
{
J9JavaVM *vm = currentThread->javaVM;
jclass jimModules = vm->jimModules;
if (NULL == jimModules) {
JNIEnv *env = (JNIEnv*)currentThread;
jclass modulesClass = (*env)->FindClass(env, "jdk/internal/module/Modules");
if (NULL == modulesClass) {
(*env)->ExceptionClear(env);
} else {
jclass newRef = (*env)->NewGlobalRef(env, modulesClass);
jboolean deleteNewRef = JNI_FALSE;
/* Ensure only one global ref is kept for the cache */
omrthread_monitor_enter(vm->jclCacheMutex);
if (NULL == vm->jimModules) {
/* Cache still empty, stash this ref */
jimModules = newRef;
vm->jimModules = jimModules;
} else {
/* Another thread filled the cache, discard this ref and use the cached one */
jimModules = vm->jimModules;
deleteNewRef = JNI_TRUE;
}
omrthread_monitor_exit(vm->jclCacheMutex);
if (deleteNewRef) {
(*env)->DeleteGlobalRef(env, newRef);
}
(*env)->DeleteLocalRef(env, modulesClass);
}
}
return jimModules;
}