1
1
/*
2
- * Copyright (c) 2009, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2009, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
25
25
26
26
package sun .security .ec ;
27
27
28
- import java .util .*;
29
- import java .security .*;
28
+ import java .security .AccessController ;
29
+ import java .security .InvalidParameterException ;
30
+ import java .security .NoSuchAlgorithmException ;
31
+ import java .security .PrivilegedAction ;
32
+ import java .security .Provider ;
33
+ import java .security .ProviderException ;
34
+ import java .util .Arrays ;
35
+ import java .util .Collection ;
36
+ import java .util .Collections ;
37
+ import java .util .HashMap ;
38
+ import java .util .List ;
30
39
import java .util .regex .Pattern ;
31
40
import sun .security .util .CurveDB ;
32
41
import sun .security .util .NamedCurve ;
@@ -53,22 +62,36 @@ public final class SunEC extends Provider {
53
62
54
63
private static final long serialVersionUID = -2279741672933606418L ;
55
64
56
- // flag indicating whether the full EC implementation is present
57
- // (when native library is absent then fewer EC algorithms are available)
58
- private static boolean useFullImplementation = true ;
65
+ // This flag is true if the native library is disabled or not loaded.
66
+ private static boolean disableNative = true ;
67
+
59
68
static {
60
- try {
61
- AccessController .doPrivileged (new PrivilegedAction <Void >() {
62
- public Void run () {
63
- System .loadLibrary ("sunec" ); // check for native library
64
- return null ;
65
- }
66
- });
67
- } catch (UnsatisfiedLinkError e ) {
68
- useFullImplementation = false ;
69
+ String s = sun .security .action .GetPropertyAction .privilegedGetProperty (
70
+ "jdk.sunec.disableNative" );
71
+ if (s != null && s .equalsIgnoreCase ("false" )) {
72
+ disableNative = false ;
73
+ }
74
+
75
+ // If native is enabled, verify the library is available.
76
+ if (!disableNative ) {
77
+ try {
78
+ AccessController .doPrivileged (new PrivilegedAction <Void >() {
79
+ public Void run () {
80
+ System .loadLibrary ("sunec" ); // check for native library
81
+ return null ;
82
+ }
83
+ });
84
+ } catch (UnsatisfiedLinkError e ) {
85
+ disableNative = true ;
86
+ }
69
87
}
70
88
}
71
89
90
+ // Check if native library support is disabled.
91
+ static boolean isNativeDisabled () {
92
+ return SunEC .disableNative ;
93
+ }
94
+
72
95
private static class ProviderService extends Provider .Service {
73
96
74
97
ProviderService (Provider p , String type , String algo , String cn ) {
@@ -165,13 +188,13 @@ public SunEC() {
165
188
"Sun Elliptic Curve provider (EC, ECDSA, ECDH)" );
166
189
AccessController .doPrivileged (new PrivilegedAction <Void >() {
167
190
public Void run () {
168
- putEntries (useFullImplementation );
191
+ putEntries ();
169
192
return null ;
170
193
}
171
194
});
172
195
}
173
196
174
- void putEntries (boolean useFullImplementation ) {
197
+ void putEntries () {
175
198
HashMap <String , String > ATTRS = new HashMap <>(3 );
176
199
ATTRS .put ("ImplementedIn" , "Software" );
177
200
String ecKeyClasses = "java.security.interfaces.ECPublicKey" +
@@ -194,8 +217,16 @@ void putEntries(boolean useFullImplementation) {
194
217
StringBuilder names = new StringBuilder ();
195
218
Pattern nameSplitPattern = Pattern .compile (CurveDB .SPLIT_PATTERN );
196
219
197
- Collection <? extends NamedCurve > supportedCurves =
198
- CurveDB .getSupportedCurves ();
220
+ Collection <? extends NamedCurve > supportedCurves ;
221
+ if (SunEC .isNativeDisabled ()) {
222
+ supportedCurves = Collections .unmodifiableList (List .of (
223
+ CurveDB .lookup ("secp256r1" ),
224
+ CurveDB .lookup ("secp384r1" ),
225
+ CurveDB .lookup ("secp521r1" )));
226
+ } else {
227
+ supportedCurves = CurveDB .getSupportedCurves ();
228
+ }
229
+
199
230
for (NamedCurve namedCurve : supportedCurves ) {
200
231
if (!firstCurve ) {
201
232
names .append ("|" );
@@ -225,14 +256,6 @@ void putEntries(boolean useFullImplementation) {
225
256
226
257
putXDHEntries ();
227
258
228
- /*
229
- * Register the algorithms below only when the full ECC implementation
230
- * is available
231
- */
232
- if (!useFullImplementation ) {
233
- return ;
234
- }
235
-
236
259
/*
237
260
* Signature engines
238
261
*/
0 commit comments