2003-01-13 17:58:47 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* Copyright 2003-2004 Jive Software.
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2003-01-13 17:58:47 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
package org.jivesoftware.smack;
|
|
|
|
|
2003-02-04 18:11:17 +01:00
|
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
import com.sun.net.ssl.*;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2003-01-13 17:58:47 +01:00
|
|
|
import java.net.*;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import java.security.KeyManagementException;
|
2003-02-04 18:11:17 +01:00
|
|
|
import javax.net.SocketFactory;
|
|
|
|
import com.sun.net.ssl.X509TrustManager;
|
|
|
|
import java.security.cert.X509Certificate;
|
|
|
|
import java.security.cert.CertificateExpiredException;
|
|
|
|
import java.security.cert.CertificateNotYetValidException;
|
|
|
|
|
2003-01-13 17:58:47 +01:00
|
|
|
/**
|
2003-04-18 06:38:27 +02:00
|
|
|
* Creates an SSL connection to a XMPP server.
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
|
|
|
* @author Matt Tucker
|
|
|
|
*/
|
|
|
|
public class SSLXMPPConnection extends XMPPConnection {
|
|
|
|
|
2004-07-06 00:22:02 +02:00
|
|
|
private static SocketFactory socketFactory = new DummySSLSocketFactory();
|
|
|
|
|
2003-08-19 16:43:01 +02:00
|
|
|
/**
|
|
|
|
* Creates a new SSL connection to the specified host on the default
|
|
|
|
* SSL port (5223).
|
|
|
|
*
|
|
|
|
* @param host the XMPP host.
|
2003-08-19 18:32:13 +02:00
|
|
|
* @throws XMPPException if an error occurs while trying to establish the connection.
|
|
|
|
* Two possible errors can occur which will be wrapped by an XMPPException --
|
|
|
|
* UnknownHostException (XMPP error code 504), and IOException (XMPP error code
|
|
|
|
* 502). The error codes and wrapped exceptions can be used to present more
|
|
|
|
* appropiate error messages to end-users.
|
2003-08-19 16:43:01 +02:00
|
|
|
*/
|
2003-01-13 17:58:47 +01:00
|
|
|
public SSLXMPPConnection(String host) throws XMPPException {
|
|
|
|
this(host, 5223);
|
|
|
|
}
|
|
|
|
|
2003-08-19 16:43:01 +02:00
|
|
|
/**
|
|
|
|
* Creates a new SSL connection to the specified host on the specified port.
|
|
|
|
*
|
|
|
|
* @param host the XMPP host.
|
|
|
|
* @param port the port to use for the connection (default XMPP SSL port is 5223).
|
2003-08-19 18:32:13 +02:00
|
|
|
* @throws XMPPException if an error occurs while trying to establish the connection.
|
|
|
|
* Two possible errors can occur which will be wrapped by an XMPPException --
|
|
|
|
* UnknownHostException (XMPP error code 504), and IOException (XMPP error code
|
|
|
|
* 502). The error codes and wrapped exceptions can be used to present more
|
|
|
|
* appropiate error messages to end-users.
|
2003-08-19 16:43:01 +02:00
|
|
|
*/
|
2003-01-13 17:58:47 +01:00
|
|
|
public SSLXMPPConnection(String host, int port) throws XMPPException {
|
2004-07-06 00:22:02 +02:00
|
|
|
super(host, port, socketFactory);
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
|
2003-09-18 22:39:14 +02:00
|
|
|
public boolean isSecureConnection() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-01-13 17:58:47 +01:00
|
|
|
/**
|
|
|
|
* An SSL socket factory that will let any certifacte past, even if it's expired or
|
|
|
|
* not singed by a root CA.
|
|
|
|
*/
|
|
|
|
private static class DummySSLSocketFactory extends SSLSocketFactory {
|
|
|
|
|
|
|
|
private SSLSocketFactory factory;
|
|
|
|
|
|
|
|
public DummySSLSocketFactory() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
SSLContext sslcontent = SSLContext.getInstance("TLS");
|
|
|
|
sslcontent.init(null, // KeyManager not required
|
2003-02-04 18:11:17 +01:00
|
|
|
new TrustManager[] { new DummyTrustManager() },
|
|
|
|
new java.security.SecureRandom());
|
2003-01-13 17:58:47 +01:00
|
|
|
factory = sslcontent.getSocketFactory();
|
|
|
|
}
|
|
|
|
catch (NoSuchAlgorithmException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
catch (KeyManagementException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SocketFactory getDefault() {
|
|
|
|
return new DummySSLSocketFactory();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket createSocket(Socket socket, String s, int i, boolean flag)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
return factory.createSocket(socket, s, i, flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket createSocket(InetAddress inaddr, int i, InetAddress inaddr2, int j)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
return factory.createSocket(inaddr, i, inaddr2, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket createSocket(InetAddress inaddr, int i) throws IOException {
|
|
|
|
return factory.createSocket(inaddr, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket createSocket(String s, int i, InetAddress inaddr, int j) throws IOException {
|
|
|
|
return factory.createSocket(s, i, inaddr, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket createSocket(String s, int i) throws IOException {
|
|
|
|
return factory.createSocket(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String[] getDefaultCipherSuites() {
|
|
|
|
return factory.getSupportedCipherSuites();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String[] getSupportedCipherSuites() {
|
|
|
|
return factory.getSupportedCipherSuites();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trust manager which accepts certificates without any validation
|
|
|
|
* except date validation.
|
|
|
|
*/
|
|
|
|
private static class DummyTrustManager implements X509TrustManager {
|
|
|
|
|
2003-01-28 06:49:25 +01:00
|
|
|
public boolean isClientTrusted(X509Certificate[] cert) {
|
|
|
|
return true;
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
|
2003-01-28 06:49:25 +01:00
|
|
|
public boolean isServerTrusted(X509Certificate[] cert) {
|
|
|
|
try {
|
|
|
|
cert[0].checkValidity();
|
|
|
|
return true;
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
catch (CertificateExpiredException e) {
|
2003-01-28 06:49:25 +01:00
|
|
|
return false;
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
catch (CertificateNotYetValidException e) {
|
2003-01-28 06:49:25 +01:00
|
|
|
return false;
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public X509Certificate[] getAcceptedIssuers() {
|
|
|
|
return new X509Certificate[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|