From d69c93f1e67a555caae922de9ef615a6f8c0e5a7 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Sat, 7 May 2016 02:17:12 +0200 Subject: [PATCH] grpc plugin: Add options to enable SSL protected connections. --- src/Makefile.am | 2 +- src/grpc.cc | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 85 insertions(+), 7 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index b8b2575d..309c5f84 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -439,7 +439,7 @@ grpc_la_CPPFLAGS = $(AM_CPPFLAGS) -std=c++11 grpc_la_CFLAGS = $(AM_CFLAGS) grpc_la_CXXFLAGS = $(AM_CXXFLAGS) -std=c++11 grpc_la_LDFLAGS = $(PLUGIN_LDFLAGS) -grpc_la_LIBADD = -lgrpc++_unsecure -lgrpc -lgpr -lprotobuf -lpthread -ldl +grpc_la_LIBADD = -lgrpc++ -lgrpc -lgpr -lprotobuf -lpthread -ldl endif if BUILD_PLUGIN_HDDTEMP diff --git a/src/grpc.cc b/src/grpc.cc index 4e10783d..7517bb72 100644 --- a/src/grpc.cc +++ b/src/grpc.cc @@ -27,6 +27,8 @@ #include #include +#include +#include #include #include "collectd.grpc.pb.h" @@ -60,6 +62,8 @@ using google::protobuf::util::TimeUtil; struct Listener { grpc::string addr; grpc::string port; + + grpc::SslServerCredentialsOptions *ssl; }; static std::vector listeners; static grpc::string default_addr("0.0.0.0:50051"); @@ -86,6 +90,25 @@ static bool ident_matches(const value_list_t *vl, const value_list_t *matcher) return true; } /* ident_matches */ +static grpc::string read_file(const char *filename) +{ + std::ifstream f; + grpc::string s, content; + + f.open(filename); + if (!f.is_open()) { + ERROR("grpc: Failed to open '%s'", filename); + return ""; + } + + while (std::getline(f, s)) { + content += s; + content.push_back('\n'); + } + f.close(); + return content; +} /* read_file */ + /* * proto conversion */ @@ -390,7 +413,6 @@ class CollectdServer final public: void Start() { - // TODO: make configurable auto auth = grpc::InsecureServerCredentials(); grpc::ServerBuilder builder; @@ -402,8 +424,16 @@ public: else { for (auto l : listeners) { grpc::string addr = l.addr + ":" + l.port; - builder.AddListeningPort(addr, auth); - INFO("grpc: Listening on %s", addr.c_str()); + + auto use_ssl = grpc::string(""); + auto a = auth; + if (l.ssl != nullptr) { + use_ssl = grpc::string(" (SSL enabled)"); + a = grpc::SslServerCredentials(*l.ssl); + } + + builder.AddListeningPort(addr, a); + INFO("grpc: Listening on %s%s", addr.c_str(), use_ssl.c_str()); } } @@ -478,14 +508,62 @@ extern "C" { auto listener = Listener(); listener.addr = grpc::string(ci->values[0].value.string); listener.port = grpc::string(ci->values[1].value.string); - listeners.push_back(listener); + listener.ssl = nullptr; + + auto ssl_opts = new(grpc::SslServerCredentialsOptions); + grpc::SslServerCredentialsOptions::PemKeyCertPair pkcp = {}; + bool use_ssl = false; for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *child = ci->children + i; - WARNING("grpc: Option `%s` not allowed in <%s> block.", - child->key, ci->key); + + if (!strcasecmp("EnableSSL", child->key)) { + if (cf_util_get_boolean(child, &use_ssl)) { + ERROR("grpc: Option `%s` expects a boolean value", + child->key); + return -1; + } + } + else if (!strcasecmp("SSLRootCerts", child->key)) { + char *certs = NULL; + if (cf_util_get_string(child, &certs)) { + ERROR("grpc: Option `%s` expects a string value", + child->key); + return -1; + } + ssl_opts->pem_root_certs = read_file(certs); + } + else if (!strcasecmp("SSLServerKey", child->key)) { + char *key = NULL; + if (cf_util_get_string(child, &key)) { + ERROR("grpc: Option `%s` expects a string value", + child->key); + return -1; + } + pkcp.private_key = read_file(key); + } + else if (!strcasecmp("SSLServerCert", child->key)) { + char *cert = NULL; + if (cf_util_get_string(child, &cert)) { + ERROR("grpc: Option `%s` expects a string value", + child->key); + return -1; + } + pkcp.cert_chain = read_file(cert); + } + else { + WARNING("grpc: Option `%s` not allowed in <%s> block.", + child->key, ci->key); + } } + ssl_opts->pem_key_cert_pairs.push_back(pkcp); + if (use_ssl) + listener.ssl = ssl_opts; + else + delete(ssl_opts); + + listeners.push_back(listener); return 0; } /* c_grpc_config_listen() */ -- 2.11.0