# HG changeset patch # User pgovereau # Date 1395243267 14400 # Node ID 0697e38017eca973fb06b54c8dc89a66db6a9ef4 # Parent a7f649f8e860a2d1a77b30bbe3e20967635bc420 6898851: Compiling against this corrupt class file causes a stacktrace from javac Summary: Added check for index out-of-bounds erros in ClassReader Reviewed-by: jjg diff -r a7f649f8e860 -r 0697e38017ec langtools/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java --- a/langtools/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java Tue Mar 18 22:12:46 2014 +0000 +++ b/langtools/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java Wed Mar 19 11:34:27 2014 -0400 @@ -2501,6 +2501,8 @@ return; } catch (IOException ex) { throw badClassFile("unable.to.access.file", ex.getMessage()); + } catch (ArrayIndexOutOfBoundsException ex) { + throw badClassFile("bad.class.file", c.flatname); } finally { currentClassFile = previousClassFile; } diff -r a7f649f8e860 -r 0697e38017ec langtools/src/share/classes/com/sun/tools/javac/resources/compiler.properties --- a/langtools/src/share/classes/com/sun/tools/javac/resources/compiler.properties Tue Mar 18 22:12:46 2014 +0000 +++ b/langtools/src/share/classes/com/sun/tools/javac/resources/compiler.properties Wed Mar 19 11:34:27 2014 -0400 @@ -1709,6 +1709,10 @@ cannot access {0}\n\ {1} +# 0: class name +compiler.misc.bad.class.file=\ + class file is invalid for class {0} + # 0: file name, 1: message segment compiler.misc.bad.class.file.header=\ bad class file: {0}\n\ diff -r a7f649f8e860 -r 0697e38017ec langtools/test/tools/javac/classreader/BadClass.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/langtools/test/tools/javac/classreader/BadClass.java Wed Mar 19 11:34:27 2014 -0400 @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2014, 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. + */ + +/* + * @test + * @bug 6898851 + * @summary Compiling against this corrupt class file causes a stacktrace from javac + */ + +import java.io.File; +import java.io.FileWriter; +import java.io.StringWriter; +import java.io.PrintWriter; +import java.io.IOException; + +import com.sun.tools.classfile.ClassFile; +import com.sun.tools.classfile.ClassWriter; +import com.sun.tools.javac.Main; + +public class BadClass { + // Create and compile file containing body; return compiler output + static String makeClass(String dir, String filename, String body) throws IOException { + File file = new File(dir, filename); + try (FileWriter fw = new FileWriter(file)) { + fw.write(body); + } + + StringWriter sw = new StringWriter(); + PrintWriter pw = new PrintWriter(sw); + String args[] = { "-cp", dir, "-d", dir, "-XDrawDiagnostics", file.getPath() }; + Main.compile(args, pw); + pw.close(); + return sw.toString(); + } + + public static void main(String... args) throws Exception { + new File("d1").mkdir(); + new File("d2").mkdir(); + + // Step 1. build an empty class with an interface + makeClass("d1", "Empty.java", "abstract class Empty implements Readable {}"); + + // Step 2. Modify classfile to have invalid constant pool index + ClassFile cf = ClassFile.read(new File("d1","Empty.class")); + cf.interfaces[0] = cf.constant_pool.size() + 10; + ClassWriter cw = new ClassWriter(); + cw.write(cf, new File("d2","Empty.class")); + + // Step 3. Compile use of invalid class + String result = makeClass("d2", "EmptyUse.java", "class EmptyUse { Empty e; }"); + if (!result.contains("compiler.misc.bad.class.file")) { + System.out.println(result); + throw new Exception("test failed"); + } + } +} diff -r a7f649f8e860 -r 0697e38017ec langtools/test/tools/javac/diags/examples.not-yet.txt --- a/langtools/test/tools/javac/diags/examples.not-yet.txt Tue Mar 18 22:12:46 2014 +0000 +++ b/langtools/test/tools/javac/diags/examples.not-yet.txt Wed Mar 19 11:34:27 2014 -0400 @@ -111,3 +111,4 @@ compiler.warn.unknown.enum.constant.reason # in bad class file compiler.warn.override.equals.but.not.hashcode # when a class overrides equals but not hashCode method from Object compiler.warn.file.from.future # warning for future modification times on files +compiler.misc.bad.class.file # class file is malformed