SSLBox.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
  3. *
  4. * This file is part of ZLToolKit(https://github.com/xia-chu/ZLToolKit).
  5. *
  6. * Use of this source code is governed by MIT license that can be found in the
  7. * LICENSE file in the root of the source tree. All contributing project authors
  8. * may be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef CRYPTO_SSLBOX_H_
  11. #define CRYPTO_SSLBOX_H_
  12. #include <mutex>
  13. #include <string>
  14. #include <functional>
  15. #include "logger.h"
  16. #include "List.h"
  17. #include "util.h"
  18. #include "Network/Buffer.h"
  19. #include "Util/ResourcePool.h"
  20. using namespace std;
  21. typedef struct x509_st X509;
  22. typedef struct evp_pkey_st EVP_PKEY;
  23. typedef struct ssl_ctx_st SSL_CTX;
  24. typedef struct ssl_st SSL;
  25. typedef struct bio_st BIO;
  26. namespace toolkit {
  27. class SSL_Initor {
  28. public:
  29. friend class SSL_Box;
  30. static SSL_Initor &Instance();
  31. /**
  32. * 从文件或字符串中加载公钥和私钥
  33. * 该证书文件必须同时包含公钥和私钥(cer格式的证书只包括公钥,请使用后面的方法加载)
  34. * 客户端默认可以不加载证书(除非服务器要求客户端提供证书)
  35. * @param pem_or_p12 pem或p12文件路径或者文件内容字符串
  36. * @param server_mode 是否为服务器模式
  37. * @param password 私钥加密密码
  38. * @param is_file 参数pem_or_p12是否为文件路径
  39. * @param is_default 是否为默认证书
  40. */
  41. bool loadCertificate(const string &pem_or_p12, bool server_mode = true, const string &password = "", bool is_file = true, bool is_default = true);
  42. /**
  43. * 是否忽略无效的证书
  44. * 默认忽略,强烈建议不要忽略!
  45. * @param ignore 标记
  46. */
  47. void ignoreInvalidCertificate(bool ignore = true);
  48. /**
  49. * 信任某证书,一般用于客户端信任自签名的证书或自签名CA签署的证书使用
  50. * 比如说我的客户端要信任我自己签发的证书,那么我们可以只信任这个证书
  51. * @param pem_p12_cer pem文件或p12文件或cer文件路径或内容
  52. * @param server_mode 是否为服务器模式
  53. * @param password pem或p12证书的密码
  54. * @param is_file 是否为文件路径
  55. * @return 是否加载成功
  56. */
  57. bool trustCertificate(const string &pem_p12_cer, bool server_mode = false, const string &password = "", bool is_file = true);
  58. /**
  59. * 信任某证书
  60. * @param cer 证书公钥
  61. * @param server_mode 是否为服务模式
  62. * @return 是否加载成功
  63. */
  64. bool trustCertificate(X509 *cer,bool server_mode = false);
  65. private:
  66. SSL_Initor();
  67. ~SSL_Initor();
  68. /**
  69. * 创建SSL对象
  70. */
  71. shared_ptr<SSL> makeSSL(bool server_mode);
  72. /**
  73. * 设置ssl context
  74. * @param vhost 虚拟主机名
  75. * @param ctx ssl context
  76. * @param server_mode ssl context
  77. * @param is_default 是否为默认证书
  78. */
  79. bool setContext(const string &vhost, const std::shared_ptr<SSL_CTX> &ctx, bool server_mode, bool is_default = true);
  80. /**
  81. * 设置SSL_CTX的默认配置
  82. * @param ctx 对象指针
  83. */
  84. void setupCtx(SSL_CTX *ctx);
  85. /**
  86. * 根据虚拟主机获取SSL_CTX对象
  87. * @param vhost 虚拟主机名
  88. * @param server_mode 是否为服务器模式
  89. * @return SSL_CTX对象
  90. */
  91. std::shared_ptr<SSL_CTX> getSSLCtx(const string &vhost, bool server_mode);
  92. std::shared_ptr<SSL_CTX> getSSLCtx_l(const string &vhost, bool server_mode);
  93. std::shared_ptr<SSL_CTX> getSSLCtxWildcards(const string &vhost, bool server_mode);
  94. /**
  95. * 获取默认的虚拟主机
  96. */
  97. string defaultVhost(bool server_mode);
  98. /**
  99. * 完成vhost name 匹配的回调函数
  100. */
  101. static int findCertificate(SSL *ssl, int *ad, void *arg);
  102. private:
  103. struct less_nocase {
  104. bool operator()(const string &x, const string &y) const {
  105. return strcasecmp(x.data(), y.data()) < 0;
  106. }
  107. };
  108. private:
  109. std::shared_ptr<SSL_CTX> _ctx_empty[2];
  110. map<string, std::shared_ptr<SSL_CTX>, less_nocase> _ctxs[2];
  111. map<string, std::shared_ptr<SSL_CTX>, less_nocase > _ctxs_wildcards[2];
  112. string _default_vhost[2];
  113. };
  114. ////////////////////////////////////////////////////////////////////////////////////
  115. class SSL_Box {
  116. public:
  117. SSL_Box(bool server_mode = true, bool enable = true, int buff_size = 32 * 1024);
  118. ~SSL_Box();
  119. /**
  120. * 收到密文后,调用此函数解密
  121. * @param buffer 收到的密文数据
  122. */
  123. void onRecv(const Buffer::Ptr &buffer);
  124. /**
  125. * 需要加密明文调用此函数
  126. * @param buffer 需要加密的明文数据
  127. */
  128. void onSend(const Buffer::Ptr &buffer);
  129. /**
  130. * 设置解密后获取明文的回调
  131. * @param cb 回调对象
  132. */
  133. void setOnDecData(const function<void(const Buffer::Ptr &)> &cb);
  134. /**
  135. * 设置加密后获取密文的回调
  136. * @param cb 回调对象
  137. */
  138. void setOnEncData(const function<void(const Buffer::Ptr &)> &cb);
  139. /**
  140. * 终结ssl
  141. */
  142. void shutdown();
  143. /**
  144. * 清空数据
  145. */
  146. void flush();
  147. /**
  148. * 设置虚拟主机名
  149. * @param host 虚拟主机名
  150. * @return 是否成功
  151. */
  152. bool setHost(const char *host);
  153. private:
  154. void flushWriteBio();
  155. void flushReadBio();
  156. private:
  157. bool _server_mode;
  158. bool _send_handshake;
  159. shared_ptr<SSL> _ssl;
  160. BIO *_read_bio;
  161. BIO *_write_bio;
  162. function<void(const Buffer::Ptr &)> _on_dec;
  163. function<void(const Buffer::Ptr &)> _on_enc;
  164. List<Buffer::Ptr> _buffer_send;
  165. ResourcePool<BufferRaw> _buffer_pool;
  166. int _buff_size;
  167. bool _is_flush = false;
  168. };
  169. } /* namespace toolkit */
  170. #endif /* CRYPTO_SSLBOX_H_ */