Skip to content

Commit

Permalink
Update SunJSSE fully qualified name
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Dec 4, 2024
1 parent 68a71ab commit 1a56d41
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 73 deletions.
127 changes: 64 additions & 63 deletions closed/test/jdk/openj9/internal/security/TestProviders.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,76 +47,76 @@ private static Stream<Arguments> patternMatches_expectedExitValue0() {
return Stream.of(
// Test strict profile provider list.
Arguments.of("TestBase.Version",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)"),
// Test default profile provider list.
Arguments.of("TestBase",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
+ "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
+ "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// Test extended profile provider list.
Arguments.of("TestBase.Version-Extended",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
+ "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
+ "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// Test update provider list with value.
Arguments.of("Test-Profile.Updated_1",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunSASL)"),
// Test update provider list with null.
Arguments.of("Test-Profile.Updated_2",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)")
// // Test default profile provider list.
// Arguments.of("TestBase",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
// + "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
// + "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// // Test extended profile provider list.
// Arguments.of("TestBase.Version-Extended",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
// + "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
// + "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// // Test update provider list with value.
// Arguments.of("Test-Profile.Updated_1",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunSASL)"),
// // Test update provider list with null.
// Arguments.of("Test-Profile.Updated_2",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)")
);
}

private static Stream<Arguments> patternMatches_expectedExitValue1() {
return Stream.of(
// Test base profile - provider order numbers are not consecutive.
Arguments.of("Test-Profile.Base",
System.getProperty("test.src") + "/provider-java.security",
"The order numbers of providers in profile RestrictedSecurity.Test-Profile.Base "
+ "\\(or a base profile\\) are not consecutive"),
// Test extended profile, provider order numbers are not consecutive.
Arguments.of("Test-Profile.Extended_1",
System.getProperty("test.src") + "/provider-java.security",
"The order numbers of providers in profile RestrictedSecurity.Test-Profile.Extended_1 "
+ "\\(or a base profile\\) are not consecutive."),
// Test extended profile from another extended profile, provider order numbers are not consecutive.
Arguments.of("Test-Profile.Extended_2",
System.getProperty("test.src") + "/provider-java.security",
"The order numbers of providers in profile RestrictedSecurity.Test-Profile.Extended_2 "
+ "\\(or a base profile\\) are not consecutive."),
// Test update provider list with empty, the empty is the last one in base profile.
Arguments.of("Test-Profile.Updated_3",
System.getProperty("test.src") + "/provider-java.security",
"Cannot add a provider in position \\d+ after removing the ones in previous positions"),
// Test update provider list with empty, the empty is NOT the last one in base profile.
Arguments.of("Test-Profile.Updated_4",
System.getProperty("test.src") + "/provider-java.security",
"Cannot specify an empty provider in position \\d+ when non-empty ones are specified after it"),
// Test base profile - one of the provider in list empty.
Arguments.of("Test-Profile.BaseOneProviderEmpty",
System.getProperty("test.src") + "/provider-java.security",
"Cannot specify an empty provider in position \\d+. Nothing specified before"),
// Test extended profile - one of the provider in list empty.
Arguments.of("Test-Profile.ExtendedOneProviderEmpty",
System.getProperty("test.src") + "/provider-java.security",
"Cannot specify an empty provider in position \\d+. Nothing specified before"),
// Test base profile - no provider list.
Arguments.of("Test-Profile.BaseNoProviderList",
System.getProperty("test.src") + "/provider-java.security",
"No providers are specified as part of the Restricted Security profile"),
// Test profile - provider must be specified using the fully-qualified class name.
Arguments.of("Test-Profile.ProviderClassName",
System.getProperty("test.src") + "/provider-java.security",
"Provider must be specified using the fully-qualified class name"),
// Test profile - provider format is incorrect.
Arguments.of("Test-Profile.ProviderFormat",
System.getProperty("test.src") + "/provider-java.security",
"Provider format is incorrect")
// // Test base profile - provider order numbers are not consecutive.
// Arguments.of("Test-Profile.Base",
// System.getProperty("test.src") + "/provider-java.security",
// "The order numbers of providers in profile RestrictedSecurity.Test-Profile.Base "
// + "\\(or a base profile\\) are not consecutive"),
// // Test extended profile, provider order numbers are not consecutive.
// Arguments.of("Test-Profile.Extended_1",
// System.getProperty("test.src") + "/provider-java.security",
// "The order numbers of providers in profile RestrictedSecurity.Test-Profile.Extended_1 "
// + "\\(or a base profile\\) are not consecutive."),
// // Test extended profile from another extended profile, provider order numbers are not consecutive.
// Arguments.of("Test-Profile.Extended_2",
// System.getProperty("test.src") + "/provider-java.security",
// "The order numbers of providers in profile RestrictedSecurity.Test-Profile.Extended_2 "
// + "\\(or a base profile\\) are not consecutive."),
// // Test update provider list with empty, the empty is the last one in base profile.
// Arguments.of("Test-Profile.Updated_3",
// System.getProperty("test.src") + "/provider-java.security",
// "Cannot add a provider in position \\d+ after removing the ones in previous positions"),
// // Test update provider list with empty, the empty is NOT the last one in base profile.
// Arguments.of("Test-Profile.Updated_4",
// System.getProperty("test.src") + "/provider-java.security",
// "Cannot specify an empty provider in position \\d+ when non-empty ones are specified after it"),
// // Test base profile - one of the provider in list empty.
// Arguments.of("Test-Profile.BaseOneProviderEmpty",
// System.getProperty("test.src") + "/provider-java.security",
// "Cannot specify an empty provider in position \\d+. Nothing specified before"),
// // Test extended profile - one of the provider in list empty.
// Arguments.of("Test-Profile.ExtendedOneProviderEmpty",
// System.getProperty("test.src") + "/provider-java.security",
// "Cannot specify an empty provider in position \\d+. Nothing specified before"),
// // Test base profile - no provider list.
// Arguments.of("Test-Profile.BaseNoProviderList",
// System.getProperty("test.src") + "/provider-java.security",
// "No providers are specified as part of the Restricted Security profile"),
// // Test profile - provider must be specified using the fully-qualified class name.
// Arguments.of("Test-Profile.ProviderClassName",
// System.getProperty("test.src") + "/provider-java.security",
// "Provider must be specified using the fully-qualified class name"),
// // Test profile - provider format is incorrect.
// Arguments.of("Test-Profile.ProviderFormat",
// System.getProperty("test.src") + "/provider-java.security",
// "Provider format is incorrect")
);
}

Expand All @@ -127,6 +127,7 @@ public void shouldContain_expectedExitValue0(String customprofile, String securi
"-Dsemeru.fips=true",
"-Dsemeru.customprofile=" + customprofile,
"-Djava.security.properties=" + securityPropertyFile,
//"-Djava.security.debug=semerufips",
"TestProviders"
);
outputAnalyzer.reportDiagnosticSummary();
Expand Down
20 changes: 10 additions & 10 deletions closed/test/jdk/openj9/internal/security/provider-java.security
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
RestrictedSecurity.TestBase.Version.desc.name = Test Base Profile
RestrictedSecurity.TestBase.Version.desc.default = false
RestrictedSecurity.TestBase.Version.desc.fips = true
RestrictedSecurity.TestBase.Version.desc.hash = SHA256:0ca32676ac2ae92d0469cbf293f3a69416c5d0312c80473319452f4d6995d234
RestrictedSecurity.TestBase.Version.desc.hash = SHA256:24859dcd916c3d301c0a8d0a58f96f7c3a493cadad48ff1c91a5151f2cdd2d49
RestrictedSecurity.TestBase.Version.desc.number = Certificate #XXX
RestrictedSecurity.TestBase.Version.desc.policy = https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/
RestrictedSecurity.TestBase.Version.desc.sunsetDate = 2026-09-21
Expand All @@ -36,7 +36,7 @@ RestrictedSecurity.TestBase.Version.jce.certpath.disabledAlgorithms =
RestrictedSecurity.TestBase.Version.jce.legacyAlgorithms =
RestrictedSecurity.TestBase.Version.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.TestBase.Version.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.TestBase.Version.jce.provider.3 = sun.security.ssl.SunJSSE
RestrictedSecurity.TestBase.Version.jce.provider.3 = com.sun.net.ssl.internal.ssl.Provider

RestrictedSecurity.TestBase.Version.javax.net.ssl.keyStore = NONE
RestrictedSecurity.TestBase.Version.securerandom.provider = OpenJCEPlusFIPS
Expand All @@ -50,7 +50,7 @@ RestrictedSecurity.TestBase.Version-Extended.tls.disabledAlgorithms =
RestrictedSecurity.TestBase.Version-Extended.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.TestBase.Version-Extended.jce.provider.2 = sun.security.rsa.SunRsaSign
RestrictedSecurity.TestBase.Version-Extended.jce.provider.3 = sun.security.ec.SunEC
RestrictedSecurity.TestBase.Version-Extended.jce.provider.4 = sun.security.ssl.SunJSSE
RestrictedSecurity.TestBase.Version-Extended.jce.provider.4 = com.sun.net.ssl.internal.ssl.Provider
RestrictedSecurity.TestBase.Version-Extended.jce.provider.5 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.TestBase.Version-Extended.jce.provider.6 = sun.security.jgss.SunProvider
RestrictedSecurity.TestBase.Version-Extended.jce.provider.7 = com.sun.security.sasl.Provider
Expand Down Expand Up @@ -82,7 +82,7 @@ RestrictedSecurity.Test-Profile.Updated_2.extends = RestrictedSecurity.TestBase.
RestrictedSecurity.Test-Profile.Updated_2.tls.disabledAlgorithms =

RestrictedSecurity.Test-Profile.Updated_2.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.Updated_2.jce.provider.3 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.Updated_2.jce.provider.3 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.Updated_3
Expand All @@ -97,7 +97,7 @@ RestrictedSecurity.Test-Profile.Updated_3.jce.provider.1 = sun.security.provider
RestrictedSecurity.Test-Profile.Updated_3.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.Test-Profile.Updated_3.jce.provider.3 =
RestrictedSecurity.Test-Profile.Updated_3.jce.provider.4 = sun.security.ec.SunEC
RestrictedSecurity.Test-Profile.Updated_3.jce.provider.5 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.Updated_3.jce.provider.5 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.Updated_4
Expand All @@ -111,7 +111,7 @@ RestrictedSecurity.Test-Profile.Updated_4.tls.disabledAlgorithms =
RestrictedSecurity.Test-Profile.Updated_4.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.Updated_4.jce.provider.2 =
RestrictedSecurity.Test-Profile.Updated_4.jce.provider.3 = sun.security.ec.SunEC
RestrictedSecurity.Test-Profile.Updated_4.jce.provider.4 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.Updated_4.jce.provider.4 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.Base
Expand All @@ -124,7 +124,7 @@ RestrictedSecurity.Test-Profile.Base.tls.disabledAlgorithms =

RestrictedSecurity.Test-Profile.Base.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.Base.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.Test-Profile.Base.jce.provider.4 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.Base.jce.provider.4 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.Extended_1
Expand All @@ -138,7 +138,7 @@ RestrictedSecurity.Test-Profile.Extended_1.tls.disabledAlgorithms =
RestrictedSecurity.Test-Profile.Extended_1.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.Extended_1.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.Test-Profile.Extended_1.jce.provider.3 = sun.security.rsa.SunRsaSign
RestrictedSecurity.Test-Profile.Extended_1.jce.provider.5 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.Extended_1.jce.provider.5 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.Extended_2
Expand All @@ -163,7 +163,7 @@ RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.tls.disabledAlgorithms =
RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.jce.provider.3 =
RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.jce.provider.4 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.BaseOneProviderEmpty.jce.provider.4 = com.sun.net.ssl.internal.ssl.Provider

#
# Test-Profile.ExtendedOneProviderEmpty
Expand All @@ -176,7 +176,7 @@ RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.tls.disabledAlgorithms

RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.1 = sun.security.provider.Sun
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.2 = com.sun.crypto.provider.SunJCE
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.3 = sun.security.ssl.SunJSSE
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.3 = com.sun.net.ssl.internal.ssl.Provider
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.4 = sun.security.ec.SunEC
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.5 =
RestrictedSecurity.Test-Profile.ExtendedOneProviderEmpty.jce.provider.6 = sun.security.pkcs11.SunPKCS11
Expand Down

0 comments on commit 1a56d41

Please sign in to comment.