acl/lib_acl_cpp/samples/ssl/server/main.cpp
2023-02-12 14:03:00 +08:00

230 lines
5.2 KiB
C++

// main.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <assert.h>
#include "lib_acl.h"
#include "acl_cpp/lib_acl.hpp"
class echo_thread : public acl::thread {
public:
echo_thread(acl::sslbase_conf& ssl_conf, acl::socket_stream* conn)
: ssl_conf_(ssl_conf), conn_(conn) {}
private:
acl::sslbase_conf& ssl_conf_;
acl::socket_stream* conn_;
~echo_thread(void) { delete conn_; }
// @override
void* run(void) {
conn_->set_rw_timeout(60);
// 给 socket 安装 SSL IO 过程
if (!setup_ssl()) {
return NULL;
}
do_echo();
delete this;
return NULL;
}
bool setup_ssl(void) {
bool non_block = false;
acl::sslbase_io* ssl = ssl_conf_.create(non_block);
// 对于使用 SSL 方式的流对象,需要将 SSL IO 流对象注册至网络
// 连接流对象中,即用 ssl io 替换 stream 中默认的底层 IO 过程
if (conn_->setup_hook(ssl) == ssl) {
printf("setup ssl IO hook error!\r\n");
ssl->destroy();
return false;
}
printf("ssl handshake ok!\r\n");
return true;
}
void do_echo(void) {
char buf[4096];
while (true) {
int ret = conn_->read(buf, sizeof(buf), false);
if (ret == -1) {
break;
}
if (conn_->write(buf, ret) == -1) {
break;
}
}
}
};
static void start_server(const acl::string addr, acl::sslbase_conf& ssl_conf) {
acl::server_socket ss;
if (!ss.open(addr)) {
printf("listen %s error %s\r\n", addr.c_str(), acl::last_serror());
return;
}
while (true) {
acl::socket_stream* conn = ss.accept();
if (conn == NULL) {
printf("accept error %s\r\n", acl::last_serror());
break;
}
acl::thread* thr = new echo_thread(ssl_conf, conn);
thr->set_detachable(true);
thr->start();
}
}
static bool ssl_init(const acl::string& ssl_crt, const acl::string& ssl_key,
acl::sslbase_conf& ssl_conf) {
ssl_conf.enable_cache(true);
// 加载 SSL 证书及证书私钥
if (!ssl_conf.add_cert(ssl_crt, ssl_key)) {
printf("add ssl crt=%s error\r\n", ssl_crt.c_str());
return false;
}
return true;
}
static void usage(const char* procname) {
printf("usage: %s -h [help]\r\n"
" -s listen_addr[default: 0.0.0.0|1443\r\n"
" -t ssl_type[openssl|mbedtls, default: openssl]\r\n"
" -L ssl_libs_path\r\n"
" -c ssl_crt[default: ../ssl_crt.pem]\r\n"
" -k ssl_key[default: ../ssl_key.pem\r\n"
, procname);
}
int main(int argc, char* argv[]) {
acl::string addr = "0.0.0.0|1443";
acl::string ssl_crt = "../ssl_crt.pem", ssl_key = "../ssl_key.pem";
acl::string ssl_type = "openssl";
acl::string ssl_libs;
int ch;
while ((ch = getopt(argc, argv, "hs:t:L:c:k:")) > 0) {
switch (ch) {
case 'h':
usage(argv[0]);
return 0;
case 's':
addr = optarg;
break;
case 't':
ssl_type = optarg;
break;
case 'L':
ssl_libs = optarg;
break;
case 'c':
ssl_crt = optarg;
break;
case 'k':
ssl_key = optarg;
break;
default:
break;
}
}
acl::acl_cpp_init();
acl::log::stdout_open(true);
acl::sslbase_conf* ssl_conf;
if (ssl_type == "mbedtls") {
if (ssl_libs.empty()) {
#if defined(__APPLE__)
ssl_libs = "../libmbedtls.dylib";
#elif defined(__linux__)
ssl_libs = "../libmbedtls.so";
#elif defined(_WIN32) || defined(_WIN64)
ssl_libs = "../mbedtls.dll";
#else
# error "unknown OS type"
#endif
}
// 设置 MbedTLS 动态库路径
const std::vector<acl::string>& libs = ssl_libs.split2(",; \t");
if (libs.size() == 1) {
acl::mbedtls_conf::set_libpath(libs[0]);
} else if (libs.size() == 3) {
// libcrypto, libx509, libssl);
acl::mbedtls_conf::set_libpath(libs[0], libs[1], libs[2]);
} else {
printf("invalid ssl_lib=%s\r\n", ssl_libs.c_str());
return 1;
}
// 加载 MbedTLS 动态库
if (!acl::mbedtls_conf::load()) {
printf("load %s error\r\n", ssl_libs.c_str());
return 1;
}
// 初始化服务端模式下的全局 SSL 配置对象
bool server_side = true;
// SSL 证书校验级别
acl::mbedtls_verify_t verify_mode = acl::MBEDTLS_VERIFY_NONE;
ssl_conf = new acl::mbedtls_conf(server_side, verify_mode);
} else if (ssl_type == "openssl") {
#if defined(__APPLE__)
acl::string libssl = "/usr/local/lib/libssl.dylib";
acl::string libcrypto = "/usr/local/lib/libcrypto.dylib";
#elif defined(__linux__)
acl::string libssl = "/usr/local/lib64/libssl.so";
acl::string libcrypto = "/usr/local/lib64/libcrypto.so";
#else
# error "Unsupport OS!"
#endif
if (!ssl_libs.empty()) {
const std::vector<acl::string>& libs = ssl_libs.split2(",; \t");
if (libs.size() >= 2) {
libssl = libs[0];
libcrypto = libs[1];
} else {
libssl = libs[0];
}
}
// 设置 OpenSSL 动态库的加载路径
acl::openssl_conf::set_libpath(libcrypto, libssl);
// 动态加载 OpenSSL 动态库
if (!acl::openssl_conf::load()) {
printf("load ssl error=%s, crypto=%s, ssl=%s\r\n",
acl::last_serror(), libcrypto.c_str(), libssl.c_str());
return 1;
}
bool server_side = true;
ssl_conf = new acl::openssl_conf(server_side);
} else {
printf("Not support ssl type=%s\r\n", ssl_type.c_str());
return 1;
}
if (!ssl_init(ssl_crt, ssl_key, *ssl_conf)) {
printf("ssl_init failed\r\n");
return 1;
}
start_server(addr, *ssl_conf);
delete ssl_conf;
return 0;
}