4cdb97893c
Reviewed-by: kevinw, sspitsyn
320 lines
9.6 KiB
C++
320 lines
9.6 KiB
C++
/*
|
|
* Copyright (c) 200
|
|
* git 3, 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 <jvmti.h>
|
|
#include "jvmti_common.h"
|
|
|
|
extern "C" {
|
|
|
|
#define STATUS_FAILED 2
|
|
#define PASSED 0
|
|
|
|
#define METH_NUM 2
|
|
|
|
static const char *METHODS[] = {
|
|
"bpMethod",
|
|
"runThis"
|
|
};
|
|
|
|
static const char *METHOD_SIGS[] = {
|
|
"()V",
|
|
"()I"
|
|
};
|
|
|
|
static volatile long stepEv[] = {0, 0};
|
|
|
|
static const char *CLASS_SIG =
|
|
"Lsinglestep01;";
|
|
|
|
static volatile jint result = PASSED;
|
|
static jvmtiEnv *jvmti = NULL;
|
|
|
|
static volatile jboolean isVirtualExpected = JNI_FALSE;
|
|
|
|
static volatile int callbacksEnabled = JNI_FALSE;
|
|
static jrawMonitorID agent_lock;
|
|
|
|
static void setBP(jvmtiEnv *jvmti, JNIEnv *jni, jclass klass) {
|
|
jmethodID mid;
|
|
jvmtiError err;
|
|
|
|
mid = jni->GetMethodID(klass, METHODS[0], METHOD_SIGS[0]);
|
|
if (mid == NULL) {
|
|
jni->FatalError("failed to get ID for the java method\n");
|
|
}
|
|
|
|
LOG("Setting breakpoint....");
|
|
err = jvmti->SetBreakpoint(mid, 0);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
jni->FatalError("failed to set breakpoint\n");
|
|
}
|
|
}
|
|
|
|
/** callback functions **/
|
|
void JNICALL
|
|
ClassLoad(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jclass klass) {
|
|
char *sig, *generic;
|
|
jvmtiError err;
|
|
|
|
RawMonitorLocker rml(jvmti, jni, agent_lock);
|
|
|
|
if (callbacksEnabled) {
|
|
err = jvmti->GetClassSignature(klass, &sig, &generic);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
jni->FatalError("failed to obtain a class signature\n");
|
|
}
|
|
if (sig != NULL && (strcmp(sig, CLASS_SIG) == 0)) {
|
|
LOG("ClassLoad event received for the class \"%s\"\n"
|
|
"\tsetting breakpoint ...\n", sig);
|
|
setBP(jvmti, jni, klass);
|
|
}
|
|
}
|
|
}
|
|
|
|
void JNICALL
|
|
Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jmethodID method, jlocation loc) {
|
|
jclass klass;
|
|
char *sig, *generic;
|
|
jvmtiError err;
|
|
|
|
RawMonitorLocker rml(jvmti, jni, agent_lock);
|
|
|
|
if (!callbacksEnabled) {
|
|
return;
|
|
}
|
|
|
|
LOG("Breakpoint event received\n");
|
|
err = jvmti->GetMethodDeclaringClass(method, &klass);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
COMPLAIN("TEST FAILURE: unable to get method declaring class\n\n");
|
|
}
|
|
|
|
err = jvmti->GetClassSignature(klass, &sig, &generic);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
jni->FatalError("Breakpoint: failed to obtain a class signature\n");
|
|
}
|
|
|
|
if (sig != NULL && (strcmp(sig, CLASS_SIG) == 0)) {
|
|
LOG("method declaring class \"%s\"\n\tenabling SingleStep events ...\n", sig);
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_SINGLE_STEP, thr);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILURE: cannot enable SingleStep events\n\n");
|
|
}
|
|
} else {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILURE: unexpected breakpoint event in method of class \"%s\"\n\n", sig);
|
|
}
|
|
isVirtualExpected = jni->IsVirtualThread(thr);
|
|
}
|
|
|
|
void JNICALL
|
|
SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jmethodID method, jlocation location) {
|
|
jclass klass;
|
|
char *sig, *generic, *methNam, *methSig;
|
|
jvmtiError err;
|
|
|
|
if (result == STATUS_FAILED) {
|
|
return;
|
|
}
|
|
|
|
LOG(">>>> SingleStep event received\n");
|
|
|
|
print_thread_info(jvmti, jni, thread);
|
|
|
|
err = jvmti->GetMethodName(method, &methNam, &methSig, NULL);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: unable to get method name during SingleStep callback\n\n");
|
|
return;
|
|
}
|
|
|
|
err = jvmti->GetMethodDeclaringClass(method, &klass);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: unable to get method declaring class during SingleStep callback\n\n");
|
|
return;
|
|
}
|
|
|
|
err = jvmti->GetClassSignature(klass, &sig, &generic);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: unable to obtain a class signature during SingleStep callback\n\n");
|
|
return;
|
|
}
|
|
|
|
if (sig != NULL) {
|
|
LOG("\tmethod name: \"%s\"\n"
|
|
"\tsignature: \"%s\"\n"
|
|
"\tmethod declaring class: \"%s\"\n",
|
|
methNam, methSig, sig);
|
|
|
|
if (stepEv[1] == 1) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: SingleStep event received after disabling the event generation\n\n");
|
|
} else if ((strcmp(methNam, METHODS[0]) == 0) && (strcmp(methSig, METHOD_SIGS[0]) == 0) &&
|
|
(strcmp(sig, CLASS_SIG) == 0)) {
|
|
stepEv[0]++;
|
|
LOG("CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n", methNam);
|
|
} else if ((strcmp(methNam, METHODS[1]) == 0) && (strcmp(methSig, METHOD_SIGS[1]) == 0) &&
|
|
(strcmp(sig, CLASS_SIG) == 0)) {
|
|
jboolean isVirtual = jni->IsVirtualThread(thread);
|
|
if (isVirtualExpected != isVirtual) {
|
|
LOG("The thread IsVirtualThread %d differs from expected %d.\n", isVirtual, isVirtualExpected);
|
|
result = STATUS_FAILED;
|
|
} else {
|
|
stepEv[1]++;
|
|
LOG("CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n"
|
|
"\tdisabling the event generation\n", methNam);
|
|
}
|
|
err = jvmti->SetEventNotificationMode(JVMTI_DISABLE, JVMTI_EVENT_SINGLE_STEP, thread);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: cannot disable SingleStep events\n\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
err = jvmti->Deallocate((unsigned char *) methNam);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: unable to deallocate memory pointed to method name\n\n");
|
|
}
|
|
err = jvmti->Deallocate((unsigned char *) methSig);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: unable to deallocate memory pointed to method signature\n\n");
|
|
}
|
|
|
|
LOG("<<<<\n\n");
|
|
}
|
|
|
|
void JNICALL
|
|
VMStart(jvmtiEnv *jvmti, JNIEnv *jni) {
|
|
RawMonitorLocker rml(jvmti, jni, agent_lock);
|
|
callbacksEnabled = JNI_TRUE;
|
|
}
|
|
|
|
void JNICALL
|
|
VMDeath(jvmtiEnv *jvmti, JNIEnv *jni) {
|
|
RawMonitorLocker rml(jvmti, jni, agent_lock);
|
|
callbacksEnabled = JNI_FALSE;
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_singlestep01_check(JNIEnv *jni, jobject obj) {
|
|
for (int i = 0; i < METH_NUM; i++) {
|
|
if (stepEv[i] == 0) {
|
|
result = STATUS_FAILED;
|
|
COMPLAIN("TEST FAILED: no SingleStep events for the method \"%s\"\n\n", METHODS[i]);
|
|
} else {
|
|
stepEv[i] = 0;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
|
|
jvmtiEventCallbacks callbacks;
|
|
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;
|
|
}
|
|
/* add capability to generate compiled method events */
|
|
memset(&caps, 0, sizeof(jvmtiCapabilities));
|
|
caps.can_generate_breakpoint_events = 1;
|
|
caps.can_generate_single_step_events = 1;
|
|
caps.can_support_virtual_threads = 1;
|
|
|
|
err = jvmti->AddCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(AddCapabilities) unexpected error: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
|
|
err = jvmti->GetCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("(GetCapabilities) unexpected error: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
|
|
if (!caps.can_generate_single_step_events) {
|
|
LOG("Warning: generation of single step events is not implemented\n");
|
|
}
|
|
|
|
/* set event callback */
|
|
LOG("setting event callbacks ...\n");
|
|
(void) memset(&callbacks, 0, sizeof(callbacks));
|
|
callbacks.ClassLoad = &ClassLoad;
|
|
callbacks.Breakpoint = &Breakpoint;
|
|
callbacks.SingleStep = &SingleStep;
|
|
callbacks.VMStart = &VMStart;
|
|
callbacks.VMDeath = &VMDeath;
|
|
err = jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks));
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
|
|
LOG("setting event callbacks done\nenabling JVMTI events ...\n");
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VM_START, NULL);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VM_DEATH, NULL);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_CLASS_LOAD, NULL);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_BREAKPOINT, NULL);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
return JNI_ERR;
|
|
}
|
|
|
|
LOG("enabling the events done\n\n");
|
|
|
|
agent_lock = create_raw_monitor(jvmti, "agent lock");
|
|
|
|
return JNI_OK;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
}
|