3bd3caf897
Reviewed-by: sspitsyn
361 lines
11 KiB
C++
361 lines
11 KiB
C++
/*
|
|
* Copyright (c) 2003, 2022, 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 <stdio.h>
|
|
#include <string.h>
|
|
#include <inttypes.h>
|
|
#include "jvmti.h"
|
|
|
|
#include "jvmti_common.h"
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
#define PASSED 0
|
|
#define STATUS_FAILED 2
|
|
|
|
#define EXP_STATUS (JVMTI_CLASS_STATUS_VERIFIED | JVMTI_CLASS_STATUS_PREPARED)
|
|
|
|
typedef struct {
|
|
char *sig;
|
|
jint status;
|
|
jint mcount;
|
|
jint fcount;
|
|
jint icount;
|
|
} class_info;
|
|
|
|
static jvmtiEnv *jvmti = NULL;
|
|
static jvmtiEventCallbacks callbacks;
|
|
static jint result = PASSED;
|
|
static size_t eventsCount = 0;
|
|
static size_t eventsExpected = 0;
|
|
|
|
static class_info *classes;
|
|
|
|
static class_info kernel_classes[] = {
|
|
{ (char *)"Lclassprep01$TestInterface;", EXP_STATUS, 2, 1, 0 },
|
|
{ (char *)"Lclassprep01$TestClass;", EXP_STATUS, 3, 2, 1 }
|
|
};
|
|
|
|
static class_info virtual_classes[] = {
|
|
{ (char *)"Lclassprep01$TestInterfaceVirtual;", EXP_STATUS, 2, 1, 0 },
|
|
{ (char *)"Lclassprep01$TestClassVirtual;", EXP_STATUS, 3, 2, 1 }
|
|
};
|
|
|
|
// These classes are loaded on a different thread.
|
|
// We should not get ClassPrepare events for them.
|
|
static const class_info unexpectedClasses[] = {
|
|
{ (char *)"Lclassprep01$TestInterface2;", 0, 0, 0, 0 },
|
|
{ (char *)"Lclassprep01$TestClass2;", 0, 0, 0, 0}
|
|
};
|
|
|
|
void printStatus(jint status) {
|
|
int flags = 0;
|
|
if ((status & JVMTI_CLASS_STATUS_VERIFIED) != 0) {
|
|
LOG("JVMTI_CLASS_STATUS_VERIFIED");
|
|
flags++;
|
|
}
|
|
if ((status & JVMTI_CLASS_STATUS_PREPARED) != 0) {
|
|
if (flags > 0) LOG(" | ");
|
|
LOG("JVMTI_CLASS_STATUS_PREPARED");
|
|
flags++;
|
|
}
|
|
if ((status & JVMTI_CLASS_STATUS_INITIALIZED) != 0) {
|
|
if (flags > 0) LOG(" | ");
|
|
LOG("JVMTI_CLASS_STATUS_INITIALIZED");
|
|
flags++;
|
|
}
|
|
if ((status & JVMTI_CLASS_STATUS_ERROR) != 0) {
|
|
if (flags > 0) LOG(" | ");
|
|
LOG("JVMTI_CLASS_STATUS_ERROR");
|
|
flags++;
|
|
}
|
|
LOG(" (0x%x)\n", status);
|
|
}
|
|
|
|
const size_t NOT_FOUND = (size_t)(-1);
|
|
|
|
size_t findClass(const char *classSig, const class_info *arr, int size) {
|
|
for (int i = 0; i < size; i++) {
|
|
if (strcmp(classSig, arr[i].sig) == 0) {
|
|
return i;
|
|
}
|
|
}
|
|
return NOT_FOUND;
|
|
}
|
|
|
|
void JNICALL ClassPrepare(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jclass cls) {
|
|
jvmtiError err;
|
|
class_info inf;
|
|
jmethodID *methods;
|
|
jfieldID *fields;
|
|
jclass *interfaces;
|
|
char *name, *sig, *generic;
|
|
|
|
err = jvmti->GetClassSignature(cls, &inf.sig, &generic);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetClassSignature#%" PRIuPTR ") unexpected error: %s (%d)\n", eventsCount, TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
|
|
// filter only events for test classes using classprep01 as a prefix
|
|
// there are a lot of classes might be generated and loaded
|
|
if (strncmp("Lclassprep01", inf.sig, 12) != 0) {
|
|
return;
|
|
}
|
|
err = jvmti->GetClassStatus(cls, &inf.status);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetClassStatus#%" PRIuPTR ") unexpected error: %s (%d)\n", eventsCount, TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
}
|
|
err = jvmti->GetClassMethods(cls, &inf.mcount, &methods);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetClassMethods#%" PRIuPTR ") unexpected error: %s (%d)\n", eventsCount, TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
err = jvmti->GetClassFields(cls, &inf.fcount, &fields);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetClassMethods#%" PRIuPTR ") unexpected error: %s (%d)\n", eventsCount, TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
err = jvmti->GetImplementedInterfaces(cls, &inf.icount, &interfaces);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetImplementedInterfaces#%" PRIuPTR ") unexpected error: %s (%d)\n", eventsCount, TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
|
|
LOG(">>> [class prepare event #%" PRIuPTR "]", eventsCount);
|
|
LOG(" \"%s\"\n", inf.sig);
|
|
LOG(">>> Got ClassPrep event in thread.\n");
|
|
print_thread_info(jvmti, jni, thr);
|
|
LOG(">>> status: ");
|
|
printStatus(inf.status);
|
|
LOG(">>> %d methods:", inf.mcount);
|
|
for (int i = 0; i < inf.mcount; i++) {
|
|
if (i > 0) LOG(",");
|
|
if (methods[i] == NULL) {
|
|
LOG(" null");
|
|
} else {
|
|
err = jvmti->GetMethodName(methods[i], &name, &sig, &generic);
|
|
if (err == JVMTI_ERROR_NONE) {
|
|
LOG(" \"%s%s\"", name, sig);
|
|
} else {
|
|
LOG(" <ERRROR in GetMethodName: %s (%d)> ", TranslateError(err), err);
|
|
}
|
|
}
|
|
}
|
|
LOG("\n");
|
|
LOG(">>> %d fields:", inf.fcount);
|
|
for (int i = 0; i < inf.fcount; i++) {
|
|
if (i > 0) LOG(",");
|
|
if (fields[i] == NULL) {
|
|
LOG(" null");
|
|
} else {
|
|
err = jvmti->GetFieldName(cls, fields[i], &name, &sig, &generic);
|
|
if (err == JVMTI_ERROR_NONE) {
|
|
LOG(" \"%s, %s\"", name, sig);
|
|
} else {
|
|
LOG(" <ERRROR in GetFieldName: %s (%d)> ", TranslateError(err), err);
|
|
}
|
|
}
|
|
}
|
|
LOG("\n");
|
|
LOG(">>> %d interfaces:", inf.icount);
|
|
for (int i = 0; i < inf.icount; i++) {
|
|
if (i > 0) LOG(",");
|
|
if (interfaces[i] == NULL) {
|
|
LOG(" null");
|
|
} else {
|
|
err = jvmti->GetClassSignature(interfaces[i], &sig, &generic);
|
|
if (err == JVMTI_ERROR_NONE) {
|
|
LOG(" \"%s\"", sig);
|
|
} else {
|
|
LOG(" <ERRROR in GetClassSignature: %s (%d)> ", TranslateError(err), err);
|
|
}
|
|
}
|
|
}
|
|
LOG("\n");
|
|
|
|
size_t expectedClassIdx = findClass(inf.sig, classes, 2);
|
|
// Test classes loading may cause system classes loading - skip them.
|
|
if (expectedClassIdx == NOT_FOUND) {
|
|
size_t unexpectedClassIdx = findClass(inf.sig, unexpectedClasses,
|
|
sizeof(unexpectedClasses)/sizeof(class_info));
|
|
if (unexpectedClassIdx != NOT_FOUND) {
|
|
printf("# wrong class: \"%s\"\n", inf.sig);
|
|
result = STATUS_FAILED;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (eventsCount != expectedClassIdx) {
|
|
printf("(#%" PRIuPTR ") unexpected order: %" PRIuPTR ", expected: %" PRIuPTR "\n",
|
|
eventsCount, expectedClassIdx, eventsCount);
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
|
|
if (jni->IsVirtualThread(thr) != (classes == virtual_classes)) {
|
|
LOG("Thread IsVirtual differs from expected. Check log.\n");
|
|
result = STATUS_FAILED;
|
|
return;
|
|
}
|
|
|
|
if (inf.sig == NULL || strcmp(inf.sig, classes[eventsCount].sig) != 0) {
|
|
LOG("(#%" PRIuPTR ") wrong class: \"%s\"", eventsCount, inf.sig);
|
|
LOG(", expected: \"%s\"\n", classes[eventsCount].sig);
|
|
result = STATUS_FAILED;
|
|
}
|
|
if (inf.status != classes[eventsCount].status) {
|
|
LOG("(#%" PRIuPTR ") wrong status: ", eventsCount);
|
|
printStatus(inf.status);
|
|
LOG(" expected: ");
|
|
printStatus(classes[eventsCount].status);
|
|
result = STATUS_FAILED;
|
|
}
|
|
if (inf.mcount != classes[eventsCount].mcount) {
|
|
LOG("(#%" PRIuPTR ") wrong number of methods: 0x%x", eventsCount, inf.mcount);
|
|
LOG(", expected: 0x%x\n", classes[eventsCount].mcount);
|
|
result = STATUS_FAILED;
|
|
}
|
|
if (inf.fcount != classes[eventsCount].fcount) {
|
|
LOG("(#%" PRIuPTR ") wrong number of fields: 0x%x", eventsCount, inf.fcount);
|
|
LOG(", expected: 0x%x\n", classes[eventsCount].fcount);
|
|
result = STATUS_FAILED;
|
|
}
|
|
if (inf.icount != classes[eventsCount].icount) {
|
|
LOG("(#%" PRIuPTR ") wrong number of interfaces: 0x%x", eventsCount, inf.icount);
|
|
LOG(", expected: 0x%x\n", classes[eventsCount].icount);
|
|
result = STATUS_FAILED;
|
|
}
|
|
eventsCount++;
|
|
}
|
|
|
|
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
|
|
jvmtiCapabilities caps;
|
|
jvmtiError err;
|
|
jint res;
|
|
|
|
res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1);
|
|
if (res != JNI_OK || jvmti == NULL) {
|
|
LOG("Wrong result of a valid call to GetEnv!\n");
|
|
return JNI_ERR;
|
|
}
|
|
|
|
memset(&caps, 0, sizeof(jvmtiCapabilities));
|
|
caps.can_support_virtual_threads = 1;
|
|
|
|
err = jvmti->AddCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
|
|
err = jvmti->GetCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
|
|
if (!caps.can_support_virtual_threads) {
|
|
LOG("ERROR: virtual thread support is not implemented.\n");
|
|
return JNI_ERR;
|
|
}
|
|
|
|
callbacks.ClassPrepare = &ClassPrepare;
|
|
err = jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks));
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(SetEventCallbacks) unexpected error: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
|
|
return JNI_OK;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_classprep01_getReady(JNIEnv *jni, jclass cls, jthread thread) {
|
|
jvmtiError err;
|
|
|
|
if (jvmti == NULL) {
|
|
LOG("JVMTI client was not properly loaded!\n");
|
|
return;
|
|
}
|
|
|
|
|
|
eventsCount = 0;
|
|
if (jni->IsVirtualThread(thread)) {
|
|
classes = virtual_classes;
|
|
eventsExpected = sizeof(virtual_classes)/sizeof(class_info);
|
|
} else {
|
|
classes = kernel_classes;
|
|
eventsExpected = sizeof(kernel_classes)/sizeof(class_info);
|
|
}
|
|
LOG("Requesting enabling JVMTI_EVENT_CLASS_PREPARE in thread.\n");
|
|
print_thread_info(jvmti, jni, thread);
|
|
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_CLASS_PREPARE, thread);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Failed to enable JVMTI_EVENT_CLASS_PREPARE: %s (%d)\n", TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
}
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_classprep01_check(JNIEnv *jni, jclass cls, jthread thread) {
|
|
jvmtiError err;
|
|
|
|
if (jvmti == NULL) {
|
|
LOG("JVMTI client was not properly loaded!\n");
|
|
return STATUS_FAILED;
|
|
}
|
|
|
|
LOG("Requesting disabling JVMTI_EVENT_CLASS_PREPARE in thread.\n");
|
|
print_thread_info(jvmti, jni, thread);
|
|
|
|
err = jvmti->SetEventNotificationMode(JVMTI_DISABLE, JVMTI_EVENT_CLASS_PREPARE, thread);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Failed to disable JVMTI_EVENT_CLASS_PREPARE: %s (%d)\n", TranslateError(err), err);
|
|
result = STATUS_FAILED;
|
|
}
|
|
|
|
if (eventsCount != eventsExpected) {
|
|
LOG("Wrong number of class prepare events: %" PRIuPTR ", expected: %" PRIuPTR "\n", eventsCount, eventsExpected);
|
|
result = STATUS_FAILED;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
|
|
return Agent_Initialize(jvm, options, reserved);
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL Agent_OnAttach(JavaVM *jvm, char *options, void *reserved) {
|
|
return Agent_Initialize(jvm, options, reserved);
|
|
}
|
|
|
|
|
|
}
|