blob: f9767df8a45728d792ae3411f3c25cccc7dd0e81 [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 Pesavento15b55052018-01-27 19:09:28 -05003 * Copyright (c) 2014-2018, 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 Pesavento44deacc2014-02-19 10:48:07 +010033namespace nfd {
Junxiao Shi7003c602017-01-10 13:35:28 +000034namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010035
Davide Pesaventoa3148082018-04-12 18:21:54 -040036NFD_LOG_INIT(EthernetFactory);
Junxiao Shib47247d2017-01-24 15:09:16 +000037NFD_REGISTER_PROTOCOL_FACTORY(EthernetFactory);
38
39const std::string&
40EthernetFactory::getId()
41{
42 static std::string id("ether");
43 return id;
44}
45
Junxiao Shi0ba6d642017-07-17 00:53:22 +000046EthernetFactory::EthernetFactory(const CtorParams& params)
47 : ProtocolFactory(params)
48{
Davide Pesaventoe4b22382018-06-10 14:37:24 -040049 m_netifAddConn = netmon->onInterfaceAdded.connect([this] (const auto& netif) {
50 this->applyUnicastConfigToNetif(netif);
51 this->applyMcastConfigToNetif(*netif);
52 });
Junxiao Shi0ba6d642017-07-17 00:53:22 +000053}
Junxiao Shi7003c602017-01-10 13:35:28 +000054
55void
56EthernetFactory::processConfig(OptionalConfigSection configSection,
57 FaceSystem::ConfigContext& context)
Davide Pesavento44deacc2014-02-19 10:48:07 +010058{
Junxiao Shi7003c602017-01-10 13:35:28 +000059 // ether
60 // {
Davide Pesavento46afec42017-05-28 14:28:47 -040061 // listen yes
62 // idle_timeout 600
Junxiao Shi7003c602017-01-10 13:35:28 +000063 // mcast yes
64 // mcast_group 01:00:5E:00:17:AA
Teng Liangbfea5752017-03-29 04:51:10 +000065 // mcast_ad_hoc no
Junxiao Shi7003c602017-01-10 13:35:28 +000066 // whitelist
67 // {
68 // *
69 // }
70 // blacklist
71 // {
72 // }
73 // }
Davide Pesavento44deacc2014-02-19 10:48:07 +010074
Junxiao Shi79a92082017-08-08 02:40:59 +000075 UnicastConfig unicastConfig;
Junxiao Shi7003c602017-01-10 13:35:28 +000076 MulticastConfig mcastConfig;
Davide Pesavento44deacc2014-02-19 10:48:07 +010077
Junxiao Shi7003c602017-01-10 13:35:28 +000078 if (configSection) {
Junxiao Shi79a92082017-08-08 02:40:59 +000079 // listen and mcast default to 'yes' but only if face_system.ether section is present
80 unicastConfig.isEnabled = unicastConfig.wantListen = mcastConfig.isEnabled = true;
Davide Pesavento35120ea2015-11-17 21:13:18 +010081
Junxiao Shi7003c602017-01-10 13:35:28 +000082 for (const auto& pair : *configSection) {
83 const std::string& key = pair.first;
84 const ConfigSection& value = pair.second;
Davide Pesavento7726ae52014-11-23 21:01:05 +010085
Davide Pesavento46afec42017-05-28 14:28:47 -040086 if (key == "listen") {
Junxiao Shi79a92082017-08-08 02:40:59 +000087 unicastConfig.wantListen = ConfigFile::parseYesNo(pair, "face_system.ether");
Davide Pesavento46afec42017-05-28 14:28:47 -040088 }
89 else if (key == "idle_timeout") {
Junxiao Shi79a92082017-08-08 02:40:59 +000090 unicastConfig.idleTimeout = time::seconds(ConfigFile::parseNumber<uint32_t>(pair, "face_system.ether"));
Davide Pesavento46afec42017-05-28 14:28:47 -040091 }
92 else if (key == "mcast") {
93 mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "face_system.ether");
Junxiao Shi7003c602017-01-10 13:35:28 +000094 }
95 else if (key == "mcast_group") {
96 const std::string& valueStr = value.get_value<std::string>();
97 mcastConfig.group = ethernet::Address::fromString(valueStr);
98 if (mcastConfig.group.isNull()) {
99 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
100 valueStr + "' cannot be parsed as an Ethernet address"));
101 }
102 else if (!mcastConfig.group.isMulticast()) {
103 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
104 valueStr + "' is not a multicast address"));
105 }
106 }
Teng Liangbfea5752017-03-29 04:51:10 +0000107 else if (key == "mcast_ad_hoc") {
Davide Pesavento46afec42017-05-28 14:28:47 -0400108 bool wantAdHoc = ConfigFile::parseYesNo(pair, "face_system.ether");
Teng Liangbfea5752017-03-29 04:51:10 +0000109 mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS;
110 }
Junxiao Shi7003c602017-01-10 13:35:28 +0000111 else if (key == "whitelist") {
112 mcastConfig.netifPredicate.parseWhitelist(value);
113 }
114 else if (key == "blacklist") {
115 mcastConfig.netifPredicate.parseBlacklist(value);
116 }
117 else {
118 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.ether." + key));
119 }
120 }
121 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100122
Junxiao Shi79a92082017-08-08 02:40:59 +0000123 if (context.isDryRun) {
124 return;
Junxiao Shi7003c602017-01-10 13:35:28 +0000125 }
Junxiao Shi79a92082017-08-08 02:40:59 +0000126
127 if (unicastConfig.isEnabled) {
128 if (m_unicastConfig.wantListen && !unicastConfig.wantListen && !m_channels.empty()) {
129 NFD_LOG_WARN("Cannot stop listening on Ethernet channels");
130 }
131 if (m_unicastConfig.idleTimeout != unicastConfig.idleTimeout && !m_channels.empty()) {
132 NFD_LOG_WARN("Idle timeout setting applies to new Ethernet channels only");
133 }
134 }
135 else if (m_unicastConfig.isEnabled && !m_channels.empty()) {
136 NFD_LOG_WARN("Cannot disable Ethernet channels after initialization");
137 }
138
139 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
140 if (mcastConfig.isEnabled) {
141 NFD_LOG_INFO("enabling multicast on " << mcastConfig.group);
142 }
143 else {
144 NFD_LOG_INFO("disabling multicast");
145 }
146 }
147 else if (mcastConfig.isEnabled) {
148 if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) {
149 NFD_LOG_WARN("Cannot change ad hoc setting on existing faces");
150 }
151 if (m_mcastConfig.group != mcastConfig.group) {
152 NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group <<
153 " to " << mcastConfig.group);
154 }
155 if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
156 NFD_LOG_INFO("changing whitelist/blacklist");
157 }
158 }
159
160 // Even if there's no configuration change, we still need to re-apply configuration because
161 // netifs may have changed.
162 m_unicastConfig = unicastConfig;
163 m_mcastConfig = mcastConfig;
164 this->applyConfig(context);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100165}
166
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800167void
Davide Pesavento15b55052018-01-27 19:09:28 -0500168EthernetFactory::createFace(const CreateFaceRequest& req,
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800169 const FaceCreatedCallback& onCreated,
Eric Newberry42602412016-08-27 09:33:18 -0700170 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800171{
Davide Pesavento15b55052018-01-27 19:09:28 -0500172 BOOST_ASSERT(req.remoteUri.isCanonical());
Davide Pesavento46afec42017-05-28 14:28:47 -0400173
Davide Pesavento15b55052018-01-27 19:09:28 -0500174 if (!req.localUri || req.localUri->getScheme() != "dev") {
Davide Pesavento46afec42017-05-28 14:28:47 -0400175 NFD_LOG_TRACE("Cannot create unicast Ethernet face without dev:// LocalUri");
176 onFailure(406, "Creation of unicast Ethernet faces requires a LocalUri with dev:// scheme");
177 return;
178 }
Davide Pesavento15b55052018-01-27 19:09:28 -0500179 BOOST_ASSERT(req.localUri->isCanonical());
Davide Pesavento46afec42017-05-28 14:28:47 -0400180
Davide Pesavento15b55052018-01-27 19:09:28 -0500181 if (req.params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) {
Davide Pesavento46afec42017-05-28 14:28:47 -0400182 NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND");
183 onFailure(406, "Outgoing Ethernet faces do not support on-demand persistency");
184 return;
185 }
186
Davide Pesavento15b55052018-01-27 19:09:28 -0500187 ethernet::Address remoteEndpoint(ethernet::Address::fromString(req.remoteUri.getHost()));
188 std::string localEndpoint(req.localUri->getHost());
Davide Pesavento46afec42017-05-28 14:28:47 -0400189
190 if (remoteEndpoint.isMulticast()) {
191 NFD_LOG_TRACE("createFace does not support multicast faces");
192 onFailure(406, "Cannot create multicast Ethernet faces");
193 return;
194 }
195
Davide Pesavento15b55052018-01-27 19:09:28 -0500196 if (req.params.wantLocalFields) {
Davide Pesavento46afec42017-05-28 14:28:47 -0400197 // Ethernet faces are never local
198 NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
199 onFailure(406, "Local fields can only be enabled on faces with local scope");
200 return;
201 }
202
203 for (const auto& i : m_channels) {
204 if (i.first == localEndpoint) {
Davide Pesavento15b55052018-01-27 19:09:28 -0500205 i.second->connect(remoteEndpoint, req.params, onCreated, onFailure);
Davide Pesavento46afec42017-05-28 14:28:47 -0400206 return;
207 }
208 }
209
210 NFD_LOG_TRACE("No channels available to connect to " << remoteEndpoint);
211 onFailure(504, "No channels available to connect");
212}
213
214shared_ptr<EthernetChannel>
Junxiao Shi0d82d042017-07-07 06:15:27 +0000215EthernetFactory::createChannel(const shared_ptr<const ndn::net::NetworkInterface>& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -0400216 time::nanoseconds idleTimeout)
217{
Junxiao Shi0d82d042017-07-07 06:15:27 +0000218 auto it = m_channels.find(localEndpoint->getName());
Davide Pesavento46afec42017-05-28 14:28:47 -0400219 if (it != m_channels.end())
220 return it->second;
221
222 auto channel = std::make_shared<EthernetChannel>(localEndpoint, idleTimeout);
Junxiao Shi0d82d042017-07-07 06:15:27 +0000223 m_channels[localEndpoint->getName()] = channel;
Davide Pesavento46afec42017-05-28 14:28:47 -0400224
225 return channel;
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800226}
227
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200228std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600229EthernetFactory::getChannels() const
230{
Davide Pesavento46afec42017-05-28 14:28:47 -0400231 return getChannelsFromMap(m_channels);
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600232}
233
Junxiao Shicde37ad2015-12-24 01:02:05 -0700234shared_ptr<Face>
Junxiao Shi0d82d042017-07-07 06:15:27 +0000235EthernetFactory::createMulticastFace(const ndn::net::NetworkInterface& netif,
Junxiao Shi7003c602017-01-10 13:35:28 +0000236 const ethernet::Address& address)
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200237{
Junxiao Shi7003c602017-01-10 13:35:28 +0000238 BOOST_ASSERT(address.isMulticast());
239
Junxiao Shi0d82d042017-07-07 06:15:27 +0000240 auto key = std::make_pair(netif.getName(), address);
Junxiao Shi7003c602017-01-10 13:35:28 +0000241 auto found = m_mcastFaces.find(key);
242 if (found != m_mcastFaces.end()) {
243 return found->second;
244 }
245
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400246 GenericLinkService::Options opts;
Junxiao Shi7003c602017-01-10 13:35:28 +0000247 opts.allowFragmentation = true;
248 opts.allowReassembly = true;
249
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400250 auto linkService = make_unique<GenericLinkService>(opts);
251 auto transport = make_unique<MulticastEthernetTransport>(netif, address, m_mcastConfig.linkType);
Junxiao Shi7003c602017-01-10 13:35:28 +0000252 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
253
254 m_mcastFaces[key] = face;
255 connectFaceClosedSignal(*face, [this, key] { m_mcastFaces.erase(key); });
256
257 return face;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200258}
259
Junxiao Shi79a92082017-08-08 02:40:59 +0000260shared_ptr<EthernetChannel>
261EthernetFactory::applyUnicastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif)
262{
263 if (!m_unicastConfig.isEnabled) {
264 return nullptr;
265 }
266
Davide Pesavento61265472017-08-08 15:48:10 -0400267 if (netif->getType() != ndn::net::InterfaceType::ETHERNET) {
268 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": incompatible netif type");
269 return nullptr;
270 }
271
Junxiao Shi79a92082017-08-08 02:40:59 +0000272 if (!netif->isUp()) {
273 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": netif is down");
274 return nullptr;
275 }
276
Davide Pesavento61265472017-08-08 15:48:10 -0400277 if (netif->getEthernetAddress().isNull()) {
278 NFD_LOG_DEBUG("Not creating channel on " << netif->getName() << ": invalid Ethernet address");
Junxiao Shi79a92082017-08-08 02:40:59 +0000279 return nullptr;
280 }
281
282 auto channel = this->createChannel(netif, m_unicastConfig.idleTimeout);
283 if (m_unicastConfig.wantListen && !channel->isListening()) {
284 try {
285 channel->listen(this->addFace, nullptr);
286 }
287 catch (const EthernetChannel::Error& e) {
288 NFD_LOG_WARN("Cannot listen on " << netif->getName() << ": " << e.what());
289 }
290 }
291 return channel;
292}
293
294shared_ptr<Face>
295EthernetFactory::applyMcastConfigToNetif(const ndn::net::NetworkInterface& netif)
296{
297 if (!m_mcastConfig.isEnabled) {
298 return nullptr;
299 }
300
Davide Pesavento61265472017-08-08 15:48:10 -0400301 if (netif.getType() != ndn::net::InterfaceType::ETHERNET) {
302 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": incompatible netif type");
303 return nullptr;
304 }
305
Junxiao Shi79a92082017-08-08 02:40:59 +0000306 if (!netif.isUp()) {
307 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": netif is down");
308 return nullptr;
309 }
310
311 if (!netif.canMulticast()) {
312 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": netif cannot multicast");
313 return nullptr;
314 }
315
Davide Pesavento61265472017-08-08 15:48:10 -0400316 if (netif.getEthernetAddress().isNull()) {
317 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": invalid Ethernet address");
318 return nullptr;
319 }
320
Junxiao Shi79a92082017-08-08 02:40:59 +0000321 if (!m_mcastConfig.netifPredicate(netif)) {
322 NFD_LOG_DEBUG("Not creating multicast face on " << netif.getName() << ": rejected by whitelist/blacklist");
323 return nullptr;
324 }
325
326 NFD_LOG_DEBUG("Creating multicast face on " << netif.getName());
327 shared_ptr<Face> face;
328 try {
329 face = this->createMulticastFace(netif, m_mcastConfig.group);
330 }
331 catch (const EthernetTransport::Error& e) {
332 NFD_LOG_WARN("Cannot create multicast face on " << netif.getName() << ": " << e.what());
333 return nullptr;
334 }
335
336 if (face->getId() == face::INVALID_FACEID) {
337 // new face: register with forwarding
338 this->addFace(face);
339 }
340 return face;
341}
342
Junxiao Shi7003c602017-01-10 13:35:28 +0000343void
344EthernetFactory::applyConfig(const FaceSystem::ConfigContext& context)
345{
Junxiao Shi79a92082017-08-08 02:40:59 +0000346 if (m_unicastConfig.isEnabled) {
347 providedSchemes.insert("ether");
348 }
349 else {
350 providedSchemes.erase("ether");
351 }
352
353 // collect old multicast faces
Junxiao Shi7003c602017-01-10 13:35:28 +0000354 std::set<shared_ptr<Face>> oldFaces;
Junxiao Shi79a92082017-08-08 02:40:59 +0000355 boost::copy(m_mcastFaces | boost::adaptors::map_values, std::inserter(oldFaces, oldFaces.end()));
Junxiao Shi7003c602017-01-10 13:35:28 +0000356
Junxiao Shi79a92082017-08-08 02:40:59 +0000357 // create channels and multicast faces if requested by config
358 for (const auto& netif : netmon->listNetworkInterfaces()) {
359 this->applyUnicastConfigToNetif(netif);
Junxiao Shi7003c602017-01-10 13:35:28 +0000360
Junxiao Shi79a92082017-08-08 02:40:59 +0000361 auto face = this->applyMcastConfigToNetif(*netif);
362 if (face != nullptr) {
363 // don't destroy face
364 oldFaces.erase(face);
Junxiao Shi7003c602017-01-10 13:35:28 +0000365 }
366 }
367
Junxiao Shi79a92082017-08-08 02:40:59 +0000368 // destroy old multicast faces that are not needed in new configuration
Junxiao Shi7003c602017-01-10 13:35:28 +0000369 for (const auto& face : oldFaces) {
370 face->close();
371 }
372}
373
374} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100375} // namespace nfd