F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
IpSocket.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // \title IpSocket.cpp
3 // \author mstarch, crsmith
4 // \brief cpp file for IpSocket core implementation classes
5 //
6 // \copyright
7 // Copyright 2009-2020, by the California Institute of Technology.
8 // ALL RIGHTS RESERVED. United States Government Sponsorship
9 // acknowledged.
10 //
11 // ======================================================================
12 #include <sys/time.h>
13 #include <Drv/Ip/IpSocket.hpp>
14 #include <Fw/FPrimeBasicTypes.hpp>
15 #include <Fw/Types/Assert.hpp>
16 #include <Fw/Types/StringUtils.hpp>
17 #include <cstring>
18 
19 // This implementation has primarily implemented to isolate
20 // the socket interface from the F' Fw::Buffer class.
21 // There is a macro in VxWorks (m_data) that collides with
22 // the m_data member in Fw::Buffer.
23 
24 #ifdef TGT_OS_TYPE_VXWORKS
25 #include <errnoLib.h>
26 #include <fioLib.h>
27 #include <hostLib.h>
28 #include <inetLib.h>
29 #include <ioLib.h>
30 #include <sockLib.h>
31 #include <socket.h>
32 #include <sysLib.h>
33 #include <taskLib.h>
34 #include <vxWorks.h>
35 #include <cstring>
36 #elif defined TGT_OS_TYPE_LINUX || TGT_OS_TYPE_DARWIN
37 #include <arpa/inet.h>
38 #include <sys/socket.h>
39 #include <unistd.h>
40 #include <cerrno>
41 #else
42 #error OS not supported for IP Socket Communications
43 #endif
44 
45 namespace Drv {
46 
47 IpSocket::IpSocket() : m_timeoutSeconds(0), m_timeoutMicroseconds(0), m_port(0) {
48  (void)::memset(this->m_ipv4_address, 0, sizeof(this->m_ipv4_address));
49 }
50 
51 SocketIpStatus IpSocket::configure(const char* const ipv4_address,
52  const U16 port,
53  const U32 timeout_seconds,
54  const U32 timeout_microseconds) {
55  FW_ASSERT(timeout_microseconds < 1000000, static_cast<FwAssertArgType>(timeout_microseconds));
56  FW_ASSERT(this->isValidPort(port), static_cast<FwAssertArgType>(port));
57  FW_ASSERT(ipv4_address != nullptr);
58  // Defense-in-depth: reject inputs that would have been silently truncated by string_copy.
59  FW_ASSERT(Fw::StringUtils::string_length(ipv4_address, static_cast<FwSizeType>(SOCKET_MAX_IPV4_ADDRESS_SIZE)) <
60  static_cast<FwSizeType>(SOCKET_MAX_IPV4_ADDRESS_SIZE));
61  this->m_timeoutSeconds = timeout_seconds;
62  this->m_timeoutMicroseconds = timeout_microseconds;
63  this->m_port = port;
64  (void)Fw::StringUtils::string_copy(this->m_ipv4_address, ipv4_address,
65  static_cast<FwSizeType>(SOCKET_MAX_IPV4_ADDRESS_SIZE));
66  // Post-condition: NUL termination guaranteed by Fw::StringUtils::string_copy contract.
68  return SOCK_SUCCESS;
69 }
70 
71 bool IpSocket::isValidPort(U16 port) const {
72  return true;
73 }
74 
76 // Get the IP address from host
77 #ifdef TGT_OS_TYPE_VXWORKS
78  // No timeouts set on Vxworks
79 #else
80  // Set timeout socket option
81  struct timeval timeout;
82  timeout.tv_sec = static_cast<time_t>(this->m_timeoutSeconds);
83  timeout.tv_usec = static_cast<suseconds_t>(this->m_timeoutMicroseconds);
84  // set socket write to timeout after 1 sec
85  if (setsockopt(socketFd, SOL_SOCKET, SO_SNDTIMEO, reinterpret_cast<char*>(&timeout), sizeof(timeout)) < 0) {
87  }
88 #endif
89  return SOCK_SUCCESS;
90 }
91 
92 SocketIpStatus IpSocket::addressToIp4(const char* const ipv4_address, void* const out) {
93  FW_ASSERT(ipv4_address != nullptr);
94  FW_ASSERT(out != nullptr);
95  // Pre-zero the destination so that on failure, callers cannot accidentally consume
96  // uninitialized memory. This is a defense-in-depth measure for safety-critical use.
97  (void)::memset(out, 0, sizeof(struct in_addr));
98  // Get the IP address from host
99 #ifdef TGT_OS_TYPE_VXWORKS
100  int ip = inet_addr(ipv4_address);
101  if (ip == ERROR) {
103  }
104  // from sin_addr, which has one struct
105  // member s_addr, which is unsigned int
106  *static_cast<unsigned long*>(out) = static_cast<unsigned long>(ip);
107 #else
108  // inet_pton(3) returns 1 on success, 0 if the input is not a valid IPv4 presentation
109  // string, and -1 (with errno=EAFNOSUPPORT) if the family argument is bogus. Only a
110  // strict equality check is safe — a `not` test treats -1 as success and would silently
111  // mask an EAFNOSUPPORT failure. (Power-of-Ten Rule 7: check every return value.)
112  const int ptonStatus = ::inet_pton(AF_INET, ipv4_address, out);
113  if (ptonStatus != 1) {
115  }
116 #endif
117  return SOCK_SUCCESS;
118 }
119 
120 void IpSocket::close(const SocketDescriptor& socketDescriptor) {
121  if (socketDescriptor.fd >= 0) {
122  (void)::close(socketDescriptor.fd);
123  }
124 }
125 
126 void IpSocket::shutdown(const SocketDescriptor& socketDescriptor) {
127  errno = 0;
128  int status = ::shutdown(socketDescriptor.fd, SHUT_RDWR);
129  // If shutdown fails, go straight to the hard-shutdown
130  if (status != 0) {
131  this->close(socketDescriptor);
132  }
133 }
134 
136  SocketIpStatus status = SOCK_SUCCESS;
137  errno = 0;
138  // Open a TCP socket for incoming commands, and outgoing data if not using UDP
139  status = this->openProtocol(socketDescriptor);
140  if (status != SOCK_SUCCESS) {
141  socketDescriptor.fd = -1;
142  return status;
143  }
144  return status;
145 }
146 
147 SocketIpStatus IpSocket::send(const SocketDescriptor& socketDescriptor, const U8* const data, const FwSizeType size) {
148  FW_ASSERT((size == 0) || (data != nullptr));
149  // Zero-size sends are a no-op
150  if (size == 0) {
151  return SOCK_SUCCESS;
152  }
153 
154  FwSizeType total = 0;
155  FwSignedSizeType sent = 0;
156  // Attempt to send out data and retry as necessary
157  for (FwSizeType i = 0; (i < SOCKET_MAX_ITERATIONS) && (total < size); i++) {
158  errno = 0;
159  // Send using my specific protocol
160  sent = this->sendProtocol(socketDescriptor, data + total, size - total);
161  // Error is EINTR or timeout just try again
162  if (((sent == -1) && (errno == EINTR)) || (sent == 0)) {
163  continue;
164  }
165  // Error bad file descriptor is a close along with reset
166  else if ((sent == -1) && ((errno == EBADF) || (errno == ECONNRESET))) {
167  return SOCK_DISCONNECTED;
168  }
169  // Error returned, and it wasn't an interrupt nor a disconnect
170  else if (sent == -1) {
171  return SOCK_SEND_ERROR;
172  }
173  FW_ASSERT(sent > 0, static_cast<FwAssertArgType>(sent));
174  total += static_cast<FwSizeType>(sent);
175  }
176  // Failed to retry enough to send all data
177  if (total < size) {
179  }
180  // Ensure we sent everything
181  FW_ASSERT(total == size, static_cast<FwAssertArgType>(total), static_cast<FwAssertArgType>(size));
182  return SOCK_SUCCESS;
183 }
184 
185 SocketIpStatus IpSocket::recv(const SocketDescriptor& socketDescriptor, U8* data, FwSizeType& req_read) {
186  // TODO: Uncomment FW_ASSERT for socketDescriptor.fd once we fix TcpClientTester to not pass in uninitialized
187  // socketDescriptor
188  // FW_ASSERT(socketDescriptor.fd != -1, static_cast<FwAssertArgType>(socketDescriptor.fd));
189  FW_ASSERT(data != nullptr);
190 
191  FwSignedSizeType bytes_received_or_status; // Stores the return value from recvProtocol
192 
193  // Loop primarily for EINTR. Other conditions should lead to an earlier exit.
194  for (FwSizeType i = 0; i < SOCKET_MAX_ITERATIONS; i++) {
195  errno = 0;
196  // Pass the current value of req_read (max buffer size) to recvProtocol.
197  // recvProtocol returns bytes read or -1 on error.
198  bytes_received_or_status = this->recvProtocol(socketDescriptor, data, req_read);
199 
200  if (bytes_received_or_status > 0) {
201  // Successfully read data
202  req_read = static_cast<FwSizeType>(bytes_received_or_status);
203  return SOCK_SUCCESS;
204  } else if (bytes_received_or_status == 0) {
205  // Handle zero return based on protocol-specific behavior
206  req_read = 0;
207  return this->handleZeroReturn();
208  } else { // bytes_received_or_status == -1, an error occurred
209  if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
210  // Non-blocking socket would block, or SO_RCVTIMEO timeout occurred.
211  req_read = 0;
212  return SOCK_NO_DATA_AVAILABLE;
213  } else if ((errno == ECONNRESET) || (errno == EBADF)) {
214  // Connection reset or bad file descriptor.
215  req_read = 0;
216  return SOCK_DISCONNECTED; // Or a more specific error like SOCK_READ_ERROR
217  } else if (errno == EINTR) {
218  continue;
219  } else {
220  // Other socket read error.
221  req_read = 0;
222  return SOCK_READ_ERROR;
223  }
224  }
225  }
226  // If the loop completes, it means SOCKET_MAX_ITERATIONS of EINTR occurred.
227  req_read = 0;
229 }
230 
232  // For TCP (which IpSocket primarily serves as a base for, or when not overridden),
233  // a return of 0 from ::recv means the peer has performed an orderly shutdown.
234  return SOCK_DISCONNECTED;
235 }
236 
238  // Iterate over the socket options and set them
239  for (const auto& options : IP_SOCKET_OPTIONS) {
240  int status = 0;
241  if (options.type == SOCK_OPT_INT) {
242  status = setsockopt(socketFd, options.level, options.option, &options.value.intVal,
243  sizeof(options.value.intVal));
244  } else {
245  status = setsockopt(socketFd, options.level, options.option, &options.value.sizeVal,
246  sizeof(options.value.sizeVal));
247  }
248  if (status) {
250  }
251  }
252  return SOCK_SUCCESS;
253 }
254 
255 } // namespace Drv
Failed to send after configured retries.
Definition: IpSocket.hpp:42
Failed to read socket with disconnect.
Definition: IpSocket.hpp:38
Interrupted status for retries.
Definition: IpSocket.hpp:36
Failed to configure socket.
Definition: IpSocket.hpp:35
PlatformSizeType FwSizeType
SocketIpStatus recv(const SocketDescriptor &fd, U8 *const data, FwSizeType &size)
receive data from the IP socket from the given buffer
Definition: IpSocket.cpp:185
Operation failed.
Definition: Os.hpp:28
SocketIpStatus setupTimeouts(int socketFd)
setup the socket timeout properties of the opened outgoing socket
Definition: IpSocket.cpp:75
virtual SocketIpStatus configure(const char *const ipv4_address, const U16 port, const U32 send_timeout_seconds, const U32 send_timeout_microseconds)
configure the ip socket with an IPv4 address and transmission timeouts
Definition: IpSocket.cpp:51
static SocketIpStatus addressToIp4(const char *const ipv4_address, void *const out)
converts a given IPv4 address in dotted-quad form "x.x.x.x" to a network-order in_addr structure...
Definition: IpSocket.cpp:92
int fd
Used for all sockets to track the communication file descriptor.
Definition: IpSocket.hpp:22
PlatformSignedSizeType FwSignedSizeType
virtual SocketIpStatus send(const SocketDescriptor &socketDescriptor, const U8 *const data, const FwSizeType size)
send data out the IP socket from the given buffer
Definition: IpSocket.cpp:147
Bad IP address supplied.
Definition: IpSocket.hpp:33
virtual SocketIpStatus openProtocol(SocketDescriptor &fd)=0
Protocol specific open implementation, called from open.
void shutdown(const SocketDescriptor &socketDescriptor)
shutdown the socket
Definition: IpSocket.cpp:126
virtual FwSignedSizeType sendProtocol(const SocketDescriptor &socketDescriptor, const U8 *const data, const FwSizeType size)=0
Protocol specific implementation of send. Called directly with retry from send.
U16 m_port
IP address port used.
Definition: IpSocket.hpp:251
Socket operation successful.
Definition: IpSocket.hpp:30
char * string_copy(char *destination, const char *source, FwSizeType num)
copy string with null-termination guaranteed
Definition: StringUtils.cpp:7
Failed to read socket.
Definition: IpSocket.hpp:37
SocketIpStatus setupSocketOptions(int socketFd)
setup the socket options of the input socket as defined in IpCfg.hpp
Definition: IpSocket.cpp:237
virtual bool isValidPort(U16 port) const
Check if the given port is valid for the socket.
Definition: IpSocket.cpp:71
uint8_t U8
8-bit unsigned integer
Definition: BasicTypes.h:54
static const IpSocketOptions IP_SOCKET_OPTIONS[]
Definition: IpCfg.hpp:88
virtual SocketIpStatus handleZeroReturn()
Handle zero return from recvProtocol.
Definition: IpSocket.cpp:231
char m_ipv4_address[SOCKET_MAX_IPV4_ADDRESS_SIZE]
IPv4 address (dotted-quad "x.x.x.x")
Definition: IpSocket.hpp:252
void close(const SocketDescriptor &socketDescriptor)
closes the socket
Definition: IpSocket.cpp:120
virtual FwSignedSizeType recvProtocol(const SocketDescriptor &socketDescriptor, U8 *const data, const FwSizeType size)=0
Protocol specific implementation of recv. Called directly with error handling from recv...
SocketIpStatus open(SocketDescriptor &socketDescriptor)
open the IP socket for communications
Definition: IpSocket.cpp:135
SocketIpStatus
Status enumeration for socket return values.
Definition: IpSocket.hpp:29
U32 m_timeoutMicroseconds
Definition: IpSocket.hpp:250
No data available or read operation would block.
Definition: IpSocket.hpp:45
#define FW_ASSERT(...)
Definition: Assert.hpp:14
U32 m_timeoutSeconds
Definition: IpSocket.hpp:249
FwSizeType string_length(const CHAR *source, FwSizeType buffer_size)
get the length of the source string
Definition: StringUtils.cpp:32