libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SocketErrorT< FAMILY > Class Template Reference

Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::RECVERR. More...

#include <SocketError.hxx>

+ Inheritance diagram for cosmos::SocketErrorT< FAMILY >:

Public Types

enum class  Origin : uint8_t {
  NONE = SO_EE_ORIGIN_NONE , LOCAL = SO_EE_ORIGIN_LOCAL , ICMP = SO_EE_ORIGIN_ICMP , ICMP6 = SO_EE_ORIGIN_ICMP6 ,
  TXSTATUS = SO_EE_ORIGIN_TXSTATUS , ZEROCOPY = SO_EE_ORIGIN_ZEROCOPY , TXTIME = SO_EE_ORIGIN_TXTIME
}
 This defines where the extended error originated. More...
 
enum class  ZeroCopyCode : uint8_t { ZEROCOPY_COPIED = SO_EE_CODE_ZEROCOPY_COPIED }
 Code definitions for Origin::ZEROCOPY. More...
 
enum class  TxTimeCode : uint8_t { TXTIME_INVALID_PARAM = SO_EE_CODE_TXTIME_INVALID_PARAM , TXTIME_MISSED = SO_EE_CODE_TXTIME_MISSED }
 Code definitions for Origin::TXTIME. More...
 
using IPAddress = typename FamilyTraits<FAMILY>::Address
 

Public Member Functions

Origin origin () const
 The origin defines how the rest of the error data is interpreted.
 
Errno errnum () const
 The error code is always available, but may be Errno::NO_ERROR.
 
std::optional< uint32_t > discoveredMTU () const
 If errnum() is Errno::MSG_TOO_LARGE then this returns the currently known MTU.
 
std::optional< ZeroCopyCodezeroCopyCode () const
 
std::optional< TxTimeCodetxTimeCode () const
 
std::optional< std::pair< uint32_t, uint32_t > > zeroCopyRange () const
 Return the copied ranges for zerocopy status reports.
 
bool originIsICMP () const
 
std::optional< uint8_t > icmpType () const
 
std::optional< uint8_t > icmpCode () const
 
SocketFamily offenderAddressFamily () const
 
bool hasOffenderAddress () const
 Check whether the offender IP address is available.
 
std::optional< IPAddress > offenderAddress () const
 

Protected Member Functions

const struct sockaddr * offenderAddr () const
 

Detailed Description

template<SocketFamily FAMILY>
class cosmos::SocketErrorT< FAMILY >

Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::RECVERR.

This data structure is passed for IP based sockets if the IP4Options::setReceiveErrors() or IP6Options::setReceiveErrors() option is enabled. Extended error reporting generally only works for SocketType::DGRAM sockets. All errors on the socket will be queued in a separate error message queue and these errors can be received using Socket::receiveMessage() with the MessageFlag::ERRQUEUE set.

Various kinds of data can be part of this structure. The exact interpretation depends upon the Origin and error() code. For this reason various functions only return optional values.

Definition at line 35 of file SocketError.hxx.

Member Typedef Documentation

◆ IPAddress

template<SocketFamily FAMILY>
using cosmos::SocketErrorT< FAMILY >::IPAddress = typename FamilyTraits<FAMILY>::Address

Definition at line 39 of file SocketError.hxx.

Member Enumeration Documentation

◆ Origin

template<SocketFamily FAMILY>
enum class cosmos::SocketErrorT::Origin : uint8_t
strong

This defines where the extended error originated.

Enumerator
LOCAL 

The local networking stack detected an error.

ICMP 

An ICMPv4 error was reported.

ICMP6 

An ICMPv6 error was reported.

ZEROCOPY 

Status report for zerocopy operation (see Linux kernel documentation networking/msg_zerocopy.txt).

Definition at line 42 of file SocketError.hxx.

42 : uint8_t {
43 NONE = SO_EE_ORIGIN_NONE,
45 LOCAL = SO_EE_ORIGIN_LOCAL,
47 ICMP = SO_EE_ORIGIN_ICMP,
49 ICMP6 = SO_EE_ORIGIN_ICMP6,
50 TXSTATUS = SO_EE_ORIGIN_TXSTATUS,
52 ZEROCOPY = SO_EE_ORIGIN_ZEROCOPY,
53 TXTIME = SO_EE_ORIGIN_TXTIME
54 };
@ ZEROCOPY
Status report for zerocopy operation (see Linux kernel documentation networking/msg_zerocopy....
@ LOCAL
The local networking stack detected an error.
@ ICMP
An ICMPv4 error was reported.
@ ICMP6
An ICMPv6 error was reported.

◆ TxTimeCode

template<SocketFamily FAMILY>
enum class cosmos::SocketErrorT::TxTimeCode : uint8_t
strong

Code definitions for Origin::TXTIME.

Definition at line 63 of file SocketError.hxx.

63 : uint8_t {
64 TXTIME_INVALID_PARAM = SO_EE_CODE_TXTIME_INVALID_PARAM,
65 TXTIME_MISSED = SO_EE_CODE_TXTIME_MISSED
66 };

◆ ZeroCopyCode

template<SocketFamily FAMILY>
enum class cosmos::SocketErrorT::ZeroCopyCode : uint8_t
strong

Code definitions for Origin::ZEROCOPY.

Enumerator
ZEROCOPY_COPIED 

No zerocopy was performed, the kernel performed a copy.

Definition at line 57 of file SocketError.hxx.

57 : uint8_t {
59 ZEROCOPY_COPIED = SO_EE_CODE_ZEROCOPY_COPIED,
60 };
@ ZEROCOPY_COPIED
No zerocopy was performed, the kernel performed a copy.

Member Function Documentation

◆ discoveredMTU()

template<SocketFamily FAMILY>
std::optional< uint32_t > cosmos::SocketErrorT< FAMILY >::discoveredMTU ( ) const
inline

If errnum() is Errno::MSG_TOO_LARGE then this returns the currently known MTU.

Definition at line 82 of file SocketError.hxx.

82 {
83 if (errnum() == Errno::MSG_TOO_LARGE) {
84 return this->ee_info;
85 }
86
87 return std::nullopt;
88 }
Errno errnum() const
The error code is always available, but may be Errno::NO_ERROR.

◆ errnum()

template<SocketFamily FAMILY>
Errno cosmos::SocketErrorT< FAMILY >::errnum ( ) const
inline

The error code is always available, but may be Errno::NO_ERROR.

Definition at line 76 of file SocketError.hxx.

76 {
77 // ee_errno is unsigned, while errno is signed
78 return Errno{static_cast<std::underlying_type<Errno>::type>(this->ee_errno)};
79 }
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29

◆ hasOffenderAddress()

template<SocketFamily FAMILY>
bool cosmos::SocketErrorT< FAMILY >::hasOffenderAddress ( ) const
inline

Check whether the offender IP address is available.

If available then the kernel also provides the IP address of the node that caused the error. offenderAddress() allows to access the address, if applicable.

Definition at line 149 of file SocketError.hxx.

149 {
150 return offenderAddressFamily() != SocketFamily::UNSPEC;
151 }

◆ icmpCode()

template<SocketFamily FAMILY>
std::optional< uint8_t > cosmos::SocketErrorT< FAMILY >::icmpCode ( ) const
inline

Definition at line 131 of file SocketError.hxx.

131 {
132 if (originIsICMP()) {
133 return this->ee_code;
134 }
135
136 return std::nullopt;
137 }

◆ icmpType()

template<SocketFamily FAMILY>
std::optional< uint8_t > cosmos::SocketErrorT< FAMILY >::icmpType ( ) const
inline

Definition at line 123 of file SocketError.hxx.

123 {
124 if (originIsICMP()) {
125 return this->ee_type;
126 }
127
128 return std::nullopt;
129 }

◆ offenderAddr()

template<SocketFamily FAMILY>
const struct sockaddr * cosmos::SocketErrorT< FAMILY >::offenderAddr ( ) const
inlineprotected

Definition at line 163 of file SocketError.hxx.

163 {
164 // this is piggyback data found after the end of the struct
165 // sock_extended_err. It is only valid if sa_family !=
166 // AF_UNSPEC.
167 return SO_EE_OFFENDER(this);
168 }

◆ offenderAddress()

template<SocketFamily FAMILY>
std::optional< IPAddress > cosmos::SocketErrorT< FAMILY >::offenderAddress ( ) const
inline

Definition at line 153 of file SocketError.hxx.

153 {
154 if (offenderAddressFamily() != FAMILY)
155 return std::nullopt;
156
157 using RawAddr = typename FamilyTraits<FAMILY>::RawAddr;
158 return IPAddress{*reinterpret_cast<const RawAddr*>(offenderAddr())};
159 }

◆ offenderAddressFamily()

template<SocketFamily FAMILY>
SocketFamily cosmos::SocketErrorT< FAMILY >::offenderAddressFamily ( ) const
inline

Definition at line 139 of file SocketError.hxx.

139 {
140 return SocketFamily(offenderAddr()->sa_family);
141 }
SocketFamily
A socket's family setting.
Definition types.hxx:37

◆ origin()

template<SocketFamily FAMILY>
Origin cosmos::SocketErrorT< FAMILY >::origin ( ) const
inline

The origin defines how the rest of the error data is interpreted.

Definition at line 71 of file SocketError.hxx.

71 {
72 return Origin{this->ee_origin};
73 }
Origin
This defines where the extended error originated.

◆ originIsICMP()

template<SocketFamily FAMILY>
bool cosmos::SocketErrorT< FAMILY >::originIsICMP ( ) const
inline

Definition at line 119 of file SocketError.hxx.

119 {
120 return origin() == Origin::ICMP || origin() == Origin::ICMP6;
121 }
Origin origin() const
The origin defines how the rest of the error data is interpreted.

◆ txTimeCode()

template<SocketFamily FAMILY>
std::optional< TxTimeCode > cosmos::SocketErrorT< FAMILY >::txTimeCode ( ) const
inline

Definition at line 98 of file SocketError.hxx.

98 {
99 if (origin() == Origin::TXTIME) {
100 return TxTimeCode{this->ee_code};
101 }
102
103 return std::nullopt;
104 }
TxTimeCode
Code definitions for Origin::TXTIME.

◆ zeroCopyCode()

template<SocketFamily FAMILY>
std::optional< ZeroCopyCode > cosmos::SocketErrorT< FAMILY >::zeroCopyCode ( ) const
inline

Definition at line 90 of file SocketError.hxx.

90 {
91 if (origin() == Origin::ZEROCOPY) {
92 return ZeroCopyCode{this->ee_code};
93 }
94
95 return std::nullopt;
96 }
ZeroCopyCode
Code definitions for Origin::ZEROCOPY.

◆ zeroCopyRange()

template<SocketFamily FAMILY>
std::optional< std::pair< uint32_t, uint32_t > > cosmos::SocketErrorT< FAMILY >::zeroCopyRange ( ) const
inline

Return the copied ranges for zerocopy status reports.

If this is a zerocopy status report from the kernel then this returns the range of transmissions that have been completed.

Definition at line 111 of file SocketError.hxx.

111 {
112 if (origin() == Origin::ZEROCOPY) {
113 return std::make_pair(this->ee_info, this->ee_data);
114 }
115
116 return std::nullopt;
117 }

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