git: openjdk/leyden: hermetic-java-runtime: Co-locate cacerts with sun.security.util.FilePaths in JDK modules image for hermetic support.

duke duke at openjdk.org
Mon Mar 11 04:45:22 UTC 2024


Changeset: ff1450b7
Author:    Jiangli Zhou <jianglizhou at google.com>
Date:      2024-03-10 21:40:15 +0000
URL:       https://git.openjdk.org/leyden/commit/ff1450b7f5e7de523163af023fbbf96c1c5c721d

Co-locate cacerts with sun.security.util.FilePaths in JDK modules image for hermetic support.

- Define each hermetic resource in separate variable in Images.gmk. The HERMETIC_RESOURCES is growing too long is becoming more difficult to read.
- Add a static public method, hermeticExecutableFile() in JavaHome. The method returns the File object to the hermetic image. I also renamed EXECUTABLE to HERMETIC_IMAGE.
- In TrustStoreManager, changed TrustStoreDescriptor.storeFilePath (Path) back to TrustStoreDescriptor.storeFile (File), which is the same as the original version before hermetic support. With the hermetic jimage cacerts support, for a non-NONE TrustStoreDescriptor instance, storeFile is null if the JDK default cacerts or jssecacerts is used when running in hermetic mode. See comments in TrustStoreManager for details. FilePaths.defaultStore() is added to help access the default jssecacerts.
- Add FilePaths.cacertsStream(). This method returns a InputStream instance to the default cacerts.
- Change KeyStoreUtil and AnchorCertificates to use FilePaths.cacertsStream() to get the InputStream to the default cacerts.

! make/Images.gmk
! src/java.base/share/classes/jdk/internal/misc/JavaHome.java
! src/java.base/share/classes/sun/security/ssl/TrustStoreManager.java
! src/java.base/share/classes/sun/security/tools/KeyStoreUtil.java
! src/java.base/share/classes/sun/security/util/AnchorCertificates.java
! src/java.base/share/classes/sun/security/util/FilePaths.java



More information about the leyden-dev mailing list