/vt-ldap/tags/vt-ldap-3.3.1/src/main/java/edu/vt/middleware/ldap/ssl/AbstractTLSSocketFactory.java

http://vt-middleware.googlecode.com/ · Java · 329 lines · 141 code · 36 blank · 152 comment · 20 complexity · 89c75a68eea2a203c9ed011234e294ba MD5 · raw file

  1. /*
  2. $Id$
  3. Copyright (C) 2003-2010 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision$
  9. Updated: $Date$
  10. */
  11. package edu.vt.middleware.ldap.ssl;
  12. import java.io.IOException;
  13. import java.net.InetAddress;
  14. import java.net.Socket;
  15. import java.security.GeneralSecurityException;
  16. import javax.net.ssl.SSLSocket;
  17. import javax.net.ssl.SSLSocketFactory;
  18. /**
  19. * Provides common implementation for <code>TLSSocketFactory</code>.
  20. *
  21. * @author Middleware Services
  22. * @version $Revision: 1106 $ $Date: 2010-01-29 23:34:13 -0500 (Fri, 29 Jan 2010) $
  23. */
  24. public abstract class AbstractTLSSocketFactory extends SSLSocketFactory
  25. {
  26. /** Default SSL protocol, value is {@value}. */
  27. public static final String DEFAULT_PROTOCOL = "TLS";
  28. /** SSLSocketFactory used for creating SSL sockets. */
  29. protected SSLSocketFactory factory;
  30. /** Enabled cipher suites. */
  31. protected String[] cipherSuites;
  32. /** Enabled protocol versions. */
  33. protected String[] protocols;
  34. /**
  35. * Prepares this socket factory for use. Must be called before factory can be
  36. * used.
  37. *
  38. * @throws GeneralSecurityException if the factory cannot be initialized
  39. */
  40. public abstract void initialize()
  41. throws GeneralSecurityException;
  42. /**
  43. * This returns the underlying <code>SSLSocketFactory</code> that this class
  44. * uses for creating SSL Sockets.
  45. *
  46. * @return <code>SSLSocketFactory</code>
  47. */
  48. public SSLSocketFactory getFactory()
  49. {
  50. return this.factory;
  51. }
  52. /**
  53. * This returns the names of the SSL cipher suites which are currently enabled
  54. * for use on sockets created by this factory. A null value indicates that no
  55. * specific cipher suites have been enabled and that the default suites are in
  56. * use.
  57. *
  58. * @return <code>String[]</code> of cipher suites
  59. */
  60. public String[] getEnabledCipherSuites()
  61. {
  62. return this.cipherSuites;
  63. }
  64. /**
  65. * This returns the names of the protocol versions which are currently enabled
  66. * for use on sockets created by this factory. A null value indicates that no
  67. * specific protocols have been enabled and that the default protocols are in
  68. * use.
  69. *
  70. * @return <code>String[]</code> of protocols
  71. */
  72. public String[] getEnabledProtocols()
  73. {
  74. return this.protocols;
  75. }
  76. /**
  77. * Sets the cipher suites enabled for use on sockets created by this factory.
  78. * See {@link javax.net.ssl.SSLSocket#setEnabledCipherSuites(String[])}.
  79. *
  80. * @param s <code>String[]</code> of cipher suites
  81. */
  82. public void setEnabledCipherSuites(final String[] s)
  83. {
  84. this.cipherSuites = s;
  85. }
  86. /**
  87. * Sets the protocol versions enabled for use on sockets created by this
  88. * factory. See {@link javax.net.ssl.SSLSocket#setEnabledProtocols(String[])}.
  89. *
  90. * @param s <code>String[]</code> of cipher suites
  91. */
  92. public void setEnabledProtocols(final String[] s)
  93. {
  94. this.protocols = s;
  95. }
  96. /**
  97. * Initializes the supplied socket for use.
  98. *
  99. * @param s <code>SSLSocket</code> to initialize
  100. *
  101. * @return <code>SSLSocket</code>
  102. */
  103. protected SSLSocket initSSLSocket(final SSLSocket s)
  104. {
  105. if (this.cipherSuites != null) {
  106. s.setEnabledCipherSuites(this.cipherSuites);
  107. }
  108. if (this.protocols != null) {
  109. s.setEnabledProtocols(this.protocols);
  110. }
  111. return s;
  112. }
  113. /**
  114. * This returns a socket layered over an existing socket connected to the
  115. * named host, at the given port.
  116. *
  117. * @param s <code>Socket</code> existing socket
  118. * @param host <code>String</code> server hostname
  119. * @param port <code>int</code> server port
  120. * @param autoClose <code>boolean</code> close the underlying socket when
  121. * this socket is closed
  122. *
  123. * @return <code>Socket</code> - connected to the specified host and port
  124. *
  125. * @throws IOException if an I/O error occurs when creating the socket
  126. */
  127. public Socket createSocket(
  128. final Socket s,
  129. final String host,
  130. final int port,
  131. final boolean autoClose)
  132. throws IOException
  133. {
  134. SSLSocket socket = null;
  135. if (this.factory != null) {
  136. socket = this.initSSLSocket(
  137. (SSLSocket) this.factory.createSocket(s, host, port, autoClose));
  138. }
  139. return socket;
  140. }
  141. /**
  142. * This creates an unconnected socket.
  143. *
  144. * @return <code>Socket</code> - unconnected socket
  145. *
  146. * @throws IOException if an I/O error occurs when creating the socket
  147. */
  148. public Socket createSocket()
  149. throws IOException
  150. {
  151. SSLSocket socket = null;
  152. if (this.factory != null) {
  153. socket = this.initSSLSocket((SSLSocket) this.factory.createSocket());
  154. }
  155. return socket;
  156. }
  157. /**
  158. * This creates a socket and connects it to the specified port number at the
  159. * specified address.
  160. *
  161. * @param host <code>InetAddress</code> server hostname
  162. * @param port <code>int</code> server port
  163. *
  164. * @return <code>Socket</code> - connected to the specified host and port
  165. *
  166. * @throws IOException if an I/O error occurs when creating the socket
  167. */
  168. public Socket createSocket(final InetAddress host, final int port)
  169. throws IOException
  170. {
  171. SSLSocket socket = null;
  172. if (this.factory != null) {
  173. socket = this.initSSLSocket(
  174. (SSLSocket) this.factory.createSocket(host, port));
  175. }
  176. return socket;
  177. }
  178. /**
  179. * This creates a socket and connect it to the specified port number at the
  180. * specified address. The socket will also be bound to the supplied local
  181. * address and port.
  182. *
  183. * @param address <code>InetAddress</code> server hostname
  184. * @param port <code>int</code> server port
  185. * @param localAddress <code>InetAddress</code> client hostname
  186. * @param localPort <code>int</code> client port
  187. *
  188. * @return <code>Socket</code> - connected to the specified host and port
  189. *
  190. * @throws IOException if an I/O error occurs when creating the socket
  191. */
  192. public Socket createSocket(
  193. final InetAddress address,
  194. final int port,
  195. final InetAddress localAddress,
  196. final int localPort)
  197. throws IOException
  198. {
  199. SSLSocket socket = null;
  200. if (this.factory != null) {
  201. socket = this.initSSLSocket(
  202. (SSLSocket) this.factory.createSocket(
  203. address,
  204. port,
  205. localAddress,
  206. localPort));
  207. }
  208. return socket;
  209. }
  210. /**
  211. * This creates a socket and connects it to the specified port number at the
  212. * specified address.
  213. *
  214. * @param host <code>String</code> server hostname
  215. * @param port <code>int</code> server port
  216. *
  217. * @return <code>Socket</code> - connected to the specified host and port
  218. *
  219. * @throws IOException if an I/O error occurs when creating the socket
  220. */
  221. public Socket createSocket(final String host, final int port)
  222. throws IOException
  223. {
  224. SSLSocket socket = null;
  225. if (this.factory != null) {
  226. socket = this.initSSLSocket(
  227. (SSLSocket) this.factory.createSocket(host, port));
  228. }
  229. return socket;
  230. }
  231. /**
  232. * This creates a socket and connect it to the specified port number at the
  233. * specified address. The socket will also be bound to the supplied local
  234. * address and port.
  235. *
  236. * @param host <code>String</code> server hostname
  237. * @param port <code>int</code> server port
  238. * @param localHost <code>InetAddress</code> client hostname
  239. * @param localPort <code>int</code> client port
  240. *
  241. * @return <code>Socket</code> - connected to the specified host and port
  242. *
  243. * @throws IOException if an I/O error occurs when creating the socket
  244. */
  245. public Socket createSocket(
  246. final String host,
  247. final int port,
  248. final InetAddress localHost,
  249. final int localPort)
  250. throws IOException
  251. {
  252. SSLSocket socket = null;
  253. if (this.factory != null) {
  254. socket = this.initSSLSocket(
  255. (SSLSocket) this.factory.createSocket(
  256. host,
  257. port,
  258. localHost,
  259. localPort));
  260. }
  261. return socket;
  262. }
  263. /**
  264. * This returns the list of cipher suites which are enabled by default.
  265. *
  266. * @return <code>String[]</code> - array of the cipher suites
  267. */
  268. public String[] getDefaultCipherSuites()
  269. {
  270. String[] ciphers = null;
  271. if (this.factory != null) {
  272. ciphers = this.factory.getDefaultCipherSuites();
  273. }
  274. return ciphers;
  275. }
  276. /**
  277. * This returns the names of the cipher suites which could be enabled for use
  278. * on an SSL connection.
  279. *
  280. * @return <code>String[]</code> - array of the cipher suites
  281. */
  282. public String[] getSupportedCipherSuites()
  283. {
  284. String[] ciphers = null;
  285. if (this.factory != null) {
  286. ciphers = this.factory.getSupportedCipherSuites();
  287. }
  288. return ciphers;
  289. }
  290. }