4#include <linux/if_packet.h>
5#include <net/ethernet.h>
8#include <cosmos/dso_export.h>
9#include <cosmos/net/byte_order.hxx>
10#include <cosmos/net/network.hxx>
11#include <cosmos/net/SocketAddress.hxx>
12#include <cosmos/utils.hxx>
23enum class EthernetProtocol :
unsigned short {
28 ERSPAN2 = ETH_P_ERSPAN2,
33 IEEEPUP = ETH_P_IEEEPUP,
34 IEEEPUPAT = ETH_P_IEEEPUPAT,
35 BATMAN = ETH_P_BATMAN,
37 DNA_DL = ETH_P_DNA_DL,
38 DNA_RC = ETH_P_DNA_RC,
39 DNA_RT = ETH_P_DNA_RT,
48 VLAN_8021Q = ETH_P_8021Q,
49 ERSPAN = ETH_P_ERSPAN,
55 MPLS_UC = ETH_P_MPLS_UC,
56 MPLS_MC = ETH_P_MPLS_MC,
57 ATMMPOA = ETH_P_ATMMPOA,
58 PPP_DISC = ETH_P_PPP_DISC,
59 PPP_SES = ETH_P_PPP_SES,
60 LINK_CTL = ETH_P_LINK_CTL,
61 ATMFATE = ETH_P_ATMFATE,
64 PROFINET = ETH_P_PROFINET,
67 REALTEK = ETH_P_REALTEK,
71 ETHERCAT = ETH_P_ETHERCAT,
73 VLAN_8021AD = ETH_P_8021AD,
74 EX1_802 = ETH_P_802_EX1,
75 PREAUTH = ETH_P_PREAUTH,
79 MACSEC = ETH_P_MACSEC,
80 BACK_8021AH = ETH_P_8021AH,
90 HO_80221 = ETH_P_80221,
93 LOOPBACK = ETH_P_LOOPBACK,
98 DSA_8021Q = ETH_P_DSA_8021Q,
100 DSA_A5PSW = ETH_P_DSA_A5PSW,
103 IUCV = ETH_P_AF_IUCV,
107enum class ARPType :
unsigned short {
108 NETROM = ARPHRD_NETROM,
109 ETHER = ARPHRD_ETHER,
110 EETHER = ARPHRD_EETHER,
112 PRONET = ARPHRD_PRONET,
113 CHAOS = ARPHRD_CHAOS,
114 IEEE802 = ARPHRD_IEEE802,
115 ARCNET = ARPHRD_ARCNET,
116 APPLE_TALK = ARPHRD_APPLETLK,
119 METRICOM = ARPHRD_METRICOM,
120 IEEE1394 = ARPHRD_IEEE1394,
121 EUI64 = ARPHRD_EUI64,
122 INFINIBAND = ARPHRD_INFINIBAND,
126enum class PacketType :
unsigned char {
128 BROADCAST = PACKET_BROADCAST,
129 MULTICAST = PACKET_MULTICAST,
130 OTHERHOST = PACKET_OTHERHOST,
131 OUTGOING = PACKET_OUTGOING,
152 return SocketFamily::PACKET;
157 return sizeof(m_addr);
162 return EthernetProtocol{net::to_host_order(m_addr.sll_protocol)};
167 m_addr.sll_protocol = net::to_network_order(to_integral(prot));
177 m_addr.sll_ifindex = to_integral(index);
186 return ARPType{net::to_host_order(m_addr.sll_hatype)};
195 return PacketType{m_addr.sll_pkttype};
203 m_addr.sll_halen = mac.size();
204 std::memcpy(m_addr.sll_addr, mac.data(), mac.size());
210 return reinterpret_cast<sockaddr*
>(&m_addr);
214 return reinterpret_cast<const sockaddr*
>(&m_addr);
A link layer (network layer 2) socket address.
const sockaddr * basePtr() const override
Returns a const pointer to the sockaddr* base structure.
void setProtocol(const EthernetProtocol prot)
Sets the ethernet protocol portion of the address.
ARPType arpType() const
Returns the ARP hardware type portion of the address.
size_t size() const override
Returns the size of the structure considering the currently set path length only.
void setIfindex(const InterfaceIndex index)
Sets the network interface index portion of the address.
InterfaceIndex ifindex() const
Return the network interface index portion of the address.
sockaddr * basePtr() override
Returns a mutable pointer to the sockaddr* base structure.
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
PacketType packetType() const
Returns the packet type portion of the address.
void setMacAddress(const MACAddress mac)
Sets the MAC address portion of the address.
EthernetProtocol protocol() const
Returns the ethernet protocol stored in the address.
Base class for all types of socket addresses.
InterfaceIndex
A network device interface index.
SocketFamily
A socket's family setting.
A 48-bit ethernet 802.3 MAC address.