author | pliden |
Wed, 20 Nov 2019 10:37:46 +0100 | |
changeset 59154 | 0c2e1808f800 |
parent 54802 | b0a1572ec64a |
permissions | -rw-r--r-- |
2 | 1 |
/* |
54802 | 2 |
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package javax.security.sasl; |
|
27 |
||
28 |
import javax.security.auth.callback.CallbackHandler; |
|
54802 | 29 |
import java.security.AccessController; |
30 |
import java.security.PrivilegedAction; |
|
31 |
import java.util.ArrayList; |
|
2 | 32 |
import java.util.Enumeration; |
33 |
import java.util.Iterator; |
|
54802 | 34 |
import java.util.List; |
2 | 35 |
import java.util.Map; |
36 |
import java.util.Set; |
|
37 |
import java.util.HashSet; |
|
38 |
import java.util.Collections; |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
39 |
import java.security.InvalidParameterException; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
40 |
import java.security.NoSuchAlgorithmException; |
2 | 41 |
import java.security.Provider; |
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
42 |
import java.security.Provider.Service; |
2 | 43 |
import java.security.Security; |
54802 | 44 |
import java.util.logging.Level; |
45 |
import java.util.logging.Logger; |
|
2 | 46 |
|
47 |
/** |
|
48 |
* A static class for creating SASL clients and servers. |
|
49 |
*<p> |
|
50 |
* This class defines the policy of how to locate, load, and instantiate |
|
51 |
* SASL clients and servers. |
|
52 |
*<p> |
|
53 |
* For example, an application or library gets a SASL client by doing |
|
54 |
* something like: |
|
55 |
*<blockquote><pre> |
|
56 |
* SaslClient sc = Sasl.createSaslClient(mechanisms, |
|
57 |
* authorizationId, protocol, serverName, props, callbackHandler); |
|
58 |
*</pre></blockquote> |
|
59 |
* It can then proceed to use the instance to create an authentication connection. |
|
60 |
*<p> |
|
61 |
* Similarly, a server gets a SASL server by using code that looks as follows: |
|
62 |
*<blockquote><pre> |
|
63 |
* SaslServer ss = Sasl.createSaslServer(mechanism, |
|
64 |
* protocol, serverName, props, callbackHandler); |
|
65 |
*</pre></blockquote> |
|
66 |
* |
|
67 |
* @since 1.5 |
|
68 |
* |
|
69 |
* @author Rosanna Lee |
|
70 |
* @author Rob Weltman |
|
71 |
*/ |
|
72 |
public class Sasl { |
|
54802 | 73 |
|
74 |
private static List<String> disabledMechanisms = new ArrayList<>(); |
|
75 |
||
76 |
static { |
|
77 |
String prop = AccessController.doPrivileged( |
|
78 |
(PrivilegedAction<String>) |
|
79 |
() -> Security.getProperty("jdk.sasl.disabledMechanisms")); |
|
80 |
||
81 |
if (prop != null) { |
|
82 |
for (String s : prop.split("\\s*,\\s*")) { |
|
83 |
if (!s.isEmpty()) { |
|
84 |
disabledMechanisms.add(s); |
|
85 |
} |
|
86 |
} |
|
87 |
} |
|
88 |
} |
|
89 |
||
90 |
private static final String SASL_LOGGER_NAME = "javax.security.sasl"; |
|
91 |
||
92 |
/** |
|
93 |
* Logger for debug messages |
|
94 |
*/ |
|
95 |
private static final Logger logger = Logger.getLogger(SASL_LOGGER_NAME); |
|
96 |
||
2 | 97 |
// Cannot create one of these |
98 |
private Sasl() { |
|
99 |
} |
|
100 |
||
101 |
/** |
|
102 |
* The name of a property that specifies the quality-of-protection to use. |
|
103 |
* The property contains a comma-separated, ordered list |
|
104 |
* of quality-of-protection values that the |
|
105 |
* client or server is willing to support. A qop value is one of |
|
106 |
* <ul> |
|
18830 | 107 |
* <li>{@code "auth"} - authentication only</li> |
108 |
* <li>{@code "auth-int"} - authentication plus integrity protection</li> |
|
109 |
* <li>{@code "auth-conf"} - authentication plus integrity and confidentiality |
|
2 | 110 |
* protection</li> |
111 |
* </ul> |
|
112 |
* |
|
113 |
* The order of the list specifies the preference order of the client or |
|
18830 | 114 |
* server. If this property is absent, the default qop is {@code "auth"}. |
115 |
* The value of this constant is {@code "javax.security.sasl.qop"}. |
|
2 | 116 |
*/ |
117 |
public static final String QOP = "javax.security.sasl.qop"; |
|
118 |
||
119 |
/** |
|
120 |
* The name of a property that specifies the cipher strength to use. |
|
121 |
* The property contains a comma-separated, ordered list |
|
122 |
* of cipher strength values that |
|
123 |
* the client or server is willing to support. A strength value is one of |
|
124 |
* <ul> |
|
18830 | 125 |
* <li>{@code "low"}</li> |
126 |
* <li>{@code "medium"}</li> |
|
127 |
* <li>{@code "high"}</li> |
|
2 | 128 |
* </ul> |
129 |
* The order of the list specifies the preference order of the client or |
|
130 |
* server. An implementation should allow configuration of the meaning |
|
131 |
* of these values. An application may use the Java Cryptography |
|
132 |
* Extension (JCE) with JCE-aware mechanisms to control the selection of |
|
133 |
* cipher suites that match the strength values. |
|
134 |
* <BR> |
|
135 |
* If this property is absent, the default strength is |
|
18830 | 136 |
* {@code "high,medium,low"}. |
137 |
* The value of this constant is {@code "javax.security.sasl.strength"}. |
|
2 | 138 |
*/ |
139 |
public static final String STRENGTH = "javax.security.sasl.strength"; |
|
140 |
||
141 |
/** |
|
142 |
* The name of a property that specifies whether the |
|
143 |
* server must authenticate to the client. The property contains |
|
18830 | 144 |
* {@code "true"} if the server must |
145 |
* authenticate the to client; {@code "false"} otherwise. |
|
146 |
* The default is {@code "false"}. |
|
2 | 147 |
* <br>The value of this constant is |
18830 | 148 |
* {@code "javax.security.sasl.server.authentication"}. |
2 | 149 |
*/ |
150 |
public static final String SERVER_AUTH = |
|
151 |
"javax.security.sasl.server.authentication"; |
|
152 |
||
153 |
/** |
|
14340 | 154 |
* The name of a property that specifies the bound server name for |
155 |
* an unbound server. A server is created as an unbound server by setting |
|
156 |
* the {@code serverName} argument in {@link #createSaslServer} as null. |
|
157 |
* The property contains the bound host name after the authentication |
|
158 |
* exchange has completed. It is only available on the server side. |
|
159 |
* <br>The value of this constant is |
|
18830 | 160 |
* {@code "javax.security.sasl.bound.server.name"}. |
14340 | 161 |
*/ |
162 |
public static final String BOUND_SERVER_NAME = |
|
163 |
"javax.security.sasl.bound.server.name"; |
|
164 |
||
165 |
/** |
|
2 | 166 |
* The name of a property that specifies the maximum size of the receive |
18830 | 167 |
* buffer in bytes of {@code SaslClient}/{@code SaslServer}. |
2 | 168 |
* The property contains the string representation of an integer. |
169 |
* <br>If this property is absent, the default size |
|
170 |
* is defined by the mechanism. |
|
18830 | 171 |
* <br>The value of this constant is {@code "javax.security.sasl.maxbuffer"}. |
2 | 172 |
*/ |
173 |
public static final String MAX_BUFFER = "javax.security.sasl.maxbuffer"; |
|
174 |
||
175 |
/** |
|
176 |
* The name of a property that specifies the maximum size of the raw send |
|
18830 | 177 |
* buffer in bytes of {@code SaslClient}/{@code SaslServer}. |
2 | 178 |
* The property contains the string representation of an integer. |
179 |
* The value of this property is negotiated between the client and server |
|
180 |
* during the authentication exchange. |
|
18830 | 181 |
* <br>The value of this constant is {@code "javax.security.sasl.rawsendsize"}. |
2 | 182 |
*/ |
183 |
public static final String RAW_SEND_SIZE = "javax.security.sasl.rawsendsize"; |
|
184 |
||
185 |
/** |
|
186 |
* The name of a property that specifies whether to reuse previously |
|
187 |
* authenticated session information. The property contains "true" if the |
|
188 |
* mechanism implementation may attempt to reuse previously authenticated |
|
189 |
* session information; it contains "false" if the implementation must |
|
190 |
* not reuse previously authenticated session information. A setting of |
|
191 |
* "true" serves only as a hint: it does not necessarily entail actual |
|
192 |
* reuse because reuse might not be possible due to a number of reasons, |
|
193 |
* including, but not limited to, lack of mechanism support for reuse, |
|
194 |
* expiration of reusable information, and the peer's refusal to support |
|
195 |
* reuse. |
|
196 |
* |
|
197 |
* The property's default value is "false". The value of this constant |
|
198 |
* is "javax.security.sasl.reuse". |
|
199 |
* |
|
200 |
* Note that all other parameters and properties required to create a |
|
201 |
* SASL client/server instance must be provided regardless of whether |
|
202 |
* this property has been supplied. That is, you cannot supply any less |
|
203 |
* information in anticipation of reuse. |
|
204 |
* |
|
205 |
* Mechanism implementations that support reuse might allow customization |
|
206 |
* of its implementation, for factors such as cache size, timeouts, and |
|
21278 | 207 |
* criteria for reusability. Such customizations are |
2 | 208 |
* implementation-dependent. |
209 |
*/ |
|
210 |
public static final String REUSE = "javax.security.sasl.reuse"; |
|
211 |
||
212 |
/** |
|
213 |
* The name of a property that specifies |
|
214 |
* whether mechanisms susceptible to simple plain passive attacks (e.g., |
|
215 |
* "PLAIN") are not permitted. The property |
|
18830 | 216 |
* contains {@code "true"} if such mechanisms are not permitted; |
217 |
* {@code "false"} if such mechanisms are permitted. |
|
218 |
* The default is {@code "false"}. |
|
2 | 219 |
* <br>The value of this constant is |
18830 | 220 |
* {@code "javax.security.sasl.policy.noplaintext"}. |
2 | 221 |
*/ |
222 |
public static final String POLICY_NOPLAINTEXT = |
|
223 |
"javax.security.sasl.policy.noplaintext"; |
|
224 |
||
225 |
/** |
|
226 |
* The name of a property that specifies whether |
|
227 |
* mechanisms susceptible to active (non-dictionary) attacks |
|
228 |
* are not permitted. |
|
18830 | 229 |
* The property contains {@code "true"} |
2 | 230 |
* if mechanisms susceptible to active attacks |
18830 | 231 |
* are not permitted; {@code "false"} if such mechanisms are permitted. |
232 |
* The default is {@code "false"}. |
|
2 | 233 |
* <br>The value of this constant is |
18830 | 234 |
* {@code "javax.security.sasl.policy.noactive"}. |
2 | 235 |
*/ |
236 |
public static final String POLICY_NOACTIVE = |
|
237 |
"javax.security.sasl.policy.noactive"; |
|
238 |
||
239 |
/** |
|
240 |
* The name of a property that specifies whether |
|
241 |
* mechanisms susceptible to passive dictionary attacks are not permitted. |
|
18830 | 242 |
* The property contains {@code "true"} |
2 | 243 |
* if mechanisms susceptible to dictionary attacks are not permitted; |
18830 | 244 |
* {@code "false"} if such mechanisms are permitted. |
245 |
* The default is {@code "false"}. |
|
2 | 246 |
*<br> |
247 |
* The value of this constant is |
|
18830 | 248 |
* {@code "javax.security.sasl.policy.nodictionary"}. |
2 | 249 |
*/ |
250 |
public static final String POLICY_NODICTIONARY = |
|
251 |
"javax.security.sasl.policy.nodictionary"; |
|
252 |
||
253 |
/** |
|
254 |
* The name of a property that specifies whether mechanisms that accept |
|
18830 | 255 |
* anonymous login are not permitted. The property contains {@code "true"} |
2 | 256 |
* if mechanisms that accept anonymous login are not permitted; |
18830 | 257 |
* {@code "false"} |
258 |
* if such mechanisms are permitted. The default is {@code "false"}. |
|
2 | 259 |
*<br> |
260 |
* The value of this constant is |
|
18830 | 261 |
* {@code "javax.security.sasl.policy.noanonymous"}. |
2 | 262 |
*/ |
263 |
public static final String POLICY_NOANONYMOUS = |
|
264 |
"javax.security.sasl.policy.noanonymous"; |
|
265 |
||
266 |
/** |
|
267 |
* The name of a property that specifies whether mechanisms that implement |
|
268 |
* forward secrecy between sessions are required. Forward secrecy |
|
269 |
* means that breaking into one session will not automatically |
|
270 |
* provide information for breaking into future sessions. |
|
271 |
* The property |
|
18830 | 272 |
* contains {@code "true"} if mechanisms that implement forward secrecy |
273 |
* between sessions are required; {@code "false"} if such mechanisms |
|
274 |
* are not required. The default is {@code "false"}. |
|
2 | 275 |
*<br> |
276 |
* The value of this constant is |
|
18830 | 277 |
* {@code "javax.security.sasl.policy.forward"}. |
2 | 278 |
*/ |
279 |
public static final String POLICY_FORWARD_SECRECY = |
|
280 |
"javax.security.sasl.policy.forward"; |
|
281 |
||
282 |
/** |
|
283 |
* The name of a property that specifies whether |
|
284 |
* mechanisms that pass client credentials are required. The property |
|
18830 | 285 |
* contains {@code "true"} if mechanisms that pass |
286 |
* client credentials are required; {@code "false"} |
|
287 |
* if such mechanisms are not required. The default is {@code "false"}. |
|
2 | 288 |
*<br> |
289 |
* The value of this constant is |
|
18830 | 290 |
* {@code "javax.security.sasl.policy.credentials"}. |
2 | 291 |
*/ |
292 |
public static final String POLICY_PASS_CREDENTIALS = |
|
293 |
"javax.security.sasl.policy.credentials"; |
|
294 |
||
295 |
/** |
|
296 |
* The name of a property that specifies the credentials to use. |
|
297 |
* The property contains a mechanism-specific Java credential object. |
|
298 |
* Mechanism implementations may examine the value of this property |
|
299 |
* to determine whether it is a class that they support. |
|
300 |
* The property may be used to supply credentials to a mechanism that |
|
301 |
* supports delegated authentication. |
|
302 |
*<br> |
|
303 |
* The value of this constant is |
|
18830 | 304 |
* {@code "javax.security.sasl.credentials"}. |
2 | 305 |
*/ |
306 |
public static final String CREDENTIALS = "javax.security.sasl.credentials"; |
|
307 |
||
308 |
/** |
|
18830 | 309 |
* Creates a {@code SaslClient} using the parameters supplied. |
2 | 310 |
* |
311 |
* This method uses the |
|
45665 | 312 |
* {@extLink security_guide_jca JCA Security Provider Framework}, |
313 |
* described in the |
|
314 |
* "Java Cryptography Architecture (JCA) Reference Guide", for |
|
18830 | 315 |
* locating and selecting a {@code SaslClient} implementation. |
2 | 316 |
* |
317 |
* First, it |
|
18830 | 318 |
* obtains an ordered list of {@code SaslClientFactory} instances from |
2 | 319 |
* the registered security providers for the "SaslClientFactory" service |
320 |
* and the specified SASL mechanism(s). It then invokes |
|
18830 | 321 |
* {@code createSaslClient()} on each factory instance on the list |
322 |
* until one produces a non-null {@code SaslClient} instance. It returns |
|
323 |
* the non-null {@code SaslClient} instance, or null if the search fails |
|
324 |
* to produce a non-null {@code SaslClient} instance. |
|
2 | 325 |
*<p> |
326 |
* A security provider for SaslClientFactory registers with the |
|
327 |
* JCA Security Provider Framework keys of the form <br> |
|
18830 | 328 |
* {@code SaslClientFactory.}<em>{@code mechanism_name}</em> |
2 | 329 |
* <br> |
330 |
* and values that are class names of implementations of |
|
18830 | 331 |
* {@code javax.security.sasl.SaslClientFactory}. |
2 | 332 |
* |
333 |
* For example, a provider that contains a factory class, |
|
18830 | 334 |
* {@code com.wiz.sasl.digest.ClientFactory}, that supports the |
2 | 335 |
* "DIGEST-MD5" mechanism would register the following entry with the JCA: |
18830 | 336 |
* {@code SaslClientFactory.DIGEST-MD5 com.wiz.sasl.digest.ClientFactory} |
2 | 337 |
*<p> |
338 |
* See the |
|
18156 | 339 |
* "Java Cryptography Architecture API Specification & Reference" |
2 | 340 |
* for information about how to install and configure security service |
341 |
* providers. |
|
342 |
* |
|
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
343 |
* @implNote |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
344 |
* The JDK Reference Implementation additionally uses the |
37348
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
345 |
* {@code jdk.security.provider.preferred} |
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
346 |
* {@link Security#getProperty(String) Security} property to determine |
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
347 |
* the preferred provider order for the specified algorithm. This |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
348 |
* may be different than the order of providers returned by |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
349 |
* {@link Security#getProviders() Security.getProviders()}. |
54802 | 350 |
* <p> |
351 |
* If a mechanism is listed in the {@code jdk.sasl.disabledMechanisms} |
|
352 |
* security property, it will be ignored and won't be negotiated. |
|
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
353 |
* |
2 | 354 |
* @param mechanisms The non-null list of mechanism names to try. Each is the |
355 |
* IANA-registered name of a SASL mechanism. (e.g. "GSSAPI", "CRAM-MD5"). |
|
356 |
* @param authorizationId The possibly null protocol-dependent |
|
357 |
* identification to be used for authorization. |
|
358 |
* If null or empty, the server derives an authorization |
|
359 |
* ID from the client's authentication credentials. |
|
360 |
* When the SASL authentication completes successfully, |
|
361 |
* the specified entity is granted access. |
|
362 |
* |
|
363 |
* @param protocol The non-null string name of the protocol for which |
|
364 |
* the authentication is being performed (e.g., "ldap"). |
|
365 |
* |
|
366 |
* @param serverName The non-null fully-qualified host name of the server |
|
367 |
* to authenticate to. |
|
368 |
* |
|
369 |
* @param props The possibly null set of properties used to |
|
370 |
* select the SASL mechanism and to configure the authentication |
|
371 |
* exchange of the selected mechanism. |
|
18830 | 372 |
* For example, if {@code props} contains the |
373 |
* {@code Sasl.POLICY_NOPLAINTEXT} property with the value |
|
374 |
* {@code "true"}, then the selected |
|
2 | 375 |
* SASL mechanism must not be susceptible to simple plain passive attacks. |
376 |
* In addition to the standard properties declared in this class, |
|
377 |
* other, possibly mechanism-specific, properties can be included. |
|
378 |
* Properties not relevant to the selected mechanism are ignored, |
|
379 |
* including any map entries with non-String keys. |
|
380 |
* |
|
381 |
* @param cbh The possibly null callback handler to used by the SASL |
|
382 |
* mechanisms to get further information from the application/library |
|
383 |
* to complete the authentication. For example, a SASL mechanism might |
|
384 |
* require the authentication ID, password and realm from the caller. |
|
18830 | 385 |
* The authentication ID is requested by using a {@code NameCallback}. |
386 |
* The password is requested by using a {@code PasswordCallback}. |
|
387 |
* The realm is requested by using a {@code RealmChoiceCallback} if there is a list |
|
388 |
* of realms to choose from, and by using a {@code RealmCallback} if |
|
2 | 389 |
* the realm must be entered. |
390 |
* |
|
18830 | 391 |
*@return A possibly null {@code SaslClient} created using the parameters |
392 |
* supplied. If null, cannot find a {@code SaslClientFactory} |
|
2 | 393 |
* that will produce one. |
18830 | 394 |
*@exception SaslException If cannot create a {@code SaslClient} because |
2 | 395 |
* of an error. |
396 |
*/ |
|
397 |
public static SaslClient createSaslClient( |
|
398 |
String[] mechanisms, |
|
399 |
String authorizationId, |
|
400 |
String protocol, |
|
401 |
String serverName, |
|
402 |
Map<String,?> props, |
|
403 |
CallbackHandler cbh) throws SaslException { |
|
404 |
||
405 |
SaslClient mech = null; |
|
406 |
SaslClientFactory fac; |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
407 |
Service service; |
2 | 408 |
String mechName; |
409 |
||
410 |
for (int i = 0; i < mechanisms.length; i++) { |
|
411 |
if ((mechName=mechanisms[i]) == null) { |
|
412 |
throw new NullPointerException( |
|
413 |
"Mechanism name cannot be null"); |
|
414 |
} else if (mechName.length() == 0) { |
|
415 |
continue; |
|
54802 | 416 |
} else if (isDisabled(mechName)) { |
417 |
logger.log(Level.FINE, |
|
418 |
"Disabled " + mechName + " mechanism ignored"); |
|
419 |
continue; |
|
2 | 420 |
} |
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
421 |
String type = "SaslClientFactory"; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
422 |
Provider[] provs = Security.getProviders(type + "." + mechName); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
423 |
if (provs != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
424 |
for (Provider p : provs) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
425 |
service = p.getService(type, mechName); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
426 |
if (service == null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
427 |
// no such service exists |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
428 |
continue; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
429 |
} |
2 | 430 |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
431 |
fac = (SaslClientFactory) loadFactory(service); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
432 |
if (fac != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
433 |
mech = fac.createSaslClient( |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
434 |
new String[]{mechanisms[i]}, authorizationId, |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
435 |
protocol, serverName, props, cbh); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
436 |
if (mech != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
437 |
return mech; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
438 |
} |
2 | 439 |
} |
440 |
} |
|
441 |
} |
|
442 |
} |
|
443 |
return null; |
|
444 |
} |
|
445 |
||
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
446 |
private static Object loadFactory(Service service) |
2 | 447 |
throws SaslException { |
448 |
try { |
|
449 |
/* |
|
450 |
* Load the implementation class with the same class loader |
|
451 |
* that was used to load the provider. |
|
452 |
* In order to get the class loader of a class, the |
|
453 |
* caller's class loader must be the same as or an ancestor of |
|
454 |
* the class loader being returned. Otherwise, the caller must |
|
455 |
* have "getClassLoader" permission, or a SecurityException |
|
456 |
* will be thrown. |
|
457 |
*/ |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
458 |
return service.newInstance(null); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
459 |
} catch (InvalidParameterException | NoSuchAlgorithmException e) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
460 |
throw new SaslException("Cannot instantiate service " + service, e); |
2 | 461 |
} |
462 |
} |
|
463 |
||
464 |
||
465 |
/** |
|
18830 | 466 |
* Creates a {@code SaslServer} for the specified mechanism. |
2 | 467 |
* |
468 |
* This method uses the |
|
45665 | 469 |
* {@extLink security_guide_jca JCA Security Provider Framework}, |
2 | 470 |
* described in the |
45665 | 471 |
* "Java Cryptography Architecture (JCA) Reference Guide", for |
472 |
* locating and selecting a {@code SaslClient} implementation. |
|
2 | 473 |
* |
474 |
* First, it |
|
18830 | 475 |
* obtains an ordered list of {@code SaslServerFactory} instances from |
2 | 476 |
* the registered security providers for the "SaslServerFactory" service |
477 |
* and the specified mechanism. It then invokes |
|
18830 | 478 |
* {@code createSaslServer()} on each factory instance on the list |
479 |
* until one produces a non-null {@code SaslServer} instance. It returns |
|
480 |
* the non-null {@code SaslServer} instance, or null if the search fails |
|
481 |
* to produce a non-null {@code SaslServer} instance. |
|
2 | 482 |
*<p> |
483 |
* A security provider for SaslServerFactory registers with the |
|
484 |
* JCA Security Provider Framework keys of the form <br> |
|
18830 | 485 |
* {@code SaslServerFactory.}<em>{@code mechanism_name}</em> |
2 | 486 |
* <br> |
487 |
* and values that are class names of implementations of |
|
18830 | 488 |
* {@code javax.security.sasl.SaslServerFactory}. |
2 | 489 |
* |
490 |
* For example, a provider that contains a factory class, |
|
18830 | 491 |
* {@code com.wiz.sasl.digest.ServerFactory}, that supports the |
2 | 492 |
* "DIGEST-MD5" mechanism would register the following entry with the JCA: |
18830 | 493 |
* {@code SaslServerFactory.DIGEST-MD5 com.wiz.sasl.digest.ServerFactory} |
2 | 494 |
*<p> |
495 |
* See the |
|
18156 | 496 |
* "Java Cryptography Architecture API Specification & Reference" |
2 | 497 |
* for information about how to install and configure security |
498 |
* service providers. |
|
499 |
* |
|
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
500 |
* @implNote |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
501 |
* The JDK Reference Implementation additionally uses the |
37348
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
502 |
* {@code jdk.security.provider.preferred} |
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
503 |
* {@link Security#getProperty(String) Security} property to determine |
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
504 |
* the preferred provider order for the specified algorithm. This |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
505 |
* may be different than the order of providers returned by |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
506 |
* {@link Security#getProviders() Security.getProviders()}. |
54802 | 507 |
* <p> |
508 |
* If {@code mechanism} is listed in the {@code jdk.sasl.disabledMechanisms} |
|
509 |
* security property, it will be ignored and this method returns {@code null}. |
|
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
31270
diff
changeset
|
510 |
* |
2 | 511 |
* @param mechanism The non-null mechanism name. It must be an |
512 |
* IANA-registered name of a SASL mechanism. (e.g. "GSSAPI", "CRAM-MD5"). |
|
513 |
* @param protocol The non-null string name of the protocol for which |
|
514 |
* the authentication is being performed (e.g., "ldap"). |
|
14340 | 515 |
* @param serverName The fully qualified host name of the server, or null |
516 |
* if the server is not bound to any specific host name. If the mechanism |
|
18830 | 517 |
* does not allow an unbound server, a {@code SaslException} will |
14340 | 518 |
* be thrown. |
2 | 519 |
* @param props The possibly null set of properties used to |
520 |
* select the SASL mechanism and to configure the authentication |
|
521 |
* exchange of the selected mechanism. |
|
18830 | 522 |
* For example, if {@code props} contains the |
523 |
* {@code Sasl.POLICY_NOPLAINTEXT} property with the value |
|
524 |
* {@code "true"}, then the selected |
|
2 | 525 |
* SASL mechanism must not be susceptible to simple plain passive attacks. |
526 |
* In addition to the standard properties declared in this class, |
|
527 |
* other, possibly mechanism-specific, properties can be included. |
|
528 |
* Properties not relevant to the selected mechanism are ignored, |
|
529 |
* including any map entries with non-String keys. |
|
530 |
* |
|
531 |
* @param cbh The possibly null callback handler to used by the SASL |
|
532 |
* mechanisms to get further information from the application/library |
|
533 |
* to complete the authentication. For example, a SASL mechanism might |
|
534 |
* require the authentication ID, password and realm from the caller. |
|
18830 | 535 |
* The authentication ID is requested by using a {@code NameCallback}. |
536 |
* The password is requested by using a {@code PasswordCallback}. |
|
537 |
* The realm is requested by using a {@code RealmChoiceCallback} if there is a list |
|
538 |
* of realms to choose from, and by using a {@code RealmCallback} if |
|
2 | 539 |
* the realm must be entered. |
540 |
* |
|
18830 | 541 |
*@return A possibly null {@code SaslServer} created using the parameters |
542 |
* supplied. If null, cannot find a {@code SaslServerFactory} |
|
2 | 543 |
* that will produce one. |
18830 | 544 |
*@exception SaslException If cannot create a {@code SaslServer} because |
2 | 545 |
* of an error. |
546 |
**/ |
|
547 |
public static SaslServer |
|
548 |
createSaslServer(String mechanism, |
|
549 |
String protocol, |
|
550 |
String serverName, |
|
551 |
Map<String,?> props, |
|
552 |
javax.security.auth.callback.CallbackHandler cbh) |
|
553 |
throws SaslException { |
|
554 |
||
555 |
SaslServer mech = null; |
|
556 |
SaslServerFactory fac; |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
557 |
Service service; |
2 | 558 |
|
559 |
if (mechanism == null) { |
|
560 |
throw new NullPointerException("Mechanism name cannot be null"); |
|
561 |
} else if (mechanism.length() == 0) { |
|
562 |
return null; |
|
54802 | 563 |
} else if (isDisabled(mechanism)) { |
564 |
logger.log(Level.FINE, |
|
565 |
"Disabled " + mechanism + " mechanism ignored"); |
|
566 |
return null; |
|
2 | 567 |
} |
568 |
||
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
569 |
String type = "SaslServerFactory"; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
570 |
Provider[] provs = Security.getProviders(type + "." + mechanism); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
571 |
if (provs != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
572 |
for (Provider p : provs) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
573 |
service = p.getService(type, mechanism); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
574 |
if (service == null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
575 |
throw new SaslException("Provider does not support " + |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
576 |
mechanism + " " + type); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
577 |
} |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
578 |
fac = (SaslServerFactory) loadFactory(service); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
579 |
if (fac != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
580 |
mech = fac.createSaslServer( |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
581 |
mechanism, protocol, serverName, props, cbh); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
582 |
if (mech != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
583 |
return mech; |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
584 |
} |
2 | 585 |
} |
586 |
} |
|
587 |
} |
|
588 |
return null; |
|
589 |
} |
|
590 |
||
591 |
/** |
|
18830 | 592 |
* Gets an enumeration of known factories for producing {@code SaslClient}. |
2 | 593 |
* This method uses the same algorithm for locating factories as |
18830 | 594 |
* {@code createSaslClient()}. |
2 | 595 |
* @return A non-null enumeration of known factories for producing |
18830 | 596 |
* {@code SaslClient}. |
2 | 597 |
* @see #createSaslClient |
598 |
*/ |
|
599 |
public static Enumeration<SaslClientFactory> getSaslClientFactories() { |
|
600 |
Set<Object> facs = getFactories("SaslClientFactory"); |
|
601 |
final Iterator<Object> iter = facs.iterator(); |
|
602 |
return new Enumeration<SaslClientFactory>() { |
|
603 |
public boolean hasMoreElements() { |
|
604 |
return iter.hasNext(); |
|
605 |
} |
|
606 |
public SaslClientFactory nextElement() { |
|
607 |
return (SaslClientFactory)iter.next(); |
|
608 |
} |
|
609 |
}; |
|
610 |
} |
|
611 |
||
612 |
/** |
|
18830 | 613 |
* Gets an enumeration of known factories for producing {@code SaslServer}. |
2 | 614 |
* This method uses the same algorithm for locating factories as |
18830 | 615 |
* {@code createSaslServer()}. |
2 | 616 |
* @return A non-null enumeration of known factories for producing |
18830 | 617 |
* {@code SaslServer}. |
2 | 618 |
* @see #createSaslServer |
619 |
*/ |
|
620 |
public static Enumeration<SaslServerFactory> getSaslServerFactories() { |
|
621 |
Set<Object> facs = getFactories("SaslServerFactory"); |
|
622 |
final Iterator<Object> iter = facs.iterator(); |
|
623 |
return new Enumeration<SaslServerFactory>() { |
|
624 |
public boolean hasMoreElements() { |
|
625 |
return iter.hasNext(); |
|
626 |
} |
|
627 |
public SaslServerFactory nextElement() { |
|
628 |
return (SaslServerFactory)iter.next(); |
|
629 |
} |
|
630 |
}; |
|
631 |
} |
|
632 |
||
633 |
private static Set<Object> getFactories(String serviceName) { |
|
634 |
HashSet<Object> result = new HashSet<Object>(); |
|
635 |
||
636 |
if ((serviceName == null) || (serviceName.length() == 0) || |
|
637 |
(serviceName.endsWith("."))) { |
|
638 |
return result; |
|
639 |
} |
|
640 |
||
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
641 |
Provider[] provs = Security.getProviders(); |
2 | 642 |
Object fac; |
643 |
||
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
644 |
for (Provider p : provs) { |
2 | 645 |
|
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
646 |
Iterator<Service> iter = p.getServices().iterator(); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
647 |
while (iter.hasNext()) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
648 |
Service s = iter.next(); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
649 |
if (s.getType().equals(serviceName)) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
650 |
try { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
651 |
fac = loadFactory(s); |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
652 |
if (fac != null) { |
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
653 |
result.add(fac); |
2 | 654 |
} |
31270
e6470b24700d
7191662: JCE providers should be located via ServiceLoader
valeriep
parents:
25859
diff
changeset
|
655 |
} catch (Exception ignore) { |
2 | 656 |
} |
657 |
} |
|
658 |
} |
|
659 |
} |
|
660 |
return Collections.unmodifiableSet(result); |
|
661 |
} |
|
54802 | 662 |
|
663 |
private static boolean isDisabled(String name) { |
|
664 |
return disabledMechanisms.contains(name); |
|
665 |
} |
|
2 | 666 |
} |