blob: 37f04d3087738a619aa443024097ea1a9da690ee [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 Egnor7fc93c32010-06-29 17:51:28 -070084 private static final HostnameVerifier HOSTNAME_VERIFIER =
85 HttpsURLConnection.getDefaultHostnameVerifier();
86
Dan Egnor60586f22010-02-08 21:56:38 -080087 private SSLSocketFactory mInsecureFactory = null;
88 private SSLSocketFactory mSecureFactory = null;
Ben Komalo1b528062011-05-03 09:40:15 -070089 private TrustManager[] mTrustManagers = null;
90 private KeyManager[] mKeyManagers = null;
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -040091 private byte[] mNpnProtocols = null;
Alex Klyubinac5eb032013-03-12 10:30:59 -070092 private PrivateKey mChannelIdPrivateKey = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093
Dan Egnor60586f22010-02-08 21:56:38 -080094 private final int mHandshakeTimeoutMillis;
95 private final SSLClientSessionCache mSessionCache;
Dan Egnor9d4b5752010-02-13 20:34:51 -080096 private final boolean mSecure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
Dan Egnor60586f22010-02-08 21:56:38 -080098 /** @deprecated Use {@link #getDefault(int)} instead. */
Jesse Wilson28c74252010-11-04 14:09:18 -070099 @Deprecated
Dan Egnor60586f22010-02-08 21:56:38 -0800100 public SSLCertificateSocketFactory(int handshakeTimeoutMillis) {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800101 this(handshakeTimeoutMillis, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 }
103
Dan Egnor9d4b5752010-02-13 20:34:51 -0800104 private SSLCertificateSocketFactory(
Brian Carlstrom992f2382012-09-26 14:33:47 -0700105 int handshakeTimeoutMillis, SSLSessionCache cache, boolean secure) {
Dan Egnor60586f22010-02-08 21:56:38 -0800106 mHandshakeTimeoutMillis = handshakeTimeoutMillis;
107 mSessionCache = cache == null ? null : cache.mSessionCache;
Dan Egnor9d4b5752010-02-13 20:34:51 -0800108 mSecure = secure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 }
110
111 /**
Dan Egnor9d4b5752010-02-13 20:34:51 -0800112 * Returns a new socket factory instance with an optional handshake timeout.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 *
Dan Egnor60586f22010-02-08 21:56:38 -0800114 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
115 * for none. The socket timeout is reset to 0 after the handshake.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700116 * @return a new SSLSocketFactory with the specified parameters
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 */
Dan Egnor60586f22010-02-08 21:56:38 -0800118 public static SocketFactory getDefault(int handshakeTimeoutMillis) {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800119 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 }
121
122 /**
Dan Egnor9d4b5752010-02-13 20:34:51 -0800123 * Returns a new socket factory instance with an optional handshake timeout
124 * and SSL session cache.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 *
Dan Egnor60586f22010-02-08 21:56:38 -0800126 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
127 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700128 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700129 * @return a new SSLSocketFactory with the specified parameters
Dan Egnor60586f22010-02-08 21:56:38 -0800130 */
Dan Egnor9d4b5752010-02-13 20:34:51 -0800131 public static SSLSocketFactory getDefault(int handshakeTimeoutMillis, SSLSessionCache cache) {
132 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, true);
133 }
134
135 /**
136 * Returns a new instance of a socket factory with all SSL security checks
137 * disabled, using an optional handshake timeout and SSL session cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700138 *
139 * <p class="caution"><b>Warning:</b> Sockets created using this factory
140 * are vulnerable to man-in-the-middle attacks!</p>
Dan Egnor9d4b5752010-02-13 20:34:51 -0800141 *
142 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
143 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700144 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor7fc93c32010-06-29 17:51:28 -0700145 * @return an insecure SSLSocketFactory with the specified parameters
Dan Egnor9d4b5752010-02-13 20:34:51 -0800146 */
147 public static SSLSocketFactory getInsecure(int handshakeTimeoutMillis, SSLSessionCache cache) {
148 return new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, false);
Dan Egnor60586f22010-02-08 21:56:38 -0800149 }
150
151 /**
152 * Returns a socket factory (also named SSLSocketFactory, but in a different
153 * namespace) for use with the Apache HTTP stack.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 *
Dan Egnor60586f22010-02-08 21:56:38 -0800155 * @param handshakeTimeoutMillis to use for SSL connection handshake, or 0
156 * for none. The socket timeout is reset to 0 after the handshake.
Jesse Wilsonff556992011-03-23 16:43:39 -0700157 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
Dan Egnor60586f22010-02-08 21:56:38 -0800158 * @return a new SocketFactory with the specified parameters
159 */
160 public static org.apache.http.conn.ssl.SSLSocketFactory getHttpSocketFactory(
Jesse Wilsonff556992011-03-23 16:43:39 -0700161 int handshakeTimeoutMillis, SSLSessionCache cache) {
Dan Egnor60586f22010-02-08 21:56:38 -0800162 return new org.apache.http.conn.ssl.SSLSocketFactory(
Dan Egnor9d4b5752010-02-13 20:34:51 -0800163 new SSLCertificateSocketFactory(handshakeTimeoutMillis, cache, true));
Dan Egnor60586f22010-02-08 21:56:38 -0800164 }
165
Dan Egnor7fc93c32010-06-29 17:51:28 -0700166 /**
167 * Verify the hostname of the certificate used by the other end of a
168 * connected socket. You MUST call this if you did not supply a hostname
169 * to {@link #createSocket()}. It is harmless to call this method
170 * redundantly if the hostname has already been verified.
171 *
172 * <p>Wildcard certificates are allowed to verify any matching hostname,
173 * so "foo.bar.example.com" is verified if the peer has a certificate
174 * for "*.example.com".
175 *
176 * @param socket An SSL socket which has been connected to a server
177 * @param hostname The expected hostname of the remote server
178 * @throws IOException if something goes wrong handshaking with the server
179 * @throws SSLPeerUnverifiedException if the server cannot prove its identity
180 *
181 * @hide
182 */
183 public static void verifyHostname(Socket socket, String hostname) throws IOException {
184 if (!(socket instanceof SSLSocket)) {
185 throw new IllegalArgumentException("Attempt to verify non-SSL socket");
186 }
187
188 if (!isSslCheckRelaxed()) {
189 // The code at the start of OpenSSLSocketImpl.startHandshake()
190 // ensures that the call is idempotent, so we can safely call it.
191 SSLSocket ssl = (SSLSocket) socket;
192 ssl.startHandshake();
193
194 SSLSession session = ssl.getSession();
195 if (session == null) {
196 throw new SSLException("Cannot verify SSL socket without session");
197 }
198 if (!HOSTNAME_VERIFIER.verify(hostname, session)) {
199 throw new SSLPeerUnverifiedException("Cannot verify hostname: " + hostname);
200 }
201 }
202 }
203
Ben Komalo1b528062011-05-03 09:40:15 -0700204 private SSLSocketFactory makeSocketFactory(
205 KeyManager[] keyManagers, TrustManager[] trustManagers) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 try {
Brian Carlstrom3c7c3512010-08-04 15:44:39 -0700207 OpenSSLContextImpl sslContext = new OpenSSLContextImpl();
Ben Komalo1b528062011-05-03 09:40:15 -0700208 sslContext.engineInit(keyManagers, trustManagers, null);
Brian Carlstrom2c42c8f2010-09-14 00:11:14 -0700209 sslContext.engineGetClientSessionContext().setPersistentCache(mSessionCache);
Dan Egnor60586f22010-02-08 21:56:38 -0800210 return sslContext.engineGetSocketFactory();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 } catch (KeyManagementException e) {
Dan Egnor60586f22010-02-08 21:56:38 -0800212 Log.wtf(TAG, e);
213 return (SSLSocketFactory) SSLSocketFactory.getDefault(); // Fallback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 }
215 }
216
Dan Egnor7fc93c32010-06-29 17:51:28 -0700217 private static boolean isSslCheckRelaxed() {
218 return "1".equals(SystemProperties.get("ro.debuggable")) &&
219 "yes".equals(SystemProperties.get("socket.relaxsslcheck"));
220 }
221
Dan Egnor60586f22010-02-08 21:56:38 -0800222 private synchronized SSLSocketFactory getDelegate() {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800223 // Relax the SSL check if instructed (for this factory, or systemwide)
Dan Egnor7fc93c32010-06-29 17:51:28 -0700224 if (!mSecure || isSslCheckRelaxed()) {
Dan Egnor60586f22010-02-08 21:56:38 -0800225 if (mInsecureFactory == null) {
Dan Egnor9d4b5752010-02-13 20:34:51 -0800226 if (mSecure) {
227 Log.w(TAG, "*** BYPASSING SSL SECURITY CHECKS (socket.relaxsslcheck=yes) ***");
228 } else {
229 Log.w(TAG, "Bypassing SSL security checks at caller's request");
230 }
Ben Komalo1b528062011-05-03 09:40:15 -0700231 mInsecureFactory = makeSocketFactory(mKeyManagers, INSECURE_TRUST_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 }
Dan Egnor60586f22010-02-08 21:56:38 -0800233 return mInsecureFactory;
234 } else {
235 if (mSecureFactory == null) {
Ben Komalo1b528062011-05-03 09:40:15 -0700236 mSecureFactory = makeSocketFactory(mKeyManagers, mTrustManagers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 }
Dan Egnor60586f22010-02-08 21:56:38 -0800238 return mSecureFactory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 }
240 }
241
Dan Egnor7fc93c32010-06-29 17:51:28 -0700242 /**
Ben Komalo1b528062011-05-03 09:40:15 -0700243 * Sets the {@link TrustManager}s to be used for connections made by this factory.
Ben Komalo1b528062011-05-03 09:40:15 -0700244 */
245 public void setTrustManagers(TrustManager[] trustManager) {
246 mTrustManagers = trustManager;
247
248 // Clear out all cached secure factories since configurations have changed.
249 mSecureFactory = null;
250 // Note - insecure factories only ever use the INSECURE_TRUST_MANAGER so they need not
251 // be cleared out here.
252 }
253
254 /**
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400255 * Sets the <a href="http://technotes.googlecode.com/git/nextprotoneg.html">Next
256 * Protocol Negotiation (NPN)</a> protocols that this peer is interested in.
257 *
258 * <p>For servers this is the sequence of protocols to advertise as
259 * supported, in order of preference. This list is sent unencrypted to
260 * all clients that support NPN.
261 *
262 * <p>For clients this is a list of supported protocols to match against the
263 * server's list. If there is no protocol supported by both client and
264 * server then the first protocol in the client's list will be selected.
265 * The order of the client's protocols is otherwise insignificant.
266 *
Jesse Wilson2108ead2012-05-17 13:46:17 -0400267 * @param npnProtocols a non-empty list of protocol byte arrays. All arrays
268 * must be non-empty and of length less than 256.
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400269 */
270 public void setNpnProtocols(byte[][] npnProtocols) {
271 this.mNpnProtocols = toNpnProtocolsList(npnProtocols);
272 }
273
274 /**
275 * Returns an array containing the concatenation of length-prefixed byte
276 * strings.
277 */
278 static byte[] toNpnProtocolsList(byte[]... npnProtocols) {
Jesse Wilson2108ead2012-05-17 13:46:17 -0400279 if (npnProtocols.length == 0) {
280 throw new IllegalArgumentException("npnProtocols.length == 0");
281 }
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400282 int totalLength = 0;
283 for (byte[] s : npnProtocols) {
284 if (s.length == 0 || s.length > 255) {
285 throw new IllegalArgumentException("s.length == 0 || s.length > 255: " + s.length);
286 }
287 totalLength += 1 + s.length;
288 }
289 byte[] result = new byte[totalLength];
290 int pos = 0;
291 for (byte[] s : npnProtocols) {
292 result[pos++] = (byte) s.length;
293 for (byte b : s) {
294 result[pos++] = b;
295 }
296 }
297 return result;
298 }
299
300 /**
301 * Returns the <a href="http://technotes.googlecode.com/git/nextprotoneg.html">Next
302 * Protocol Negotiation (NPN)</a> protocol selected by client and server, or
303 * null if no protocol was negotiated.
304 *
305 * @param socket a socket created by this factory.
Narayan Kamathb4db9622012-09-17 17:59:00 +0100306 * @throws IllegalArgumentException if the socket was not created by this factory.
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400307 */
308 public byte[] getNpnSelectedProtocol(Socket socket) {
Narayan Kamathb4db9622012-09-17 17:59:00 +0100309 return castToOpenSSLSocket(socket).getNpnSelectedProtocol();
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400310 }
311
312 /**
Ben Komalo1b528062011-05-03 09:40:15 -0700313 * Sets the {@link KeyManager}s to be used for connections made by this factory.
Ben Komalo1b528062011-05-03 09:40:15 -0700314 */
315 public void setKeyManagers(KeyManager[] keyManagers) {
316 mKeyManagers = keyManagers;
317
318 // Clear out any existing cached factories since configurations have changed.
319 mSecureFactory = null;
320 mInsecureFactory = null;
321 }
322
Narayan Kamathb4db9622012-09-17 17:59:00 +0100323 /**
Alex Klyubinac5eb032013-03-12 10:30:59 -0700324 * Sets the private key to be used for TLS Channel ID by connections made by this
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800325 * factory.
326 *
327 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables
328 * TLS Channel ID). The private key has to be an Elliptic Curve (EC) key based on the
329 * NIST P-256 curve (aka SECG secp256r1 or ANSI X9.62 prime256v1).
330 *
331 * @hide
332 */
Alex Klyubinac5eb032013-03-12 10:30:59 -0700333 public void setChannelIdPrivateKey(PrivateKey privateKey) {
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800334 mChannelIdPrivateKey = privateKey;
335 }
336
337 /**
Narayan Kamathb4db9622012-09-17 17:59:00 +0100338 * Enables <a href="http://tools.ietf.org/html/rfc5077#section-3.2">session ticket</a>
339 * support on the given socket.
340 *
341 * @param socket a socket created by this factory
342 * @param useSessionTickets {@code true} to enable session ticket support on this socket.
343 * @throws IllegalArgumentException if the socket was not created by this factory.
344 */
345 public void setUseSessionTickets(Socket socket, boolean useSessionTickets) {
346 castToOpenSSLSocket(socket).setUseSessionTickets(useSessionTickets);
347 }
348
349 /**
350 * Turns on <a href="http://tools.ietf.org/html/rfc6066#section-3">Server
351 * Name Indication (SNI)</a> on a given socket.
352 *
353 * @param socket a socket created by this factory.
354 * @param hostName the desired SNI hostname, null to disable.
355 * @throws IllegalArgumentException if the socket was not created by this factory.
356 */
357 public void setHostname(Socket socket, String hostName) {
358 castToOpenSSLSocket(socket).setHostname(hostName);
359 }
360
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700361 /**
362 * Sets this socket's SO_SNDTIMEO write timeout in milliseconds.
363 * Use 0 for no timeout.
364 * To take effect, this option must be set before the blocking method was called.
365 *
366 * @param socket a socket created by this factory.
Brian Carlstrom992f2382012-09-26 14:33:47 -0700367 * @param timeout the desired write timeout in milliseconds.
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700368 * @throws IllegalArgumentException if the socket was not created by this factory.
Brian Carlstrom992f2382012-09-26 14:33:47 -0700369 *
370 * @hide
Brian Carlstrom7ab7a8b2012-09-21 16:33:50 -0700371 */
372 public void setSoWriteTimeout(Socket socket, int writeTimeoutMilliseconds)
373 throws SocketException {
374 castToOpenSSLSocket(socket).setSoWriteTimeout(writeTimeoutMilliseconds);
375 }
376
Narayan Kamathb4db9622012-09-17 17:59:00 +0100377 private static OpenSSLSocketImpl castToOpenSSLSocket(Socket socket) {
378 if (!(socket instanceof OpenSSLSocketImpl)) {
379 throw new IllegalArgumentException("Socket not created by this factory: "
380 + socket);
381 }
382
383 return (OpenSSLSocketImpl) socket;
384 }
Ben Komalo1b528062011-05-03 09:40:15 -0700385
386 /**
Dan Egnor7fc93c32010-06-29 17:51:28 -0700387 * {@inheritDoc}
388 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700389 * <p>This method verifies the peer's certificate hostname after connecting
390 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700391 */
Dan Egnor60586f22010-02-08 21:56:38 -0800392 @Override
393 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException {
394 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400395 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800396 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800397 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700398 if (mSecure) {
399 verifyHostname(s, host);
400 }
Dan Egnor60586f22010-02-08 21:56:38 -0800401 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 }
403
Dan Egnor7fc93c32010-06-29 17:51:28 -0700404 /**
405 * Creates a new socket which is not connected to any remote host.
406 * You must use {@link Socket#connect} to connect the socket.
407 *
408 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
409 * with this method. You MUST verify the server's identity after connecting
410 * the socket to avoid man-in-the-middle attacks.</p>
411 */
Dan Egnor60586f22010-02-08 21:56:38 -0800412 @Override
413 public Socket createSocket() throws IOException {
414 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400415 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800416 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800417 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800418 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 }
420
Dan Egnor7fc93c32010-06-29 17:51:28 -0700421 /**
422 * {@inheritDoc}
423 *
424 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
425 * with this method. You MUST verify the server's identity after connecting
426 * the socket to avoid man-in-the-middle attacks.</p>
427 */
Dan Egnor60586f22010-02-08 21:56:38 -0800428 @Override
429 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort)
430 throws IOException {
431 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
432 addr, port, localAddr, localPort);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400433 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800434 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800435 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800436 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437 }
438
Dan Egnor7fc93c32010-06-29 17:51:28 -0700439 /**
440 * {@inheritDoc}
441 *
442 * <p class="caution"><b>Warning:</b> Hostname verification is not performed
443 * with this method. You MUST verify the server's identity after connecting
444 * the socket to avoid man-in-the-middle attacks.</p>
445 */
Dan Egnor60586f22010-02-08 21:56:38 -0800446 @Override
447 public Socket createSocket(InetAddress addr, int port) throws IOException {
448 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(addr, port);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400449 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800450 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800451 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Dan Egnor60586f22010-02-08 21:56:38 -0800452 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 }
454
Dan Egnor7fc93c32010-06-29 17:51:28 -0700455 /**
456 * {@inheritDoc}
457 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700458 * <p>This method verifies the peer's certificate hostname after connecting
459 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700460 */
Dan Egnor60586f22010-02-08 21:56:38 -0800461 @Override
462 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort)
463 throws IOException {
464 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
465 host, port, localAddr, localPort);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400466 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800467 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800468 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700469 if (mSecure) {
470 verifyHostname(s, host);
471 }
Dan Egnor60586f22010-02-08 21:56:38 -0800472 return s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 }
474
Dan Egnor7fc93c32010-06-29 17:51:28 -0700475 /**
476 * {@inheritDoc}
477 *
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700478 * <p>This method verifies the peer's certificate hostname after connecting
479 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
Dan Egnor7fc93c32010-06-29 17:51:28 -0700480 */
Dan Egnor60586f22010-02-08 21:56:38 -0800481 @Override
482 public Socket createSocket(String host, int port) throws IOException {
483 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(host, port);
Jesse Wilsonf5fb5e82012-03-23 15:55:03 -0400484 s.setNpnProtocols(mNpnProtocols);
Dan Egnor60586f22010-02-08 21:56:38 -0800485 s.setHandshakeTimeout(mHandshakeTimeoutMillis);
Alex Klyubin4ef6c9b2013-01-18 12:50:39 -0800486 s.setChannelIdPrivateKey(mChannelIdPrivateKey);
Andrew Stadlerdf27c0c2010-07-12 15:31:40 -0700487 if (mSecure) {
488 verifyHostname(s, host);
489 }
Dan Egnor60586f22010-02-08 21:56:38 -0800490 return s;
491 }
492
493 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 public String[] getDefaultCipherSuites() {
Dan Egnor60586f22010-02-08 21:56:38 -0800495 return getDelegate().getSupportedCipherSuites();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496 }
497
Dan Egnor60586f22010-02-08 21:56:38 -0800498 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 public String[] getSupportedCipherSuites() {
Dan Egnor60586f22010-02-08 21:56:38 -0800500 return getDelegate().getSupportedCipherSuites();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 }
502}