jdk-24/test/hotspot/jtreg/serviceability/jvmti/SuspendWithCurrentThread/libSuspendWithCurrentThread.cpp
Kim Barrett 998d0baab0 8324799: Use correct extension for C++ test headers
Reviewed-by: jwaters, gli, coleenp, lmesnik
2024-02-29 06:24:42 +00:00

174 lines
6.3 KiB
C++

/*
* Copyright (c) 2019, 2024, 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 <string.h>
#include <atomic>
#include "jvmti.h"
#include "jvmti_common.hpp"
extern "C" {
static jvmtiEnv* jvmti = nullptr;
static jthread* threads = nullptr;
static jsize threads_count = 0;
JNIEXPORT void JNICALL
Java_SuspendWithCurrentThread_registerTestedThreads(JNIEnv *jni, jclass cls, jobjectArray threadsArr) {
LOG("\nregisterTestedThreads: started\n");
threads_count = jni->GetArrayLength(threadsArr);
jvmtiError err = jvmti->Allocate((threads_count * sizeof(jthread)),
(unsigned char**)&threads);
check_jvmti_status(jni, err, "registerTestedThreads: error in JVMTI Allocate threads array");
for (int i = 0; i < threads_count; i++) {
jobject elem = jni->GetObjectArrayElement(threadsArr, i);
threads[i] = (jthread)jni->NewGlobalRef(elem);
}
LOG("registerTestedThreads: finished\n");
}
/* This function is executed on the suspender thread which is not Main thread */
JNIEXPORT void JNICALL
Java_ThreadToSuspend_suspendTestedThreads(JNIEnv *jni, jclass cls) {
jvmtiError* results = nullptr;
jvmtiError err;
const char* tname = get_thread_name(jvmti, jni, nullptr); // current thread name
LOG("\nsuspendTestedThreads: started by thread: %s\n", tname);
err = jvmti->Allocate((threads_count * sizeof(jvmtiError)),
(unsigned char**)&results);
check_jvmti_status(jni, err, "suspendTestedThreads: error in JVMTI Allocate results array");
LOG("suspendTestedThreads: before JVMTI SuspendThreadList\n");
err = jvmti->SuspendThreadList(threads_count, threads, results);
// is_exited_from_suspend.store(true); // TODO SERGUEI
check_jvmti_status(jni, err, "suspendTestedThreads: error in JVMTI SuspendThreadList");
LOG("suspendTestedThreads: check and print SuspendThreadList results:\n");
for (int i = 0; i < threads_count; i++) {
LOG(" thread #%d suspend errcode: (%d)\n", i, (int)results[i]);
check_jvmti_status(jni, results[i], "suspendTestedThreads: error in SuspendThreadList results[i]");
}
LOG("suspendTestedThreads: finished by thread: %s\n", tname);
err = jvmti->Deallocate((unsigned char*)results);
check_jvmti_status(jni, err, "suspendTestedThreads: error in JVMTI Deallocate results");
err = jvmti->Deallocate((unsigned char*)tname);
}
JNIEXPORT jboolean JNICALL
Java_SuspendWithCurrentThread_checkTestedThreadsSuspended(JNIEnv *jni, jclass cls) {
LOG("checkTestedThreadsSuspended: started\n");
for (int i = 0; i < threads_count; i++) {
while (true) { // loop until a timeout happens if the thread is not suspended
jint state = 0;
jvmtiError err = jvmti->GetThreadState(threads[i], &state);
check_jvmti_status(jni, err, "checkTestedThreadsSuspended: error in GetThreadState");
if ((state & JVMTI_THREAD_STATE_SUSPENDED) == 0) {
LOG("thread #%d has not been suspended yet: # state: (%#x)\n", i, (int)state);
} else {
break;
}
sleep_ms(10);
}
}
// if (is_exited_from_suspend.load()) { // TODO SERGUEI
// LOG("Thread didn't stop in self suspend.");
// return JNI_FALSE;
// }
LOG("checkTestedThreadsSuspended: finished\n");
return JNI_TRUE;
}
JNIEXPORT void JNICALL
Java_SuspendWithCurrentThread_resumeTestedThreads(JNIEnv *jni, jclass cls) {
jvmtiError* results = nullptr;
jvmtiError err;
LOG("\nresumeTestedThreads: started\n");
err = jvmti->Allocate((threads_count * sizeof(jvmtiError)),
(unsigned char**)&results);
check_jvmti_status(jni, err, "resumeTestedThreads: error in JVMTI Allocate results array");
LOG("resumeTestedThreads: before JVMTI ResumeThreadList\n");
err = jvmti->ResumeThreadList(threads_count, threads, results);
check_jvmti_status(jni, err, "resumeTestedThreads: error in ResumeThreadList");
LOG("resumeTestedThreads: check and print ResumeThreadList results:\n");
for (int i = 0; i < threads_count; i++) {
LOG(" thread #%d resume errcode: (%d)\n", i, (int)results[i]);
check_jvmti_status(jni, results[i], "resumeTestedThreads: error in ResumeThreadList results[i]");
}
err = jvmti->Deallocate((unsigned char*)results);
check_jvmti_status(jni, err, "resumeTestedThreads: error in JVMTI Deallocate results");
LOG("resumeTestedThreads: finished\n");
}
JNIEXPORT void JNICALL
Java_SuspendWithCurrentThread_releaseTestedThreadsInfo(JNIEnv *jni, jclass cls) {
jvmtiError err;
LOG("\nreleaseTestedThreadsInfo: started\n");
for (int i = 0; i < threads_count; i++) {
if (threads[i] != nullptr) {
jni->DeleteGlobalRef(threads[i]);
}
}
err = jvmti->Deallocate((unsigned char*)threads);
check_jvmti_status(jni, err, "releaseTestedThreadsInfo: error in JVMTI Deallocate threads");
LOG("releaseTestedThreadsInfo: finished\n");
}
/** Agent library initialization. */
JNIEXPORT jint JNICALL
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
LOG("\nAgent_OnLoad started\n");
// create JVMTI environment
if (jvm->GetEnv((void **) (&jvmti), JVMTI_VERSION) != JNI_OK) {
return JNI_ERR;
}
// add specific capabilities for suspending thread
jvmtiCapabilities suspendCaps;
memset(&suspendCaps, 0, sizeof(suspendCaps));
suspendCaps.can_suspend = 1;
jvmtiError err = jvmti->AddCapabilities(&suspendCaps);
if (err != JVMTI_ERROR_NONE) {
return JNI_ERR;
}
LOG("Agent_OnLoad finished\n");
return JNI_OK;
}
}