HPSocket4C-SSL.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /*
  2. * Copyright: JessMA Open Source (ldcsaa@gmail.com)
  3. *
  4. * Version : 3.6.1
  5. * Author : Bruce Liang
  6. * Website : http://www.jessma.org
  7. * Project : https://github.com/ldcsaa
  8. * Blog : http://www.cnblogs.com/ldcsaa
  9. * Wiki : http://www.oschina.net/p/hp-socket
  10. * QQ Group : 75375912
  11. *
  12. * Licensed under the Apache License, Version 2.0 (the "License");
  13. * you may not use this file except in compliance with the License.
  14. * You may obtain a copy of the License at
  15. *
  16. * http://www.apache.org/licenses/LICENSE-2.0
  17. *
  18. * Unless required by applicable law or agreed to in writing, software
  19. * distributed under the License is distributed on an "AS IS" BASIS,
  20. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  21. * See the License for the specific language governing permissions and
  22. * limitations under the License.
  23. */
  24. #include "stdafx.h"
  25. #include "HPSocket4C-SSL.h"
  26. #include "SocketObject4C.h"
  27. #include "TcpServer.h"
  28. #include "TcpClient.h"
  29. #include "TcpAgent.h"
  30. #include "TcpPullServer.h"
  31. #include "TcpPullClient.h"
  32. #include "TcpPullAgent.h"
  33. #include "TcpPackServer.h"
  34. #include "TcpPackClient.h"
  35. #include "TcpPackAgent.h"
  36. #include "HttpServer.h"
  37. #include "HttpAgent.h"
  38. #include "HttpClient.h"
  39. #if !defined(_WIN64) && !defined(HPSOCKET_STATIC_LIB)
  40. #pragma comment(linker, "/EXPORT:Create_HP_SSLAgent=_Create_HP_SSLAgent@4")
  41. #pragma comment(linker, "/EXPORT:Create_HP_SSLClient=_Create_HP_SSLClient@4")
  42. #pragma comment(linker, "/EXPORT:Create_HP_SSLPullAgent=_Create_HP_SSLPullAgent@4")
  43. #pragma comment(linker, "/EXPORT:Create_HP_SSLPullClient=_Create_HP_SSLPullClient@4")
  44. #pragma comment(linker, "/EXPORT:Create_HP_SSLPullServer=_Create_HP_SSLPullServer@4")
  45. #pragma comment(linker, "/EXPORT:Create_HP_SSLPackAgent=_Create_HP_SSLPackAgent@4")
  46. #pragma comment(linker, "/EXPORT:Create_HP_SSLPackClient=_Create_HP_SSLPackClient@4")
  47. #pragma comment(linker, "/EXPORT:Create_HP_SSLPackServer=_Create_HP_SSLPackServer@4")
  48. #pragma comment(linker, "/EXPORT:Create_HP_SSLServer=_Create_HP_SSLServer@4")
  49. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLAgent=_Destroy_HP_SSLAgent@4")
  50. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLClient=_Destroy_HP_SSLClient@4")
  51. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPullAgent=_Destroy_HP_SSLPullAgent@4")
  52. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPullClient=_Destroy_HP_SSLPullClient@4")
  53. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPullServer=_Destroy_HP_SSLPullServer@4")
  54. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPackAgent=_Destroy_HP_SSLPackAgent@4")
  55. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPackClient=_Destroy_HP_SSLPackClient@4")
  56. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLPackServer=_Destroy_HP_SSLPackServer@4")
  57. #pragma comment(linker, "/EXPORT:Destroy_HP_SSLServer=_Destroy_HP_SSLServer@4")
  58. #pragma comment(linker, "/EXPORT:Create_HP_HttpsAgent=_Create_HP_HttpsAgent@4")
  59. #pragma comment(linker, "/EXPORT:Create_HP_HttpsClient=_Create_HP_HttpsClient@4")
  60. #pragma comment(linker, "/EXPORT:Create_HP_HttpsServer=_Create_HP_HttpsServer@4")
  61. #pragma comment(linker, "/EXPORT:Destroy_HP_HttpsAgent=_Destroy_HP_HttpsAgent@4")
  62. #pragma comment(linker, "/EXPORT:Destroy_HP_HttpsClient=_Destroy_HP_HttpsClient@4")
  63. #pragma comment(linker, "/EXPORT:Destroy_HP_HttpsServer=_Destroy_HP_HttpsServer@4")
  64. #pragma comment(linker, "/EXPORT:HP_SSL_Initialize=_HP_SSL_Initialize@24")
  65. #pragma comment(linker, "/EXPORT:HP_SSL_Cleanup=_HP_SSL_Cleanup@0")
  66. #pragma comment(linker, "/EXPORT:HP_SSL_RemoveThreadLocalState=_HP_SSL_RemoveThreadLocalState@4")
  67. #pragma comment(linker, "/EXPORT:HP_SSL_IsValid=_HP_SSL_IsValid@0")
  68. #endif
  69. /*****************************************************************************************************************************************************/
  70. /******************************************************************** SSL Exports ********************************************************************/
  71. /*****************************************************************************************************************************************************/
  72. typedef C_HP_ObjectT<CSSLServer, ITcpServerListener> C_HP_SSLServer;
  73. typedef C_HP_ObjectT<CSSLPullServer, ITcpServerListener, sizeof(IPullSocket)> C_HP_SSLPullServer;
  74. typedef C_HP_ObjectT<CSSLPackServer, ITcpServerListener, sizeof(IPackSocket)> C_HP_SSLPackServer;
  75. typedef C_HP_ObjectT<CSSLAgent, ITcpAgentListener> C_HP_SSLAgent;
  76. typedef C_HP_ObjectT<CSSLPullAgent, ITcpAgentListener, sizeof(IPullSocket)> C_HP_SSLPullAgent;
  77. typedef C_HP_ObjectT<CSSLPackAgent, ITcpAgentListener, sizeof(IPackSocket)> C_HP_SSLPackAgent;
  78. typedef C_HP_ObjectT<CSSLClient, ITcpClientListener> C_HP_SSLClient;
  79. typedef C_HP_ObjectT<CSSLPullClient, ITcpClientListener, sizeof(IPullClient)> C_HP_SSLPullClient;
  80. typedef C_HP_ObjectT<CSSLPackClient, ITcpClientListener, sizeof(IPackClient)> C_HP_SSLPackClient;
  81. /********************************************************/
  82. /************** HPSocket4C-SSL 对象创建函数 **************/
  83. HPSOCKET_API HP_SSLServer __stdcall Create_HP_SSLServer(HP_TcpServerListener pListener)
  84. {
  85. return (HP_SSLServer)(new C_HP_SSLServer((ITcpServerListener*)pListener));
  86. }
  87. HPSOCKET_API HP_SSLAgent __stdcall Create_HP_SSLAgent(HP_TcpAgentListener pListener)
  88. {
  89. return (HP_SSLAgent)(new C_HP_SSLAgent((ITcpAgentListener*)pListener));
  90. }
  91. HPSOCKET_API HP_SSLClient __stdcall Create_HP_SSLClient(HP_TcpClientListener pListener)
  92. {
  93. return (HP_SSLClient)(new C_HP_SSLClient((ITcpClientListener*)pListener));
  94. }
  95. HPSOCKET_API HP_SSLPullServer __stdcall Create_HP_SSLPullServer(HP_TcpPullServerListener pListener)
  96. {
  97. return (HP_SSLPullServer)(new C_HP_SSLPullServer((ITcpServerListener*)pListener));
  98. }
  99. HPSOCKET_API HP_SSLPullAgent __stdcall Create_HP_SSLPullAgent(HP_TcpPullAgentListener pListener)
  100. {
  101. return (HP_SSLPullAgent)(new C_HP_SSLPullAgent((ITcpAgentListener*)pListener));
  102. }
  103. HPSOCKET_API HP_SSLPullClient __stdcall Create_HP_SSLPullClient(HP_TcpPullClientListener pListener)
  104. {
  105. return (HP_SSLPullClient)(new C_HP_SSLPullClient((ITcpClientListener*)pListener));
  106. }
  107. HPSOCKET_API HP_SSLPackServer __stdcall Create_HP_SSLPackServer(HP_TcpServerListener pListener)
  108. {
  109. return (HP_SSLPackServer)(new C_HP_SSLPackServer((ITcpServerListener*)pListener));
  110. }
  111. HPSOCKET_API HP_SSLPackAgent __stdcall Create_HP_SSLPackAgent(HP_TcpAgentListener pListener)
  112. {
  113. return (HP_SSLPackAgent)(new C_HP_SSLPackAgent((ITcpAgentListener*)pListener));
  114. }
  115. HPSOCKET_API HP_SSLPackClient __stdcall Create_HP_SSLPackClient(HP_TcpClientListener pListener)
  116. {
  117. return (HP_SSLPackClient)(new C_HP_SSLPackClient((ITcpClientListener*)pListener));
  118. }
  119. HPSOCKET_API void __stdcall Destroy_HP_SSLServer(HP_SSLServer pServer)
  120. {
  121. delete (C_HP_SSLServer*)pServer;
  122. }
  123. HPSOCKET_API void __stdcall Destroy_HP_SSLAgent(HP_SSLAgent pAgent)
  124. {
  125. delete (C_HP_SSLAgent*)pAgent;
  126. }
  127. HPSOCKET_API void __stdcall Destroy_HP_SSLClient(HP_SSLClient pClient)
  128. {
  129. delete (C_HP_SSLClient*)pClient;
  130. }
  131. HPSOCKET_API void __stdcall Destroy_HP_SSLPullServer(HP_SSLPullServer pServer)
  132. {
  133. delete (C_HP_SSLPullServer*)pServer;
  134. }
  135. HPSOCKET_API void __stdcall Destroy_HP_SSLPullAgent(HP_SSLPullAgent pAgent)
  136. {
  137. delete (C_HP_SSLPullAgent*)pAgent;
  138. }
  139. HPSOCKET_API void __stdcall Destroy_HP_SSLPullClient(HP_SSLPullClient pClient)
  140. {
  141. delete (C_HP_SSLPullClient*)pClient;
  142. }
  143. HPSOCKET_API void __stdcall Destroy_HP_SSLPackServer(HP_SSLPackServer pServer)
  144. {
  145. delete (C_HP_SSLPackServer*)pServer;
  146. }
  147. HPSOCKET_API void __stdcall Destroy_HP_SSLPackAgent(HP_SSLPackAgent pAgent)
  148. {
  149. delete (C_HP_SSLPackAgent*)pAgent;
  150. }
  151. HPSOCKET_API void __stdcall Destroy_HP_SSLPackClient(HP_SSLPackClient pClient)
  152. {
  153. delete (C_HP_SSLPackClient*)pClient;
  154. }
  155. /*****************************************************************************************************************************************************/
  156. /******************************************************************** HTTPS Exports ******************************************************************/
  157. /*****************************************************************************************************************************************************/
  158. typedef C_HP_ObjectT<CHttpsServer, IHttpServerListener> C_HP_HttpsServer;
  159. typedef C_HP_ObjectT<CHttpsAgent, IHttpAgentListener> C_HP_HttpsAgent;
  160. typedef C_HP_ObjectT<CHttpsClient, IHttpClientListener> C_HP_HttpsClient;
  161. /****************************************************/
  162. /**************** HTTPS 对象创建函数 *****************/
  163. HPSOCKET_API HP_HttpsServer __stdcall Create_HP_HttpsServer(HP_HttpServerListener pListener)
  164. {
  165. return (HP_HttpsServer)(new C_HP_HttpsServer((IHttpServerListener*)pListener));
  166. }
  167. HPSOCKET_API HP_HttpsAgent __stdcall Create_HP_HttpsAgent(HP_HttpAgentListener pListener)
  168. {
  169. return (HP_HttpsAgent)(new C_HP_HttpsAgent((IHttpAgentListener*)pListener));
  170. }
  171. HPSOCKET_API HP_HttpsClient __stdcall Create_HP_HttpsClient(HP_HttpClientListener pListener)
  172. {
  173. return (HP_HttpsClient)(new C_HP_HttpsClient((IHttpClientListener*)pListener));
  174. }
  175. HPSOCKET_API void __stdcall Destroy_HP_HttpsServer(HP_HttpsServer pServer)
  176. {
  177. delete (C_HP_HttpsServer*)pServer;
  178. }
  179. HPSOCKET_API void __stdcall Destroy_HP_HttpsAgent(HP_HttpsAgent pAgent)
  180. {
  181. delete (C_HP_HttpsAgent*)pAgent;
  182. }
  183. HPSOCKET_API void __stdcall Destroy_HP_HttpsClient(HP_HttpsClient pClient)
  184. {
  185. delete (C_HP_HttpsClient*)pClient;
  186. }
  187. /*****************************************************************************************************************************************************/
  188. /*************************************************************** Global Function Exports *************************************************************/
  189. /*****************************************************************************************************************************************************/
  190. HPSOCKET_API BOOL __stdcall HP_SSL_Initialize(En_HP_SSLSessionMode enSessionMode, int iVerifyMode, LPCTSTR lpszPemCertFile, LPCTSTR lpszPemKeyFile, LPCTSTR lpszKeyPasswod, LPCTSTR lpszCAPemCertFileOrPath)
  191. {
  192. return g_SSL.Initialize((EnSSLSessionMode)enSessionMode, iVerifyMode, lpszPemCertFile, lpszPemKeyFile, lpszKeyPasswod, lpszCAPemCertFileOrPath);
  193. }
  194. HPSOCKET_API void __stdcall HP_SSL_Cleanup()
  195. {
  196. g_SSL.Cleanup();
  197. }
  198. HPSOCKET_API void __stdcall HP_SSL_RemoveThreadLocalState(DWORD dwThreadID)
  199. {
  200. g_SSL.RemoveThreadLocalState(dwThreadID);
  201. }
  202. HPSOCKET_API BOOL __stdcall HP_SSL_IsValid()
  203. {
  204. return g_SSL.IsValid();
  205. }