Skip to content

Commit dfe0b43

Browse files
Allow multiple constraints for each algorithm
If a constraint for an algorithm is found and the attributes don't match or the class attempting to utilize it doesn't match the accepted uses, the algorithm is considered not allowed and loading it does not succeed. Instead, we want to check all available constraints for an algorithm before deciding if it is allowed to be used or not. Signed-off-by: Kostas Tsiounis <[email protected]>
1 parent 1a0cc53 commit dfe0b43

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

+5-4
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
836836
+ "\nagainst the service attribute value: " + sValue);
837837
}
838838
if ((sValue == null) || !cValue.equalsIgnoreCase(sValue)) {
839-
// If any attribute doesn't match, return service is not allowed.
839+
// If any of the attributes doesn't match,
840+
// then this constraint doesn't match so move on.
840841
if (debug != null) {
841842
debug.println("Attributes don't match!");
842843
debug.println("The following service:"
@@ -845,7 +846,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
845846
+ "\n\tAttribute: " + cAttribute
846847
+ "\nis NOT allowed in provider: " + providerClassName);
847848
}
848-
return false;
849+
continue;
849850
}
850851
if (debug != null) {
851852
debug.println("Attributes match!");
@@ -903,7 +904,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
903904
}
904905

905906
// If nothing matching the accepted uses is found in the call stack,
906-
// this service is not allowed.
907+
// then this constraint doesn't match so move on.
907908
if (!found) {
908909
if (debug != null) {
909910
debug.println("Classes in call stack are not part of accepted uses!");
@@ -914,7 +915,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
914915
+ "\n\tAccepted uses: " + cAcceptedUses
915916
+ "\nis NOT allowed in provider: " + providerClassName);
916917
}
917-
return false;
918+
continue;
918919
}
919920
}
920921

0 commit comments

Comments
 (0)