/* * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ #include #include #include #include #include #include "agent_common.h" #include "nsk_tools.h" #include "JVMTITools.h" #include "jvmti_tools.h" extern "C" { #define PASSED 0 #define STATUS_FAILED 2 /* classes which must have the class load event */ static const char *expSigs[] = { "Lnsk/jvmti/ClassLoad/classload001;", "Lnsk/jvmti/ClassLoad/classload001$TestedClass;" }; #define EXP_SIG_NUM (sizeof(expSigs)/sizeof(char*)) /* classes which must not have the class load event */ static const char *unexpSigs[] = { "Z", /* boolean */ "B", /* byte */ "C", /* char */ "D", /* double */ "F", /* float */ "I", /* integer */ "J", /* long */ "S", /* short */ "[Z", /* boolean array */ "[B", /* byte array */ "[C", /* char array */ "[D", /* double array */ "[F", /* float array */ "[I", /* integer array */ "[J", /* long array */ "[S", /* short array */ "[Lnsk/jvmti/ClassLoad/classload001$TestedClass;" }; #define UNEXP_SIG_NUM (sizeof(unexpSigs)/sizeof(char*)) static volatile int clsEvents[EXP_SIG_NUM]; static volatile int primClsEvents[UNEXP_SIG_NUM]; static jint result = PASSED; static jvmtiEnv *jvmti = NULL; static jvmtiEventCallbacks callbacks; static jrawMonitorID countLock; static void initCounters() { size_t i; for(i=0; iRawMonitorEnter(countLock))) jni_env->FatalError("failed to enter a raw monitor\n"); } static void unlock(jvmtiEnv *jvmti_env, JNIEnv *jni_env) { if (!NSK_JVMTI_VERIFY(jvmti_env->RawMonitorExit(countLock))) jni_env->FatalError("failed to exit a raw monitor\n"); } /** callback functions **/ void JNICALL ClassLoad(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jclass klass) { int i = 0; char *sig, *generic; lock(jvmti_env, env); if (!NSK_JVMTI_VERIFY(jvmti_env->GetClassSignature(klass, &sig, &generic))) { result = STATUS_FAILED; NSK_COMPLAIN0("TEST FAILURE: unable to obtain a class signature\n"); } if ((i = findSig(sig, 1)) != -1) { clsEvents[i]++; NSK_DISPLAY1("CHECK PASSED: ClassLoad event received for the class \"%s\" as expected\n", sig); } else if ((i = findSig(sig, 0)) != -1) { result = STATUS_FAILED; primClsEvents[i]++; NSK_COMPLAIN1( "TEST FAILED: JVMTI_EVENT_CLASS_LOAD event received for\n" "\t a primitive class/array of primitive types with the signature \"%s\"\n", sig); } unlock(jvmti_env, env); } /************************/ JNIEXPORT jint JNICALL Java_nsk_jvmti_ClassLoad_classload001_check( JNIEnv *env, jobject obj) { size_t i; for (i=0; iCreateRawMonitor("_counter_lock", &countLock))) return JNI_ERR; NSK_DISPLAY0("setting event callbacks ...\n"); (void) memset(&callbacks, 0, sizeof(callbacks)); callbacks.ClassLoad = &ClassLoad; if (!NSK_JVMTI_VERIFY(jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks)))) return JNI_ERR; NSK_DISPLAY0("setting event callbacks done\nenabling ClassLoad event ...\n"); if (!NSK_JVMTI_VERIFY(jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_CLASS_LOAD, NULL))) return JNI_ERR; NSK_DISPLAY0("the event enabled\n"); return JNI_OK; } }