Skip to content

Commit dde6230

Browse files
committedNov 13, 2024
8343416: CDS dump fails when unregistered class can also be loaded from system modules
Reviewed-by: iklam, matsaave
1 parent ffea980 commit dde6230

File tree

2 files changed

+56
-3
lines changed

2 files changed

+56
-3
lines changed
 

‎src/hotspot/share/cds/unregisteredClasses.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ InstanceKlass* UnregisteredClasses::load_class(Symbol* name, const char* path, T
5151
PerfClassTraceTime::CLASS_LOAD);
5252

5353
Symbol* path_symbol = SymbolTable::new_symbol(path);
54+
Symbol* findClass = SymbolTable::new_symbol("findClass");
5455
Handle url_classloader = get_url_classloader(path_symbol, CHECK_NULL);
5556
Handle ext_class_name = java_lang_String::externalize_classname(name, CHECK_NULL);
5657

5758
JavaValue result(T_OBJECT);
5859
JavaCallArguments args(2);
5960
args.set_receiver(url_classloader);
6061
args.push_oop(ext_class_name);
61-
args.push_int(JNI_FALSE);
6262
JavaCalls::call_virtual(&result,
6363
vmClasses::URLClassLoader_klass(),
64-
vmSymbols::loadClass_name(),
65-
vmSymbols::string_boolean_class_signature(),
64+
findClass,
65+
vmSymbols::string_class_signature(),
6666
&args,
6767
CHECK_NULL);
6868
assert(result.get_type() == T_OBJECT, "just checking");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright (c) 2024, 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+
/*
26+
* @test
27+
* @bug 8343416
28+
* @summary Test dumping of class from a system module loaded by a custom loader.
29+
* @requires vm.cds
30+
* @requires vm.cds.custom.loaders
31+
* @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds
32+
* @run driver ClassFromSystemModule
33+
*/
34+
35+
import java.nio.file.*;
36+
37+
import jdk.test.lib.process.OutputAnalyzer;
38+
39+
public class ClassFromSystemModule {
40+
public static void main(String[] args) throws Exception {
41+
Path jrtFs = Paths.get(System.getProperty("java.home"), "lib", "jrt-fs.jar");
42+
System.out.println("jrtFs: " + jrtFs.toString());
43+
44+
String classlist[] = new String[] {
45+
"java/nio/file/spi/FileSystemProvider id: 1000",
46+
"jdk/internal/jrtfs/JrtFileSystemProvider id: 1001 super:1000 source: " + jrtFs.toString(),
47+
};
48+
49+
OutputAnalyzer out = TestCommon.testDump(null, classlist, "-Xlog:cds,cds+class=debug");
50+
out.shouldContain("boot java.nio.file.spi.FileSystemProvider")
51+
.shouldContain("unreg jdk.internal.jrtfs.JrtFileSystemProvider");
52+
}
53+
}

0 commit comments

Comments
 (0)
Please sign in to comment.