blob: 9f6d465abf355d519759276ea3db472a69731172 [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi7003c602017-01-10 13:35:28 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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 Pesavento43ff2a92017-05-18 19:50:57 -040027#include "ethernet-protocol.hpp"
Davide Pesaventof8b41eb2014-12-26 19:14:06 +010028#include "core/global-io.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010029
30#include <pcap/pcap.h>
31
Davide Pesavento43ff2a92017-05-18 19:50:57 -040032#include <cerrno> // for errno
33#include <cstring> // for memcpy(), strerror(), strncpy()
34#include <arpa/inet.h> // for htons()
35#include <net/if.h> // for struct ifreq
36#include <sys/ioctl.h> // for ioctl()
Alexander Afanasyevd9479aa2014-06-26 13:52:02 -070037
Davide Pesavento44deacc2014-02-19 10:48:07 +010038namespace nfd {
Davide Pesavento35120ea2015-11-17 21:13:18 +010039namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010040
Davide Pesavento35120ea2015-11-17 21:13:18 +010041NFD_LOG_INIT("EthernetTransport");
Davide Pesavento44deacc2014-02-19 10:48:07 +010042
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040043EthernetTransport::EthernetTransport(const NetworkInterfaceInfo& localEndpoint,
44 const ethernet::Address& remoteEndpoint)
Davide Pesaventofe0580c2017-05-12 02:02:10 -040045 : m_socket(getGlobalIoService())
46 , m_pcap(localEndpoint.name)
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040047 , m_srcAddress(localEndpoint.etherAddress)
48 , m_destAddress(remoteEndpoint)
49 , m_interfaceName(localEndpoint.name)
Davide Pesavento9a090a02015-01-29 18:15:26 +010050#ifdef _DEBUG
51 , m_nDropped(0)
52#endif
Davide Pesavento44deacc2014-02-19 10:48:07 +010053{
Davide Pesaventofe0580c2017-05-12 02:02:10 -040054 try {
55 m_pcap.activate(DLT_EN10MB);
56 m_socket.assign(m_pcap.getFd());
57 }
58 catch (const PcapHelper::Error& e) {
59 BOOST_THROW_EXCEPTION(Error(e.what()));
60 }
Davide Pesavento44deacc2014-02-19 10:48:07 +010061
Davide Pesavento35120ea2015-11-17 21:13:18 +010062 // do this after assigning m_socket because getInterfaceMtu uses it
63 this->setMtu(getInterfaceMtu());
Matteo Sammarco66df9742014-11-21 18:31:26 +010064
Davide Pesavento43ff2a92017-05-18 19:50:57 -040065 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +010066}
67
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040068void
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040069EthernetTransport::doClose()
Davide Pesavento44deacc2014-02-19 10:48:07 +010070{
Davide Pesavento35120ea2015-11-17 21:13:18 +010071 NFD_LOG_FACE_TRACE(__func__);
Alexander Afanasyev251f3c12014-06-02 18:39:58 +030072
Davide Pesavento35120ea2015-11-17 21:13:18 +010073 if (m_socket.is_open()) {
74 // Cancel all outstanding operations and close the socket.
75 // Use the non-throwing variants and ignore errors, if any.
76 boost::system::error_code error;
77 m_socket.cancel(error);
78 m_socket.close(error);
79 }
Davide Pesaventofe0580c2017-05-12 02:02:10 -040080 m_pcap.close();
Davide Pesavento7726ae52014-11-23 21:01:05 +010081
Davide Pesavento35120ea2015-11-17 21:13:18 +010082 // Ensure that the Transport stays alive at least
83 // until all pending handlers are dispatched
84 getGlobalIoService().post([this] {
85 this->setState(TransportState::CLOSED);
86 });
Davide Pesavento44deacc2014-02-19 10:48:07 +010087}
88
89void
Davide Pesaventofe0580c2017-05-12 02:02:10 -040090EthernetTransport::doSend(Transport::Packet&& packet)
Davide Pesavento44deacc2014-02-19 10:48:07 +010091{
Davide Pesaventofe0580c2017-05-12 02:02:10 -040092 NFD_LOG_FACE_TRACE(__func__);
Davide Pesavento44deacc2014-02-19 10:48:07 +010093
Davide Pesaventofe0580c2017-05-12 02:02:10 -040094 sendPacket(packet.packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +010095}
96
Davide Pesavento10783f22014-03-15 04:40:01 +010097void
Davide Pesavento35120ea2015-11-17 21:13:18 +010098EthernetTransport::sendPacket(const ndn::Block& block)
Davide Pesavento44deacc2014-02-19 10:48:07 +010099{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100100 ndn::EncodingBuffer buffer(block);
101
Davide Pesaventoe4631002014-03-21 20:55:36 +0100102 // pad with zeroes if the payload is too short
Davide Pesavento35120ea2015-11-17 21:13:18 +0100103 if (block.size() < ethernet::MIN_DATA_LEN) {
104 static const uint8_t padding[ethernet::MIN_DATA_LEN] = {};
105 buffer.appendByteArray(padding, ethernet::MIN_DATA_LEN - block.size());
106 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100107
108 // construct and prepend the ethernet header
Junxiao Shi3ffe66d2014-11-06 15:37:59 -0700109 static uint16_t ethertype = htons(ethernet::ETHERTYPE_NDN);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100110 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(&ethertype), ethernet::TYPE_LEN);
Davide Pesaventob60cc122014-03-19 19:26:02 +0100111 buffer.prependByteArray(m_srcAddress.data(), m_srcAddress.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100112 buffer.prependByteArray(m_destAddress.data(), m_destAddress.size());
113
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400114 // send the frame
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400115 int sent = pcap_inject(m_pcap, buffer.buf(), buffer.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100116 if (sent < 0)
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400117 NFD_LOG_FACE_ERROR("pcap_inject failed: " << m_pcap.getLastError());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100118 else if (static_cast<size_t>(sent) < buffer.size())
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400119 NFD_LOG_FACE_ERROR("Failed to send the full frame: size=" << buffer.size() << " sent=" << sent);
Davide Pesavento35120ea2015-11-17 21:13:18 +0100120 else
121 // print block size because we don't want to count the padding in buffer
122 NFD_LOG_FACE_TRACE("Successfully sent: " << block.size() << " bytes");
Davide Pesavento44deacc2014-02-19 10:48:07 +0100123}
124
125void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400126EthernetTransport::asyncRead()
127{
128 m_socket.async_read_some(boost::asio::null_buffers(),
129 bind(&EthernetTransport::handleRead, this,
130 boost::asio::placeholders::error));
131}
132
133void
134EthernetTransport::handleRead(const boost::system::error_code& error)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100135{
136 if (error)
137 return processErrorCode(error);
138
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400139 const uint8_t* pkt;
140 size_t len;
141 std::string err;
142 std::tie(pkt, len, err) = m_pcap.readNextPacket();
Davide Pesavento35120ea2015-11-17 21:13:18 +0100143
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400144 if (pkt == nullptr) {
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400145 NFD_LOG_FACE_ERROR("Read error: " << err);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400146 }
147 else {
148 const ether_header* eh;
149 std::tie(eh, err) = ethernet::checkFrameHeader(pkt, len, m_srcAddress,
150 m_destAddress.isMulticast() ? m_destAddress : m_srcAddress);
151 if (eh == nullptr) {
152 NFD_LOG_FACE_DEBUG(err);
153 }
154 else {
155 ethernet::Address sender(eh->ether_shost);
156 pkt += ethernet::HDR_LEN;
157 len -= ethernet::HDR_LEN;
158 receivePayload(pkt, len, sender);
159 }
160 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100161
Davide Pesavento9a090a02015-01-29 18:15:26 +0100162#ifdef _DEBUG
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400163 size_t nDropped = m_pcap.getNDropped();
164 if (nDropped - m_nDropped > 0)
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400165 NFD_LOG_FACE_DEBUG("Detected " << nDropped - m_nDropped << " dropped frame(s)");
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400166 m_nDropped = nDropped;
Davide Pesavento9a090a02015-01-29 18:15:26 +0100167#endif
168
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400169 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +0100170}
171
172void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400173EthernetTransport::receivePayload(const uint8_t* payload, size_t length,
174 const ethernet::Address& sender)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100175{
Junxiao Shi78926c92015-02-28 22:56:06 -0700176 bool isOk = false;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100177 Block element;
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400178 std::tie(isOk, element) = Block::fromBuffer(payload, length);
Junxiao Shi083f7782015-02-21 12:06:26 -0700179 if (!isOk) {
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400180 NFD_LOG_FACE_WARN("Received invalid packet from " << sender);
Junxiao Shi083f7782015-02-21 12:06:26 -0700181 return;
182 }
Matteo Sammarco66df9742014-11-21 18:31:26 +0100183
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400184 NFD_LOG_FACE_TRACE("Received: " << element.size() << " bytes from " << sender);
Matteo Sammarco66df9742014-11-21 18:31:26 +0100185
Davide Pesavento35120ea2015-11-17 21:13:18 +0100186 Transport::Packet tp(std::move(element));
187 static_assert(sizeof(tp.remoteEndpoint) >= ethernet::ADDR_LEN,
188 "Transport::Packet::remoteEndpoint is too small");
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400189 if (m_destAddress.isMulticast()) {
190 std::memcpy(&tp.remoteEndpoint, sender.data(), sender.size());
191 }
Davide Pesavento35120ea2015-11-17 21:13:18 +0100192 this->receive(std::move(tp));
Davide Pesavento7726ae52014-11-23 21:01:05 +0100193}
194
195void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100196EthernetTransport::processErrorCode(const boost::system::error_code& error)
Davide Pesavento7726ae52014-11-23 21:01:05 +0100197{
Junxiao Shi7003c602017-01-10 13:35:28 +0000198 // boost::asio::error::operation_aborted must be checked first. In that situation, the Transport
199 // may already have been destructed, and it's unsafe to call getState() or do logging.
200 if (error == boost::asio::error::operation_aborted ||
201 getState() == TransportState::CLOSING ||
Davide Pesavento35120ea2015-11-17 21:13:18 +0100202 getState() == TransportState::FAILED ||
Junxiao Shi7003c602017-01-10 13:35:28 +0000203 getState() == TransportState::CLOSED) {
Davide Pesavento35120ea2015-11-17 21:13:18 +0100204 // transport is shutting down, ignore any errors
Davide Pesavento7726ae52014-11-23 21:01:05 +0100205 return;
Junxiao Shi7003c602017-01-10 13:35:28 +0000206 }
Davide Pesavento7726ae52014-11-23 21:01:05 +0100207
Davide Pesavento35120ea2015-11-17 21:13:18 +0100208 NFD_LOG_FACE_WARN("Receive operation failed: " << error.message());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100209}
210
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400211int
Davide Pesavento35120ea2015-11-17 21:13:18 +0100212EthernetTransport::getInterfaceMtu()
Davide Pesavento44deacc2014-02-19 10:48:07 +0100213{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100214#ifdef SIOCGIFMTU
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100215#if defined(__APPLE__) || defined(__FreeBSD__)
216 // see bug #2328
217 using boost::asio::ip::udp;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100218 udp::socket sock(getGlobalIoService(), udp::v4());
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100219 int fd = sock.native_handle();
220#else
Davide Pesavento292e5e12015-03-13 02:08:33 +0100221 int fd = m_socket.native_handle();
Davide Pesaventof8b41eb2014-12-26 19:14:06 +0100222#endif
223
Davide Pesavento10783f22014-03-15 04:40:01 +0100224 ifreq ifr{};
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400225 std::strncpy(ifr.ifr_name, m_interfaceName.data(), sizeof(ifr.ifr_name) - 1);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100226
Davide Pesavento35120ea2015-11-17 21:13:18 +0100227 if (::ioctl(fd, SIOCGIFMTU, &ifr) == 0) {
228 NFD_LOG_FACE_DEBUG("Interface MTU is " << ifr.ifr_mtu);
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400229 return ifr.ifr_mtu;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100230 }
Davide Pesavento8eb99572014-12-19 19:12:15 +0100231
Davide Pesaventobe40fb12015-02-23 21:09:34 +0100232 NFD_LOG_FACE_WARN("Failed to get interface MTU: " << std::strerror(errno));
Davide Pesavento44deacc2014-02-19 10:48:07 +0100233#endif
234
Davide Pesavento35120ea2015-11-17 21:13:18 +0100235 NFD_LOG_FACE_DEBUG("Assuming default MTU of " << ethernet::MAX_DATA_LEN);
Davide Pesavento8eb99572014-12-19 19:12:15 +0100236 return ethernet::MAX_DATA_LEN;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100237}
238
Davide Pesavento35120ea2015-11-17 21:13:18 +0100239} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100240} // namespace nfd