26
26
import java .security .Security ;
27
27
import java .security .SecureRandom ;
28
28
import java .security .Provider .Service ;
29
- import java .util .Objects ;
30
29
import java .util .Arrays ;
31
30
import sun .security .provider .SunEntries ;
32
31
33
32
/**
34
33
* @test
35
- * @bug 8228613 8246613
34
+ * @bug 8228613 8246613 8248505
36
35
* @summary Ensure that the default SecureRandom algo used is based
37
36
* on the registration ordering, and falls to next provider
38
37
* if none are found
39
38
* @modules java.base/sun.security.provider
40
39
*/
41
40
public class DefaultAlgo {
42
41
42
+ private static final String SR_IMPLCLASS =
43
+ "sun.security.provider.SecureRandom" ;
44
+
43
45
public static void main (String [] args ) throws Exception {
44
46
String [] algos = { "A" , "B" , "C" };
45
47
test3rdParty (algos );
@@ -51,7 +53,8 @@ public static void main(String[] args) throws Exception {
51
53
private static void test3rdParty (String [] algos ) {
52
54
Provider [] provs = {
53
55
new SampleLegacyProvider (algos ),
54
- new SampleServiceProvider (algos )
56
+ new SampleServiceProvider (algos ),
57
+ new CustomProvider (algos )
55
58
};
56
59
for (Provider p : provs ) {
57
60
checkDefault (p , algos );
@@ -72,9 +75,10 @@ private static void validate(SecureRandom sr, String pName, String algo) {
72
75
}
73
76
74
77
private static void checkDefault (Provider p , String ... algos ) {
75
- out .println (p .getName () + " with " + Arrays .toString (algos ));
76
- int pos = Security .insertProviderAt (p , 1 );
77
78
String pName = p .getName ();
79
+ out .println (pName + " with " + Arrays .toString (algos ));
80
+ int pos = Security .insertProviderAt (p , 1 );
81
+
78
82
boolean isLegacy = pName .equals ("SampleLegacy" );
79
83
try {
80
84
if (isLegacy ) {
@@ -91,7 +95,13 @@ private static void checkDefault(Provider p, String ... algos) {
91
95
out .println ("=> Test Passed" );
92
96
} finally {
93
97
if (pos != -1 ) {
94
- Security .removeProvider (p .getName ());
98
+ Security .removeProvider (pName );
99
+ }
100
+ if (isLegacy ) {
101
+ // add back the removed algos
102
+ for (String s : algos ) {
103
+ p .put ("SecureRandom." + s , SR_IMPLCLASS );
104
+ }
95
105
}
96
106
}
97
107
}
@@ -100,7 +110,7 @@ private static class SampleLegacyProvider extends Provider {
100
110
SampleLegacyProvider (String [] listOfSupportedRNGs ) {
101
111
super ("SampleLegacy" , "1.0" , "test provider using legacy put" );
102
112
for (String s : listOfSupportedRNGs ) {
103
- put ("SecureRandom." + s , "sun.security.provider.SecureRandom" );
113
+ put ("SecureRandom." + s , SR_IMPLCLASS );
104
114
}
105
115
}
106
116
}
@@ -110,8 +120,37 @@ private static class SampleServiceProvider extends Provider {
110
120
super ("SampleService" , "1.0" , "test provider using putService" );
111
121
for (String s : listOfSupportedRNGs ) {
112
122
putService (new Provider .Service (this , "SecureRandom" , s ,
113
- "sun.security.provider.SecureRandom" , null , null ));
123
+ SR_IMPLCLASS , null , null ));
124
+ }
125
+ }
126
+ }
127
+
128
+ // custom provider which overrides putService(...)/getService() and uses
129
+ // its own Service impl
130
+ private static class CustomProvider extends Provider {
131
+ private static class CustomService extends Provider .Service {
132
+ CustomService (Provider p , String type , String algo , String cName ) {
133
+ super (p , type , algo , cName , null , null );
114
134
}
115
135
}
136
+
137
+ CustomProvider (String [] listOfSupportedRNGs ) {
138
+ super ("Custom" , "1.0" , "test provider overrides putService with " +
139
+ " custom service with legacy registration" );
140
+ for (String s : listOfSupportedRNGs ) {
141
+ putService (new CustomService (this , "SecureRandom" , s ,
142
+ SR_IMPLCLASS ));
143
+ }
144
+ }
145
+ @ Override
146
+ protected void putService (Provider .Service s ) {
147
+ // convert to legacy puts
148
+ put (s .getType () + "." + s .getAlgorithm (), s .getClassName ());
149
+ put (s .getType () + ":" + s .getAlgorithm (), s );
150
+ }
151
+ @ Override
152
+ public Provider .Service getService (String type , String algo ) {
153
+ return (Provider .Service ) get (type + ":" + algo );
154
+ }
116
155
}
117
156
}
0 commit comments