Skip to content

Commit f20c882

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 ca87006 commit f20c882

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
@@ -161,17 +161,30 @@ private RestrictedSecurity() {
161161
super();
162162
}
163163

164+
private static boolean isJarVerifierInStackTrace() {
165+
java.util.function.Predicate<Class<?>> isJarVerifier =
166+
clazz -> "java.util.jar.JarVerifier".equals(clazz.getName())
167+
&& "java.base".equals(clazz.getModule().getName());
168+
169+
java.util.function.Function<Stream<StackWalker.StackFrame>, Boolean> matcher =
170+
stream -> stream.map(StackWalker.StackFrame::getDeclaringClass)
171+
.anyMatch(isJarVerifier);
172+
173+
return StackWalker.getInstance(StackWalker.Option.RETAIN_CLASS_REFERENCE).walk(matcher);
174+
}
175+
164176
/**
165177
* Check loaded profiles' hash values.
166178
*
167179
* In order to avoid unintentional changes in profiles and incentivize
168180
* extending profiles, instead of altering them, a digest of the profile
169181
* is calculated and compared to the expected value.
170182
*/
171-
public static void checkHashValues() {
172-
if (profileParser != null) {
173-
profileParser.checkHashValues();
183+
private static void checkHashValues() {
184+
ProfileParser parser = profileParser;
185+
if ((parser != null) && !isJarVerifierInStackTrace()) {
174186
profileParser = null;
187+
parser.checkHashValues();
175188
}
176189
}
177190

@@ -244,6 +257,7 @@ public static boolean isFIPSEnabled() {
244257
*/
245258
public static boolean isServiceAllowed(Service service) {
246259
if (securityEnabled) {
260+
checkHashValues();
247261
return restricts.isRestrictedServiceAllowed(service, true);
248262
}
249263
return true;
@@ -257,6 +271,7 @@ public static boolean isServiceAllowed(Service service) {
257271
*/
258272
public static boolean canServiceBeRegistered(Service service) {
259273
if (securityEnabled) {
274+
checkHashValues();
260275
return restricts.isRestrictedServiceAllowed(service, false);
261276
}
262277
return true;
@@ -270,6 +285,7 @@ public static boolean canServiceBeRegistered(Service service) {
270285
*/
271286
public static boolean isProviderAllowed(String providerName) {
272287
if (securityEnabled) {
288+
checkHashValues();
273289
// Remove argument, e.g. -NSS-FIPS, if present.
274290
int pos = providerName.indexOf('-');
275291
if (pos >= 0) {
@@ -289,6 +305,7 @@ public static boolean isProviderAllowed(String providerName) {
289305
*/
290306
public static boolean isProviderAllowed(Class<?> providerClazz) {
291307
if (securityEnabled) {
308+
checkHashValues();
292309
String providerClassName = providerClazz.getName();
293310

294311
// 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

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

117116
// Return Sun provider.

0 commit comments

Comments
 (0)