blob: 4d0adc321951005bd7774beb24ba03afab933369 [file] [log] [blame]
Davide Pesavento43ff2a92017-05-18 19:50:57 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi0d82d042017-07-07 06:15:27 +00002/*
Davide Pesaventoa599d2a2022-02-16 18:52:43 -05003 * Copyright (c) 2014-2022, Regents of the University of California,
Davide Pesavento43ff2a92017-05-18 19:50:57 -04004 * 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.
10 *
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/>.
24 */
25
26#include "ethernet-channel.hpp"
27#include "ethernet-protocol.hpp"
Davide Pesaventocb425e82019-07-14 21:48:22 -040028#include "face.hpp"
Davide Pesavento43ff2a92017-05-18 19:50:57 -040029#include "generic-link-service.hpp"
30#include "unicast-ethernet-transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040031#include "common/global.hpp"
Davide Pesavento43ff2a92017-05-18 19:50:57 -040032
33#include <boost/range/adaptor/map.hpp>
34#include <pcap/pcap.h>
35
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040036namespace nfd::face {
Davide Pesavento43ff2a92017-05-18 19:50:57 -040037
Davide Pesaventoa3148082018-04-12 18:21:54 -040038NFD_LOG_INIT(EthernetChannel);
Davide Pesavento43ff2a92017-05-18 19:50:57 -040039
Junxiao Shi0d82d042017-07-07 06:15:27 +000040EthernetChannel::EthernetChannel(shared_ptr<const ndn::net::NetworkInterface> localEndpoint,
Davide Pesavento43ff2a92017-05-18 19:50:57 -040041 time::nanoseconds idleTimeout)
Junxiao Shi0d82d042017-07-07 06:15:27 +000042 : m_localEndpoint(std::move(localEndpoint))
Davide Pesavento43ff2a92017-05-18 19:50:57 -040043 , m_isListening(false)
44 , m_socket(getGlobalIoService())
Junxiao Shi0d82d042017-07-07 06:15:27 +000045 , m_pcap(m_localEndpoint->getName())
Davide Pesavento43ff2a92017-05-18 19:50:57 -040046 , m_idleFaceTimeout(idleTimeout)
47#ifdef _DEBUG
48 , m_nDropped(0)
49#endif
50{
Junxiao Shi0d82d042017-07-07 06:15:27 +000051 setUri(FaceUri::fromDev(m_localEndpoint->getName()));
Davide Pesavento43ff2a92017-05-18 19:50:57 -040052 NFD_LOG_CHAN_INFO("Creating channel");
53}
54
55void
56EthernetChannel::connect(const ethernet::Address& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -050057 const FaceParams& params,
Davide Pesavento43ff2a92017-05-18 19:50:57 -040058 const FaceCreatedCallback& onFaceCreated,
59 const FaceCreationFailedCallback& onConnectFailed)
60{
61 shared_ptr<Face> face;
62 try {
Davide Pesavento15b55052018-01-27 19:09:28 -050063 face = createFace(remoteEndpoint, params).second;
Davide Pesavento43ff2a92017-05-18 19:50:57 -040064 }
65 catch (const boost::system::system_error& e) {
66 NFD_LOG_CHAN_DEBUG("Face creation for " << remoteEndpoint << " failed: " << e.what());
67 if (onConnectFailed)
Davide Pesaventoe4b22382018-06-10 14:37:24 -040068 onConnectFailed(504, "Face creation failed: "s + e.what());
Davide Pesavento43ff2a92017-05-18 19:50:57 -040069 return;
70 }
71
72 // Need to invoke the callback regardless of whether or not we had already
73 // created the face so that control responses and such can be sent
74 onFaceCreated(face);
75}
76
77void
78EthernetChannel::listen(const FaceCreatedCallback& onFaceCreated,
79 const FaceCreationFailedCallback& onFaceCreationFailed)
80{
81 if (isListening()) {
82 NFD_LOG_CHAN_WARN("Already listening");
83 return;
84 }
85 m_isListening = true;
86
87 try {
88 m_pcap.activate(DLT_EN10MB);
89 m_socket.assign(m_pcap.getFd());
90 }
91 catch (const PcapHelper::Error& e) {
Davide Pesavento19779d82019-02-14 13:40:04 -050092 NDN_THROW_NESTED(Error(e.what()));
Davide Pesavento43ff2a92017-05-18 19:50:57 -040093 }
94 updateFilter();
95
96 asyncRead(onFaceCreated, onFaceCreationFailed);
97 NFD_LOG_CHAN_DEBUG("Started listening");
98}
99
100void
101EthernetChannel::asyncRead(const FaceCreatedCallback& onFaceCreated,
102 const FaceCreationFailedCallback& onReceiveFailed)
103{
104 m_socket.async_read_some(boost::asio::null_buffers(),
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400105 [=] (const auto& e, auto) { this->handleRead(e, onFaceCreated, onReceiveFailed); });
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400106}
107
108void
109EthernetChannel::handleRead(const boost::system::error_code& error,
110 const FaceCreatedCallback& onFaceCreated,
111 const FaceCreationFailedCallback& onReceiveFailed)
112{
113 if (error) {
114 if (error != boost::asio::error::operation_aborted) {
115 NFD_LOG_CHAN_DEBUG("Receive failed: " << error.message());
116 if (onReceiveFailed)
117 onReceiveFailed(500, "Receive failed: " + error.message());
118 }
119 return;
120 }
121
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400122 auto [pkt, readErr] = m_pcap.readNextPacket();
Davide Pesaventoa599d2a2022-02-16 18:52:43 -0500123 if (pkt.empty()) {
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400124 NFD_LOG_CHAN_WARN("Read error: " << readErr);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400125 }
126 else {
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400127 auto [eh, frameErr] = ethernet::checkFrameHeader(pkt, m_localEndpoint->getEthernetAddress(),
128 m_localEndpoint->getEthernetAddress());
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400129 if (eh == nullptr) {
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400130 NFD_LOG_CHAN_DEBUG(frameErr);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400131 }
132 else {
133 ethernet::Address sender(eh->ether_shost);
Davide Pesaventoa599d2a2022-02-16 18:52:43 -0500134 pkt = pkt.subspan(ethernet::HDR_LEN);
135 processIncomingPacket(pkt, sender, onFaceCreated, onReceiveFailed);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400136 }
137 }
138
139#ifdef _DEBUG
140 size_t nDropped = m_pcap.getNDropped();
141 if (nDropped - m_nDropped > 0)
142 NFD_LOG_CHAN_DEBUG("Detected " << nDropped - m_nDropped << " dropped frame(s)");
143 m_nDropped = nDropped;
144#endif
145
146 asyncRead(onFaceCreated, onReceiveFailed);
147}
148
149void
Davide Pesaventoa599d2a2022-02-16 18:52:43 -0500150EthernetChannel::processIncomingPacket(span<const uint8_t> packet,
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400151 const ethernet::Address& sender,
152 const FaceCreatedCallback& onFaceCreated,
153 const FaceCreationFailedCallback& onReceiveFailed)
154{
155 NFD_LOG_CHAN_TRACE("New peer " << sender);
156
157 bool isCreated = false;
158 shared_ptr<Face> face;
159 try {
Davide Pesavento15b55052018-01-27 19:09:28 -0500160 FaceParams params;
161 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
162 std::tie(isCreated, face) = createFace(sender, params);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400163 }
164 catch (const EthernetTransport::Error& e) {
165 NFD_LOG_CHAN_DEBUG("Face creation for " << sender << " failed: " << e.what());
166 if (onReceiveFailed)
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400167 onReceiveFailed(504, "Face creation failed: "s + e.what());
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400168 return;
169 }
170
171 if (isCreated)
172 onFaceCreated(face);
173 else
174 NFD_LOG_CHAN_DEBUG("Received frame for existing face");
175
176 // dispatch the packet to the face for processing
177 auto* transport = static_cast<UnicastEthernetTransport*>(face->getTransport());
Davide Pesaventoa599d2a2022-02-16 18:52:43 -0500178 transport->receivePayload(packet, sender);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400179}
180
181std::pair<bool, shared_ptr<Face>>
182EthernetChannel::createFace(const ethernet::Address& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -0500183 const FaceParams& params)
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400184{
185 auto it = m_channelFaces.find(remoteEndpoint);
186 if (it != m_channelFaces.end()) {
187 // we already have a face for this endpoint, so reuse it
188 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
189 return {false, it->second};
190 }
191
192 // else, create a new face
Eric Newberry2642cd22017-07-13 21:34:53 -0400193 GenericLinkService::Options options;
Davide Pesavento00a3c9d2017-08-10 22:40:16 -0400194 options.allowFragmentation = true;
195 options.allowReassembly = true;
Davide Pesavento15b55052018-01-27 19:09:28 -0500196 options.reliabilityOptions.isEnabled = params.wantLpReliability;
Eric Newberrycb6551e2020-03-02 14:12:16 -0800197 if (params.mtu) {
198 options.overrideMtu = *params.mtu;
199 }
Davide Pesavento00a3c9d2017-08-10 22:40:16 -0400200
Eric Newberry2642cd22017-07-13 21:34:53 -0400201 auto linkService = make_unique<GenericLinkService>(options);
Junxiao Shi0d82d042017-07-07 06:15:27 +0000202 auto transport = make_unique<UnicastEthernetTransport>(*m_localEndpoint, remoteEndpoint,
Eric Newberrycb6551e2020-03-02 14:12:16 -0800203 params.persistency, m_idleFaceTimeout);
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400204 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400205 face->setChannel(weak_from_this());
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400206
207 m_channelFaces[remoteEndpoint] = face;
208 connectFaceClosedSignal(*face, [this, remoteEndpoint] {
209 m_channelFaces.erase(remoteEndpoint);
210 updateFilter();
211 });
212 updateFilter();
213
214 return {true, face};
215}
216
217void
218EthernetChannel::updateFilter()
219{
220 if (!isListening())
221 return;
222
223 std::string filter = "(ether proto " + to_string(ethernet::ETHERTYPE_NDN) +
Junxiao Shi0d82d042017-07-07 06:15:27 +0000224 ") && (ether dst " + m_localEndpoint->getEthernetAddress().toString() + ")";
Davide Pesavento43ff2a92017-05-18 19:50:57 -0400225 for (const auto& addr : m_channelFaces | boost::adaptors::map_keys) {
226 filter += " && (not ether src " + addr.toString() + ")";
227 }
228 // "not vlan" must appear last in the filter expression, or the
229 // rest of the filter won't work as intended, see pcap-filter(7)
230 filter += " && (not vlan)";
231
232 NFD_LOG_CHAN_TRACE("Updating filter: " << filter);
233 m_pcap.setPacketFilter(filter.data());
234}
235
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400236} // namespace nfd::face