Skip to content

Commit d37b366

Browse files
Update regex to have constraint regex in quotes
1 parent d68c8ff commit d37b366

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
872872
// See if a regex for accepted uses has been specified and apply
873873
// it to the call stack.
874874
if (!isServiceAdded && !isNullOrBlank(cAcceptedUses)) {
875-
cAcceptedUses = cAcceptedUses.substring(1).strip();
875+
cAcceptedUses = cAcceptedUses.substring(1).strip().substring(1, cAcceptedUses.length());
876876
StackTraceElement[] stackElements = Thread.currentThread().getStackTrace();
877877
String stackTrace = Stream.of(stackElements)
878878
.map(se -> se.toString())
@@ -1493,7 +1493,7 @@ private void setConstraints(String providerName, String providerInfo, boolean pr
14931493
final String typeRE = "\\w+";
14941494
final String algoRE = "[A-Za-z0-9./_-]+";
14951495
final String attrRE = "[A-Za-z0-9=*|.:]+";
1496-
final String consRE = "\\{(" + typeRE + "),(" + algoRE + "),(" + attrRE + ")(,.+?)*\\}";
1496+
final String consRE = "\\{(" + typeRE + "),(" + algoRE + "),(" + attrRE + ")(,\\s+\".+?\")*\\}";
14971497
p = Pattern.compile(
14981498
"\\["
14991499
+ "([+-]?)" // option to append or remove
@@ -1805,7 +1805,7 @@ private static void checkProviderFormat(String providerInfo, boolean update) {
18051805
+ "(\\[" // constraints [optional]
18061806
+ "\\s*"
18071807
+ "([+-])?" // action [optional]
1808-
+ "[A-Za-z0-9{}.=*|:?,/\\\\_\\s-]+" // constraint definition
1808+
+ "\\{.+\\}" // constraint definition
18091809
+ "\\])?"
18101810
+ "\\s*"
18111811
+ "$");

0 commit comments

Comments
 (0)