Skip to content

Commit 0cd46f6

Browse files
author
Alex Menkov
committedApr 4, 2022
8283597: [REDO] Invalid generic signature for redefined classes
Reviewed-by: sspitsyn, coleenp
1 parent e297074 commit 0cd46f6

File tree

2 files changed

+204
-10
lines changed

2 files changed

+204
-10
lines changed
 

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

+9-10
Original file line numberDiff line numberDiff line change
@@ -1856,14 +1856,15 @@ jvmtiError VM_RedefineClasses::merge_cp_and_rewrite(
18561856
if (old_cp->has_dynamic_constant()) {
18571857
scratch_cp->set_has_dynamic_constant();
18581858
}
1859-
// Copy attributes from scratch_cp to merge_cp
1860-
merge_cp->copy_fields(scratch_cp());
18611859

18621860
log_info(redefine, class, constantpool)("merge_cp_len=%d, index_map_len=%d", merge_cp_length, _index_map_count);
18631861

18641862
if (_index_map_count == 0) {
18651863
// there is nothing to map between the new and merged constant pools
18661864

1865+
// Copy attributes from scratch_cp to merge_cp
1866+
merge_cp->copy_fields(scratch_cp());
1867+
18671868
if (old_cp->length() == scratch_cp->length()) {
18681869
// The old and new constant pools are the same length and the
18691870
// index map is empty. This means that the three constant pools
@@ -1917,6 +1918,9 @@ jvmtiError VM_RedefineClasses::merge_cp_and_rewrite(
19171918
return JVMTI_ERROR_INTERNAL;
19181919
}
19191920

1921+
// Copy attributes from scratch_cp to merge_cp (should be done after rewrite_cp_refs())
1922+
merge_cp->copy_fields(scratch_cp());
1923+
19201924
// Replace the new constant pool with a shrunken copy of the
19211925
// merged constant pool so now the rewritten bytecodes have
19221926
// valid references; the previous new constant pool will get
@@ -3492,10 +3496,9 @@ void VM_RedefineClasses::rewrite_cp_refs_in_verification_type_info(
34923496
} // end rewrite_cp_refs_in_verification_type_info()
34933497

34943498

3495-
// Change the constant pool associated with klass scratch_class to
3496-
// scratch_cp. If shrink is true, then scratch_cp_length elements
3497-
// are copied from scratch_cp to a smaller constant pool and the
3498-
// smaller constant pool is associated with scratch_class.
3499+
// Change the constant pool associated with klass scratch_class to scratch_cp.
3500+
// scratch_cp_length elements are copied from scratch_cp to a smaller constant pool
3501+
// and the smaller constant pool is associated with scratch_class.
34993502
void VM_RedefineClasses::set_new_constant_pool(
35003503
ClassLoaderData* loader_data,
35013504
InstanceKlass* scratch_class, constantPoolHandle scratch_cp,
@@ -4357,10 +4360,6 @@ void VM_RedefineClasses::redefine_single_class(Thread* current, jclass the_jclas
43574360

43584361
// Leave arrays of jmethodIDs and itable index cache unchanged
43594362

4360-
// Copy the "source file name" attribute from new class version
4361-
the_class->set_source_file_name_index(
4362-
scratch_class->source_file_name_index());
4363-
43644363
// Copy the "source debug extension" attribute from new class version
43654364
the_class->set_source_debug_extension(
43664365
scratch_class->source_debug_extension(),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8282241
27+
* @summary Verifies class redefinition correctly updates generic_signature and source_file_name attributes
28+
* @requires vm.jvmti
29+
* @modules java.base/jdk.internal.org.objectweb.asm
30+
* java.instrument
31+
* @library /test/lib
32+
* @run main RedefineClassHelper
33+
* @run main/othervm -javaagent:redefineagent.jar --add-opens=java.base/java.lang=ALL-UNNAMED RedefineGenericSignatureTest
34+
*/
35+
36+
import java.io.File;
37+
import java.io.FileOutputStream;
38+
import java.lang.invoke.MethodHandle;
39+
import java.lang.invoke.MethodHandles;
40+
import java.lang.invoke.MethodType;
41+
import java.lang.reflect.Type;
42+
import java.nio.file.Files;
43+
import java.util.List;
44+
45+
import jdk.internal.org.objectweb.asm.ClassReader;
46+
import jdk.internal.org.objectweb.asm.ClassVisitor;
47+
import jdk.internal.org.objectweb.asm.ClassWriter;
48+
import jdk.internal.org.objectweb.asm.Opcodes;
49+
import jdk.test.lib.Asserts;
50+
import jdk.test.lib.JDKToolLauncher;
51+
import jdk.test.lib.compiler.InMemoryJavaCompiler;
52+
import jdk.test.lib.process.ProcessTools;
53+
import jdk.test.lib.process.OutputAnalyzer;
54+
55+
class GenericSignatureTester {
56+
public GenericSignatureTarget<List<String>> method1() {
57+
return null;
58+
}
59+
}
60+
61+
class GenericSignatureTarget<T extends List<?>> {
62+
public GenericSignatureTarget<T> foo() { return null; }
63+
public static void throwException() { throw new RuntimeException(); }
64+
}
65+
66+
public class RedefineGenericSignatureTest {
67+
private static final String newTargetClassSource =
68+
"class GenericSignatureTarget<T> {\n" +
69+
" public GenericSignatureTarget<T> foo() { return null; }\n" +
70+
" public static void throwException() { throw new RuntimeException(); }\n" +
71+
"}\n";
72+
73+
public static void main (String[] args) throws Throwable {
74+
RedefineGenericSignatureTest test = new RedefineGenericSignatureTest();
75+
test.runTest();
76+
}
77+
78+
private final static String sourceFileName = "RedefineGenericSignatureTest.java";
79+
private final static String sourceFileNameNew = "RedefineGenericSignatureTestNew.java";
80+
// expected signature of GenericSignatureTester.method1 return type
81+
private final static String expectedRetType = "GenericSignatureTarget<java.util.List<java.lang.String>>";
82+
// expected generic signature of the original GenericSignatureTarget
83+
private final static String expectedSigOld = "<T::Ljava/util/List<*>;>Ljava/lang/Object;";
84+
// expected generic signature of the redefined GenericSignatureTarget
85+
private final static String expectedSigNew = "<T:Ljava/lang/Object;>Ljava/lang/Object;";
86+
87+
private static void log(Object o) {
88+
System.out.println(o);
89+
}
90+
91+
private String getTargetGenSig() throws Throwable {
92+
MethodHandles.Lookup lookup = MethodHandles.lookup();
93+
MethodHandles.Lookup classLookup = MethodHandles.privateLookupIn(Class.class, lookup);
94+
MethodHandle getGenericSignature0 = classLookup.findVirtual(
95+
Class.class, "getGenericSignature0", MethodType.methodType(String.class));
96+
Object genericSignature = getGenericSignature0.invoke(GenericSignatureTarget.class);
97+
return String.valueOf(genericSignature);
98+
}
99+
100+
private String getTesterRetType() throws Throwable {
101+
Type type = GenericSignatureTester.class.getDeclaredMethod("method1").getGenericReturnType();
102+
return String.valueOf(type);
103+
}
104+
105+
private String getTargetSourceFilename() {
106+
try {
107+
GenericSignatureTarget.throwException();
108+
} catch (RuntimeException ex) {
109+
return ex.getStackTrace()[0].getFileName();
110+
}
111+
return "Cannot get source file name";
112+
}
113+
114+
// Prints dissassembled class bytes.
115+
private void printDisassembled(String description, Class cls, byte[] bytes) throws Exception {
116+
log(description + " -------------------");
117+
118+
File f = new File(cls.getSimpleName()+".class");
119+
try (FileOutputStream fos = new FileOutputStream(f)) {
120+
fos.write(bytes);
121+
}
122+
JDKToolLauncher javap = JDKToolLauncher.create("javap")
123+
.addToolArg("-verbose")
124+
.addToolArg("-p") // Shows all classes and members.
125+
//.addToolArg("-c") // Prints out disassembled code
126+
.addToolArg("-s") // Prints internal type signatures.
127+
.addToolArg(f.toString());
128+
ProcessBuilder pb = new ProcessBuilder(javap.getCommand());
129+
OutputAnalyzer out = ProcessTools.executeProcess(pb);
130+
out.shouldHaveExitValue(0);
131+
try {
132+
Files.delete(f.toPath());
133+
} catch (Exception ex) {
134+
// ignore
135+
}
136+
out.asLines().forEach(s -> log(s));
137+
log("==========================================");
138+
Files.deleteIfExists(f.toPath());
139+
}
140+
141+
private byte[] getNewClassBytes() {
142+
byte[] bytecode = InMemoryJavaCompiler.compile(GenericSignatureTarget.class.getName(), newTargetClassSource);
143+
144+
ClassWriter cw = new ClassWriter(0);
145+
ClassReader cr = new ClassReader(bytecode);
146+
cr.accept(new ClassVisitor(Opcodes.ASM7, cw) {
147+
private boolean sourceSet = false;
148+
@Override
149+
public void visitSource(String source, String debug) {
150+
sourceSet = true;
151+
log("Changing source: \"" + source + "\" -> \"" + sourceFileNameNew + "\"");
152+
super.visitSource(sourceFileNameNew, debug);
153+
}
154+
155+
@Override
156+
public void visitEnd() {
157+
if (!sourceSet) {
158+
log("Set source: \"" + sourceFileNameNew + "\"");
159+
super.visitSource(sourceFileNameNew, null);
160+
}
161+
super.visitEnd();
162+
}
163+
}, 0);
164+
return cw.toByteArray();
165+
}
166+
167+
private void runTest() throws Throwable {
168+
Class targetClass = GenericSignatureTarget.class;
169+
170+
String oldSig = getTargetGenSig();
171+
log("old target class sig: \"" + oldSig + "\"");
172+
173+
byte[] oldClassBytes = targetClass.getResourceAsStream(targetClass.getName() + ".class").readAllBytes();
174+
printDisassembled("Old " + targetClass.getName(), targetClass, oldClassBytes);
175+
176+
log("Redefining " + targetClass.getName() + " class");
177+
byte[] newClassBytes = getNewClassBytes();
178+
printDisassembled("New " + targetClass.getName(), targetClass, newClassBytes);
179+
RedefineClassHelper.redefineClass(targetClass, newClassBytes);
180+
181+
String newSig = getTargetGenSig();
182+
log("new target class sig: \"" + newSig + "\"");
183+
184+
String newRetType = getTesterRetType();
185+
log("new tester ret type: \"" + newRetType + "\"");
186+
187+
String newSrcFileName = getTargetSourceFilename();
188+
log("new source file name: \"" + newSrcFileName + "\"");
189+
190+
Asserts.assertStringsEqual(expectedSigOld, oldSig, "wrong old generic signature");
191+
Asserts.assertStringsEqual(expectedSigNew, newSig, "wrong new generic signature");
192+
Asserts.assertStringsEqual(expectedRetType, newRetType, "wrong ret type");
193+
Asserts.assertStringsEqual(sourceFileNameNew, newSrcFileName, "wrong new source file name");
194+
}
195+
}

0 commit comments

Comments
 (0)
Please sign in to comment.