libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
LinkLayerAddress.hxx
1#pragma once
2
3// Linux
4#include <linux/if_packet.h>
5#include <net/ethernet.h>
6
7// cosmos
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>
13
14namespace cosmos {
15
17
23enum class EthernetProtocol : unsigned short {
24 LOOP = ETH_P_LOOP,
25 PUP = ETH_P_PUP,
26 PUPAT = ETH_P_PUPAT,
27 TSN = ETH_P_TSN,
28 ERSPAN2 = ETH_P_ERSPAN2,
29 IP = ETH_P_IP,
30 X25 = ETH_P_X25,
31 ARP = ETH_P_ARP,
32 BPQ = ETH_P_BPQ,
33 IEEEPUP = ETH_P_IEEEPUP,
34 IEEEPUPAT = ETH_P_IEEEPUPAT,
35 BATMAN = ETH_P_BATMAN,
36 DEC = ETH_P_DEC,
37 DNA_DL = ETH_P_DNA_DL,
38 DNA_RC = ETH_P_DNA_RC,
39 DNA_RT = ETH_P_DNA_RT,
40 LAT = ETH_P_LAT,
41 DIAG = ETH_P_DIAG,
42 CUST = ETH_P_CUST,
43 SCA = ETH_P_SCA,
44 TEB = ETH_P_TEB,
45 RARP = ETH_P_RARP,
46 ATALK = ETH_P_ATALK,
47 AARP = ETH_P_AARP,
48 VLAN_8021Q = ETH_P_8021Q,
49 ERSPAN = ETH_P_ERSPAN,
50 IPX = ETH_P_IPX,
51 IPV6 = ETH_P_IPV6,
52 PAUSE = ETH_P_PAUSE,
53 SLOW = ETH_P_SLOW,
54 WCCP = ETH_P_WCCP,
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,
62 PAE = ETH_P_PAE,
63#ifdef ETH_P_PROFINET
64 PROFINET = ETH_P_PROFINET,
65#endif
66#ifdef ETH_P_REALTEK
67 REALTEK = ETH_P_REALTEK,
68#endif
69 AOE = ETH_P_AOE,
70#ifdef ETH_P_ETHERCAT
71 ETHERCAT = ETH_P_ETHERCAT,
72#endif
73 VLAN_8021AD = ETH_P_8021AD,
74 EX1_802 = ETH_P_802_EX1,
75 PREAUTH = ETH_P_PREAUTH,
76 TIPC = ETH_P_TIPC,
77 LLDP = ETH_P_LLDP,
78 MRP = ETH_P_MRP,
79 MACSEC = ETH_P_MACSEC,
80 BACK_8021AH = ETH_P_8021AH,
81 MVRP = ETH_P_MVRP,
82 TS_1588 = ETH_P_1588,
83 NCSI = ETH_P_NCSI,
84 PRP = ETH_P_PRP,
85 CFM = ETH_P_CFM,
86 FCOE = ETH_P_FCOE,
87 IBOE = ETH_P_IBOE,
88 TDLS = ETH_P_TDLS,
89 FIP = ETH_P_FIP,
90 HO_80221 = ETH_P_80221,
91 HSR = ETH_P_HSR,
92 NSH = ETH_P_NSH,
93 LOOPBACK = ETH_P_LOOPBACK,
94 QINQ1 = ETH_P_QINQ1,
95 QINQ2 = ETH_P_QINQ2,
96 QINQ3 = ETH_P_QINQ3,
97 EDSA = ETH_P_EDSA,
98 DSA_8021Q = ETH_P_DSA_8021Q,
99#ifdef ETH_PDSA_A5PSW
100 DSA_A5PSW = ETH_P_DSA_A5PSW,
101#endif
102 IFE = ETH_P_IFE,
103 IUCV = ETH_P_AF_IUCV,
104};
105
107enum class ARPType : unsigned short {
108 NETROM = ARPHRD_NETROM,
109 ETHER = ARPHRD_ETHER,
110 EETHER = ARPHRD_EETHER,
111 AX25 = ARPHRD_AX25,
112 PRONET = ARPHRD_PRONET,
113 CHAOS = ARPHRD_CHAOS,
114 IEEE802 = ARPHRD_IEEE802,
115 ARCNET = ARPHRD_ARCNET,
116 APPLE_TALK = ARPHRD_APPLETLK,
117 DLCI = ARPHRD_DLCI,
118 ATM = ARPHRD_ATM,
119 METRICOM = ARPHRD_METRICOM,
120 IEEE1394 = ARPHRD_IEEE1394,
121 EUI64 = ARPHRD_EUI64,
122 INFINIBAND = ARPHRD_INFINIBAND,
123};
124
126enum class PacketType : unsigned char {
127 HOST = PACKET_HOST,
128 BROADCAST = PACKET_BROADCAST,
129 MULTICAST = PACKET_MULTICAST,
130 OTHERHOST = PACKET_OTHERHOST,
131 OUTGOING = PACKET_OUTGOING,
132};
133
135
139class COSMOS_API LinkLayerAddress :
140 public SocketAddress {
141public: // functions
142
144 clear();
145 }
146
147 explicit LinkLayerAddress(const sockaddr_ll &addr) {
148 m_addr = addr;
149 }
150
151 SocketFamily family() const override {
152 return SocketFamily::PACKET;
153 }
154
156 size_t size() const override {
157 return sizeof(m_addr);
158 }
159
161 EthernetProtocol protocol() const {
162 return EthernetProtocol{net::to_host_order(m_addr.sll_protocol)};
163 }
164
166 void setProtocol(const EthernetProtocol prot) {
167 m_addr.sll_protocol = net::to_network_order(to_integral(prot));
168 }
169
172 return InterfaceIndex{m_addr.sll_ifindex};
173 }
174
176 void setIfindex(const InterfaceIndex index) {
177 m_addr.sll_ifindex = to_integral(index);
178 }
179
181
185 ARPType arpType() const {
186 return ARPType{net::to_host_order(m_addr.sll_hatype)};
187 }
188
190
194 PacketType packetType() const {
195 return PacketType{m_addr.sll_pkttype};
196 }
197
199 MACAddress macAddress() const;
200
202 void setMacAddress(const MACAddress mac) {
203 m_addr.sll_halen = mac.size();
204 std::memcpy(m_addr.sll_addr, mac.data(), mac.size());
205 }
206
207protected: // functions
208
209 sockaddr* basePtr() override {
210 return reinterpret_cast<sockaddr*>(&m_addr);
211 }
212
213 const sockaddr* basePtr() const override {
214 return reinterpret_cast<const sockaddr*>(&m_addr);
215 }
216
217protected: // data
218
219 sockaddr_ll m_addr;
220};
221
222} // end ns
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.
Definition types.hxx:119
SocketFamily
A socket's family setting.
Definition types.hxx:37
A 48-bit ethernet 802.3 MAC address.
Definition types.hxx:164