blob: b0278d39e072530ddc4d6213cfb14946c4905722 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.net;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.util.Log;
Kenny Root12e75222013-04-23 22:34:24 -070021import com.android.org.conscrypt.OpenSSLContextImpl;
22import com.android.org.conscrypt.OpenSSLSocketImpl;
23import com.android.org.conscrypt.SSLClientSessionCache;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import java.io.IOException;
25import java.net.InetAddress;
26import java.net.Socket;
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -070027import java.net.SocketException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import java.security.KeyManagementException;
Alex Klyubinac5eb032013-03-12 10:30:59 -070029import java.security.PrivateKey;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import java.security.cert.X509Certificate;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import javax.net.SocketFactory;
Dan Egnor7fc93c32010-06-29 17:51:28 -070032import javax.net.ssl.HostnameVerifier;
33import javax.net.ssl.HttpsURLConnection;
Ben Komalo1b528062011-05-03 09:40:15 -070034import javax.net.ssl.KeyManager;
Dan Egnor7fc93c32010-06-29 17:51:28 -070035import javax.net.ssl.SSLException;
36import javax.net.ssl.SSLPeerUnverifiedException;
37import javax.net.ssl.SSLSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import javax.net.ssl.SSLSocket;
39import javax.net.ssl.SSLSocketFactory;
40import javax.net.ssl.TrustManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import javax.net.ssl.X509TrustManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042
43/**
Dan Egnor60586f22010-02-08 21:56:38 -080044 * SSLSocketFactory implementation with several extra features:
Dan Egnor7fc93c32010-06-29 17:51:28 -070045 *
Dan Egnor60586f22010-02-08 21:56:38 -080046 * <ul>
47 * <li>Timeout specification for SSL handshake operations
Dan Egnor7fc93c32010-06-29 17:51:28 -070048 * <li>Hostname verification in most cases (see WARNINGs below)
Dan Egnor60586f22010-02-08 21:56:38 -080049 * <li>Optional SSL session caching with {@link SSLSessionCache}
Dan Egnor9d4b5752010-02-13 20:34:51 -080050 * <li>Optionally bypass all SSL certificate checks
Dan Egnor60586f22010-02-08 21:56:38 -080051 * </ul>
Dan Egnor7fc93c32010-06-29 17:51:28 -070052 *
53 * The handshake timeout does not apply to actual TCP socket connection.
54 * If you want a connection timeout as well, use {@link #createSocket()}
55 * and {@link Socket#connect(SocketAddress, int)}, after which you
56 * must verify the identity of the server you are connected to.
57 *
58 * <p class="caution"><b>Most {@link SSLSocketFactory} implementations do not
59 * verify the server's identity, allowing man-in-the-middle attacks.</b>
60 * This implementation does check the server's certificate hostname, but only
61 * for createSocket variants that specify a hostname. When using methods that
62 * use {@link InetAddress} or which return an unconnected socket, you MUST
63 * verify the server's identity yourself to ensure a secure connection.</p>
64 *
65 * <p>One way to verify the server's identity is to use
66 * {@link HttpsURLConnection#getDefaultHostnameVerifier()} to get a
67 * {@link HostnameVerifier} to verify the certificate hostname.
68 *
69 * <p>On development devices, "setprop socket.relaxsslcheck yes" bypasses all
70 * SSL certificate and hostname checks for testing purposes. This setting
71 * requires root access.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 */
73public class SSLCertificateSocketFactory extends SSLSocketFactory {
Dan Egnor60586f22010-02-08 21:56:38 -080074 private static final String TAG = "SSLCertificateSocketFactory";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075
Dan Egnor60586f22010-02-08 21:56:38 -080076 private static final TrustManager[] INSECURE_TRUST_MANAGER = new TrustManager[] {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 new X509TrustManager() {
Dan Egnor60586f22010-02-08 21:56:38 -080078 public X509Certificate[] getAcceptedIssuers() { return null; }
79 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
80 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 }
82 };
83
Dan Egnor60586f22010-02-08 21:56:38 -080084 private SSLSocketFactory mInsecureFactory = null;
85 private SSLSocketFactory mSecureFactory = null;
Ben Komalo1b528062011-05-03 09:40:15 -070086 private TrustManager[] mTrustManagers = null;
87 private KeyManager[] mKeyManagers = null;
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -040088 private byte[] mNpnProtocols = null;
Kenny Root100d7292013-06-25 12:00:34 -070089 private byte[] mAlpnProtocols = null;
Alex Klyubinac5eb032013-03-12 10:30:59 -070090 private PrivateKey mChannelIdPrivateKey = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091
Dan Egnor60586f22010-02-08 21:56:38 -080092 private final int mHandshakeTimeoutMillis;
93 private final SSLClientSessionCache mSessionCache;
Dan Egnor9d4b5752010-02-13 20:34:51 -080094 private final boolean mSecure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095
Dan Egnor60586f22010-02-08 21:56:38 -080096 /** @deprecated Use {@link #getDefault(int)} instead. */
Jesse Wilson28c74252010-11-04 14:09:18 -070097 @Deprecated
Dan Egnor60586f22010-02-08 21:56:38 -080098 public SSLCertificateSocketFactory(int handshakeTimeoutMillis) {
Dan Egnor9d4b5752010-02-13 20:34:51 -080099 this(handshakeTimeoutMillis, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 }
101
Dan Egnor9d4b5752010-02-13 20:34:51 -0800102 private SSLCertificateSocketFactory(
Brian Carlstrom992f2382012-09-26 14:33:47 -0700103 int handshakeTimeoutMillis, SSLSessionCache cache, boolean secure) {
Dan Egnor60586f22010-02-08 21:56:38 -0800104 mHandshakeTimeoutMillis = handshakeTimeoutMillis;
105 mSessionCache = cache == null ? null : cache.mSessionCache;
Dan Egnor9d4b5752010-02-13 20:34:51 -0800106 mSecure = secure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 }
108
109 /**
Dan Egnor9d4b5752010-02-13 20:34:51 -0800110 * Returns a new socket factory instance with an optional handshake timeout.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 *
Dan Egnor60586f22010-02-08 21:56:38 -0800112 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
113 * for none. The socket timeout is reset to 0 after the handshake.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700114 * @return a new SSLSocketFactory with the specified parameters
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 */
Dan Egnor60586f22010-02-08 21:56:38 -0800116 public static SocketFactory getDefault(int handshakeTimeoutMillis) {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800117 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 }
119
120 /**
Dan Egnor9d4b5752010-02-13 20:34:51 -0800121 * Returns a new socket factory instance with an optional handshake timeout
122 * and SSL session cache.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 *
Dan Egnor60586f22010-02-08 21:56:38 -0800124 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
125 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700126 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700127 * @return a new SSLSocketFactory with the specified parameters
Dan Egnor60586f22010-02-08 21:56:38 -0800128 */
Dan Egnor9d4b5752010-02-13 20:34:51 -0800129 public static SSLSocketFactory getDefault(int handshakeTimeoutMillis, SSLSessionCache cache) {
130 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, true);
131 }
132
133 /**
134 * Returns a new instance of a socket factory with all SSL security checks
135 * disabled, using an optional handshake timeout and SSL session cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700136 *
137 * <p class="caution"><b>Warning:</b> Sockets created using this factory
138 * are vulnerable to man-in-the-middle attacks!</p>
Dan Egnor9d4b5752010-02-13 20:34:51 -0800139 *
140 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
141 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700142 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700143 * @return an insecure SSLSocketFactory with the specified parameters
Dan Egnor9d4b5752010-02-13 20:34:51 -0800144 */
145 public static SSLSocketFactory getInsecure(int handshakeTimeoutMillis, SSLSessionCache cache) {
146 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, false);
Dan Egnor60586f22010-02-08 21:56:38 -0800147 }
148
149 /**
150 * Returns a socket factory (also named SSLSocketFactory, but in a different
151 * namespace) for use with the Apache HTTP stack.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 *
Dan Egnor60586f22010-02-08 21:56:38 -0800153 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
154 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700155 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor60586f22010-02-08 21:56:38 -0800156 * @return a new SocketFactory with the specified parameters
157 */
158 public static org.apache.http.conn.ssl.SSLSocketFactory getHttpSocketFactory(
Jesse Wilsonff556992011-03-23 16:43:39 -0700159 int handshakeTimeoutMillis, SSLSessionCache cache) {
Dan Egnor60586f22010-02-08 21:56:38 -0800160 return new org.apache.http.conn.ssl.SSLSocketFactory(
Dan Egnor9d4b5752010-02-13 20:34:51 -0800161 new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, true));
Dan Egnor60586f22010-02-08 21:56:38 -0800162 }
163
Dan Egnor7fc93c32010-06-29 17:51:28 -0700164 /**
165 * Verify the hostname of the certificate used by the other end of a
166 * connected socket. You MUST call this if you did not supply a hostname
167 * to {@link #createSocket()}. It is harmless to call this method
168 * redundantly if the hostname has already been verified.
169 *
170 * <p>Wildcard certificates are allowed to verify any matching hostname,
171 * so "foo.bar.example.com" is verified if the peer has a certificate
172 * for "*.example.com".
173 *
174 * @param socket An SSL socket which has been connected to a server
175 * @param hostname The expected hostname of the remote server
176 * @throws IOException if something goes wrong handshaking with the server
177 * @throws SSLPeerUnverifiedException if the server cannot prove its identity
178 *
179 * @hide
180 */
181 public static void verifyHostname(Socket socket, String hostname) throws IOException {
182 if (!(socket instanceof SSLSocket)) {
183 throw new IllegalArgumentException("Attempt to verify non-SSL socket");
184 }
185
186 if (!isSslCheckRelaxed()) {
187 // The code at the start of OpenSSLSocketImpl.startHandshake()
188 // ensures that the call is idempotent, so we can safely call it.
189 SSLSocket ssl = (SSLSocket) socket;
190 ssl.startHandshake();
191
192 SSLSession session = ssl.getSession();
193 if (session == null) {
194 throw new SSLException("Cannot verify SSL socket without session");
195 }
Kenny Root4a406782013-07-23 20:36:03 -0700196 if (!HttpsURLConnection.getDefaultHostnameVerifier().verify(hostname, session)) {
Dan Egnor7fc93c32010-06-29 17:51:28 -0700197 throw new SSLPeerUnverifiedException("Cannot verify hostname: " + hostname);
198 }
199 }
200 }
201
Ben Komalo1b528062011-05-03 09:40:15 -0700202 private SSLSocketFactory makeSocketFactory(
203 KeyManager[] keyManagers, TrustManager[] trustManagers) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 try {
Brian Carlstrom3c7c3512010-08-04 15:44:39 -0700205 OpenSSLContextImpl sslContext = new OpenSSLContextImpl();
Ben Komalo1b528062011-05-03 09:40:15 -0700206 sslContext.engineInit(keyManagers, trustManagers, null);
Brian Carlstrom2c42c8f2010-09-14 00:11:14 -0700207 sslContext.engineGetClientSessionContext().setPersistentCache(mSessionCache);
Dan Egnor60586f22010-02-08 21:56:38 -0800208 return sslContext.engineGetSocketFactory();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 } catch (KeyManagementException e) {
Dan Egnor60586f22010-02-08 21:56:38 -0800210 Log.wtf(TAG, e);
211 return (SSLSocketFactory) SSLSocketFactory.getDefault(); // Fallback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 }
213 }
214
Dan Egnor7fc93c32010-06-29 17:51:28 -0700215 private static boolean isSslCheckRelaxed() {
216 return "1".equals(SystemProperties.get("ro.debuggable")) &&
217 "yes".equals(SystemProperties.get("socket.relaxsslcheck"));
218 }
219
Dan Egnor60586f22010-02-08 21:56:38 -0800220 private synchronized SSLSocketFactory getDelegate() {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800221 // Relax the SSL check if instructed (for this factory, or systemwide)
Dan Egnor7fc93c32010-06-29 17:51:28 -0700222 if (!mSecure || isSslCheckRelaxed()) {
Dan Egnor60586f22010-02-08 21:56:38 -0800223 if (mInsecureFactory == null) {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800224 if (mSecure) {
225 Log.w(TAG, "*** BYPASSING SSL SECURITY CHECKS (socket.relaxsslcheck=yes) ***");
226 } else {
227 Log.w(TAG, "Bypassing SSL security checks at caller's request");
228 }
Ben Komalo1b528062011-05-03 09:40:15 -0700229 mInsecureFactory = makeSocketFactory(mKeyManagers, INSECURE_TRUST_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 }
Dan Egnor60586f22010-02-08 21:56:38 -0800231 return mInsecureFactory;
232 } else {
233 if (mSecureFactory == null) {
Ben Komalo1b528062011-05-03 09:40:15 -0700234 mSecureFactory = makeSocketFactory(mKeyManagers, mTrustManagers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 }
Dan Egnor60586f22010-02-08 21:56:38 -0800236 return mSecureFactory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 }
238 }
239
Dan Egnor7fc93c32010-06-29 17:51:28 -0700240 /**
Ben Komalo1b528062011-05-03 09:40:15 -0700241 * Sets the {@link TrustManager}s to be used for connections made by this factory.
Ben Komalo1b528062011-05-03 09:40:15 -0700242 */
243 public void setTrustManagers(TrustManager[] trustManager) {
244 mTrustManagers = trustManager;
245
246 // Clear out all cached secure factories since configurations have changed.
247 mSecureFactory = null;
248 // Note - insecure factories only ever use the INSECURE_TRUST_MANAGER so they need not
249 // be cleared out here.
250 }
251
252 /**
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400253 * Sets the <a href="http://technotes.googlecode.com/git/nextprotoneg.html">Next
254 * Protocol Negotiation (NPN)</a> protocols that this peer is interested in.
255 *
256 * <p>For servers this is the sequence of protocols to advertise as
257 * supported, in order of preference. This list is sent unencrypted to
258 * all clients that support NPN.
259 *
260 * <p>For clients this is a list of supported protocols to match against the
261 * server's list. If there is no protocol supported by both client and
262 * server then the first protocol in the client's list will be selected.
263 * The order of the client's protocols is otherwise insignificant.
264 *
Jesse Wilson2108ead2012-05-17 13:46:17 -0400265 * @param npnProtocols a non-empty list of protocol byte arrays. All arrays
266 * must be non-empty and of length less than 256.
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400267 */
268 public void setNpnProtocols(byte[][] npnProtocols) {
Kenny Root100d7292013-06-25 12:00:34 -0700269 this.mNpnProtocols = toLengthPrefixedList(npnProtocols);
270 }
271
272 /**
273 * Sets the
274 * <a href="http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-01">
275 * Application Layer Protocol Negotiation (ALPN)</a> protocols that this peer
276 * is interested in.
277 *
278 * <p>For servers this is the sequence of protocols to advertise as
279 * supported, in order of preference. This list is sent unencrypted to
280 * all clients that support ALPN.
281 *
282 * <p>For clients this is a list of supported protocols to match against the
283 * server's list. If there is no protocol supported by both client and
284 * server then the first protocol in the client's list will be selected.
285 * The order of the client's protocols is otherwise insignificant.
286 *
287 * @param protocols a non-empty list of protocol byte arrays. All arrays
288 * must be non-empty and of length less than 256.
289 * @hide
290 */
291 public void setAlpnProtocols(byte[][] protocols) {
292 this.mAlpnProtocols = toLengthPrefixedList(protocols);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400293 }
294
295 /**
296 * Returns an array containing the concatenation of length-prefixed byte
297 * strings.
298 */
Kenny Root100d7292013-06-25 12:00:34 -0700299 static byte[] toLengthPrefixedList(byte[]... items) {
300 if (items.length == 0) {
301 throw new IllegalArgumentException("items.length == 0");
Jesse Wilson2108ead2012-05-17 13:46:17 -0400302 }
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400303 int totalLength = 0;
Kenny Root100d7292013-06-25 12:00:34 -0700304 for (byte[] s : items) {
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400305 if (s.length == 0 || s.length > 255) {
306 throw new IllegalArgumentException("s.length == 0 || s.length > 255: " + s.length);
307 }
308 totalLength += 1 + s.length;
309 }
310 byte[] result = new byte[totalLength];
311 int pos = 0;
Kenny Root100d7292013-06-25 12:00:34 -0700312 for (byte[] s : items) {
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400313 result[pos++] = (byte) s.length;
314 for (byte b : s) {
315 result[pos++] = b;
316 }
317 }
318 return result;
319 }
320
321 /**
322 * Returns the <a href="http://technotes.googlecode.com/git/nextprotoneg.html">Next
323 * Protocol Negotiation (NPN)</a> protocol selected by client and server, or
324 * null if no protocol was negotiated.
325 *
326 * @param socket a socket created by this factory.
Narayan Kamathb4db9622012-09-17 17:59:00 +0100327 * @throws IllegalArgumentException if the socket was not created by this factory.
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400328 */
329 public byte[] getNpnSelectedProtocol(Socket socket) {
Narayan Kamathb4db9622012-09-17 17:59:00 +0100330 return castToOpenSSLSocket(socket).getNpnSelectedProtocol();
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400331 }
332
333 /**
Kenny Root100d7292013-06-25 12:00:34 -0700334 * Returns the
335 * <a href="http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-01">Application
336 * Layer Protocol Negotiation (ALPN)</a> protocol selected by client and server, or null
337 * if no protocol was negotiated.
338 *
339 * @param socket a socket created by this factory.
340 * @throws IllegalArgumentException if the socket was not created by this factory.
341 * @hide
342 */
343 public byte[] getAlpnSelectedProtocol(Socket socket) {
344 return castToOpenSSLSocket(socket).getAlpnSelectedProtocol();
345 }
346
347 /**
Ben Komalo1b528062011-05-03 09:40:15 -0700348 * Sets the {@link KeyManager}s to be used for connections made by this factory.
Ben Komalo1b528062011-05-03 09:40:15 -0700349 */
350 public void setKeyManagers(KeyManager[] keyManagers) {
351 mKeyManagers = keyManagers;
352
353 // Clear out any existing cached factories since configurations have changed.
354 mSecureFactory = null;
355 mInsecureFactory = null;
356 }
357
Narayan Kamathb4db9622012-09-17 17:59:00 +0100358 /**
Alex Klyubinac5eb032013-03-12 10:30:59 -0700359 * Sets the private key to be used for TLS Channel ID by connections made by this
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800360 * factory.
361 *
362 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables
363 * TLS Channel ID). The private key has to be an Elliptic Curve (EC) key based on the
364 * NIST P-256 curve (aka SECG secp256r1 or ANSI X9.62 prime256v1).
365 *
366 * @hide
367 */
Alex Klyubinac5eb032013-03-12 10:30:59 -0700368 public void setChannelIdPrivateKey(PrivateKey privateKey) {
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800369 mChannelIdPrivateKey = privateKey;
370 }
371
372 /**
Narayan Kamathb4db9622012-09-17 17:59:00 +0100373 * Enables <a href="http://tools.ietf.org/html/rfc5077#section-3.2">session ticket</a>
374 * support on the given socket.
375 *
376 * @param socket a socket created by this factory
377 * @param useSessionTickets {@code true} to enable session ticket support on this socket.
378 * @throws IllegalArgumentException if the socket was not created by this factory.
379 */
380 public void setUseSessionTickets(Socket socket, boolean useSessionTickets) {
381 castToOpenSSLSocket(socket).setUseSessionTickets(useSessionTickets);
382 }
383
384 /**
385 * Turns on <a href="http://tools.ietf.org/html/rfc6066#section-3">Server
386 * Name Indication (SNI)</a> on a given socket.
387 *
388 * @param socket a socket created by this factory.
389 * @param hostName the desired SNI hostname, null to disable.
390 * @throws IllegalArgumentException if the socket was not created by this factory.
391 */
392 public void setHostname(Socket socket, String hostName) {
393 castToOpenSSLSocket(socket).setHostname(hostName);
394 }
395
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700396 /**
397 * Sets this socket's SO_SNDTIMEO write timeout in milliseconds.
398 * Use 0 for no timeout.
399 * To take effect, this option must be set before the blocking method was called.
400 *
401 * @param socket a socket created by this factory.
Brian Carlstrom992f2382012-09-26 14:33:47 -0700402 * @param timeout the desired write timeout in milliseconds.
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700403 * @throws IllegalArgumentException if the socket was not created by this factory.
Brian Carlstrom992f2382012-09-26 14:33:47 -0700404 *
405 * @hide
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700406 */
407 public void setSoWriteTimeout(Socket socket, int writeTimeoutMilliseconds)
408 throws SocketException {
409 castToOpenSSLSocket(socket).setSoWriteTimeout(writeTimeoutMilliseconds);
410 }
411
Narayan Kamathb4db9622012-09-17 17:59:00 +0100412 private static OpenSSLSocketImpl castToOpenSSLSocket(Socket socket) {
413 if (!(socket instanceof OpenSSLSocketImpl)) {
414 throw new IllegalArgumentException("Socket not created by this factory: "
415 + socket);
416 }
417
418 return (OpenSSLSocketImpl) socket;
419 }
Ben Komalo1b528062011-05-03 09:40:15 -0700420
421 /**
Dan Egnor7fc93c32010-06-29 17:51:28 -0700422 * {@inheritDoc}
423 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700424 * <p>This method verifies the peer's certificate hostname after connecting
425 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700426 */
Dan Egnor60586f22010-02-08 21:56:38 -0800427 @Override
428 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException {
429 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400430 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700431 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800432 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800433 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700434 if (mSecure) {
435 verifyHostname(s, host);
436 }
Dan Egnor60586f22010-02-08 21:56:38 -0800437 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 }
439
Dan Egnor7fc93c32010-06-29 17:51:28 -0700440 /**
441 * Creates a new socket which is not connected to any remote host.
442 * You must use {@link Socket#connect} to connect the socket.
443 *
444 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
445 * with this method. You MUST verify the server's identity after connecting
446 * the socket to avoid man-in-the-middle attacks.</p>
447 */
Dan Egnor60586f22010-02-08 21:56:38 -0800448 @Override
449 public Socket createSocket() throws IOException {
450 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400451 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700452 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800453 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800454 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800455 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 }
457
Dan Egnor7fc93c32010-06-29 17:51:28 -0700458 /**
459 * {@inheritDoc}
460 *
461 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
462 * with this method. You MUST verify the server's identity after connecting
463 * the socket to avoid man-in-the-middle attacks.</p>
464 */
Dan Egnor60586f22010-02-08 21:56:38 -0800465 @Override
466 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort)
467 throws IOException {
468 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
469 addr, port, localAddr, localPort);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400470 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700471 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800472 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800473 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800474 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 }
476
Dan Egnor7fc93c32010-06-29 17:51:28 -0700477 /**
478 * {@inheritDoc}
479 *
480 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
481 * with this method. You MUST verify the server's identity after connecting
482 * the socket to avoid man-in-the-middle attacks.</p>
483 */
Dan Egnor60586f22010-02-08 21:56:38 -0800484 @Override
485 public Socket createSocket(InetAddress addr, int port) throws IOException {
486 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(addr, port);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400487 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700488 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800489 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800490 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800491 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 }
493
Dan Egnor7fc93c32010-06-29 17:51:28 -0700494 /**
495 * {@inheritDoc}
496 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700497 * <p>This method verifies the peer's certificate hostname after connecting
498 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700499 */
Dan Egnor60586f22010-02-08 21:56:38 -0800500 @Override
501 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort)
502 throws IOException {
503 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
504 host, port, localAddr, localPort);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400505 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700506 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800507 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800508 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700509 if (mSecure) {
510 verifyHostname(s, host);
511 }
Dan Egnor60586f22010-02-08 21:56:38 -0800512 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513 }
514
Dan Egnor7fc93c32010-06-29 17:51:28 -0700515 /**
516 * {@inheritDoc}
517 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700518 * <p>This method verifies the peer's certificate hostname after connecting
519 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700520 */
Dan Egnor60586f22010-02-08 21:56:38 -0800521 @Override
522 public Socket createSocket(String host, int port) throws IOException {
523 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(host, port);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400524 s.setNpnProtocols(mNpnProtocols);
Kenny Root100d7292013-06-25 12:00:34 -0700525 s.setAlpnProtocols(mAlpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800526 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800527 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700528 if (mSecure) {
529 verifyHostname(s, host);
530 }
Dan Egnor60586f22010-02-08 21:56:38 -0800531 return s;
532 }
533
534 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 public String[] getDefaultCipherSuites() {
Alex Klyubin019118a2013-10-28 16:16:38 -0700536 return getDelegate().getDefaultCipherSuites();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800537 }
538
Dan Egnor60586f22010-02-08 21:56:38 -0800539 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 public String[] getSupportedCipherSuites() {
Dan Egnor60586f22010-02-08 21:56:38 -0800541 return getDelegate().getSupportedCipherSuites();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800542 }
543}