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

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

#include <tls_socket.h>

Public Types

enum class  SocketError : std::uint8_t {
  kOpenFailed , kBindingFailed , kRemoteDisconnected , kTlsHandshakeFailed ,
  kGenericError
}
 Socket error code. More...
 
using TcpMessage = boost_support::message::tcp::TcpMessage
 Type alias for Tcp message. More...
 
using TcpMessagePtr = boost_support::message::tcp::TcpMessagePtr
 Type alias for Tcp message pointer. More...
 
using TcpMessageConstPtr = boost_support::message::tcp::TcpMessageConstPtr
 Type alias for Tcp message const pointer. More...
 
using Tcp = boost::asio::ip::tcp
 Type alias for tcp protocol. More...
 
using TcpSocket = Tcp::socket
 Type alias for tcp socket. More...
 

Public Member Functions

 TlsSocket (std::string_view local_ip_address, std::uint16_t local_port_num, TlsContext &tls_context, IoContext &io_context) noexcept
 Constructs an instance of TcpSocket. More...
 
 TlsSocket (TcpSocket tcp_socket, TlsContext &tls_context) noexcept
 Constructs an instance of TcpSocket. More...
 
 TlsSocket (const TlsSocket &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
TlsSocketoperator= (const TlsSocket &other) noexcept=delete
 
TlsSocketoperator= (TlsSocket &&other) noexcept
 Move assignment. More...
 
 TlsSocket (TlsSocket &&other) noexcept
 Move constructor. More...
 
 ~TlsSocket () noexcept
 Destruct an instance of TcpSocket. More...
 
core_type::Result< void, SocketErrorOpen () noexcept
 Function to open and bind the socket to provided ip address & port. More...
 
core_type::Result< void, SocketErrorConnect (std::string_view host_ip_address, std::uint16_t host_port_num) noexcept
 Function to connect to remote ip address and port number. More...
 
core_type::Result< void, SocketErrorDisconnect () noexcept
 Function to Disconnect from host. More...
 
core_type::Result< void, SocketErrorTransmit (TcpMessageConstPtr tcp_message) noexcept
 Function to trigger transmission. More...
 
core_type::Result< TcpMessagePtr, SocketErrorRead () noexcept
 Function to read message from socket. More...
 
core_type::Result< void, SocketErrorClose () noexcept
 Function to destroy the socket. More...
 

Private Types

using TcpIpAddress = boost::asio::ip::address
 Type alias for tcp ip address. More...
 
using TcpErrorCodeType = boost::system::error_code
 Type alias for tcp error codes. More...
 
using SslStream = boost::asio::ssl::stream< Tcp::socket >
 Type alias for tcp socket. More...
 

Private Member Functions

SslStream::lowest_layer_type & GetNativeTcpSocket ()
 Function to get the native tcp socket under tls socket. More...
 

Private Attributes

SslStream ssl_stream_
 Store the underlying tcp socket. More...
 
Tcp::endpoint local_endpoint_
 Store the local endpoints. More...
 

Detailed Description

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

Definition at line 25 of file tls_socket.h.

Member Typedef Documentation

◆ SslStream

using boost_support::socket::tls::TlsSocket::SslStream = boost::asio::ssl::stream<Tcp::socket>
private

Type alias for tcp socket.

Definition at line 161 of file tls_socket.h.

◆ Tcp

using boost_support::socket::tls::TlsSocket::Tcp = boost::asio::ip::tcp

Type alias for tcp protocol.

Definition at line 56 of file tls_socket.h.

◆ TcpErrorCodeType

using boost_support::socket::tls::TlsSocket::TcpErrorCodeType = boost::system::error_code
private

Type alias for tcp error codes.

Definition at line 156 of file tls_socket.h.

◆ TcpIpAddress

using boost_support::socket::tls::TlsSocket::TcpIpAddress = boost::asio::ip::address
private

Type alias for tcp ip address.

Definition at line 151 of file tls_socket.h.

◆ TcpMessage

Type alias for Tcp message.

Definition at line 41 of file tls_socket.h.

◆ TcpMessageConstPtr

Type alias for Tcp message const pointer.

Definition at line 51 of file tls_socket.h.

◆ TcpMessagePtr

Type alias for Tcp message pointer.

Definition at line 46 of file tls_socket.h.

◆ TcpSocket

Type alias for tcp socket.

Definition at line 61 of file tls_socket.h.

Member Enumeration Documentation

◆ SocketError

Socket error code.

Enumerator
kOpenFailed 
kBindingFailed 
kRemoteDisconnected 
kTlsHandshakeFailed 
kGenericError 

Definition at line 30 of file tls_socket.h.

30  : std::uint8_t {
31  kOpenFailed,
32  kBindingFailed,
33  kRemoteDisconnected,
34  kTlsHandshakeFailed,
36  };

Constructor & Destructor Documentation

◆ TlsSocket() [1/4]

boost_support::socket::tls::TlsSocket::TlsSocket ( std::string_view  local_ip_address,
std::uint16_t  local_port_num,
TlsContext tls_context,
IoContext io_context 
)
noexcept

Constructs an instance of TcpSocket.

Parameters
[in]local_ip_addressThe local ip address
[in]local_port_numThe local port number
[in]io_contextThe I/O context required to create socket

Definition at line 19 of file tls_socket.cpp.

21  : ssl_stream_{io_context.GetContext(), tls_context.GetContext()},
22  local_endpoint_{boost::asio::ip::make_address(local_ip_address), local_port_num} {}
SslStream ssl_stream_
Store the underlying tcp socket.
Definition: tls_socket.h:166
Tcp::endpoint local_endpoint_
Store the local endpoints.
Definition: tls_socket.h:171

◆ TlsSocket() [2/4]

boost_support::socket::tls::TlsSocket::TlsSocket ( TlsSocket::TcpSocket  tcp_socket,
TlsContext tls_context 
)
noexcept

Constructs an instance of TcpSocket.

Parameters
[in]socketThe socket

Definition at line 24 of file tls_socket.cpp.

25  : ssl_stream_{std::move(tcp_socket), tls_context.GetContext()},
26  local_endpoint_{} {
27  TcpErrorCodeType ec{};
28 
29  // Perform TLS handshake
30  ssl_stream_.handshake(boost::asio::ssl::stream_base::server, ec);
31 
32  if (ec.value() == boost::system::errc::success) {
33  printf("Connected with %s encryption\n", SSL_get_cipher(ssl_stream_.native_handle()));
34  } else {
36  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
37  msg << "Tls client handshake with host failed with error: " << ec.message();
38  });
39  }
40 }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
boost::system::error_code TcpErrorCodeType
Type alias for tcp error codes.
Definition: tls_socket.h:156
#define FILE_NAME
Definition: file_path.h:14

◆ TlsSocket() [3/4]

boost_support::socket::tls::TlsSocket::TlsSocket ( const TlsSocket other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ TlsSocket() [4/4]

boost_support::socket::tls::TlsSocket::TlsSocket ( TlsSocket &&  other)
noexcept

Move constructor.

Definition at line 42 of file tls_socket.cpp.

43  : ssl_stream_{std::move(other.ssl_stream_)},
44  local_endpoint_{std::move(other.local_endpoint_)} {}

◆ ~TlsSocket()

boost_support::socket::tls::TlsSocket::~TlsSocket ( )
defaultnoexcept

Destruct an instance of TcpSocket.

Member Function Documentation

◆ Close()

core_type::Result< void, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Close ( )
noexcept

Function to destroy the socket.

Returns
Empty result on success otherwise error code

Definition at line 178 of file tls_socket.cpp.

178  {
180  // Shutdown of TCP connection
181  GetNativeTcpSocket().shutdown(Tcp::socket ::shutdown_both);
182 
183  GetNativeTcpSocket().cancel();
184 
185  // Destroy the socket
186  GetNativeTcpSocket().close();
187  result.EmplaceValue();
188  return result;
189 }
SslStream::lowest_layer_type & GetNativeTcpSocket()
Function to get the native tcp socket under tls socket.
Definition: tls_socket.cpp:256
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29

References GetNativeTcpSocket(), and kGenericError.

Here is the call graph for this function:

◆ Connect()

core_type::Result< void, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Connect ( std::string_view  host_ip_address,
std::uint16_t  host_port_num 
)
noexcept

Function to connect to remote ip address and port number.

Parameters
[in]host_ip_addressThe host ip address
[in]host_port_numThe host port number
Returns
Empty result on success otherwise error code

Definition at line 95 of file tls_socket.cpp.

96  {
98  TcpErrorCodeType ec{};
99 
100  // Connect to provided Ip address
101  GetNativeTcpSocket().connect(
102  Tcp::endpoint{boost::asio::ip::make_address(host_ip_address), host_port_num}, ec);
103  if (ec.value() == boost::system::errc::success) {
105  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
106  Tcp::endpoint const endpoint_{GetNativeTcpSocket().remote_endpoint()};
107  msg << "Tls socket connected to host "
108  << "<" << endpoint_.address().to_string() << "," << endpoint_.port() << ">";
109  });
110  // Perform TLS handshake
111  ssl_stream_.handshake(boost::asio::ssl::stream_base::client, ec);
112  if (ec.value() == boost::system::errc::success) {
113  printf("Connected with %s encryption\n", SSL_get_cipher(ssl_stream_.native_handle()));
114  result.EmplaceValue();
115  } else {
117  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
118  msg << "Tls client handshake with host failed with error: " << ec.message();
119  });
120  result.EmplaceError(SocketError::kTlsHandshakeFailed);
121  }
122  } else {
124  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
125  msg << "Tls client socket connect to host failed with error: " << ec.message();
126  });
127  }
128  return result;
129 }

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

Here is the call graph for this function:

◆ Disconnect()

core_type::Result< void, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Disconnect ( )
noexcept

Function to Disconnect from host.

Returns
Empty result on success otherwise error code

Definition at line 131 of file tls_socket.cpp.

131  {
133  TcpErrorCodeType ec{};
134 
135  // Shutdown TLS connection
136  ssl_stream_.shutdown(ec);
137 
138  // ssl_stream_.
139 
140  if (ec.value() == boost::system::errc::success) {
141  // Socket shutdown success
142  result.EmplaceValue();
143  } else {
145  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
146  msg << "Tls client socket disconnection from host failed with error: " << ec.message();
147  });
148  }
149  return result;
150 }

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

Here is the call graph for this function:

◆ GetNativeTcpSocket()

TlsSocket::SslStream::lowest_layer_type & boost_support::socket::tls::TlsSocket::GetNativeTcpSocket ( )
private

Function to get the native tcp socket under tls socket.

Definition at line 256 of file tls_socket.cpp.

256  {
257  return ssl_stream_.lowest_layer();
258 }

References ssl_stream_.

Referenced by Close(), and Read().

Here is the caller graph for this function:

◆ Open()

core_type::Result< void, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Open ( )
noexcept

Function to open and bind the socket to provided ip address & port.

Returns
Empty result on success otherwise error code

Definition at line 54 of file tls_socket.cpp.

54  {
56  TcpErrorCodeType ec{};
57 
58  // Open the socket
59  GetNativeTcpSocket().open(local_endpoint_.protocol(), ec);
60  if (ec.value() == boost::system::errc::success) {
61  // Reuse address
62  GetNativeTcpSocket().set_option(boost::asio::socket_base::reuse_address{true});
63  // Set socket to non blocking
64  GetNativeTcpSocket().non_blocking(false);
65  // Bind to local ip address and random port
67 
68  if (ec.value() == boost::system::errc::success) {
69  // Socket binding success
71  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
72  Tcp::endpoint const endpoint_{GetNativeTcpSocket().local_endpoint()};
73  msg << "Tls Socket opened and bound to "
74  << "<" << endpoint_.address().to_string() << "," << endpoint_.port() << ">";
75  });
76  result.EmplaceValue();
77  } else {
78  // Socket binding failed
80  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
81  msg << "Tls Socket binding failed with message: " << ec.message();
82  });
83  result.EmplaceError(SocketError::kBindingFailed);
84  }
85  } else {
87  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
88  msg << "Tls Socket opening failed with error: " << ec.message();
89  });
90  result.EmplaceError(SocketError::kOpenFailed);
91  }
92  return result;
93 }

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

Here is the call graph for this function:

◆ operator=() [1/2]

TlsSocket& boost_support::socket::tls::TlsSocket::operator= ( const TlsSocket other)
deletenoexcept

◆ operator=() [2/2]

TlsSocket & boost_support::socket::tls::TlsSocket::operator= ( TlsSocket &&  other)
noexcept

Move assignment.

Definition at line 46 of file tls_socket.cpp.

46  {
47  ssl_stream_ = std::move(std::move(other.ssl_stream_));
48  local_endpoint_ = std::move(other.local_endpoint_);
49  return *this;
50 }

◆ Read()

core_type::Result< TlsSocket::TcpMessagePtr, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Read ( )
noexcept

Function to read message from socket.

Returns
Tcp message on success otherwise error code

Definition at line 191 of file tls_socket.cpp.

191  {
193  TcpErrorCodeType ec{};
194  // create and reserve the buffer
195  TcpMessage::BufferType rx_buffer{};
196  rx_buffer.resize(message::tcp::kDoipheadrSize);
197  // start blocking read to read Header first
198  boost::asio::read(ssl_stream_, boost::asio::buffer(&rx_buffer[0u], message::tcp::kDoipheadrSize),
199  ec);
200  // Check for error
201  if (ec.value() == boost::system::errc::success) {
202  // read the next bytes to read
203  std::uint32_t read_next_bytes = [&rx_buffer]() noexcept -> std::uint32_t {
204  return static_cast<std::uint32_t>(
205  (static_cast<std::uint32_t>(rx_buffer[4u] << 24u) & 0xFF000000) |
206  (static_cast<std::uint32_t>(rx_buffer[5u] << 16u) & 0x00FF0000) |
207  (static_cast<std::uint32_t>(rx_buffer[6u] << 8u) & 0x0000FF00) |
208  (static_cast<std::uint32_t>(rx_buffer[7u] & 0x000000FF)));
209  }();
210 
211  if (read_next_bytes != 0u) {
212  Tcp::endpoint const remote_endpoint{GetNativeTcpSocket().remote_endpoint()};
214  FILE_NAME, __LINE__, __func__,
215  [&remote_endpoint, read_next_bytes](std::stringstream &msg) {
216  msg << "Tcp Message with length= " << read_next_bytes << " received from "
217  << "<" << remote_endpoint.address().to_string() << "," << remote_endpoint.port()
218  << ">";
219  });
220  read_next_bytes = 0;
221  // reserve the buffer
222  rx_buffer.resize(message::tcp::kDoipheadrSize + std::size_t{read_next_bytes});
223  boost::asio::read(
224  ssl_stream_,
225  boost::asio::buffer(&rx_buffer[message::tcp::kDoipheadrSize], read_next_bytes), ec);
226 
227  // all message received, transfer to upper layer
228  TcpMessagePtr tcp_rx_message{std::make_unique<TcpMessage>(
229  remote_endpoint.address().to_string(), remote_endpoint.port(), std::move(rx_buffer))};
231  FILE_NAME, __LINE__, __func__,
232  [&remote_endpoint, read_next_bytes](std::stringstream &msg) {
233  msg << "Tcp Message with length= " << read_next_bytes << " received from "
234  << "<" << remote_endpoint.address().to_string() << "," << remote_endpoint.port()
235  << ">";
236  });
237  result.EmplaceValue(std::move(tcp_rx_message));
238  } else {
240  FILE_NAME, __LINE__, __func__,
241  [](std::stringstream &msg) { msg << "Tcp Message read ignored as header size is zero"; });
242  }
243  } else if (ec.value() == boost::asio::error::eof) {
245  FILE_NAME, __LINE__, __func__,
246  [ec](std::stringstream &msg) { msg << "Remote Disconnected with: " << ec.message(); });
247  } else {
249  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
250  msg << "Remote Disconnected with undefined error: " << ec.message();
251  });
252  }
253  return result;
254 }
std::vector< std::uint8_t > BufferType
Type alias for underlying buffer.
Definition: tcp_message.h:49
boost_support::message::tcp::TcpMessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
Definition: tls_socket.h:46
constexpr std::uint8_t kDoipheadrSize
Doip HeaderSize.
Definition: tcp_message.h:156

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), GetNativeTcpSocket(), boost_support::message::tcp::kDoipheadrSize, kRemoteDisconnected, and ssl_stream_.

Here is the call graph for this function:

◆ Transmit()

core_type::Result< void, TlsSocket::SocketError > boost_support::socket::tls::TlsSocket::Transmit ( TcpMessageConstPtr  tcp_message)
noexcept

Function to trigger transmission.

Parameters
[in]tcp_messageThe tcp message to be transmitted
Returns
Empty result on success otherwise error code

Definition at line 152 of file tls_socket.cpp.

153  {
155  TcpErrorCodeType ec{};
156 
157  boost::asio::write(
158  ssl_stream_,
159  boost::asio::buffer(tcp_message->GetPayload().data(), tcp_message->GetPayload().size()), ec);
160  // Check for error
161  if (ec.value() == boost::system::errc::success) {
163  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
164  Tcp::endpoint const endpoint_{GetNativeTcpSocket().remote_endpoint()};
165  msg << "Tcp message sent to "
166  << "<" << endpoint_.address().to_string() << "," << endpoint_.port() << ">";
167  });
168  result.EmplaceValue();
169  } else {
171  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
172  msg << "Tcp message sending failed with error: " << ec.message();
173  });
174  }
175  return result;
176 }

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

Here is the call graph for this function:

Member Data Documentation

◆ local_endpoint_

Tcp::endpoint boost_support::socket::tls::TlsSocket::local_endpoint_
private

Store the local endpoints.

Definition at line 171 of file tls_socket.h.

◆ ssl_stream_

SslStream boost_support::socket::tls::TlsSocket::ssl_stream_
private

Store the underlying tcp socket.

Definition at line 166 of file tls_socket.h.

Referenced by Disconnect(), GetNativeTcpSocket(), and Read().


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