Skip to content

Commit f2bdd23

Browse files
Avoid checking RestrictedSecurity profile hash during jar verification
If the process of verifying a jar is started before the RestrictedSecurity profile is loaded, the hash calculation is triggered as part of it leading to a nested jar verification and a subsequent error. To avoid that, the hash calulation of a profile is skipped if triggered by a jar verification process and is performed later in the loading process. Signed-off-by: Kostas Tsiounis <[email protected]>
1 parent 0f52e2a commit f2bdd23

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

closed/src/java.base/share/classes/openj9/internal/security/RestrictedSecurity.java

+20-3
Original file line numberDiff line numberDiff line change
@@ -172,17 +172,30 @@ private RestrictedSecurity() {
172172
super();
173173
}
174174

175+
private static boolean isJarVerifierInStackTrace() {
176+
java.util.function.Predicate<Class<?>> isJarVerifier =
177+
clazz -> "java.util.jar.JarVerifier".equals(clazz.getName())
178+
&& "java.base".equals(clazz.getModule().getName());
179+
180+
java.util.function.Function<Stream<StackWalker.StackFrame>, Boolean> matcher =
181+
stream -> stream.map(StackWalker.StackFrame::getDeclaringClass)
182+
.anyMatch(isJarVerifier);
183+
184+
return StackWalker.getInstance(StackWalker.Option.RETAIN_CLASS_REFERENCE).walk(matcher);
185+
}
186+
175187
/**
176188
* Check loaded profiles' hash values.
177189
*
178190
* In order to avoid unintentional changes in profiles and incentivize
179191
* extending profiles, instead of altering them, a digest of the profile
180192
* is calculated and compared to the expected value.
181193
*/
182-
public static void checkHashValues() {
183-
if (profileParser != null) {
184-
profileParser.checkHashValues();
194+
private static void checkHashValues() {
195+
ProfileParser parser = profileParser;
196+
if ((parser != null) && !isJarVerifierInStackTrace()) {
185197
profileParser = null;
198+
parser.checkHashValues();
186199
}
187200
}
188201

@@ -255,6 +268,7 @@ public static boolean isFIPSEnabled() {
255268
*/
256269
public static boolean isServiceAllowed(Service service) {
257270
if (securityEnabled) {
271+
checkHashValues();
258272
return restricts.isRestrictedServiceAllowed(service, true);
259273
}
260274
return true;
@@ -268,6 +282,7 @@ public static boolean isServiceAllowed(Service service) {
268282
*/
269283
public static boolean canServiceBeRegistered(Service service) {
270284
if (securityEnabled) {
285+
checkHashValues();
271286
return restricts.isRestrictedServiceAllowed(service, false);
272287
}
273288
return true;
@@ -281,6 +296,7 @@ public static boolean canServiceBeRegistered(Service service) {
281296
*/
282297
public static boolean isProviderAllowed(String providerName) {
283298
if (securityEnabled) {
299+
checkHashValues();
284300
// Remove argument, e.g. -NSS-FIPS, if present.
285301
int pos = providerName.indexOf('-');
286302
if (pos >= 0) {
@@ -300,6 +316,7 @@ public static boolean isProviderAllowed(String providerName) {
300316
*/
301317
public static boolean isProviderAllowed(Class<?> providerClazz) {
302318
if (securityEnabled) {
319+
checkHashValues();
303320
String providerClassName = providerClazz.getName();
304321

305322
// Check if the specified class extends java.security.Provider.

src/java.base/share/classes/sun/security/jca/Providers.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/*
2727
* ===========================================================================
28-
* (c) Copyright IBM Corp. 2024, 2024 All Rights Reserved
28+
* (c) Copyright IBM Corp. 2024, 2025 All Rights Reserved
2929
* ===========================================================================
3030
*/
3131

@@ -110,7 +110,6 @@ private Providers() {
110110
// triggers a getInstance() call (although that should not happen)
111111
providerList = ProviderList.EMPTY;
112112
providerList = ProviderList.fromSecurityProperties();
113-
RestrictedSecurity.checkHashValues();
114113
}
115114

116115
// Return Sun provider.

0 commit comments

Comments
 (0)