From d35fd16a21e2aa942a0a815762f52bf473cd5eff Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Mon, 21 Jul 2014 18:42:44 +0200 Subject: [PATCH] Add support for HostnameVerifier --- .../smack/ConnectionConfiguration.java | 26 +++++++++++++++++++ .../smack/SmackConfiguration.java | 23 ++++++++++++++++ .../smack/tcp/XMPPTCPConnection.java | 6 +++++ 3 files changed, 55 insertions(+) diff --git a/smack-core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java b/smack-core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java index 0cf1be4c0..f51907ecd 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java @@ -24,6 +24,7 @@ import org.jivesoftware.smack.util.dns.HostAddress; import org.jxmpp.util.XmppStringUtils; import javax.net.SocketFactory; +import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLContext; import javax.security.auth.callback.CallbackHandler; @@ -91,6 +92,8 @@ public class ConnectionConfiguration implements Cloneable { */ private String[] enabledSSLCiphers; + private HostnameVerifier hostnameVerifier; + /** * Permanent store for the Roster, needed for roster versioning */ @@ -358,6 +361,29 @@ public class ConnectionConfiguration implements Cloneable { return enabledSSLCiphers; } + /** + * Set the HostnameVerifier used to verify the hostname of SSLSockets used by XMPP connections + * created with this ConnectionConfiguration. + * + * @param verifier + */ + public void setHostnameVerifier(HostnameVerifier verifier) { + hostnameVerifier = verifier; + } + + /** + * Returns the configured HostnameVerifier of this ConnectionConfiguration or the Smack default + * HostnameVerifier configured with + * {@link SmackConfiguration#setDefaultHostnameVerifier(HostnameVerifier)}. + * + * @return a configured HostnameVerifier or null + */ + public HostnameVerifier getHostnameVerifier() { + if (hostnameVerifier != null) + return hostnameVerifier; + return SmackConfiguration.getDefaultHostnameVerifier(); + } + /** * Returns true if the connection is going to use stream compression. Stream compression * will be requested after TLS was established (if TLS was enabled) and only if the server diff --git a/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java b/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java index 374c1c8b5..11f225b04 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java @@ -31,6 +31,8 @@ import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; +import javax.net.ssl.HostnameVerifier; + import org.jivesoftware.smack.compression.Java7ZlibInputOutputStream; import org.jivesoftware.smack.compression.XMPPInputOutputStream; import org.jivesoftware.smack.initializer.SmackInitializer; @@ -178,6 +180,8 @@ public final class SmackConfiguration { */ private static ParsingExceptionCallback defaultCallback = new ExceptionThrowingCallback(); + private static HostnameVerifier defaultHostnameVerififer; + /** * Returns the Smack version information, eg "1.3.0". * @@ -319,6 +323,25 @@ public final class SmackConfiguration { return res; } + /** + * Set the default HostnameVerifier that will be used by XMPP connections to verify the hostname + * of a TLS certificate. XMPP connections are able to overwrite this settings by supplying a + * HostnameVerifier in their ConnecitonConfiguration with + * {@link ConnectionConfiguration#setHostnameVerifier(HostnameVerifier)}. + */ + public static void setDefaultHostnameVerifier(HostnameVerifier verifier) { + defaultHostnameVerififer = verifier; + } + + /** + * Get the default HostnameVerifier + * + * @return the default HostnameVerifier or null if none was set + */ + static HostnameVerifier getDefaultHostnameVerifier() { + return defaultHostnameVerififer; + } + public static void processConfigFile(InputStream cfgFileStream, Collection exceptions) throws Exception { processConfigFile(cfgFileStream, exceptions, SmackConfiguration.class.getClassLoader()); diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java index 4a0201d4a..c2b17f30e 100644 --- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java +++ b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java @@ -46,6 +46,7 @@ import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; import org.xmlpull.v1.XmlPullParserFactory; +import javax.net.ssl.HostnameVerifier; import javax.net.ssl.KeyManager; import javax.net.ssl.KeyManagerFactory; import javax.net.ssl.SSLContext; @@ -674,6 +675,11 @@ public class XMPPTCPConnection extends AbstractXMPPConnection { // Proceed to do the handshake sslSocket.startHandshake(); + final HostnameVerifier verifier = getConfiguration().getHostnameVerifier(); + if (verifier != null && !verifier.verify(getServiceName(), sslSocket.getSession())) { + throw new CertificateException("Hostname verification of certificate failed. Certificate does not authenticate " + getServiceName()); + } + //if (((SSLSocket) socket).getWantClientAuth()) { // System.err.println("XMPPConnection wants client auth"); //}