blob: 59f0c5c05464c2e52578c2743ee9b28673c3f262 [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 Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, 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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "ethernet-factory.hpp"
Davide Pesavento35120ea2015-11-17 21:13:18 +010027#include "generic-link-service.hpp"
Davide Pesavento6bd6d0b2017-03-25 15:16:40 -040028#include "multicast-ethernet-transport.hpp"
Davide Pesavento15b55052018-01-27 19:09:28 -050029
Junxiao Shi7003c602017-01-10 13:35:28 +000030#include <boost/range/adaptors.hpp>
31#include <boost/range/algorithm/copy.hpp>
Davide Pesavento44deacc2014-02-19 10:48:07 +010032
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010034
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(EthernetFactory);
Junxiao Shib47247d2017-01-24 15:09:16 +000036NFD_REGISTER_PROTOCOL_FACTORY(EthernetFactory);
37
38const std::string&
Davide Pesaventod27841b2018-11-13 00:22:24 -050039EthernetFactory::getId() noexcept
Junxiao Shib47247d2017-01-24 15:09:16 +000040{
41 static std::string id("ether");
42 return id;
43}
44
Junxiao Shi0ba6d642017-07-17 00:53:22 +000045EthernetFactory::EthernetFactory(const CtorParams& params)
46 : ProtocolFactory(params)
47{
Davide Pesaventoe4b22382018-06-10 14:37:24 -040048 m_netifAddConn = netmon->onInterfaceAdded.connect([this] (const auto& netif) {
49 this->applyUnicastConfigToNetif(netif);
50 this->applyMcastConfigToNetif(*netif);
51 });
Junxiao Shi0ba6d642017-07-17 00:53:22 +000052}
Junxiao Shi7003c602017-01-10 13:35:28 +000053
54void
Davide Pesaventod27841b2018-11-13 00:22:24 -050055EthernetFactory::doProcessConfig(OptionalConfigSection configSection,
56 FaceSystem::ConfigContext& context)
Davide Pesavento44deacc2014-02-19 10:48:07 +010057{
Junxiao Shi7003c602017-01-10 13:35:28 +000058 // ether
59 // {
Davide Pesavento46afec42017-05-28 14:28:47 -040060 // listen yes
61 // idle_timeout 600
Junxiao Shi7003c602017-01-10 13:35:28 +000062 // mcast yes
63 // mcast_group 01:00:5E:00:17:AA
Teng Liangbfea5752017-03-29 04:51:10 +000064 // mcast_ad_hoc no
Junxiao Shi7003c602017-01-10 13:35:28 +000065 // whitelist
66 // {
67 // *
68 // }
69 // blacklist
70 // {
71 // }
72 // }
Davide Pesavento44deacc2014-02-19 10:48:07 +010073
Junxiao Shi79a92082017-08-08 02:40:59 +000074 UnicastConfig unicastConfig;
Junxiao Shi7003c602017-01-10 13:35:28 +000075 MulticastConfig mcastConfig;
Davide Pesavento44deacc2014-02-19 10:48:07 +010076
Junxiao Shi7003c602017-01-10 13:35:28 +000077 if (configSection) {
Junxiao Shi79a92082017-08-08 02:40:59 +000078 // listen and mcast default to 'yes' but only if face_system.ether section is present
79 unicastConfig.isEnabled = unicastConfig.wantListen = mcastConfig.isEnabled = true;
Davide Pesavento35120ea2015-11-17 21:13:18 +010080
Junxiao Shi7003c602017-01-10 13:35:28 +000081 for (const auto& pair : *configSection) {
82 const std::string& key = pair.first;
83 const ConfigSection& value = pair.second;
Davide Pesavento7726ae52014-11-23 21:01:05 +010084
Davide Pesavento46afec42017-05-28 14:28:47 -040085 if (key == "listen") {
Junxiao Shi79a92082017-08-08 02:40:59 +000086 unicastConfig.wantListen = ConfigFile::parseYesNo(pair, "face_system.ether");
Davide Pesavento46afec42017-05-28 14:28:47 -040087 }
88 else if (key == "idle_timeout") {
Junxiao Shi79a92082017-08-08 02:40:59 +000089 unicastConfig.idleTimeout = time::seconds(ConfigFile::parseNumber<uint32_t>(pair, "face_system.ether"));
Davide Pesavento46afec42017-05-28 14:28:47 -040090 }
91 else if (key == "mcast") {
92 mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "face_system.ether");
Junxiao Shi7003c602017-01-10 13:35:28 +000093 }
94 else if (key == "mcast_group") {
95 const std::string& valueStr = value.get_value<std::string>();
96 mcastConfig.group = ethernet::Address::fromString(valueStr);
97 if (mcastConfig.group.isNull()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050098 NDN_THROW(ConfigFile::Error("face_system.ether.mcast_group: '" +
99 valueStr + "' cannot be parsed as an Ethernet address"));
Junxiao Shi7003c602017-01-10 13:35:28 +0000100 }
101 else if (!mcastConfig.group.isMulticast()) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500102 NDN_THROW(ConfigFile::Error("face_system.ether.mcast_group: '" +
103 valueStr + "' is not a multicast address"));
Junxiao Shi7003c602017-01-10 13:35:28 +0000104 }
105 }
Teng Liangbfea5752017-03-29 04:51:10 +0000106 else if (key == "mcast_ad_hoc") {
Davide Pesavento46afec42017-05-28 14:28:47 -0400107 bool wantAdHoc = ConfigFile::parseYesNo(pair, "face_system.ether");
Teng Liangbfea5752017-03-29 04:51:10 +0000108 mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS;
109 }
Junxiao Shi7003c602017-01-10 13:35:28 +0000110 else if (key == "whitelist") {
111 mcastConfig.netifPredicate.parseWhitelist(value);
112 }
113 else if (key == "blacklist") {
114 mcastConfig.netifPredicate.parseBlacklist(value);
115 }
116 else {
Davide Pesavento19779d82019-02-14 13:40:04 -0500117 NDN_THROW(ConfigFile::Error("Unrecognized option face_system.ether." + key));
Junxiao Shi7003c602017-01-10 13:35:28 +0000118 }
119 }
120 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100121
Junxiao Shi79a92082017-08-08 02:40:59 +0000122 if (context.isDryRun) {
123 return;
Junxiao Shi7003c602017-01-10 13:35:28 +0000124 }
Junxiao Shi79a92082017-08-08 02:40:59 +0000125
126 if (unicastConfig.isEnabled) {
127 if (m_unicastConfig.wantListen && !unicastConfig.wantListen && !m_channels.empty()) {
128 NFD_LOG_WARN("Cannot stop listening on Ethernet channels");
129 }
130 if (m_unicastConfig.idleTimeout != unicastConfig.idleTimeout && !m_channels.empty()) {
131 NFD_LOG_WARN("Idle timeout setting applies to new Ethernet channels only");
132 }
133 }
134 else if (m_unicastConfig.isEnabled && !m_channels.empty()) {
135 NFD_LOG_WARN("Cannot disable Ethernet channels after initialization");
136 }
137
138 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
139 if (mcastConfig.isEnabled) {
140 NFD_LOG_INFO("enabling multicast on " << mcastConfig.group);
141 }
142 else {
143 NFD_LOG_INFO("disabling multicast");
144 }
145 }
146 else if (mcastConfig.isEnabled) {
147 if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) {
148 NFD_LOG_WARN("Cannot change ad hoc setting on existing faces");
149 }
150 if (m_mcastConfig.group != mcastConfig.group) {
151 NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group <<
152 " to " << mcastConfig.group);
153 }
154 if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
155 NFD_LOG_INFO("changing whitelist/blacklist");
156 }
157 }
158
159 // Even if there's no configuration change, we still need to re-apply configuration because
160 // netifs may have changed.
161 m_unicastConfig = unicastConfig;
162 m_mcastConfig = mcastConfig;
163 this->applyConfig(context);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100164}
165
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800166void
Davide Pesaventod27841b2018-11-13 00:22:24 -0500167EthernetFactory::doCreateFace(const CreateFaceRequest& req,
168 const FaceCreatedCallback& onCreated,
169 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800170{
Davide Pesavento15b55052018-01-27 19:09:28 -0500171 if (!req.localUri || req.localUri->getScheme() != "dev") {
Davide Pesavento46afec42017-05-28 14:28:47 -0400172 NFD_LOG_TRACE("Cannot create unicast Ethernet face without dev:// LocalUri");
173 onFailure(406, "Creation of unicast Ethernet faces requires a LocalUri with dev:// scheme");
174 return;
175 }
Davide Pesavento46afec42017-05-28 14:28:47 -0400176
Davide Pesavento15b55052018-01-27 19:09:28 -0500177 if (req.params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) {
Davide Pesavento46afec42017-05-28 14:28:47 -0400178 NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND");
179 onFailure(406, "Outgoing Ethernet faces do not support on-demand persistency");
180 return;
181 }
182
Davide Pesavento15b55052018-01-27 19:09:28 -0500183 ethernet::Address remoteEndpoint(ethernet::Address::fromString(req.remoteUri.getHost()));
184 std::string localEndpoint(req.localUri->getHost());
Davide Pesavento46afec42017-05-28 14:28:47 -0400185
186 if (remoteEndpoint.isMulticast()) {
187 NFD_LOG_TRACE("createFace does not support multicast faces");
188 onFailure(406, "Cannot create multicast Ethernet faces");
189 return;
190 }
191
Davide Pesavento15b55052018-01-27 19:09:28 -0500192 if (req.params.wantLocalFields) {
Davide Pesavento46afec42017-05-28 14:28:47 -0400193 // Ethernet faces are never local
194 NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
195 onFailure(406, "Local fields can only be enabled on faces with local scope");
196 return;
197 }
198
Eric Newberrycb6551e2020-03-02 14:12:16 -0800199 if (req.params.mtu && *req.params.mtu < MIN_MTU) {
Eric Newberry812d6152018-06-06 15:06:01 -0700200 // The specified MTU must be greater than the minimum possible
Eric Newberrycb6551e2020-03-02 14:12:16 -0800201 NFD_LOG_TRACE("createFace: override MTU cannot be less than " << MIN_MTU);
202 onFailure(406, "Override MTU cannot be less than " + to_string(MIN_MTU));
Eric Newberry812d6152018-06-06 15:06:01 -0700203 return;
204 }
205
Davide Pesavento46afec42017-05-28 14:28:47 -0400206 for (const auto& i : m_channels) {
207 if (i.first == localEndpoint) {
Davide Pesavento15b55052018-01-27 19:09:28 -0500208 i.second->connect(remoteEndpoint, req.params, onCreated, onFailure);
Davide Pesavento46afec42017-05-28 14:28:47 -0400209 return;
210 }
211 }
212
213 NFD_LOG_TRACE("No channels available to connect to " << remoteEndpoint);
214 onFailure(504, "No channels available to connect");
215}
216
217shared_ptr<EthernetChannel>
Junxiao Shi0d82d042017-07-07 06:15:27 +0000218EthernetFactory::createChannel(const shared_ptr<const ndn::net::NetworkInterface>& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -0400219 time::nanoseconds idleTimeout)
220{
Junxiao Shi0d82d042017-07-07 06:15:27 +0000221 auto it = m_channels.find(localEndpoint->getName());
Davide Pesavento46afec42017-05-28 14:28:47 -0400222 if (it != m_channels.end())
223 return it->second;
224
225 auto channel = std::make_shared<EthernetChannel>(localEndpoint, idleTimeout);
Junxiao Shi0d82d042017-07-07 06:15:27 +0000226 m_channels[localEndpoint->getName()] = channel;
Davide Pesavento46afec42017-05-28 14:28:47 -0400227 return channel;
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800228}
229
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200230std::vector<shared_ptr<const Channel>>
Davide Pesaventod27841b2018-11-13 00:22:24 -0500231EthernetFactory::doGetChannels() const
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600232{
Davide Pesavento46afec42017-05-28 14:28:47 -0400233 return getChannelsFromMap(m_channels);
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600234}
235
Junxiao Shicde37ad2015-12-24 01:02:05 -0700236shared_ptr<Face>
Junxiao Shi0d82d042017-07-07 06:15:27 +0000237EthernetFactory::createMulticastFace(const ndn::net::NetworkInterface& netif,
Junxiao Shi7003c602017-01-10 13:35:28 +0000238 const ethernet::Address& address)
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200239{
Junxiao Shi7003c602017-01-10 13:35:28 +0000240 BOOST_ASSERT(address.isMulticast());
241
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400242 std::pair key(netif.getName(), address);
Junxiao Shi7003c602017-01-10 13:35:28 +0000243 auto found = m_mcastFaces.find(key);
244 if (found != m_mcastFaces.end()) {
245 return found->second;
246 }
247
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400248 GenericLinkService::Options opts;
Junxiao Shi7003c602017-01-10 13:35:28 +0000249 opts.allowFragmentation = true;
250 opts.allowReassembly = true;
251
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400252 auto linkService = make_unique<GenericLinkService>(opts);
253 auto transport = make_unique<MulticastEthernetTransport>(netif, address, m_mcastConfig.linkType);
Junxiao Shi7003c602017-01-10 13:35:28 +0000254 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
255
256 m_mcastFaces[key] = face;
257 connectFaceClosedSignal(*face, [this, key] { m_mcastFaces.erase(key); });
258
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -0400259 auto channelIt = m_channels.find(netif.getName());
260 face->setChannel(channelIt != m_channels.end() ? channelIt->second : nullptr);
261
Junxiao Shi7003c602017-01-10 13:35:28 +0000262 return face;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200263}
264
Junxiao Shi79a92082017-08-08 02:40:59 +0000265shared_ptr<EthernetChannel>
266EthernetFactory::applyUnicastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif)
267{
268 if (!m_unicastConfig.isEnabled) {
269 return nullptr;
270 }
271
Davide Pesavento61265472017-08-08 15:48:10 -0400272 if (netif->getType() != ndn::net::InterfaceType::ETHERNET) {
273 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": incompatible netif type");
274 return nullptr;
275 }
276
Junxiao Shi79a92082017-08-08 02:40:59 +0000277 if (!netif->isUp()) {
278 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": netif is down");
279 return nullptr;
280 }
281
Davide Pesavento61265472017-08-08 15:48:10 -0400282 if (netif->getEthernetAddress().isNull()) {
283 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": invalid Ethernet address");
Junxiao Shi79a92082017-08-08 02:40:59 +0000284 return nullptr;
285 }
286
287 auto channel = this->createChannel(netif, m_unicastConfig.idleTimeout);
288 if (m_unicastConfig.wantListen && !channel->isListening()) {
289 try {
290 channel->listen(this->addFace, nullptr);
291 }
292 catch (const EthernetChannel::Error& e) {
293 NFD_LOG_WARN("Cannot listen on " << netif->getName() << ": " << e.what());
294 }
295 }
296 return channel;
297}
298
299shared_ptr<Face>
300EthernetFactory::applyMcastConfigToNetif(const ndn::net::NetworkInterface& netif)
301{
302 if (!m_mcastConfig.isEnabled) {
303 return nullptr;
304 }
305
Davide Pesavento61265472017-08-08 15:48:10 -0400306 if (netif.getType() != ndn::net::InterfaceType::ETHERNET) {
307 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": incompatible netif type");
308 return nullptr;
309 }
310
Junxiao Shi79a92082017-08-08 02:40:59 +0000311 if (!netif.isUp()) {
312 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": netif is down");
313 return nullptr;
314 }
315
316 if (!netif.canMulticast()) {
317 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": netif cannot multicast");
318 return nullptr;
319 }
320
Davide Pesavento61265472017-08-08 15:48:10 -0400321 if (netif.getEthernetAddress().isNull()) {
322 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": invalid Ethernet address");
323 return nullptr;
324 }
325
Junxiao Shi79a92082017-08-08 02:40:59 +0000326 if (!m_mcastConfig.netifPredicate(netif)) {
327 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": rejected by whitelist/blacklist");
328 return nullptr;
329 }
330
331 NFD_LOG_DEBUG("Creating multicast face on " << netif.getName());
332 shared_ptr<Face> face;
333 try {
334 face = this->createMulticastFace(netif, m_mcastConfig.group);
335 }
336 catch (const EthernetTransport::Error& e) {
337 NFD_LOG_WARN("Cannot create multicast face on " << netif.getName() << ": " << e.what());
338 return nullptr;
339 }
340
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400341 if (face->getId() == INVALID_FACEID) {
Junxiao Shi79a92082017-08-08 02:40:59 +0000342 // new face: register with forwarding
343 this->addFace(face);
344 }
345 return face;
346}
347
Junxiao Shi7003c602017-01-10 13:35:28 +0000348void
Davide Pesaventod27841b2018-11-13 00:22:24 -0500349EthernetFactory::applyConfig(const FaceSystem::ConfigContext&)
Junxiao Shi7003c602017-01-10 13:35:28 +0000350{
Junxiao Shi79a92082017-08-08 02:40:59 +0000351 if (m_unicastConfig.isEnabled) {
352 providedSchemes.insert("ether");
353 }
354 else {
355 providedSchemes.erase("ether");
356 }
357
358 // collect old multicast faces
Junxiao Shi7003c602017-01-10 13:35:28 +0000359 std::set<shared_ptr<Face>> oldFaces;
Junxiao Shi79a92082017-08-08 02:40:59 +0000360 boost::copy(m_mcastFaces | boost::adaptors::map_values, std::inserter(oldFaces, oldFaces.end()));
Junxiao Shi7003c602017-01-10 13:35:28 +0000361
Junxiao Shi79a92082017-08-08 02:40:59 +0000362 // create channels and multicast faces if requested by config
363 for (const auto& netif : netmon->listNetworkInterfaces()) {
364 this->applyUnicastConfigToNetif(netif);
Junxiao Shi7003c602017-01-10 13:35:28 +0000365
Junxiao Shi79a92082017-08-08 02:40:59 +0000366 auto face = this->applyMcastConfigToNetif(*netif);
367 if (face != nullptr) {
368 // don't destroy face
369 oldFaces.erase(face);
Junxiao Shi7003c602017-01-10 13:35:28 +0000370 }
371 }
372
Junxiao Shi79a92082017-08-08 02:40:59 +0000373 // destroy old multicast faces that are not needed in new configuration
Junxiao Shi7003c602017-01-10 13:35:28 +0000374 for (const auto& face : oldFaces) {
375 face->close();
376 }
377}
378
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400379} // namespace nfd::face