Skip to content

Commit 55d7bbc

Browse files
committedFeb 16, 2021
8261607: SA attach is exceeding JNI Local Refs capacity
Reviewed-by: sgehwolf, amenkov
1 parent 0a50688 commit 55d7bbc

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed
 

‎src/jdk.hotspot.agent/linux/native/libsaproc/LinuxDebuggerLocal.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2019, 2020, NTT DATA.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -183,6 +183,8 @@ static void fillThreadsAndLoadObjects(JNIEnv* env, jobject this_obj, struct ps_p
183183
CHECK_EXCEPTION;
184184
env->CallBooleanMethod(threadList, listAdd_ID, thread);
185185
CHECK_EXCEPTION;
186+
env->DeleteLocalRef(thread);
187+
env->DeleteLocalRef(threadList);
186188
}
187189

188190
// add load objects
@@ -205,6 +207,9 @@ static void fillThreadsAndLoadObjects(JNIEnv* env, jobject this_obj, struct ps_p
205207
CHECK_EXCEPTION;
206208
env->CallBooleanMethod(loadObjectList, listAdd_ID, loadObject);
207209
CHECK_EXCEPTION;
210+
env->DeleteLocalRef(str);
211+
env->DeleteLocalRef(loadObject);
212+
env->DeleteLocalRef(loadObjectList);
208213
}
209214
}
210215

‎src/jdk.hotspot.agent/macosx/native/libsaproc/MacosxDebuggerLocal.m

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -965,14 +965,17 @@ static bool wait_for_exception() {
965965
called from Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2 */
966966
static void fillLoadObjects(JNIEnv* env, jobject this_obj, struct ps_prochandle* ph) {
967967
int n = 0, i = 0;
968+
jobject loadObjectList;
969+
970+
loadObjectList = (*env)->GetObjectField(env, this_obj, loadObjectList_ID);
971+
CHECK_EXCEPTION;
968972

969973
// add load objects
970974
n = get_num_libs(ph);
971975
for (i = 0; i < n; i++) {
972976
uintptr_t base;
973977
const char* name;
974978
jobject loadObject;
975-
jobject loadObjectList;
976979
jstring nameString;
977980

978981
base = get_lib_base(ph, i);
@@ -982,10 +985,10 @@ static void fillLoadObjects(JNIEnv* env, jobject this_obj, struct ps_prochandle*
982985
loadObject = (*env)->CallObjectMethod(env, this_obj, createLoadObject_ID,
983986
nameString, (jlong)0, (jlong)base);
984987
CHECK_EXCEPTION;
985-
loadObjectList = (*env)->GetObjectField(env, this_obj, loadObjectList_ID);
986-
CHECK_EXCEPTION;
987988
(*env)->CallBooleanMethod(env, loadObjectList, listAdd_ID, loadObject);
988989
CHECK_EXCEPTION;
990+
(*env)->DeleteLocalRef(env, nameString);
991+
(*env)->DeleteLocalRef(env, loadObject);
989992
}
990993
}
991994

‎src/jdk.hotspot.agent/windows/native/libsaproc/sawindbg.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -503,6 +503,7 @@ static bool addLoadObjects(JNIEnv* env, jobject obj) {
503503
env->CallVoidMethod(obj, addLoadObject_ID, strName, (jlong) params[u].Size,
504504
(jlong) params[u].Base);
505505
CHECK_EXCEPTION_(false);
506+
env->DeleteLocalRef(strName);
506507
}
507508

508509
return true;
@@ -629,6 +630,7 @@ static bool addThreads(JNIEnv* env, jobject obj) {
629630

630631
env->CallVoidMethod(obj, setThreadIntegerRegisterSet_ID, (jlong)ptrThreadIds[t], regs);
631632
CHECK_EXCEPTION_(false);
633+
env->DeleteLocalRef(regs);
632634

633635
ULONG sysId;
634636
COM_VERIFY_OK_(ptrIDebugSystemObjects->GetCurrentThreadSystemId(&sysId),

‎test/hotspot/jtreg/serviceability/sa/ClhsdbLauncher.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -144,6 +144,9 @@ private String runCmd(List<String> commands,
144144
System.out.println("Output: ");
145145
System.out.println(output);
146146

147+
// -Xcheck:jni might be set via TEST_VM_OPTS. Make sure there are no warnings.
148+
oa.shouldNotMatch("^WARNING: JNI local refs:.*$");
149+
oa.shouldNotMatch("^WARNING in native method:.*$");
147150
// This will detect most SA failures, including during the attach.
148151
oa.shouldNotMatch("^sun.jvm.hotspot.debugger.DebuggerException:.*$");
149152
// This will detect unexpected exceptions, like NPEs and asserts, that are caught

0 commit comments

Comments
 (0)
Please sign in to comment.