|
| 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