blob: 0e69745db12839cd8948db8c27aaa1b58d7341de [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/*
Davide Pesavento19779d82019-02-14 13:40:04 -05003 * Copyright (c) 2014-2019, 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 Pesavento3dade002019-03-19 11:29:56 -060028#include "daemon/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
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000061 m_netifStateConn = localEndpoint.onStateChanged.connect(
62 [=] (ndn::net::InterfaceState, ndn::net::InterfaceState newState) {
63 handleNetifStateChange(newState);
64 });
65
Davide Pesavento43ff2a92017-05-18 19:50:57 -040066 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +010067}
68
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040069void
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040070EthernetTransport::doClose()
Davide Pesavento44deacc2014-02-19 10:48:07 +010071{
Davide Pesavento35120ea2015-11-17 21:13:18 +010072 NFD_LOG_FACE_TRACE(__func__);
Alexander Afanasyev251f3c12014-06-02 18:39:58 +030073
Davide Pesavento35120ea2015-11-17 21:13:18 +010074 if (m_socket.is_open()) {
75 // Cancel all outstanding operations and close the socket.
76 // Use the non-throwing variants and ignore errors, if any.
77 boost::system::error_code error;
78 m_socket.cancel(error);
79 m_socket.close(error);
80 }
Davide Pesaventofe0580c2017-05-12 02:02:10 -040081 m_pcap.close();
Davide Pesavento7726ae52014-11-23 21:01:05 +010082
Davide Pesavento35120ea2015-11-17 21:13:18 +010083 // Ensure that the Transport stays alive at least
84 // until all pending handlers are dispatched
85 getGlobalIoService().post([this] {
86 this->setState(TransportState::CLOSED);
87 });
Davide Pesavento44deacc2014-02-19 10:48:07 +010088}
89
90void
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000091EthernetTransport::handleNetifStateChange(ndn::net::InterfaceState netifState)
92{
93 NFD_LOG_FACE_TRACE("netif is " << netifState);
94 if (netifState == ndn::net::InterfaceState::RUNNING) {
95 if (getState() == TransportState::DOWN) {
96 this->setState(TransportState::UP);
97 }
98 }
99 else if (getState() == TransportState::UP) {
100 this->setState(TransportState::DOWN);
101 }
102}
103
104void
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400105EthernetTransport::doSend(Transport::Packet&& packet)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100106{
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400107 NFD_LOG_FACE_TRACE(__func__);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100108
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400109 sendPacket(packet.packet);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100110}
111
Davide Pesavento10783f22014-03-15 04:40:01 +0100112void
Davide Pesavento35120ea2015-11-17 21:13:18 +0100113EthernetTransport::sendPacket(const ndn::Block& block)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100114{
Davide Pesavento44deacc2014-02-19 10:48:07 +0100115 ndn::EncodingBuffer buffer(block);
116
Davide Pesaventoe4631002014-03-21 20:55:36 +0100117 // pad with zeroes if the payload is too short
Davide Pesavento35120ea2015-11-17 21:13:18 +0100118 if (block.size() < ethernet::MIN_DATA_LEN) {
119 static const uint8_t padding[ethernet::MIN_DATA_LEN] = {};
120 buffer.appendByteArray(padding, ethernet::MIN_DATA_LEN - block.size());
121 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100122
123 // construct and prepend the ethernet header
Davide Pesavento457f1352018-07-14 17:17:38 -0400124 uint16_t ethertype = boost::endian::native_to_big(ethernet::ETHERTYPE_NDN);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100125 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(&ethertype), ethernet::TYPE_LEN);
Davide Pesaventob60cc122014-03-19 19:26:02 +0100126 buffer.prependByteArray(m_srcAddress.data(), m_srcAddress.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100127 buffer.prependByteArray(m_destAddress.data(), m_destAddress.size());
128
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400129 // send the frame
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400130 int sent = pcap_inject(m_pcap, buffer.buf(), buffer.size());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100131 if (sent < 0)
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400132 handleError("Send operation failed: " + m_pcap.getLastError());
Davide Pesavento44deacc2014-02-19 10:48:07 +0100133 else if (static_cast<size_t>(sent) < buffer.size())
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400134 handleError("Failed to send the full frame: size=" + to_string(buffer.size()) +
135 " sent=" + to_string(sent));
Davide Pesavento35120ea2015-11-17 21:13:18 +0100136 else
137 // print block size because we don't want to count the padding in buffer
138 NFD_LOG_FACE_TRACE("Successfully sent: " << block.size() << " bytes");
Davide Pesavento44deacc2014-02-19 10:48:07 +0100139}
140
141void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400142EthernetTransport::asyncRead()
143{
144 m_socket.async_read_some(boost::asio::null_buffers(),
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400145 [this] (const auto& e, auto) { this->handleRead(e); });
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400146}
147
148void
149EthernetTransport::handleRead(const boost::system::error_code& error)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100150{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400151 if (error) {
152 // boost::asio::error::operation_aborted must be checked first: in that case, the Transport
153 // may already have been destructed, therefore it's unsafe to call getState() or do logging.
154 if (error != boost::asio::error::operation_aborted &&
155 getState() != TransportState::CLOSING &&
156 getState() != TransportState::FAILED &&
157 getState() != TransportState::CLOSED) {
158 handleError("Receive operation failed: " + error.message());
159 }
160 return;
161 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100162
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400163 const uint8_t* pkt;
164 size_t len;
165 std::string err;
166 std::tie(pkt, len, err) = m_pcap.readNextPacket();
Davide Pesavento35120ea2015-11-17 21:13:18 +0100167
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400168 if (pkt == nullptr) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400169 NFD_LOG_FACE_WARN("Read error: " << err);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400170 }
171 else {
172 const ether_header* eh;
173 std::tie(eh, err) = ethernet::checkFrameHeader(pkt, len, m_srcAddress,
174 m_destAddress.isMulticast() ? m_destAddress : m_srcAddress);
175 if (eh == nullptr) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400176 NFD_LOG_FACE_WARN(err);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400177 }
178 else {
179 ethernet::Address sender(eh->ether_shost);
180 pkt += ethernet::HDR_LEN;
181 len -= ethernet::HDR_LEN;
182 receivePayload(pkt, len, sender);
183 }
184 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100185
Davide Pesavento9a090a02015-01-29 18:15:26 +0100186#ifdef _DEBUG
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400187 size_t nDropped = m_pcap.getNDropped();
188 if (nDropped - m_nDropped > 0)
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400189 NFD_LOG_FACE_DEBUG("Detected " << nDropped - m_nDropped << " dropped frame(s)");
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400190 m_nDropped = nDropped;
Davide Pesavento9a090a02015-01-29 18:15:26 +0100191#endif
192
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400193 asyncRead();
Davide Pesavento44deacc2014-02-19 10:48:07 +0100194}
195
196void
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400197EthernetTransport::receivePayload(const uint8_t* payload, size_t length,
198 const ethernet::Address& sender)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100199{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400200 NFD_LOG_FACE_TRACE("Received: " << length << " bytes from " << sender);
201
Junxiao Shi78926c92015-02-28 22:56:06 -0700202 bool isOk = false;
Davide Pesavento35120ea2015-11-17 21:13:18 +0100203 Block element;
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400204 std::tie(isOk, element) = Block::fromBuffer(payload, length);
Junxiao Shi083f7782015-02-21 12:06:26 -0700205 if (!isOk) {
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400206 NFD_LOG_FACE_WARN("Failed to parse incoming packet from " << sender);
207 // This packet won't extend the face lifetime
Junxiao Shi083f7782015-02-21 12:06:26 -0700208 return;
209 }
Davide Pesavento0b0a71d2017-07-02 13:57:36 -0400210 m_hasRecentlyReceived = true;
Matteo Sammarco66df9742014-11-21 18:31:26 +0100211
Davide Pesavento35120ea2015-11-17 21:13:18 +0100212 Transport::Packet tp(std::move(element));
213 static_assert(sizeof(tp.remoteEndpoint) >= ethernet::ADDR_LEN,
214 "Transport::Packet::remoteEndpoint is too small");
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400215 if (m_destAddress.isMulticast()) {
216 std::memcpy(&tp.remoteEndpoint, sender.data(), sender.size());
217 }
Davide Pesavento35120ea2015-11-17 21:13:18 +0100218 this->receive(std::move(tp));
Davide Pesavento7726ae52014-11-23 21:01:05 +0100219}
220
221void
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400222EthernetTransport::handleError(const std::string& errorMessage)
Davide Pesavento7726ae52014-11-23 21:01:05 +0100223{
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400224 if (getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
225 NFD_LOG_FACE_DEBUG("Permanent face ignores error: " << errorMessage);
Davide Pesavento7726ae52014-11-23 21:01:05 +0100226 return;
Junxiao Shi7003c602017-01-10 13:35:28 +0000227 }
Davide Pesavento7726ae52014-11-23 21:01:05 +0100228
Davide Pesavento1816d4b2017-07-02 12:20:48 -0400229 NFD_LOG_FACE_ERROR(errorMessage);
230 this->setState(TransportState::FAILED);
231 doClose();
Davide Pesavento44deacc2014-02-19 10:48:07 +0100232}
233
Davide Pesavento35120ea2015-11-17 21:13:18 +0100234} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100235} // namespace nfd