11#include <linux/errqueue.h>
14#include <cosmos/error/errno.hxx>
15#include <cosmos/net/IPAddress.hxx>
16#include <cosmos/net/traits.hxx>
17#include <cosmos/net/types.hxx>
34template <SocketFamily FAMILY>
36 protected sock_extended_err {
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,
53 TXTIME = SO_EE_ORIGIN_TXTIME
64 TXTIME_INVALID_PARAM = SO_EE_CODE_TXTIME_INVALID_PARAM,
65 TXTIME_MISSED = SO_EE_CODE_TXTIME_MISSED
72 return Origin{this->ee_origin};
78 return Errno{
static_cast<std::underlying_type<Errno>::type
>(this->ee_errno)};
83 if (
errnum() == Errno::MSG_TOO_LARGE) {
90 std::optional<ZeroCopyCode> zeroCopyCode()
const {
98 std::optional<TxTimeCode> txTimeCode()
const {
99 if (
origin() == Origin::TXTIME) {
113 return std::make_pair(this->ee_info, this->ee_data);
119 bool originIsICMP()
const {
123 std::optional<uint8_t> icmpType()
const {
124 if (originIsICMP()) {
125 return this->ee_type;
131 std::optional<uint8_t> icmpCode()
const {
132 if (originIsICMP()) {
133 return this->ee_code;
150 return offenderAddressFamily() != SocketFamily::UNSPEC;
153 std::optional<IPAddress> offenderAddress()
const {
154 if (offenderAddressFamily() != FAMILY)
158 return IPAddress{*
reinterpret_cast<const RawAddr*
>(offenderAddr())};
163 const struct sockaddr* offenderAddr()
const {
167 return SO_EE_OFFENDER(
this);
171using IP4SocketError = SocketErrorT<SocketFamily::INET>;
172using IP6SocketError = SocketErrorT<SocketFamily::INET6>;
Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::REC...
std::optional< std::pair< uint32_t, uint32_t > > zeroCopyRange() const
Return the copied ranges for zerocopy status reports.
std::optional< uint32_t > discoveredMTU() const
If errnum() is Errno::MSG_TOO_LARGE then this returns the currently known MTU.
Origin
This defines where the extended error originated.
@ 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.
bool hasOffenderAddress() const
Check whether the offender IP address is available.
Origin origin() const
The origin defines how the rest of the error data is interpreted.
TxTimeCode
Code definitions for Origin::TXTIME.
ZeroCopyCode
Code definitions for Origin::ZEROCOPY.
@ ZEROCOPY_COPIED
No zerocopy was performed, the kernel performed a copy.
Errno errnum() const
The error code is always available, but may be Errno::NO_ERROR.
Errno
Strong enum type representing errno error constants.
SocketFamily
A socket's family setting.