blob: 53180976555015a27b7efe0edcaa8f740c6d53ce [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi3ffe66d2014-11-06 15:37:59 -070024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Davide Pesavento35120ea2015-11-17 21:13:18 +010026#include "ethernet-transport.hpp"
Davide Pesaventof8b41eb2014-12-26 19:14:06 +010027#include "core/global-io.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010028
29#include <pcap/pcap.h>
30
Davide Pesavento10783f22014-03-15 04:40:01 +010031#include <cerrno> // for errno
Davide Pesavento35120ea2015-11-17 21:13:18 +010032#include <cstring> // for memcpy(), strerror(), strncpy()
Davide Pesavento44deacc2014-02-19 10:48:07 +010033#include <arpa/inet.h> // for htons() and ntohs()
34#include <net/ethernet.h> // for struct ether_header
35#include <net/if.h> // for struct ifreq
Davide Pesavento35120ea2015-11-17 21:13:18 +010036#include <stdio.h> // for snprintf()
Davide Pesavento44deacc2014-02-19 10:48:07 +010037#include <sys/ioctl.h> // for ioctl()
38#include <unistd.h> // for dup()
39
Davide Pesavento10783f22014-03-15 04:40:01 +010040#if defined(__linux__)
41#include <netpacket/packet.h> // for struct packet_mreq
42#include <sys/socket.h> // for setsockopt()
43#endif
44
45#ifdef SIOCADDMULTI
46#if defined(__APPLE__) || defined(__FreeBSD__)
47#include <net/if_dl.h> // for struct sockaddr_dl
48#endif
49#endif
50
Alexander Afanasyevd9479aa2014-06-26 13:52:02 -070051#if !defined(PCAP_NETMASK_UNKNOWN)
52/*
53 * Value to pass to pcap_compile() as the netmask if you don't know what
54 * the netmask is.
55 */
56#define PCAP_NETMASK_UNKNOWN 0xffffffff
57#endif
58
Davide Pesavento44deacc2014-02-19 10:48:07 +010059namespace nfd {
Davide Pesavento35120ea2015-11-17 21:13:18 +010060namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010061
Davide Pesavento35120ea2015-11-17 21:13:18 +010062NFD_LOG_INIT("EthernetTransport");
Davide Pesavento44deacc2014-02-19 10:48:07 +010063
Davide Pesavento35120ea2015-11-17 21:13:18 +010064EthernetTransport::EthernetTransport(const NetworkInterfaceInfo& interface,
65 const ethernet::Address& mcastAddress)
66 : m_pcap(nullptr, pcap_close)
67 , m_socket(getGlobalIoService())
68 , m_srcAddress(interface.etherAddress)
69 , m_destAddress(mcastAddress)
70 , m_interfaceName(interface.name)
Davide Pesavento10783f22014-03-15 04:40:01 +010071#if defined(__linux__)
72 , m_interfaceIndex(interface.index)
73#endif
Davide Pesavento9a090a02015-01-29 18:15:26 +010074#ifdef _DEBUG
75 , m_nDropped(0)
76#endif
Davide Pesavento44deacc2014-02-19 10:48:07 +010077{
Davide Pesavento35120ea2015-11-17 21:13:18 +010078 this->setLocalUri(FaceUri::fromDev(interface.name));
79 this->setRemoteUri(FaceUri(mcastAddress));
80 this->setScope(ndn::nfd::FACE_SCOPE_NON_LOCAL);
81 this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT);
82 this->setLinkType(ndn::nfd::LINK_TYPE_MULTI_ACCESS);
83
84 NFD_LOG_FACE_INFO("Creating transport");
85
Davide Pesavento44deacc2014-02-19 10:48:07 +010086 pcapInit();
87
Davide Pesavento7726ae52014-11-23 21:01:05 +010088 int fd = pcap_get_selectable_fd(m_pcap.get());
Davide Pesavento44deacc2014-02-19 10:48:07 +010089 if (fd < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070090 BOOST_THROW_EXCEPTION(Error("pcap_get_selectable_fd failed"));
Davide Pesavento44deacc2014-02-19 10:48:07 +010091
92 // need to duplicate the fd, otherwise both pcap_close()
93 // and stream_descriptor::close() will try to close the
94 // same fd and one of them will fail
Davide Pesavento292e5e12015-03-13 02:08:33 +010095 m_socket.assign(::dup(fd));
Davide Pesavento44deacc2014-02-19 10:48:07 +010096
Davide Pesavento35120ea2015-11-17 21:13:18 +010097 // do this after assigning m_socket because getInterfaceMtu uses it
98 this->setMtu(getInterfaceMtu());
Matteo Sammarco66df9742014-11-21 18:31:26 +010099
Davide Pesavento44deacc2014-02-19 10:48:07 +0100100 char filter[100];
Mathias Gibbens802c0922015-04-14 13:47:22 -0700101 // std::snprintf not found in some environments
102 // http://redmine.named-data.net/issues/2299 for more information
103 snprintf(filter, sizeof(filter),
104 "(ether proto 0x%x) && (ether dst %s) && (not ether src %s)",
105 ethernet::ETHERTYPE_NDN,
106 m_destAddress.toString().c_str(),
107 m_srcAddress.toString().c_str());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100108 setPacketFilter(filter);
109
Davide Pesavento35120ea2015-11-17 21:13:18 +0100110 if (!m_destAddress.isBroadcast() && !joinMulticastGroup()) {
111 NFD_LOG_FACE_WARN("Falling back to promiscuous mode");
112 pcap_set_promisc(m_pcap.get(), 1);
113 }
Davide Pesavento10783f22014-03-15 04:40:01 +0100114
Davide Pesavento292e5e12015-03-13 02:08:33 +0100115 m_socket.async_read_some(boost::asio::null_buffers(),
Davide Pesavento35120ea2015-11-17 21:13:18 +0100116 bind(&EthernetTransport::handleRead, this,
Davide Pesavento292e5e12015-03-13 02:08:33 +0100117 boost::asio::placeholders::error,
118 boost::asio::placeholders::bytes_transferred));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100119}
120
Davide Pesavento35120ea2015-11-17 21:13:18 +0100121void EthernetTransport::beforeChangePersistency(ndn::nfd::FacePersistency newPersistency)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100122{
Davide Pesavento35120ea2015-11-17 21:13:18 +0100123 if (newPersistency != ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
124 BOOST_THROW_EXCEPTION(
125 std::invalid_argument("EthernetTransport supports only FACE_PERSISTENCY_PERMANENT"));
Matteo Sammarco66df9742014-11-21 18:31:26 +0100126 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100127}
128
Davide Pesavento35120ea2015-11-17 21:13:18 +0100129void EthernetTransport::doSend(Transport::Packet&& packet)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100130{
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100131 NFD_LOG_FACE_TRACE(__func__);
132
Davide Pesavento35120ea2015-11-17 21:13:18 +0100133 sendPacket(packet.packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100134}
135
Davide Pesavento35120ea2015-11-17 21:13:18 +0100136void EthernetTransport::doClose()
Davide Pesavento44deacc2014-02-19 10:48:07 +0100137{
Davide Pesavento35120ea2015-11-17 21:13:18 +0100138 NFD_LOG_FACE_TRACE(__func__);
Alexander Afanasyev251f3c12014-06-02 18:39:58 +0300139
Davide Pesavento35120ea2015-11-17 21:13:18 +0100140 if (m_socket.is_open()) {
141 // Cancel all outstanding operations and close the socket.
142 // Use the non-throwing variants and ignore errors, if any.
143 boost::system::error_code error;
144 m_socket.cancel(error);
145 m_socket.close(error);
146 }
Davide Pesavento292e5e12015-03-13 02:08:33 +0100147 m_pcap.reset();
Davide Pesavento7726ae52014-11-23 21:01:05 +0100148
Davide Pesavento35120ea2015-11-17 21:13:18 +0100149 // Ensure that the Transport stays alive at least
150 // until all pending handlers are dispatched
151 getGlobalIoService().post([this] {
152 this->setState(TransportState::CLOSED);
153 });
Davide Pesavento44deacc2014-02-19 10:48:07 +0100154}
155
156void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100157EthernetTransport::pcapInit()
Davide Pesavento44deacc2014-02-19 10:48:07 +0100158{
Davide Pesavento7726ae52014-11-23 21:01:05 +0100159 char errbuf[PCAP_ERRBUF_SIZE] = {};
160 m_pcap.reset(pcap_create(m_interfaceName.c_str(), errbuf));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100161 if (!m_pcap)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700162 BOOST_THROW_EXCEPTION(Error("pcap_create: " + std::string(errbuf)));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100163
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200164#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
165 // Enable "immediate mode", effectively disabling any read buffering in the kernel.
166 // This corresponds to the BIOCIMMEDIATE ioctl on BSD-like systems (including OS X)
167 // where libpcap uses a BPF device. On Linux this forces libpcap not to use TPACKET_V3,
168 // even if the kernel supports it, thus preventing bug #1511.
Davide Pesavento7726ae52014-11-23 21:01:05 +0100169 pcap_set_immediate_mode(m_pcap.get(), 1);
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200170#endif
171
Davide Pesavento7726ae52014-11-23 21:01:05 +0100172 if (pcap_activate(m_pcap.get()) < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700173 BOOST_THROW_EXCEPTION(Error("pcap_activate failed"));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100174
Davide Pesavento7726ae52014-11-23 21:01:05 +0100175 if (pcap_set_datalink(m_pcap.get(), DLT_EN10MB) < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700176 BOOST_THROW_EXCEPTION(Error("pcap_set_datalink: " + std::string(pcap_geterr(m_pcap.get()))));
Davide Pesavento9eaeac72014-03-15 05:03:42 +0100177
Davide Pesavento7726ae52014-11-23 21:01:05 +0100178 if (pcap_setdirection(m_pcap.get(), PCAP_D_IN) < 0)
Davide Pesavento9eaeac72014-03-15 05:03:42 +0100179 // no need to throw on failure, BPF will filter unwanted packets anyway
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100180 NFD_LOG_FACE_WARN("pcap_setdirection failed: " << pcap_geterr(m_pcap.get()));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100181}
182
183void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100184EthernetTransport::setPacketFilter(const char* filterString)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100185{
186 bpf_program filter;
Davide Pesavento7726ae52014-11-23 21:01:05 +0100187 if (pcap_compile(m_pcap.get(), &filter, filterString, 1, PCAP_NETMASK_UNKNOWN) < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700188 BOOST_THROW_EXCEPTION(Error("pcap_compile: " + std::string(pcap_geterr(m_pcap.get()))));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100189
Davide Pesavento7726ae52014-11-23 21:01:05 +0100190 int ret = pcap_setfilter(m_pcap.get(), &filter);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100191 pcap_freecode(&filter);
192 if (ret < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700193 BOOST_THROW_EXCEPTION(Error("pcap_setfilter: " + std::string(pcap_geterr(m_pcap.get()))));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100194}
195
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100196bool
Davide Pesavento35120ea2015-11-17 21:13:18 +0100197EthernetTransport::joinMulticastGroup()
Davide Pesavento10783f22014-03-15 04:40:01 +0100198{
199#if defined(__linux__)
200 packet_mreq mr{};
201 mr.mr_ifindex = m_interfaceIndex;
202 mr.mr_type = PACKET_MR_MULTICAST;
203 mr.mr_alen = m_destAddress.size();
Davide Pesavento35120ea2015-11-17 21:13:18 +0100204 std::memcpy(mr.mr_address, m_destAddress.data(), m_destAddress.size());
Davide Pesavento10783f22014-03-15 04:40:01 +0100205
Davide Pesavento292e5e12015-03-13 02:08:33 +0100206 if (::setsockopt(m_socket.native_handle(), SOL_PACKET,
Davide Pesavento10783f22014-03-15 04:40:01 +0100207 PACKET_ADD_MEMBERSHIP, &mr, sizeof(mr)) == 0)
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100208 return true; // success
Davide Pesavento10783f22014-03-15 04:40:01 +0100209
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100210 NFD_LOG_FACE_WARN("setsockopt(PACKET_ADD_MEMBERSHIP) failed: " << std::strerror(errno));
Davide Pesavento10783f22014-03-15 04:40:01 +0100211#endif
212
213#if defined(SIOCADDMULTI)
214 ifreq ifr{};
215 std::strncpy(ifr.ifr_name, m_interfaceName.c_str(), sizeof(ifr.ifr_name) - 1);
216
217#if defined(__APPLE__) || defined(__FreeBSD__)
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100218 // see bug #2327
219 using boost::asio::ip::udp;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100220 udp::socket sock(getGlobalIoService(), udp::v4());
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100221 int fd = sock.native_handle();
222
Davide Pesavento10783f22014-03-15 04:40:01 +0100223 /*
224 * Differences between Linux and the BSDs (including OS X):
225 * o BSD does not have ifr_hwaddr; use ifr_addr instead.
226 * o While OS X seems to accept both AF_LINK and AF_UNSPEC as the address
227 * family, FreeBSD explicitly requires AF_LINK, so we have to use AF_LINK
228 * and sockaddr_dl instead of the generic sockaddr structure.
229 * o BSD's sockaddr (and sockaddr_dl in particular) contains an additional
230 * field, sa_len (sdl_len), which must be set to the total length of the
231 * structure, including the length field itself.
232 * o We do not specify the interface name, thus sdl_nlen is left at 0 and
233 * LLADDR is effectively the same as sdl_data.
234 */
235 sockaddr_dl* sdl = reinterpret_cast<sockaddr_dl*>(&ifr.ifr_addr);
236 sdl->sdl_len = sizeof(ifr.ifr_addr);
237 sdl->sdl_family = AF_LINK;
238 sdl->sdl_alen = m_destAddress.size();
Davide Pesavento35120ea2015-11-17 21:13:18 +0100239 std::memcpy(LLADDR(sdl), m_destAddress.data(), m_destAddress.size());
Davide Pesavento10783f22014-03-15 04:40:01 +0100240
241 static_assert(sizeof(ifr.ifr_addr) >= offsetof(sockaddr_dl, sdl_data) + ethernet::ADDR_LEN,
242 "ifr_addr in struct ifreq is too small on this platform");
243#else
Davide Pesavento292e5e12015-03-13 02:08:33 +0100244 int fd = m_socket.native_handle();
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100245
Davide Pesavento10783f22014-03-15 04:40:01 +0100246 ifr.ifr_hwaddr.sa_family = AF_UNSPEC;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100247 std::memcpy(ifr.ifr_hwaddr.sa_data, m_destAddress.data(), m_destAddress.size());
Davide Pesavento10783f22014-03-15 04:40:01 +0100248
Davide Pesavento35120ea2015-11-17 21:13:18 +0100249 static_assert(sizeof(ifr.ifr_hwaddr.sa_data) >= ethernet::ADDR_LEN,
Davide Pesavento10783f22014-03-15 04:40:01 +0100250 "ifr_hwaddr in struct ifreq is too small on this platform");
251#endif
252
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100253 if (::ioctl(fd, SIOCADDMULTI, &ifr) == 0)
254 return true; // success
Davide Pesavento10783f22014-03-15 04:40:01 +0100255
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100256 NFD_LOG_FACE_WARN("ioctl(SIOCADDMULTI) failed: " << std::strerror(errno));
Davide Pesavento10783f22014-03-15 04:40:01 +0100257#endif
258
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100259 return false;
Davide Pesavento10783f22014-03-15 04:40:01 +0100260}
261
262void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100263EthernetTransport::sendPacket(const ndn::Block& block)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100264{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100265 /// \todo Right now there is no reserve when packet is received, but
266 /// we should reserve some space at the beginning and at the end
267 ndn::EncodingBuffer buffer(block);
268
Davide Pesaventoe4631002014-03-21 20:55:36 +0100269 // pad with zeroes if the payload is too short
Davide Pesavento35120ea2015-11-17 21:13:18 +0100270 if (block.size() < ethernet::MIN_DATA_LEN) {
271 static const uint8_t padding[ethernet::MIN_DATA_LEN] = {};
272 buffer.appendByteArray(padding, ethernet::MIN_DATA_LEN - block.size());
273 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100274
275 // construct and prepend the ethernet header
Junxiao Shi3ffe66d2014-11-06 15:37:59 -0700276 static uint16_t ethertype = htons(ethernet::ETHERTYPE_NDN);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100277 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(&ethertype), ethernet::TYPE_LEN);
Davide Pesaventob60cc122014-03-19 19:26:02 +0100278 buffer.prependByteArray(m_srcAddress.data(), m_srcAddress.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100279 buffer.prependByteArray(m_destAddress.data(), m_destAddress.size());
280
281 // send the packet
Davide Pesavento7726ae52014-11-23 21:01:05 +0100282 int sent = pcap_inject(m_pcap.get(), buffer.buf(), buffer.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100283 if (sent < 0)
Davide Pesavento35120ea2015-11-17 21:13:18 +0100284 NFD_LOG_FACE_ERROR("pcap_inject failed: " << pcap_geterr(m_pcap.get()));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100285 else if (static_cast<size_t>(sent) < buffer.size())
Davide Pesavento35120ea2015-11-17 21:13:18 +0100286 NFD_LOG_FACE_ERROR("Failed to send the full frame: bufsize=" << buffer.size() << " sent=" << sent);
287 else
288 // print block size because we don't want to count the padding in buffer
289 NFD_LOG_FACE_TRACE("Successfully sent: " << block.size() << " bytes");
Davide Pesavento44deacc2014-02-19 10:48:07 +0100290}
291
292void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100293EthernetTransport::handleRead(const boost::system::error_code& error, size_t)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100294{
295 if (error)
296 return processErrorCode(error);
297
Davide Pesavento7726ae52014-11-23 21:01:05 +0100298 pcap_pkthdr* header;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100299 const uint8_t* packet;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100300
301 // read the pcap header and packet data
Davide Pesavento7726ae52014-11-23 21:01:05 +0100302 int ret = pcap_next_ex(m_pcap.get(), &header, &packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100303 if (ret < 0)
Davide Pesavento35120ea2015-11-17 21:13:18 +0100304 NFD_LOG_FACE_ERROR("pcap_next_ex failed: " << pcap_geterr(m_pcap.get()));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100305 else if (ret == 0)
Davide Pesavento35120ea2015-11-17 21:13:18 +0100306 NFD_LOG_FACE_WARN("Read timeout");
Davide Pesavento44deacc2014-02-19 10:48:07 +0100307 else
Davide Pesavento35120ea2015-11-17 21:13:18 +0100308 processIncomingPacket(header, packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100309
Davide Pesavento9a090a02015-01-29 18:15:26 +0100310#ifdef _DEBUG
311 pcap_stat ps{};
312 ret = pcap_stats(m_pcap.get(), &ps);
Davide Pesavento35120ea2015-11-17 21:13:18 +0100313 if (ret < 0) {
314 NFD_LOG_FACE_DEBUG("pcap_stats failed: " << pcap_geterr(m_pcap.get()));
315 }
316 else if (ret == 0) {
317 if (ps.ps_drop - m_nDropped > 0)
318 NFD_LOG_FACE_DEBUG("Detected " << ps.ps_drop - m_nDropped << " dropped packet(s)");
319 m_nDropped = ps.ps_drop;
320 }
Davide Pesavento9a090a02015-01-29 18:15:26 +0100321#endif
322
Davide Pesavento292e5e12015-03-13 02:08:33 +0100323 m_socket.async_read_some(boost::asio::null_buffers(),
Davide Pesavento35120ea2015-11-17 21:13:18 +0100324 bind(&EthernetTransport::handleRead, this,
Davide Pesavento292e5e12015-03-13 02:08:33 +0100325 boost::asio::placeholders::error,
326 boost::asio::placeholders::bytes_transferred));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100327}
328
329void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100330EthernetTransport::processIncomingPacket(const pcap_pkthdr* header, const uint8_t* packet)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100331{
Davide Pesavento7726ae52014-11-23 21:01:05 +0100332 size_t length = header->caplen;
Junxiao Shi083f7782015-02-21 12:06:26 -0700333 if (length < ethernet::HDR_LEN + ethernet::MIN_DATA_LEN) {
334 NFD_LOG_FACE_WARN("Received frame is too short (" << length << " bytes)");
335 return;
336 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100337
Davide Pesavento7726ae52014-11-23 21:01:05 +0100338 const ether_header* eh = reinterpret_cast<const ether_header*>(packet);
Matteo Sammarco66df9742014-11-21 18:31:26 +0100339 const ethernet::Address sourceAddress(eh->ether_shost);
Davide Pesavento7726ae52014-11-23 21:01:05 +0100340
341 // assert in case BPF fails to filter unwanted frames
342 BOOST_ASSERT_MSG(ethernet::Address(eh->ether_dhost) == m_destAddress,
343 "Received frame addressed to a different multicast group");
Matteo Sammarco66df9742014-11-21 18:31:26 +0100344 BOOST_ASSERT_MSG(sourceAddress != m_srcAddress,
Davide Pesavento7726ae52014-11-23 21:01:05 +0100345 "Received frame sent by this host");
346 BOOST_ASSERT_MSG(ntohs(eh->ether_type) == ethernet::ETHERTYPE_NDN,
347 "Received frame with unrecognized ethertype");
348
349 packet += ethernet::HDR_LEN;
350 length -= ethernet::HDR_LEN;
351
Junxiao Shi78926c92015-02-28 22:56:06 -0700352 bool isOk = false;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100353 Block element;
354 std::tie(isOk, element) = Block::fromBuffer(packet, length);
Junxiao Shi083f7782015-02-21 12:06:26 -0700355 if (!isOk) {
Davide Pesavento35120ea2015-11-17 21:13:18 +0100356 NFD_LOG_FACE_WARN("Received invalid packet from " << sourceAddress.toString());
Junxiao Shi083f7782015-02-21 12:06:26 -0700357 return;
358 }
Matteo Sammarco66df9742014-11-21 18:31:26 +0100359
Davide Pesavento35120ea2015-11-17 21:13:18 +0100360 NFD_LOG_FACE_TRACE("Received: " << element.size() << " bytes from " << sourceAddress.toString());
Matteo Sammarco66df9742014-11-21 18:31:26 +0100361
Davide Pesavento35120ea2015-11-17 21:13:18 +0100362 Transport::Packet tp(std::move(element));
363 static_assert(sizeof(tp.remoteEndpoint) >= ethernet::ADDR_LEN,
364 "Transport::Packet::remoteEndpoint is too small");
365 std::memcpy(&tp.remoteEndpoint, sourceAddress.data(), sourceAddress.size());
366 this->receive(std::move(tp));
Davide Pesavento7726ae52014-11-23 21:01:05 +0100367}
368
369void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100370EthernetTransport::processErrorCode(const boost::system::error_code& error)
Davide Pesavento7726ae52014-11-23 21:01:05 +0100371{
Davide Pesavento35120ea2015-11-17 21:13:18 +0100372 NFD_LOG_FACE_TRACE(__func__);
373
374 if (getState() == TransportState::CLOSING ||
375 getState() == TransportState::FAILED ||
376 getState() == TransportState::CLOSED ||
377 error == boost::asio::error::operation_aborted)
378 // transport is shutting down, ignore any errors
Davide Pesavento7726ae52014-11-23 21:01:05 +0100379 return;
380
Davide Pesavento35120ea2015-11-17 21:13:18 +0100381 NFD_LOG_FACE_WARN("Receive operation failed: " << error.message());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100382}
383
Davide Pesavento44deacc2014-02-19 10:48:07 +0100384size_t
Davide Pesavento35120ea2015-11-17 21:13:18 +0100385EthernetTransport::getInterfaceMtu()
Davide Pesavento44deacc2014-02-19 10:48:07 +0100386{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100387#ifdef SIOCGIFMTU
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100388#if defined(__APPLE__) || defined(__FreeBSD__)
389 // see bug #2328
390 using boost::asio::ip::udp;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100391 udp::socket sock(getGlobalIoService(), udp::v4());
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100392 int fd = sock.native_handle();
393#else
Davide Pesavento292e5e12015-03-13 02:08:33 +0100394 int fd = m_socket.native_handle();
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100395#endif
396
Davide Pesavento10783f22014-03-15 04:40:01 +0100397 ifreq ifr{};
Davide Pesaventob60cc122014-03-19 19:26:02 +0100398 std::strncpy(ifr.ifr_name, m_interfaceName.c_str(), sizeof(ifr.ifr_name) - 1);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100399
Davide Pesavento35120ea2015-11-17 21:13:18 +0100400 if (::ioctl(fd, SIOCGIFMTU, &ifr) == 0) {
401 NFD_LOG_FACE_DEBUG("Interface MTU is " << ifr.ifr_mtu);
Davide Pesavento8eb99572014-12-19 19:12:15 +0100402 return static_cast<size_t>(ifr.ifr_mtu);
Davide Pesavento35120ea2015-11-17 21:13:18 +0100403 }
Davide Pesavento8eb99572014-12-19 19:12:15 +0100404
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100405 NFD_LOG_FACE_WARN("Failed to get interface MTU: " << std::strerror(errno));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100406#endif
407
Davide Pesavento35120ea2015-11-17 21:13:18 +0100408 NFD_LOG_FACE_DEBUG("Assuming default MTU of " << ethernet::MAX_DATA_LEN);
Davide Pesavento8eb99572014-12-19 19:12:15 +0100409 return ethernet::MAX_DATA_LEN;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100410}
411
Davide Pesavento35120ea2015-11-17 21:13:18 +0100412} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100413} // namespace nfd