join 1.0
lightweight network framework library
Loading...
Searching...
No Matches
arp.hpp
Go to the documentation of this file.
1
25#ifndef JOIN_FABRIC_ARP_HPP
26#define JOIN_FABRIC_ARP_HPP
27
28// libjoin.
30#include <join/mac_address.hpp>
31#include <join/raw_socket.hpp>
32#include <join/condition.hpp>
33
34// C++.
35#include <unordered_map>
36#include <string>
37
38// C.
39#include <linux/filter.h>
40#include <net/if_arp.h>
41#include <net/if.h>
42
43namespace join
44{
48 class Arp : public EventHandler
49 {
50 public:
54 Arp () = delete;
55
62 Arp (const std::string& interface, NeighborManager& neighbors = NeighborManager::instance ());
63
68 Arp (const Arp& other) = delete;
69
74 Arp (Arp&& other) = delete;
75
81 Arp& operator= (const Arp& other) = delete;
82
88 Arp& operator= (Arp&& other) = delete;
89
93 ~Arp ();
94
101 template <typename Rep, typename Period>
102 MacAddress get (const IpAddress& ip, std::chrono::duration<Rep, Period> timeout)
103 {
104 if (ip.family () != AF_INET)
105 {
107 return {};
108 }
109
110 if (ip == IpAddress::ipv4Address (_interface))
111 {
112 return MacAddress::address (_interface);
113 }
114
115 MacAddress mac = cache (ip);
116
117 return mac.isWildcard () ? request (ip, timeout) : mac;
118 }
119
126 {
127 return get (ip, std::chrono::seconds (5));
128 }
129
137 template <typename Rep, typename Period>
138 static MacAddress get (const std::string& interface, const IpAddress& ip,
139 std::chrono::duration<Rep, Period> timeout)
140 {
141 return Arp (interface).get (ip, timeout);
142 }
143
150 static MacAddress get (const std::string& interface, const IpAddress& ip)
151 {
152 return get (interface, ip, std::chrono::seconds (5));
153 }
154
161 template <typename Rep, typename Period>
162 MacAddress request (const IpAddress& ip, std::chrono::duration<Rep, Period> timeout)
163 {
164 if (ip.family () != AF_INET)
165 {
167 return {};
168 }
169
170 Packet out = {};
171 const MacAddress srcMac = MacAddress::address (_interface);
172 const IpAddress srcIp = IpAddress::ipv4Address (_interface);
173
174 ::memcpy (out.eth.h_dest, MacAddress::broadcast.addr (), ETH_ALEN);
175 ::memcpy (out.eth.h_source, srcMac.addr (), ETH_ALEN);
176 out.eth.h_proto = ::htons (ETH_P_ARP);
177
178 out.arp.ar_hrd = ::htons (ARPHRD_ETHER);
179 out.arp.ar_pro = ::htons (ETH_P_IP);
180 out.arp.ar_hln = ETH_ALEN;
181 out.arp.ar_pln = 4;
182 out.arp.ar_op = ::htons (ARPOP_REQUEST);
183 ::memcpy (out.arp.ar_sha, srcMac.addr (), ETH_ALEN);
184 ::memcpy (&out.arp.ar_sip, srcIp.addr (), sizeof (uint32_t));
185 ::memcpy (out.arp.ar_tha, MacAddress::wildcard.addr (), ETH_ALEN);
186 ::memcpy (&out.arp.ar_tip, ip.addr (), sizeof (uint32_t));
187
188 ScopedLock<Mutex> lock (_syncMutex);
189
190 uint32_t tip;
191 ::memcpy (&tip, &out.arp.ar_tip, sizeof (tip));
192 auto inserted = _pending.emplace (tip, std::make_unique<PendingRequest> ());
193 if (!inserted.second)
194 {
195 // LCOV_EXCL_START
197 return {};
198 // LCOV_EXCL_STOP
199 }
200
201 if (_socket.write (reinterpret_cast<const char*> (&out), sizeof (Packet)) == -1)
202 {
203 // LCOV_EXCL_START
204 _pending.erase (inserted.first);
205 return {};
206 // LCOV_EXCL_STOP
207 }
208
209 if (!inserted.first->second->cond.timedWait (lock, timeout))
210 {
211 _pending.erase (inserted.first);
212 lastError = std::make_error_code (std::errc::no_such_device_or_address);
213 return {};
214 }
215
216 MacAddress mac = inserted.first->second->mac;
217 _pending.erase (inserted.first);
218
219 return mac;
220 }
221
228 {
229 return request (ip, std::chrono::seconds (5));
230 }
231
239 template <typename Rep, typename Period>
240 static MacAddress request (const std::string& interface, const IpAddress& ip,
241 std::chrono::duration<Rep, Period> timeout)
242 {
243 return Arp (interface).request (ip, timeout);
244 }
245
252 static MacAddress request (const std::string& interface, const IpAddress& ip)
253 {
254 return request (interface, ip, std::chrono::seconds (5));
255 }
256
263 int add (const MacAddress& mac, const IpAddress& ip);
264
272 static int add (const std::string& interface, const MacAddress& mac, const IpAddress& ip);
273
279 int remove (const IpAddress& ip);
280
287 static int remove (const std::string& interface, const IpAddress& ip);
288
294 MacAddress cache (const IpAddress& ip);
295
302 static MacAddress cache (const std::string& interface, const IpAddress& ip);
303
304 private:
308 struct __attribute__ ((packed)) ArpPacket
309 {
310 uint16_t ar_hrd;
311 uint16_t ar_pro;
312 uint8_t ar_hln;
313 uint8_t ar_pln;
314 uint16_t ar_op;
315 uint8_t ar_sha[ETH_ALEN];
316 uint32_t ar_sip;
317 uint8_t ar_tha[ETH_ALEN];
318 uint32_t ar_tip;
319 };
320
324 struct __attribute__ ((packed)) Packet
325 {
326 struct ethhdr eth;
327 ArpPacket arp;
328 };
329
334 void onReadable (int fd) noexcept override;
335
337 static constexpr size_t _bufferSize = 4096;
338
342 struct PendingRequest
343 {
344 Condition cond;
345 MacAddress mac;
346 };
347
349 std::unordered_map<uint32_t, std::unique_ptr<PendingRequest>> _pending;
350
352 Mutex _syncMutex;
353
355 Raw::Socket _socket;
356
358 const std::string _interface;
359
361 uint32_t _index = 0;
362
364 NeighborManager& _neighbors;
365
367 Reactor& _reactor;
368 };
369}
370
371#endif
ARP protocol class.
Definition arp.hpp:49
static MacAddress request(const std::string &interface, const IpAddress &ip)
get the MAC address for the given IP address using ARP request.
Definition arp.hpp:252
int add(const MacAddress &mac, const IpAddress &ip)
add entry the MAC address of the given IP address to ARP cache.
Definition arp.cpp:90
~Arp()
destroy the Arp instance.
Definition arp.cpp:81
MacAddress request(const IpAddress &ip, std::chrono::duration< Rep, Period > timeout)
get the MAC address for the given IP address using ARP request.
Definition arp.hpp:162
Arp(const Arp &other)=delete
create instance by copy.
static MacAddress request(const std::string &interface, const IpAddress &ip, std::chrono::duration< Rep, Period > timeout)
get the MAC address for the given IP address using ARP request.
Definition arp.hpp:240
static MacAddress get(const std::string &interface, const IpAddress &ip)
discover the MAC address for the given internet layer address.
Definition arp.hpp:150
static MacAddress get(const std::string &interface, const IpAddress &ip, std::chrono::duration< Rep, Period > timeout)
discover the MAC address for the given internet layer address.
Definition arp.hpp:138
Arp()=delete
create the Arp instance.
MacAddress get(const IpAddress &ip, std::chrono::duration< Rep, Period > timeout)
get the MAC address for the given IP address using netlink neighbor cache or ARP request.
Definition arp.hpp:102
int remove(const IpAddress &ip)
remove the MAC address of the given IP address from ARP cache.
Definition arp.cpp:114
MacAddress cache(const IpAddress &ip)
get the MAC address for the given IP address using ARP cache.
Definition arp.cpp:138
Arp & operator=(const Arp &other)=delete
assign instance by copy.
MacAddress request(const IpAddress &ip)
get the MAC address for the given IP address using ARP request.
Definition arp.hpp:227
MacAddress get(const IpAddress &ip)
get the MAC address for the given IP address using ARP cache or ARP request.
Definition arp.hpp:125
Arp(Arp &&other)=delete
create instance by move.
ssize_t write(const char *data, size_t maxSize) noexcept
write data.
Definition raw_socket.hpp:247
Event handler interface class.
Definition reactor.hpp:48
friend class Reactor
friendship with reactor.
Definition reactor.hpp:149
IPv6, IPv4 address class.
Definition ip_address.hpp:51
int family() const
get address family.
Definition ip_address.cpp:1250
static IpAddress ipv4Address(const std::string &interface)
get the specified interface IPv4 address.
Definition ip_address.cpp:1526
const void * addr() const
get the internal address structure.
Definition ip_address.cpp:1259
MAC address class.
Definition mac_address.hpp:46
static const MacAddress broadcast
broadcast MAC address.
Definition mac_address.hpp:309
bool isWildcard() const
check if MAC address is a wildcard address.
Definition mac_address.cpp:182
static const MacAddress wildcard
wildcard MAC address.
Definition mac_address.hpp:306
static MacAddress address(const std::string &interface)
get the specified interface MAC address.
Definition mac_address.cpp:355
const uint8_t * addr() const
get the internal MAC address array address.
Definition mac_address.cpp:164
ARP / NDP neighbor manager class.
Definition neighbor_manager.hpp:138
static NeighborManager & instance()
get the a singleton instance.
Definition neighbor_manager.cpp:62
class owning a mutex for the duration of a scoped block.
Definition mutex.hpp:246
Definition acceptor.hpp:32
std::error_code make_error_code(join::Errc code) noexcept
Create an std::error_code object.
Definition error.cpp:195