blob: 5a810a3b81857ec3a68af53a1797b9dd7dfb2caa [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi0d82d042017-07-07 06:15:27 +00002/*
Eric Newberryf3ee8082020-01-28 13:44:18 -08003 * Copyright (c) 2014-2020, 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 Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/global.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010029
30#include <pcap/pcap.h>
31
Davide Pesavento457f1352018-07-14 17:17:38 -040032#include <cstring> // for memcpy()
33
34#include <boost/endian/conversion.hpp>
Alexander Afanasyevd9479aa2014-06-26 13:52:02 -070035
Davide Pesavento44deacc2014-02-19 10:48:07 +010036namespace nfd {
Davide Pesavento35120ea2015-11-17 21:13:18 +010037namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010038
Davide Pesaventoa3148082018-04-12 18:21:54 -040039NFD_LOG_INIT(EthernetTransport);
Davide Pesavento44deacc2014-02-19 10:48:07 +010040
Junxiao Shi0d82d042017-07-07 06:15:27 +000041EthernetTransport::EthernetTransport(const ndn::net::NetworkInterface& localEndpoint,
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040042 const ethernet::Address& remoteEndpoint)
Davide Pesaventofe0580c2017-05-12 02:02:10 -040043 : m_socket(getGlobalIoService())
Junxiao Shi0d82d042017-07-07 06:15:27 +000044 , m_pcap(localEndpoint.getName())
45 , m_srcAddress(localEndpoint.getEthernetAddress())
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040046 , m_destAddress(remoteEndpoint)
Junxiao Shi0d82d042017-07-07 06:15:27 +000047 , m_interfaceName(localEndpoint.getName())
Davide Pesavento0b0a71d2017-07-02 13:57:36 -040048 , m_hasRecentlyReceived(false)
Davide Pesavento9a090a02015-01-29 18:15:26 +010049#ifdef _DEBUG
50 , m_nDropped(0)
51#endif
Davide Pesavento44deacc2014-02-19 10:48:07 +010052{
Davide Pesaventofe0580c2017-05-12 02:02:10 -040053 try {
54 m_pcap.activate(DLT_EN10MB);
55 m_socket.assign(m_pcap.getFd());
56 }
57 catch (const PcapHelper::Error& e) {
Davide Pesavento19779d82019-02-14 13:40:04 -050058 NDN_THROW_NESTED(Error(e.what()));
Davide Pesaventofe0580c2017-05-12 02:02:10 -040059 }
Davide Pesavento44deacc2014-02-19 10:48:07 +010060
Eric Newberryfeeb9182020-03-29 00:28:41 -070061 // Set initial transport state based upon the state of the underlying NetworkInterface
62 handleNetifStateChange(localEndpoint.getState());
63
Eric Newberryf3ee8082020-01-28 13:44:18 -080064 m_netifStateChangedConn = localEndpoint.onStateChanged.connect(
65 [this] (ndn::net::InterfaceState, ndn::net::InterfaceState newState) {
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000066 handleNetifStateChange(newState);
67 });
68
Eric Newberryf3ee8082020-01-28 13:44:18 -080069 m_netifMtuChangedConn = localEndpoint.onMtuChanged.connect(
70 [this] (uint32_t, uint32_t mtu) {
71 setMtu(mtu);
72 });
73
Davide Pesavento43ff2a92017-05-18 19:50:57 -040074 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +010075}
76
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040077void
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040078EthernetTransport::doClose()
Davide Pesavento44deacc2014-02-19 10:48:07 +010079{
Davide Pesavento35120ea2015-11-17 21:13:18 +010080 NFD_LOG_FACE_TRACE(__func__);
Alexander Afanasyev251f3c12014-06-02 18:39:58 +030081
Davide Pesavento35120ea2015-11-17 21:13:18 +010082 if (m_socket.is_open()) {
83 // Cancel all outstanding operations and close the socket.
84 // Use the non-throwing variants and ignore errors, if any.
85 boost::system::error_code error;
86 m_socket.cancel(error);
87 m_socket.close(error);
88 }
Davide Pesaventofe0580c2017-05-12 02:02:10 -040089 m_pcap.close();
Davide Pesavento7726ae52014-11-23 21:01:05 +010090
Davide Pesavento35120ea2015-11-17 21:13:18 +010091 // Ensure that the Transport stays alive at least
92 // until all pending handlers are dispatched
93 getGlobalIoService().post([this] {
94 this->setState(TransportState::CLOSED);
95 });
Davide Pesavento44deacc2014-02-19 10:48:07 +010096}
97
98void
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000099EthernetTransport::handleNetifStateChange(ndn::net::InterfaceState netifState)
100{
101 NFD_LOG_FACE_TRACE("netif is " << netifState);
102 if (netifState == ndn::net::InterfaceState::RUNNING) {
103 if (getState() == TransportState::DOWN) {
104 this->setState(TransportState::UP);
105 }
106 }
107 else if (getState() == TransportState::UP) {
108 this->setState(TransportState::DOWN);
109 }
110}
111
112void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400113EthernetTransport::doSend(const Block& packet, const EndpointId&)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100114{
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400115 NFD_LOG_FACE_TRACE(__func__);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100116
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400117 sendPacket(packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100118}
119
Davide Pesavento10783f22014-03-15 04:40:01 +0100120void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100121EthernetTransport::sendPacket(const ndn::Block& block)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100122{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100123 ndn::EncodingBuffer buffer(block);
124
Davide Pesaventoe4631002014-03-21 20:55:36 +0100125 // pad with zeroes if the payload is too short
Davide Pesavento35120ea2015-11-17 21:13:18 +0100126 if (block.size() < ethernet::MIN_DATA_LEN) {
127 static const uint8_t padding[ethernet::MIN_DATA_LEN] = {};
128 buffer.appendByteArray(padding, ethernet::MIN_DATA_LEN - block.size());
129 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100130
131 // construct and prepend the ethernet header
Davide Pesavento457f1352018-07-14 17:17:38 -0400132 uint16_t ethertype = boost::endian::native_to_big(ethernet::ETHERTYPE_NDN);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100133 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(&ethertype), ethernet::TYPE_LEN);
Davide Pesaventob60cc122014-03-19 19:26:02 +0100134 buffer.prependByteArray(m_srcAddress.data(), m_srcAddress.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100135 buffer.prependByteArray(m_destAddress.data(), m_destAddress.size());
136
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400137 // send the frame
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400138 int sent = pcap_inject(m_pcap, buffer.buf(), buffer.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100139 if (sent < 0)
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400140 handleError("Send operation failed: " + m_pcap.getLastError());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100141 else if (static_cast<size_t>(sent) < buffer.size())
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400142 handleError("Failed to send the full frame: size=" + to_string(buffer.size()) +
143 " sent=" + to_string(sent));
Davide Pesavento35120ea2015-11-17 21:13:18 +0100144 else
145 // print block size because we don't want to count the padding in buffer
146 NFD_LOG_FACE_TRACE("Successfully sent: " << block.size() << " bytes");
Davide Pesavento44deacc2014-02-19 10:48:07 +0100147}
148
149void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400150EthernetTransport::asyncRead()
151{
152 m_socket.async_read_some(boost::asio::null_buffers(),
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400153 [this] (const auto& e, auto) { this->handleRead(e); });
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400154}
155
156void
157EthernetTransport::handleRead(const boost::system::error_code& error)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100158{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400159 if (error) {
160 // boost::asio::error::operation_aborted must be checked first: in that case, the Transport
161 // may already have been destructed, therefore it's unsafe to call getState() or do logging.
162 if (error != boost::asio::error::operation_aborted &&
163 getState() != TransportState::CLOSING &&
164 getState() != TransportState::FAILED &&
165 getState() != TransportState::CLOSED) {
166 handleError("Receive operation failed: " + error.message());
167 }
168 return;
169 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100170
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400171 const uint8_t* pkt;
172 size_t len;
173 std::string err;
174 std::tie(pkt, len, err) = m_pcap.readNextPacket();
Davide Pesavento35120ea2015-11-17 21:13:18 +0100175
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400176 if (pkt == nullptr) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400177 NFD_LOG_FACE_WARN("Read error: " << err);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400178 }
179 else {
180 const ether_header* eh;
181 std::tie(eh, err) = ethernet::checkFrameHeader(pkt, len, m_srcAddress,
182 m_destAddress.isMulticast() ? m_destAddress : m_srcAddress);
183 if (eh == nullptr) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400184 NFD_LOG_FACE_WARN(err);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400185 }
186 else {
187 ethernet::Address sender(eh->ether_shost);
188 pkt += ethernet::HDR_LEN;
189 len -= ethernet::HDR_LEN;
190 receivePayload(pkt, len, sender);
191 }
192 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100193
Davide Pesavento9a090a02015-01-29 18:15:26 +0100194#ifdef _DEBUG
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400195 size_t nDropped = m_pcap.getNDropped();
196 if (nDropped - m_nDropped > 0)
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400197 NFD_LOG_FACE_DEBUG("Detected " << nDropped - m_nDropped << " dropped frame(s)");
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400198 m_nDropped = nDropped;
Davide Pesavento9a090a02015-01-29 18:15:26 +0100199#endif
200
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400201 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +0100202}
203
204void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400205EthernetTransport::receivePayload(const uint8_t* payload, size_t length,
206 const ethernet::Address& sender)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100207{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400208 NFD_LOG_FACE_TRACE("Received: " << length << " bytes from " << sender);
209
Junxiao Shi78926c92015-02-28 22:56:06 -0700210 bool isOk = false;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100211 Block element;
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400212 std::tie(isOk, element) = Block::fromBuffer(payload, length);
Junxiao Shi083f7782015-02-21 12:06:26 -0700213 if (!isOk) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400214 NFD_LOG_FACE_WARN("Failed to parse incoming packet from " << sender);
215 // This packet won't extend the face lifetime
Junxiao Shi083f7782015-02-21 12:06:26 -0700216 return;
217 }
Davide Pesavento0b0a71d2017-07-02 13:57:36 -0400218 m_hasRecentlyReceived = true;
Matteo Sammarco66df9742014-11-21 18:31:26 +0100219
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400220 static_assert(sizeof(EndpointId) >= ethernet::ADDR_LEN, "EndpointId is too small");
221 EndpointId endpoint = 0;
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400222 if (m_destAddress.isMulticast()) {
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400223 std::memcpy(&endpoint, sender.data(), sender.size());
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400224 }
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400225
226 this->receive(element, endpoint);
Davide Pesavento7726ae52014-11-23 21:01:05 +0100227}
228
229void
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400230EthernetTransport::handleError(const std::string& errorMessage)
Davide Pesavento7726ae52014-11-23 21:01:05 +0100231{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400232 if (getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
233 NFD_LOG_FACE_DEBUG("Permanent face ignores error: " << errorMessage);
Davide Pesavento7726ae52014-11-23 21:01:05 +0100234 return;
Junxiao Shi7003c602017-01-10 13:35:28 +0000235 }
Davide Pesavento7726ae52014-11-23 21:01:05 +0100236
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400237 NFD_LOG_FACE_ERROR(errorMessage);
238 this->setState(TransportState::FAILED);
239 doClose();
Davide Pesavento44deacc2014-02-19 10:48:07 +0100240}
241
Davide Pesavento35120ea2015-11-17 21:13:18 +0100242} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100243} // namespace nfd