Diag-Client-Lib
tls_acceptor.cpp
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 // includes
11 
12 #include <boost/asio.hpp>
13 
18 
19 namespace boost_support {
20 namespace server {
21 namespace tls {
22 namespace {
26 using Tcp = boost::asio::ip::tcp;
27 
31 using TcpIpAddress = boost::asio::ip::address;
32 
36 std::string CreateServerName(std::string_view server_name, std::uint16_t server_count) {
37  std::string final_server_name{server_name};
38  final_server_name.append(std::to_string(server_count));
39  return final_server_name;
40 }
41 } // namespace
42 
43 template<typename TlsVersion>
44 class TlsAcceptor<TlsVersion>::TlsAcceptorImpl final {
45  public:
50 
55 
56  public:
67  TlsAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address,
68  std::uint16_t local_port_num, std::uint8_t maximum_connection,
69  TlsVersion tls_version, std::string_view certificate_path,
70  std::string_view private_key_path) noexcept
71  : io_context_{},
72  tls_context_{std::forward<TlsVersion>(tls_version), certificate_path, private_key_path},
73  server_count_{0u},
74  acceptor_name_{acceptor_name},
75  acceptor_{io_context_,
76  Tcp::endpoint(TcpIpAddress::from_string(std::string{local_ip_address}.c_str()),
77  local_port_num)} {
78  acceptor_.listen(maximum_connection);
79  }
80 
86  std::optional<TlsServer> GetTlsServer() noexcept {
87  using TcpErrorCodeType = boost::system::error_code;
88  std::optional<TlsServer> tls_server{};
89  TcpErrorCodeType ec{};
90  Tcp::endpoint endpoint{};
91 
92  // blocking accept
93  TlsSocket::TcpSocket accepted_socket{acceptor_.accept(endpoint, ec)};
94  if (ec.value() == boost::system::errc::success) {
95  tls_server.emplace(CreateServerName(acceptor_name_, server_count_),
96  TlsSocket{std::move(accepted_socket), tls_context_});
98  FILE_NAME, __LINE__, __func__, [&endpoint](std::stringstream &msg) {
99  msg << "Tls socket connection received from client "
100  << "<" << endpoint.address().to_string() << "," << endpoint.port() << ">";
101  });
102  // increment the server count
103  server_count_++;
104  } else {
106  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
107  msg << "Tcp socket accept failed with error: " << ec.message();
108  });
109  }
110  return tls_server;
111  }
112 
113  private:
117  using Acceptor = boost::asio::ip::tcp::acceptor;
118 
122  boost::asio::io_context io_context_;
123 
128 
132  std::uint16_t server_count_;
133 
137  std::string acceptor_name_;
138 
143 };
144 
145 template<typename TlsVersion>
146 TlsAcceptor<TlsVersion>::TlsAcceptor(std::string_view acceptor_name,
147  std::string_view local_ip_address,
148  std::uint16_t local_port_num, std::uint8_t maximum_connection,
149  TlsVersion tls_version, std::string_view certificate_path,
150  std::string_view private_key_path) noexcept
151  : tls_acceptor_impl_{std::make_unique<TlsAcceptorImpl>(
152  acceptor_name, local_ip_address, local_port_num, maximum_connection,
153  std::move(tls_version), certificate_path, private_key_path)} {}
154 
155 template<typename TlsVersion>
156 TlsAcceptor<TlsVersion>::~TlsAcceptor() noexcept = default;
157 
158 template<typename TlsVersion>
159 std::optional<TlsServer> TlsAcceptor<TlsVersion>::GetTlsServer() noexcept {
160  return tls_acceptor_impl_->GetTlsServer();
161 }
162 
163 template class TlsAcceptor<TlsVersion13>;
164 template class TlsAcceptor<TlsVersion12>;
165 
166 } // namespace tls
167 } // namespace server
168 } // namespace boost_support
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
std::uint16_t server_count_
Keeps the count of server created.
boost::asio::io_context io_context_
Store the io context.
std::optional< TlsServer > GetTlsServer() noexcept
Get a tls server ready to communicate.
boost::asio::ip::tcp::acceptor Acceptor
Type alias for tcp acceptor.
std::string acceptor_name_
Store the name of the acceptor.
TlsAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version, std::string_view certificate_path, std::string_view private_key_path) noexcept
Constructs an instance of Acceptor.
The acceptor to create new tcp servers.
Definition: tls_acceptor.h:38
std::optional< TlsServer > GetTlsServer() noexcept
Get a tls server ready to communicate.
~TlsAcceptor() noexcept
Destruct an instance of TlsAcceptor.
TlsAcceptor(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version, std::string_view certificate_path, std::string_view private_key_path) noexcept
Constructs an instance of Acceptor.
Server that manages unsecured/ secured tcp connection.
Definition: tls_server.h:30
Tls context class responsible for setting cipher suite and loading certificates.
Definition: tls_context.h:24
Class used to create a tcp socket for handling transmission and reception of tcp message from driver.
Definition: tls_socket.h:25
Tcp::socket TcpSocket
Type alias for tcp socket.
Definition: tls_socket.h:61
#define FILE_NAME
Definition: file_path.h:14
boost::asio::ip::address TcpIpAddress
Type alias for tcp ip address.
boost::asio::ip::tcp Tcp
Type alias for tcp protocol.
std::string CreateServerName(std::string_view server_name, std::uint16_t server_count)
Function to create server name.