Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c531c8056ba1b900ef870594c3fe2705d667030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
* Copyright (c) 2015 University of York. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*   Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.provider.filetransfer.httpclient4;

import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.InetSocketAddress;
import java.net.Socket;
import javax.net.ssl.SSLSocket;
import org.apache.http.HttpHost;
import org.apache.http.conn.ClientConnectionManager;
import org.apache.http.conn.ConnectTimeoutException;
import org.apache.http.conn.scheme.PlainSocketFactory;
import org.apache.http.conn.scheme.Scheme;
import org.apache.http.conn.scheme.SchemeRegistry;
import org.apache.http.conn.ssl.SSLContexts;
import org.apache.http.conn.ssl.SSLSocketFactory;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.conn.BasicClientConnectionManager;
import org.apache.http.impl.conn.SingleClientConnManager;
import org.apache.http.protocol.HttpContext;

/**
 * @since 1.1
 */
final class SNIAwareHttpClient extends DefaultHttpClient {

	public SNIAwareHttpClient() {
		// default constructor
	}

	public SNIAwareHttpClient(SingleClientConnManager singleClientConnManager) {
		super(singleClientConnManager);
	}

	@Override
	protected ClientConnectionManager createClientConnectionManager() {
		SSLSocketFactory factory = new SSLSocketFactory(SSLContexts.createSystemDefault(), SSLSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER) {
			@Override
			public Socket connectSocket(int connectTimeout, Socket socket, HttpHost host, InetSocketAddress remoteAddress, InetSocketAddress localAddress, HttpContext context) throws IOException, ConnectTimeoutException {

				// This is to work around HttpClient bug as described
				// in description and comments here:  
				// https://bugs.eclipse.org/bugs/show_bug.cgi?id=478655
				if (socket instanceof SSLSocket) {
					try {
						final Method mSetHost = socket.getClass().getMethod("setHost", String.class);
						mSetHost.setAccessible(true);
						mSetHost.invoke(socket, host.getHostName());
					} catch (NoSuchMethodException ex) {
					} catch (IllegalAccessException ex) {
					} catch (InvocationTargetException ex) {
					}
				}
				return super.connectSocket(connectTimeout, socket, host, remoteAddress, localAddress, context);
			}
		};

		final SchemeRegistry registry = new SchemeRegistry();
		registry.register(new Scheme("http", 80, PlainSocketFactory.getSocketFactory()));
		registry.register(new Scheme("https", 443, factory));

		return new BasicClientConnectionManager(registry);
	}
}

Back to the top