Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions src/hotspot/share/cds/filemap.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2024, 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
Expand Down Expand Up @@ -576,12 +576,14 @@ int FileMapInfo::get_module_shared_path_index(Symbol* location) {
const char* file = ClassLoader::skip_uri_protocol(location->as_C_string());
for (int i = ClassLoaderExt::app_module_paths_start_index(); i < get_number_of_shared_paths(); i++) {
SharedClassPathEntry* ent = shared_path(i);
assert(ent->in_named_module(), "must be");
bool cond = strcmp(file, ent->name()) == 0;
log_debug(class, path)("get_module_shared_path_index (%d) %s : %s = %s", i,
location->as_C_string(), ent->name(), cond ? "same" : "different");
if (cond) {
return i;
if (!ent->is_non_existent()) {
assert(ent->in_named_module(), "must be");
bool cond = strcmp(file, ent->name()) == 0;
log_debug(class, path)("get_module_shared_path_index (%d) %s : %s = %s", i,
location->as_C_string(), ent->name(), cond ? "same" : "different");
if (cond) {
return i;
}
}
}

Expand Down
3 changes: 2 additions & 1 deletion src/hotspot/share/cds/filemap.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2024, 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
Expand Down Expand Up @@ -89,6 +89,7 @@ class SharedClassPathEntry : public MetaspaceObj {
bool is_dir() const { return _type == dir_entry; }
bool is_modules_image() const { return _type == modules_image_entry; }
bool is_jar() const { return _type == jar_entry; }
bool is_non_existent() const { return _type == non_existent_entry; }
bool from_class_path_attr() { return _from_class_path_attr; }
time_t timestamp() const { return _timestamp; }
const char* name() const;
Expand Down
19 changes: 18 additions & 1 deletion test/hotspot/jtreg/runtime/cds/appcds/JarBuilder.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2024, 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
Expand Down Expand Up @@ -199,6 +199,23 @@ public static void createModularJar(String jarPath,
createJar(argList);
}

public static void createModularJarWithManifest(String jarPath,
String classesDir,
String mainClass,
String manifest) throws Exception {
ArrayList<String> argList = new ArrayList<String>();
argList.add("--create");
argList.add("--file=" + jarPath);
if (mainClass != null) {
argList.add("--main-class=" + mainClass);
}
argList.add("--manifest=" + manifest);
argList.add("-C");
argList.add(classesDir);
argList.add(".");
createJar(argList);
}

private static void createJar(ArrayList<String> args) {
if (DEBUG) printIterable("createJar args: ", args);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/*
* Copyright (c) 2024, 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 8322657
* @summary This test defines an application module using the DefineModuleApp.
* When performing dynamic dump, the modular jar containing the module
* is in the -cp. The jar listed in the "Class-Path" attribute of the modular
* jar doesn't exist. VM should not crash during dynamic dump under this scenario.
* @requires vm.cds
* @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds
* /test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/test-classes
* @build jdk.test.whitebox.WhiteBox DefineModuleApp
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
* @run driver jdk.test.lib.helpers.ClassFileInstaller -jar define_module_app.jar DefineModuleApp
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. ModularJarWithNonExistentJar
*/

import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.helpers.ClassFileInstaller;

public class ModularJarWithNonExistentJar extends DynamicArchiveTestBase {
private static final Path USER_DIR = Paths.get(CDSTestUtils.getOutputDir());

private static final String TEST_SRC = System.getProperty("test.src");

private static final Path SRC_DIR = Paths.get(TEST_SRC, "../jigsaw/modulepath/src");
private static final Path MODS_DIR = Paths.get("mods");
private static final Path MANIFEST_PATH = Paths.get(TEST_SRC, "test-classes/manifest-with-non-existent-jar.txt");

// the module name of the test module
private static final String TEST_MODULE = "com.simple";

// the module main class
private static final String MAIN_CLASS = "com.simple.Main";

private static Path moduleDir = null;
private static Path modularJar = null;

public static void buildTestModule() throws Exception {

// javac -d mods/$TESTMODULE --module-path MOD_DIR src/$TESTMODULE/**
JarBuilder.compileModule(SRC_DIR.resolve(TEST_MODULE),
MODS_DIR.resolve(TEST_MODULE),
MODS_DIR.toString());


moduleDir = Files.createTempDirectory(USER_DIR, "mlib");

modularJar = moduleDir.resolve(TEST_MODULE + ".jar");
String classes = MODS_DIR.resolve(TEST_MODULE).toString();
JarBuilder.createModularJarWithManifest(modularJar.toString(), classes,
MAIN_CLASS, MANIFEST_PATH.toString());
}

public static void main(String... args) throws Exception {
runTest(ModularJarWithNonExistentJar::testDefaultBase);
}

static void testDefaultBase() throws Exception {
String topArchiveName = getNewArchiveName("top");
doTest(topArchiveName);
}

private static void doTest(String topArchiveName) throws Exception {
// compile the module and create the modular jar file
buildTestModule();
String appJar = ClassFileInstaller.getJarPath("define_module_app.jar");
dump(topArchiveName,
"-Xlog:cds,class+path=info",
"-Xlog:cds+dynamic=debug",
"-cp", appJar + File.pathSeparator + modularJar.toString(),
"DefineModuleApp", moduleDir.toString(), TEST_MODULE)
.assertNormalExit(output -> {
output.shouldContain("Written dynamic archive 0x");
});
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Copyright (c) 2024, 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.
*
*/

/**
* This app defines a module using the ModuleLayer.defineModulesWithOneLoader API
* which calls the JVM_DefineModule.
**/

import java.nio.file.Path;
import java.lang.ModuleLayer.Controller;
import java.lang.module.*;
import java.util.List;
import java.util.Set;

public class DefineModuleApp {
public static void main(String[] args) throws Throwable {
if (args.length != 2) {
throw new RuntimeException("DefineModuleApp expects 2 args but saw " + args.length);
}
final Path MODS = Path.of(args[0]);
final String MODULE_NAME = args[1];
Configuration cf = ModuleLayer.boot()
.configuration()
.resolve(ModuleFinder.of(), ModuleFinder.of(MODS), Set.of(MODULE_NAME));
ResolvedModule m = cf.findModule(MODULE_NAME).orElseThrow();
ModuleLayer bootLayer = ModuleLayer.boot();
ClassLoader scl = ClassLoader.getSystemClassLoader();
Controller controller = ModuleLayer.defineModulesWithOneLoader(cf, List.of(bootLayer), scl);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Class-Path: NonExistent.jar
Created-By: 23-internal (Oracle Corporation)