src/java.base/share/native/libjava/ClassLoader.c
author mchung
Mon, 06 Nov 2017 17:48:00 -0800
changeset 47707 67aa34b019e1
parent 47216 71c04702a3d5
child 58481 48a73ec3a817
permissions -rw-r--r--
8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library Reviewed-by: alanb, bchristi, kbarrett, dholmes, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31084
0acb07ceb0bc 8081674: EmptyStackException at startup if running with extended or unsupported charset
simonis
parents: 27184
diff changeset
     2
 * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3833
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3833
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3833
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3833
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3833
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <assert.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "java_lang_ClassLoader.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "java_lang_ClassLoader_NativeLibrary.h"
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
    35
#include <string.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/* defined in libverify.so/verify.dll (src file common/check_format.c) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
extern jboolean VerifyClassname(char *utf_name, jboolean arrayAllowed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
extern jboolean VerifyFixClassname(char *utf_name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
static JNINativeMethod methods[] = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    {"retrieveDirectives",  "()Ljava/lang/AssertionStatusDirectives;", (void *)&JVM_AssertionStatusDirectives}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
Java_java_lang_ClassLoader_registerNatives(JNIEnv *env, jclass cls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    (*env)->RegisterNatives(env, cls, methods,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                            sizeof(methods)/sizeof(JNINativeMethod));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
/* Convert java string to UTF char*. Use local buffer if possible,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
   otherwise malloc new memory. Returns null IFF malloc failed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
static char*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
getUTF(JNIEnv *env, jstring str, char* localBuf, int bufSize)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    char* utfStr = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    int len = (*env)->GetStringUTFLength(env, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    int unicode_len = (*env)->GetStringLength(env, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    if (len >= bufSize) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        utfStr = malloc(len + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        if (utfStr == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            JNU_ThrowOutOfMemoryError(env, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        utfStr = localBuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    (*env)->GetStringUTFRegion(env, str, 0, unicode_len, utfStr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    return utfStr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
JNIEXPORT jclass JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
Java_java_lang_ClassLoader_defineClass1(JNIEnv *env,
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 31084
diff changeset
    77
                                        jclass cls,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                                        jobject loader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                                        jstring name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                        jbyteArray data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                                        jint offset,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                                        jint length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                                        jobject pd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                                        jstring source)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    jbyte *body;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    char *utfName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    jclass result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    char* utfSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    char sourceBuf[1024];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    if (data == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        JNU_ThrowNullPointerException(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /* Work around 4153825. malloc crashes on Solaris when passed a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * negative size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    if (length < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        JNU_ThrowArrayIndexOutOfBoundsException(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    body = (jbyte *)malloc(length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    if (body == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        JNU_ThrowOutOfMemoryError(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    (*env)->GetByteArrayRegion(env, data, offset, length, body);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    if ((*env)->ExceptionOccurred(env))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        goto free_body;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    if (name != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        utfName = getUTF(env, name, buf, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (utfName == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            goto free_body;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        VerifyFixClassname(utfName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        utfName = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    if (source != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        utfSource = getUTF(env, source, sourceBuf, sizeof(sourceBuf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        if (utfSource == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            goto free_utfName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        utfSource = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    result = JVM_DefineClassWithSource(env, utfName, loader, body, length, pd, utfSource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    if (utfSource && utfSource != sourceBuf)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        free(utfSource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 free_utfName:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    if (utfName && utfName != buf)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        free(utfName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 free_body:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    free(body);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
JNIEXPORT jclass JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
Java_java_lang_ClassLoader_defineClass2(JNIEnv *env,
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 31084
diff changeset
   152
                                        jclass cls,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                                        jobject loader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                                        jstring name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                                        jobject data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                                        jint offset,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                                        jint length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                                        jobject pd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                                        jstring source)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    jbyte *body;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    char *utfName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    jclass result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    char* utfSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    char sourceBuf[1024];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    assert(data != NULL); // caller fails if data is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    assert(length >= 0);  // caller passes ByteBuffer.remaining() for length, so never neg.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    // caller passes ByteBuffer.position() for offset, and capacity() >= position() + remaining()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    assert((*env)->GetDirectBufferCapacity(env, data) >= (offset + length));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    body = (*env)->GetDirectBufferAddress(env, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    if (body == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        JNU_ThrowNullPointerException(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    body += offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    if (name != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        utfName = getUTF(env, name, buf, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        if (utfName == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            JNU_ThrowOutOfMemoryError(env, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        VerifyFixClassname(utfName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        utfName = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    if (source != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        utfSource = getUTF(env, source, sourceBuf, sizeof(sourceBuf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        if (utfSource == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            JNU_ThrowOutOfMemoryError(env, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            goto free_utfName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        utfSource = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    result = JVM_DefineClassWithSource(env, utfName, loader, body, length, pd, utfSource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    if (utfSource && utfSource != sourceBuf)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        free(utfSource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 free_utfName:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    if (utfName && utfName != buf)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        free(utfName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 2448
diff changeset
   214
/*
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 2448
diff changeset
   215
 * Returns NULL if class not found.
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 2448
diff changeset
   216
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
JNIEXPORT jclass JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
Java_java_lang_ClassLoader_findBootstrapClass(JNIEnv *env, jobject loader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                                              jstring classname)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    char *clname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    jclass cls = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    if (classname == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    clname = getUTF(env, classname, buf, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    if (clname == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        JNU_ThrowOutOfMemoryError(env, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    VerifyFixClassname(clname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    if (!VerifyClassname(clname, JNI_TRUE)) {  /* expects slashed name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        goto done;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 2448
diff changeset
   240
    cls = JVM_FindClassFromBootLoader(env, clname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 done:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    if (clname != buf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        free(clname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    return cls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
JNIEXPORT jclass JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
Java_java_lang_ClassLoader_findLoadedClass0(JNIEnv *env, jobject loader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                                           jstring name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    if (name == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return JVM_FindLoadedClass(env, loader, name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
static jfieldID handleID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
static jfieldID jniVersionID;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   263
static void *procHandle;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
static jboolean initIDs(JNIEnv *env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    if (handleID == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        jclass this =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            (*env)->FindClass(env, "java/lang/ClassLoader$NativeLibrary");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        if (this == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        handleID = (*env)->GetFieldID(env, this, "handle", "J");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        if (handleID == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        jniVersionID = (*env)->GetFieldID(env, this, "jniVersion", "I");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        if (jniVersionID == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            return JNI_FALSE;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   278
        procHandle = getProcessHandle();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
typedef jint (JNICALL *JNI_OnLoad_t)(JavaVM *, void *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
typedef void (JNICALL *JNI_OnUnload_t)(JavaVM *, void *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
/*
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   287
 * Support for finding JNI_On(Un)Load_<lib_name> if it exists.
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   288
 * If cname == NULL then just find normal JNI_On(Un)Load entry point
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   289
 */
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   290
static void *findJniFunction(JNIEnv *env, void *handle,
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   291
                                    const char *cname, jboolean isLoad) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   292
    const char *onLoadSymbols[] = JNI_ONLOAD_SYMBOLS;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   293
    const char *onUnloadSymbols[] = JNI_ONUNLOAD_SYMBOLS;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   294
    const char **syms;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   295
    int symsLen;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   296
    void *entryName = NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   297
    char *jniFunctionName;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   298
    int i;
22962
309eaab8c853 8030010: cleanup native code warnings
mchung
parents: 22641
diff changeset
   299
    size_t len;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   300
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   301
    // Check for JNI_On(Un)Load<_libname> function
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   302
    if (isLoad) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   303
        syms = onLoadSymbols;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   304
        symsLen = sizeof(onLoadSymbols) / sizeof(char *);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   305
    } else {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   306
        syms = onUnloadSymbols;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   307
        symsLen = sizeof(onUnloadSymbols) / sizeof(char *);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   308
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   309
    for (i = 0; i < symsLen; i++) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   310
        // cname + sym + '_' + '\0'
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   311
        if ((len = (cname != NULL ? strlen(cname) : 0) + strlen(syms[i]) + 2) >
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   312
            FILENAME_MAX) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   313
            goto done;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   314
        }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   315
        jniFunctionName = malloc(len);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   316
        if (jniFunctionName == NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   317
            JNU_ThrowOutOfMemoryError(env, NULL);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   318
            goto done;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   319
        }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   320
        buildJniFunctionName(syms[i], cname, jniFunctionName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   321
        entryName = JVM_FindLibraryEntry(handle, jniFunctionName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   322
        free(jniFunctionName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   323
        if(entryName) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   324
            break;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   325
        }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   326
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   327
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   328
 done:
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   329
    return entryName;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   330
}
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   331
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   332
/*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
 * Class:     java_lang_ClassLoader_NativeLibrary
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   334
 * Method:    load0
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   335
 * Signature: (Ljava/lang/String;Z)Z
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
 */
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   337
JNIEXPORT jboolean JNICALL
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   338
Java_java_lang_ClassLoader_00024NativeLibrary_load0
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   339
  (JNIEnv *env, jobject this, jstring name, jboolean isBuiltin)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    const char *cname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    jint jniVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    jthrowable cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    void * handle;
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   345
    jboolean loaded = JNI_FALSE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    if (!initIDs(env))
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   348
        return JNI_FALSE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    cname = JNU_GetStringPlatformChars(env, name, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    if (cname == 0)
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   352
        return JNI_FALSE;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   353
    handle = isBuiltin ? procHandle : JVM_LoadLibrary(cname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    if (handle) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        JNI_OnLoad_t JNI_OnLoad;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   356
        JNI_OnLoad = (JNI_OnLoad_t)findJniFunction(env, handle,
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   357
                                                   isBuiltin ? cname : NULL,
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   358
                                                   JNI_TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        if (JNI_OnLoad) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            JavaVM *jvm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            (*env)->GetJavaVM(env, &jvm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            jniVersion = (*JNI_OnLoad)(jvm, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            jniVersion = 0x00010001;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        cause = (*env)->ExceptionOccurred(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        if (cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            (*env)->ExceptionClear(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            (*env)->Throw(env, cause);
16506
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   371
            if (!isBuiltin) {
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   372
                JVM_UnloadLibrary(handle);
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   373
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            goto done;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   377
        if (!JVM_IsSupportedJNIVersion(jniVersion) ||
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   378
            (isBuiltin && jniVersion < JNI_VERSION_1_8)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            char msg[256];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            jio_snprintf(msg, sizeof(msg),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                         "unsupported JNI version 0x%08X required by %s",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                         jniVersion, cname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            JNU_ThrowByName(env, "java/lang/UnsatisfiedLinkError", msg);
16506
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   384
            if (!isBuiltin) {
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   385
                JVM_UnloadLibrary(handle);
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   386
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            goto done;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        (*env)->SetIntField(env, this, jniVersionID, jniVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        cause = (*env)->ExceptionOccurred(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        if (cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            (*env)->ExceptionClear(env);
6850
56966b0a6a0d 6989466: Miscellaneous compiler warnings in java/lang, java/util, java/io, sun/misc native code
alanb
parents: 5506
diff changeset
   394
            (*env)->SetLongField(env, this, handleID, (jlong)0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            (*env)->Throw(env, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        goto done;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    (*env)->SetLongField(env, this, handleID, ptr_to_jlong(handle));
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   400
    loaded = JNI_TRUE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
 done:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    JNU_ReleaseStringPlatformChars(env, name, cname);
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   404
    return loaded;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
 * Class:     java_lang_ClassLoader_NativeLibrary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
 * Method:    unload
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   410
 * Signature: (Ljava/lang/String;ZJ)V
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
Java_java_lang_ClassLoader_00024NativeLibrary_unload
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   414
(JNIEnv *env, jclass cls, jstring name, jboolean isBuiltin, jlong address)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    const char *onUnloadSymbols[] = JNI_ONUNLOAD_SYMBOLS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    void *handle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    JNI_OnUnload_t JNI_OnUnload;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   419
     const char *cname;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    if (!initIDs(env))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   423
    cname = JNU_GetStringPlatformChars(env, name, 0);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   424
    if (cname == NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   425
        return;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   426
    }
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   427
    handle = jlong_to_ptr(address);
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   428
    JNI_OnUnload = (JNI_OnUnload_t )findJniFunction(env, handle,
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   429
                                                    isBuiltin ? cname : NULL,
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   430
                                                    JNI_FALSE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    if (JNI_OnUnload) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        JavaVM *jvm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        (*env)->GetJavaVM(env, &jvm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        (*JNI_OnUnload)(jvm, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
16506
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   436
    if (!isBuiltin) {
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   437
        JVM_UnloadLibrary(handle);
2a43ffb8a318 8010668: builtin JNI libraries should not be unloaded
chegar
parents: 16479
diff changeset
   438
    }
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   439
    JNU_ReleaseStringPlatformChars(env, name, cname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
 * Class:     java_lang_ClassLoader_NativeLibrary
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   444
 * Method:    findEntry
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   445
 * Signature: (Ljava/lang/String;)J
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
JNIEXPORT jlong JNICALL
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   448
Java_java_lang_ClassLoader_00024NativeLibrary_findEntry
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
  (JNIEnv *env, jobject this, jstring name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    jlong handle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    const char *cname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    jlong res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    if (!initIDs(env))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        return jlong_zero;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    handle = (*env)->GetLongField(env, this, handleID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    cname = (*env)->GetStringUTFChars(env, name, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    if (cname == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        return jlong_zero;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    res = ptr_to_jlong(JVM_FindLibraryEntry(jlong_to_ptr(handle), cname));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    (*env)->ReleaseStringUTFChars(env, name, cname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
}
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   466
/*
31084
0acb07ceb0bc 8081674: EmptyStackException at startup if running with extended or unsupported charset
simonis
parents: 27184
diff changeset
   467
 * Class:     java_lang_ClassLoader
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   468
 * Method:    findBuiltinLib
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   469
 * Signature: (Ljava/lang/String;)Ljava/lang/String;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   470
 */
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   471
JNIEXPORT jstring JNICALL
31084
0acb07ceb0bc 8081674: EmptyStackException at startup if running with extended or unsupported charset
simonis
parents: 27184
diff changeset
   472
Java_java_lang_ClassLoader_findBuiltinLib
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   473
  (JNIEnv *env, jclass cls, jstring name)
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   474
{
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   475
    const char *cname;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   476
    char *libName;
22962
309eaab8c853 8030010: cleanup native code warnings
mchung
parents: 22641
diff changeset
   477
    size_t prefixLen = strlen(JNI_LIB_PREFIX);
309eaab8c853 8030010: cleanup native code warnings
mchung
parents: 22641
diff changeset
   478
    size_t suffixLen = strlen(JNI_LIB_SUFFIX);
309eaab8c853 8030010: cleanup native code warnings
mchung
parents: 22641
diff changeset
   479
    size_t len;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   480
    jstring lib;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   481
    void *ret;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   482
    const char *onLoadSymbols[] = JNI_ONLOAD_SYMBOLS;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   483
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   484
    if (name == NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   485
        JNU_ThrowInternalError(env, "NULL filename for native library");
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   486
        return NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   487
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   488
    procHandle = getProcessHandle();
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   489
    cname = JNU_GetStringPlatformChars(env, name, 0);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   490
    if (cname == NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   491
        return NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   492
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   493
    // Copy name Skipping PREFIX
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   494
    len = strlen(cname);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   495
    if (len <= (prefixLen+suffixLen)) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   496
        JNU_ReleaseStringPlatformChars(env, name, cname);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   497
        return NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   498
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   499
    libName = malloc(len + 1); //+1 for null if prefix+suffix == 0
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   500
    if (libName == NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   501
        JNU_ReleaseStringPlatformChars(env, name, cname);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   502
        JNU_ThrowOutOfMemoryError(env, NULL);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   503
        return NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   504
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   505
    if (len > prefixLen) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   506
        strcpy(libName, cname+prefixLen);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   507
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   508
    JNU_ReleaseStringPlatformChars(env, name, cname);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   509
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   510
    // Strip SUFFIX
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   511
    libName[strlen(libName)-suffixLen] = '\0';
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   512
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   513
    // Check for JNI_OnLoad_libname function
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   514
    ret = findJniFunction(env, procHandle, libName, JNI_TRUE);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   515
    if (ret != NULL) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   516
        lib = JNU_NewStringPlatform(env, libName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   517
        free(libName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   518
        return lib;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   519
    }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   520
    free(libName);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   521
    return NULL;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 7668
diff changeset
   522
}