Diag-Client-Lib
Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
boost_support::socket::tcp::TlsServerSocket Class Referencefinal

Class used to create a tls socket for server for handling transmission and reception of tcp message from driver. More...

#include <tls_server_.h>

Public Types

using TcpHandlerRead = std::function< void(message::tcp::TcpMessagePtr)>
 Tcp function template used for reception. More...
 
using TcpAcceptor = boost::asio::ip::tcp::acceptor
 Type alias for tcp acceptor. More...
 

Public Member Functions

 TlsServerSocket (std::string_view local_ip_address, std::uint16_t local_port_num)
 Constructs an instance of TlsServerSocket. More...
 
 ~TlsServerSocket ()=default
 Destruct an instance of TlsServerSocket. More...
 
std::optional< TcpServerConnectionGetTcpServerConnection (TcpHandlerRead tcp_handler_read)
 Get the tcp connection to communicate. More...
 

Private Types

using Tcp = boost::asio::ip::tcp
 Type alias for tcp protocol. More...
 

Private Attributes

std::string local_ip_address_
 Store local ip address. More...
 
std::uint16_t local_port_num_
 Store local port number. More...
 
boost::asio::io_context io_context_
 boost io context More...
 
boost::asio::ssl::context io_ssl_context_
 boost io ssl context More...
 
TcpAcceptor tcp_acceptor_
 Store tcp acceptor. More...
 

Detailed Description

Class used to create a tls socket for server for handling transmission and reception of tcp message from driver.

Definition at line 121 of file tls_server_.h.

Member Typedef Documentation

◆ Tcp

using boost_support::socket::tcp::TlsServerSocket::Tcp = boost::asio::ip::tcp
private

Type alias for tcp protocol.

Definition at line 159 of file tls_server_.h.

◆ TcpAcceptor

using boost_support::socket::tcp::TlsServerSocket::TcpAcceptor = boost::asio::ip::tcp::acceptor

Type alias for tcp acceptor.

Definition at line 131 of file tls_server_.h.

◆ TcpHandlerRead

Tcp function template used for reception.

Definition at line 126 of file tls_server_.h.

Constructor & Destructor Documentation

◆ TlsServerSocket()

boost_support::socket::tcp::TlsServerSocket::TlsServerSocket ( std::string_view  local_ip_address,
std::uint16_t  local_port_num 
)

Constructs an instance of TlsServerSocket.

Parameters
[in]local_ip_addressThe local ip address
[in]local_port_numThe local port number

Definition at line 21 of file tls_server_.cpp.

22  : local_ip_address_{local_ip_address},
23  local_port_num_{local_port_num},
24  io_context_{},
25  io_ssl_context_{boost::asio::ssl::context::tlsv13_server},
26  tcp_acceptor_{io_context_, Tcp::endpoint(Tcp::v4(), local_port_num_), true} {
28  FILE_NAME, __LINE__, __func__, [&local_ip_address, &local_port_num](std::stringstream &msg) {
29  msg << "Tcp Socket Acceptor created at "
30  << "<" << local_ip_address << "," << local_port_num << ">";
31  });
32  // Load certificate and private key from provided locations
33  io_ssl_context_.use_certificate_chain_file("../../../openssl/DiagClientLib.crt");
34  io_ssl_context_.use_private_key_file("../../../openssl/DiagClientLib.key",
35  boost::asio::ssl::context::pem);
36  SSL_CTX_set_ciphersuites(io_ssl_context_.native_handle(),
37  "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256");
38 }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
boost::asio::ssl::context io_ssl_context_
boost io ssl context
Definition: tls_server_.h:179
TcpAcceptor tcp_acceptor_
Store tcp acceptor.
Definition: tls_server_.h:184
std::uint16_t local_port_num_
Store local port number.
Definition: tls_server_.h:169
boost::asio::io_context io_context_
boost io context
Definition: tls_server_.h:174
std::string local_ip_address_
Store local ip address.
Definition: tls_server_.h:164
#define FILE_NAME
Definition: file_path.h:14

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), and io_ssl_context_.

Here is the call graph for this function:

◆ ~TlsServerSocket()

boost_support::socket::tcp::TlsServerSocket::~TlsServerSocket ( )
default

Destruct an instance of TlsServerSocket.

Member Function Documentation

◆ GetTcpServerConnection()

std::optional< TcpServerConnection > boost_support::socket::tcp::TlsServerSocket::GetTcpServerConnection ( TcpHandlerRead  tcp_handler_read)

Get the tcp connection to communicate.

Parameters
[in]tcp_handler_readThe local ip address

Definition at line 40 of file tls_server_.cpp.

41  {
42  std::optional<TcpServerConnection> tcp_connection{std::nullopt};
43  TcpErrorCodeType ec{};
44  Tcp::endpoint endpoint{};
46 
47  // blocking accept
48  tcp_acceptor_.accept(tls_socket.lowest_layer(), endpoint, ec);
49  if (ec.value() == boost::system::errc::success) {
50  tcp_connection.emplace(std::move(tls_socket), std::move(tcp_handler_read));
52  FILE_NAME, __LINE__, __func__, [&endpoint](std::stringstream &msg) {
53  msg << "TLS Socket connection received from client "
54  << "<" << endpoint.address().to_string() << "," << endpoint.port() << ">";
55  });
56  } else {
58  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
59  msg << "TLS Socket Connect to client failed with error: " << ec.message();
60  });
61  }
62  return tcp_connection;
63 }
boost::asio::ssl::stream< TcpSocket > TlsStream
Type alias for tls stream wrapping tcp socket.
Definition: tls_server_.h:53

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), io_context_, io_ssl_context_, and tcp_acceptor_.

Here is the call graph for this function:

Member Data Documentation

◆ io_context_

boost::asio::io_context boost_support::socket::tcp::TlsServerSocket::io_context_
private

boost io context

Definition at line 174 of file tls_server_.h.

Referenced by GetTcpServerConnection().

◆ io_ssl_context_

boost::asio::ssl::context boost_support::socket::tcp::TlsServerSocket::io_ssl_context_
private

boost io ssl context

Definition at line 179 of file tls_server_.h.

Referenced by GetTcpServerConnection(), and TlsServerSocket().

◆ local_ip_address_

std::string boost_support::socket::tcp::TlsServerSocket::local_ip_address_
private

Store local ip address.

Definition at line 164 of file tls_server_.h.

◆ local_port_num_

std::uint16_t boost_support::socket::tcp::TlsServerSocket::local_port_num_
private

Store local port number.

Definition at line 169 of file tls_server_.h.

◆ tcp_acceptor_

TcpAcceptor boost_support::socket::tcp::TlsServerSocket::tcp_acceptor_
private

Store tcp acceptor.

Definition at line 184 of file tls_server_.h.

Referenced by GetTcpServerConnection().


The documentation for this class was generated from the following files: