51b8f3cfb9
Reviewed-by: cjplummer
196 lines
6.4 KiB
C++
196 lines
6.4 KiB
C++
/*
|
|
* Copyright (c) 2023, 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" {
|
|
|
|
static jvmtiEnv *jvmti = NULL;
|
|
static jmethodID mid_B = NULL;
|
|
static jobject exception_obj = NULL;
|
|
static jrawMonitorID monitor = NULL;
|
|
static volatile bool bp_sync_reached = false;
|
|
|
|
static void JNICALL
|
|
Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
|
|
jmethodID method, jlocation location) {
|
|
jvmtiError err;
|
|
|
|
if (method != mid_B) {
|
|
fatal(jni, "Breakpoint: Failed with wrong location: expected in method TestTask.B()");
|
|
}
|
|
err = jvmti->ClearBreakpoint(mid_B, 0);
|
|
check_jvmti_status(jni, err, "Breakpoint: Failed in JVMTI ClearBreakpoint");
|
|
|
|
LOG("Breakpoint: In method TestTask.B(): before sync section enter\n");
|
|
|
|
err = jvmti->RawMonitorEnter(monitor);
|
|
check_jvmti_status(jni, err, "Breakpoint: Failed in RawMonitorEnter");
|
|
|
|
bp_sync_reached = true;
|
|
|
|
// wait for notify from notifyAtBreakpoint or JVMTI_ERROR_INTERRUPT from JVMTI StopThread
|
|
err = jvmti->RawMonitorWait(monitor, 0);
|
|
if (err == JVMTI_ERROR_INTERRUPT) {
|
|
LOG("Breakpoint: In method TestTask.B(): expected JVMTI_ERROR_INTERRUPT from RawMonitorWait\n");
|
|
} else {
|
|
check_jvmti_status(jni, err, "Breakpoint: Failed in RawMonitorWait");
|
|
}
|
|
err = jvmti->RawMonitorExit(monitor);
|
|
check_jvmti_status(jni, err, "Breakpoint: Failed in RawMonitorExit");
|
|
|
|
LOG("Breakpoint: In method TestTask.B(): after sync section exit\n");
|
|
}
|
|
|
|
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
|
|
static jvmtiCapabilities caps;
|
|
static jvmtiEventCallbacks callbacks;
|
|
jvmtiError err;
|
|
jint res;
|
|
|
|
LOG("Agent init\n");
|
|
res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1);
|
|
if (res != JNI_OK || jvmti == NULL) {
|
|
LOG("Agent init: Failed in GetEnv!\n");
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->GetPotentialCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Agent init: Failed in GetPotentialCapabilities: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->AddCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Agent init: Failed in AddCapabilities: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
err = jvmti->GetCapabilities(&caps);
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Agent init: Failed in GetCapabilities: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
if (!caps.can_generate_breakpoint_events) {
|
|
LOG("Agent init: Failed: Breakpoint event is not implemented\n");
|
|
return JNI_ERR;
|
|
}
|
|
callbacks.Breakpoint = &Breakpoint;
|
|
err = jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks));
|
|
if (err != JVMTI_ERROR_NONE) {
|
|
LOG("Agent init: Failed in SetEventCallbacks: %s (%d)\n", TranslateError(err), err);
|
|
return JNI_ERR;
|
|
}
|
|
|
|
monitor = create_raw_monitor(jvmti, "Raw monitor to test");
|
|
return JNI_OK;
|
|
}
|
|
|
|
extern JNIEXPORT jint JNICALL
|
|
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
|
|
return Agent_Initialize(jvm, options, reserved);
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_StopThreadTest_prepareAgent(JNIEnv *jni, jclass cls, jclass task_clazz, jobject exc_obj) {
|
|
jvmtiError err;
|
|
|
|
LOG("Main: prepareAgent started\n");
|
|
|
|
if (jvmti == NULL) {
|
|
fatal(jni, "prepareAgent: Failed as JVMTI client was not properly loaded!\n");
|
|
}
|
|
exception_obj = jni->NewGlobalRef(exc_obj);
|
|
if (exception_obj == NULL) {
|
|
fatal(jni, "prepareAgent: Failed in JNI NewGlobalRef\n");
|
|
}
|
|
mid_B = jni->GetStaticMethodID(task_clazz, "B", "()V");
|
|
if (mid_B == NULL) {
|
|
fatal(jni, "prepareAgent: Failed to find Method ID for method: TestTask.B()\n");
|
|
}
|
|
err = jvmti->SetBreakpoint(mid_B, 0);
|
|
check_jvmti_status(jni, err, "prepareAgent: Failed in JVMTI SetBreakpoint");
|
|
|
|
set_event_notification_mode(jvmti, JVMTI_ENABLE, JVMTI_EVENT_BREAKPOINT, NULL);
|
|
|
|
LOG("Main: prepareAgent finished\n");
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_StopThreadTest_suspendThread(JNIEnv *jni, jclass cls, jthread thread) {
|
|
LOG("Main: suspendThread\n");
|
|
suspend_thread(jvmti, jni, thread);
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_StopThreadTest_resumeThread(JNIEnv *jni, jclass cls, jthread thread) {
|
|
LOG("Main: resumeThread\n");
|
|
resume_thread(jvmti, jni, thread);
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_StopThreadTest_stopThread(JNIEnv *jni, jclass cls, jthread thread) {
|
|
jvmtiError err = jvmti->StopThread(thread, exception_obj);
|
|
LOG("Main: stopThread: StopThread returned code: %s (%d)\n", TranslateError(err), err);
|
|
return (jint)err;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_StopThreadTest_ensureAtBreakpoint(JNIEnv *jni, jclass cls) {
|
|
jvmtiError err;
|
|
bool need_stop = false;
|
|
|
|
LOG("Main: ensureAtBreakpoint\n");
|
|
|
|
while (!need_stop) {
|
|
err = jvmti->RawMonitorEnter(monitor);
|
|
check_jvmti_status(jni, err, "ensureAtBreakpoint: Failed in RawMonitorEnter");
|
|
|
|
need_stop = bp_sync_reached;
|
|
|
|
err = jvmti->RawMonitorExit(monitor);
|
|
check_jvmti_status(jni, err, "ensureAtBreakpoint: Failed in RawMonitorExit");
|
|
|
|
sleep_ms(1); // 1 millisecond
|
|
}
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_StopThreadTest_notifyAtBreakpoint(JNIEnv *jni, jclass cls) {
|
|
jvmtiError err;
|
|
|
|
LOG("Main: notifyAtBreakpoint\n");
|
|
|
|
err = jvmti->RawMonitorEnter(monitor);
|
|
check_jvmti_status(jni, err, "notifyAtBreakpoint: Fatal Error in RawMonitorEnter");
|
|
|
|
err = jvmti->RawMonitorNotify(monitor);
|
|
check_jvmti_status(jni, err, "notifyAtBreakpoint: Fatal Error in RawMonitorNotify");
|
|
|
|
err = jvmti->RawMonitorExit(monitor);
|
|
check_jvmti_status(jni, err, "notifyAtBreakpoint: Fatal Error in RawMonitorExit");
|
|
}
|
|
|
|
} // extern "C"
|