Skip to content

Commit 7773c90

Browse files
committedJul 5, 2020
add extra checks to JVMTI monitor handshakes
1 parent 854945b commit 7773c90

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed
 

‎src/hotspot/share/prims/jvmtiEnv.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1313,8 +1313,8 @@ JvmtiEnv::GetOwnedMonitorInfo(jthread thread, jint* owned_monitor_count_ptr, job
13131313
VThreadGetOwnedMonitorInfoClosure op(this,
13141314
Handle(calling_thread, thread_obj),
13151315
owned_monitors_list);
1316-
Handshake::execute_direct(&op, calling_thread);
1317-
err = op.result();
1316+
bool executed = Handshake::execute_direct(&op, calling_thread);
1317+
err = executed ? op.result() : JVMTI_ERROR_THREAD_NOT_ALIVE;
13181318
} else {
13191319
// Support for ordinary threads
13201320
JavaThread* java_thread = NULL;
@@ -1383,8 +1383,8 @@ JvmtiEnv::GetOwnedMonitorStackDepthInfo(jthread thread, jint* monitor_info_count
13831383
VThreadGetOwnedMonitorInfoClosure op(this,
13841384
Handle(calling_thread, thread_obj),
13851385
owned_monitors_list);
1386-
Handshake::execute_direct(&op, calling_thread);
1387-
err = op.result();
1386+
bool executed = Handshake::execute_direct(&op, calling_thread);
1387+
err = executed ? op.result() : JVMTI_ERROR_THREAD_NOT_ALIVE;
13881388
} else {
13891389
// Support for ordinary threads
13901390
JavaThread* java_thread = NULL;
@@ -1450,8 +1450,8 @@ JvmtiEnv::GetCurrentContendedMonitor(jthread thread, jobject* monitor_ptr) {
14501450
VThreadGetCurrentContendedMonitorClosure op(this,
14511451
Handle(calling_thread, thread_obj),
14521452
monitor_ptr);
1453-
Handshake::execute_direct(&op, calling_thread);
1454-
err = op.result();
1453+
bool executed = Handshake::execute_direct(&op, calling_thread);
1454+
err = executed ? op.result() : JVMTI_ERROR_THREAD_NOT_ALIVE;
14551455
return err;
14561456
}
14571457
// Support for ordinary threads

‎src/hotspot/share/prims/jvmtiEnvBase.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1715,6 +1715,7 @@ VM_GetFrameLocation::doit() {
17151715

17161716
void
17171717
VThreadGetOwnedMonitorInfoClosure::do_thread(Thread *target) {
1718+
assert(target->is_Java_thread(), "just checking");
17181719
Thread* cur_thread = Thread::current();
17191720
ResourceMark rm(cur_thread);
17201721
HandleMark hm(cur_thread);
@@ -1731,7 +1732,6 @@ VThreadGetOwnedMonitorInfoClosure::do_thread(Thread *target) {
17311732
oop carrier_thread = java_lang_VirtualThread::carrier_thread(_vthread_h());
17321733
JavaThread* java_thread = java_lang_Thread::thread(carrier_thread);
17331734

1734-
_result = JVMTI_ERROR_THREAD_NOT_ALIVE;
17351735
ThreadsListHandle tlh;
17361736
if (java_thread != NULL && tlh.includes(java_thread)
17371737
&& !java_thread->is_exiting() && java_thread->threadObj() != NULL) {
@@ -1744,6 +1744,7 @@ VThreadGetOwnedMonitorInfoClosure::do_thread(Thread *target) {
17441744

17451745
void
17461746
VThreadGetCurrentContendedMonitorClosure::do_thread(Thread *target) {
1747+
assert(target->is_Java_thread(), "just checking");
17471748
oop carrier_thread = java_lang_VirtualThread::carrier_thread(_vthread_h());
17481749
if (carrier_thread == NULL) {
17491750
// virtual thread is unmounted, so it can not be contended on a monitor
@@ -1768,6 +1769,7 @@ VThreadGetThreadClosure::do_thread(Thread *target) {
17681769

17691770
void
17701771
VThreadGetStackTraceClosure::do_thread(Thread *target) {
1772+
assert(target->is_Java_thread(), "just checking");
17711773
Thread* cur_thread = Thread::current();
17721774
ResourceMark rm(cur_thread);
17731775
HandleMark hm(cur_thread);
@@ -1779,17 +1781,20 @@ VThreadGetStackTraceClosure::do_thread(Thread *target) {
17791781

17801782
void
17811783
VThreadGetFrameCountClosure::do_thread(Thread *target) {
1784+
assert(target->is_Java_thread(), "just checking");
17821785
_result = ((JvmtiEnvBase*)_env)->get_frame_count(_vthread_h(), _count_ptr);
17831786
}
17841787

17851788
void
17861789
VThreadGetFrameLocationClosure::do_thread(Thread *target) {
1790+
assert(target->is_Java_thread(), "just checking");
17871791
_result = ((JvmtiEnvBase*)_env)->get_frame_location(_vthread_h(), _depth,
17881792
_method_ptr, _location_ptr);
17891793
}
17901794

17911795
void
17921796
VThreadGetThreadStateClosure::do_thread(Thread *target) {
1797+
assert(target->is_Java_thread(), "just checking");
17931798
jshort vthread_state = java_lang_VirtualThread::state(_vthread_h());
17941799
oop carrier_thread_oop = java_lang_VirtualThread::carrier_thread(_vthread_h());
17951800
jint state;

‎src/hotspot/share/prims/jvmtiEnvBase.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ class VThreadGetOwnedMonitorInfoClosure : public HandshakeClosure {
612612
_env(env),
613613
_vthread_h(vthread_h),
614614
_owned_monitors_list(owned_monitors_list),
615-
_result(JVMTI_ERROR_NONE) {}
615+
_result(JVMTI_ERROR_THREAD_NOT_ALIVE) {}
616616

617617
void do_thread(Thread *target);
618618
jvmtiError result() { return _result; }

0 commit comments

Comments
 (0)
Please sign in to comment.