blob: 7263118cbadc6c2aed01fd706cb21627327c9e5d [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi7003c602017-01-10 13:35:28 +00003 * Copyright (c) 2014-2017, 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 "ethernet-transport.hpp"
28#include "generic-link-service.hpp"
Junxiao Shi7003c602017-01-10 13:35:28 +000029#include "core/logger.hpp"
30#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
Junxiao Shi7003c602017-01-10 13:35:28 +000036NFD_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 Shi7003c602017-01-10 13:35:28 +000046
47void
48EthernetFactory::processConfig(OptionalConfigSection configSection,
49 FaceSystem::ConfigContext& context)
Davide Pesavento44deacc2014-02-19 10:48:07 +010050{
Junxiao Shi7003c602017-01-10 13:35:28 +000051 // ether
52 // {
53 // mcast yes
54 // mcast_group 01:00:5E:00:17:AA
Teng Liangbfea5752017-03-29 04:51:10 +000055 // mcast_ad_hoc no
Junxiao Shi7003c602017-01-10 13:35:28 +000056 // whitelist
57 // {
58 // *
59 // }
60 // blacklist
61 // {
62 // }
63 // }
Davide Pesavento44deacc2014-02-19 10:48:07 +010064
Junxiao Shi7003c602017-01-10 13:35:28 +000065 MulticastConfig mcastConfig;
Davide Pesavento44deacc2014-02-19 10:48:07 +010066
Junxiao Shi7003c602017-01-10 13:35:28 +000067 if (configSection) {
68 // face_system.ether.mcast defaults to 'yes' but only if face_system.ether section is present
69 mcastConfig.isEnabled = true;
Davide Pesavento35120ea2015-11-17 21:13:18 +010070
Junxiao Shi7003c602017-01-10 13:35:28 +000071 for (const auto& pair : *configSection) {
72 const std::string& key = pair.first;
73 const ConfigSection& value = pair.second;
Davide Pesavento7726ae52014-11-23 21:01:05 +010074
Junxiao Shi7003c602017-01-10 13:35:28 +000075 if (key == "mcast") {
76 mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "ether");
77 }
78 else if (key == "mcast_group") {
79 const std::string& valueStr = value.get_value<std::string>();
80 mcastConfig.group = ethernet::Address::fromString(valueStr);
81 if (mcastConfig.group.isNull()) {
82 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
83 valueStr + "' cannot be parsed as an Ethernet address"));
84 }
85 else if (!mcastConfig.group.isMulticast()) {
86 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
87 valueStr + "' is not a multicast address"));
88 }
89 }
Teng Liangbfea5752017-03-29 04:51:10 +000090 else if (key == "mcast_ad_hoc") {
91 bool wantAdHoc = ConfigFile::parseYesNo(pair, "ether");
92 mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS;
93 }
Junxiao Shi7003c602017-01-10 13:35:28 +000094 else if (key == "whitelist") {
95 mcastConfig.netifPredicate.parseWhitelist(value);
96 }
97 else if (key == "blacklist") {
98 mcastConfig.netifPredicate.parseBlacklist(value);
99 }
100 else {
101 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.ether." + key));
102 }
103 }
104 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100105
Junxiao Shi7003c602017-01-10 13:35:28 +0000106 if (!context.isDryRun) {
107 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
108 if (mcastConfig.isEnabled) {
109 NFD_LOG_INFO("enabling multicast on " << mcastConfig.group);
110 }
111 else {
112 NFD_LOG_INFO("disabling multicast");
113 }
114 }
Teng Liangbfea5752017-03-29 04:51:10 +0000115 else if (mcastConfig.isEnabled) {
116 if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) {
117 NFD_LOG_WARN("Cannot change ad hoc setting on existing faces");
118 }
119 if (m_mcastConfig.group != mcastConfig.group) {
120 NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group <<
121 " to " << mcastConfig.group);
122 }
123 if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
124 NFD_LOG_INFO("changing whitelist/blacklist");
125 }
Junxiao Shi7003c602017-01-10 13:35:28 +0000126 }
127
Teng Liangbfea5752017-03-29 04:51:10 +0000128 // Even if there's no configuration change, we still need to re-apply configuration because
129 // netifs may have changed.
Junxiao Shi7003c602017-01-10 13:35:28 +0000130 m_mcastConfig = mcastConfig;
131 this->applyConfig(context);
132 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100133}
134
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800135void
136EthernetFactory::createFace(const FaceUri& uri,
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800137 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -0700138 bool wantLocalFieldsEnabled,
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800139 const FaceCreatedCallback& onCreated,
Eric Newberry42602412016-08-27 09:33:18 -0700140 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800141{
Eric Newberry42602412016-08-27 09:33:18 -0700142 onFailure(406, "Unsupported protocol");
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800143}
144
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200145std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600146EthernetFactory::getChannels() const
147{
Davide Pesavento7726ae52014-11-23 21:01:05 +0100148 return {};
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600149}
150
Junxiao Shicde37ad2015-12-24 01:02:05 -0700151shared_ptr<Face>
Junxiao Shi7003c602017-01-10 13:35:28 +0000152EthernetFactory::createMulticastFace(const NetworkInterfaceInfo& netif,
153 const ethernet::Address& address)
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200154{
Junxiao Shi7003c602017-01-10 13:35:28 +0000155 BOOST_ASSERT(address.isMulticast());
156
157 auto key = std::make_pair(netif.name, address);
158 auto found = m_mcastFaces.find(key);
159 if (found != m_mcastFaces.end()) {
160 return found->second;
161 }
162
163 face::GenericLinkService::Options opts;
164 opts.allowFragmentation = true;
165 opts.allowReassembly = true;
166
167 auto linkService = make_unique<face::GenericLinkService>(opts);
Teng Liangbfea5752017-03-29 04:51:10 +0000168 auto transport = make_unique<face::EthernetTransport>(netif, address, m_mcastConfig.linkType);
Junxiao Shi7003c602017-01-10 13:35:28 +0000169 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
170
171 m_mcastFaces[key] = face;
172 connectFaceClosedSignal(*face, [this, key] { m_mcastFaces.erase(key); });
173
174 return face;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200175}
176
Junxiao Shi7003c602017-01-10 13:35:28 +0000177void
178EthernetFactory::applyConfig(const FaceSystem::ConfigContext& context)
179{
180 // collect old faces
181 std::set<shared_ptr<Face>> oldFaces;
182 boost::copy(m_mcastFaces | boost::adaptors::map_values,
183 std::inserter(oldFaces, oldFaces.end()));
184
185 if (m_mcastConfig.isEnabled) {
186 // determine interfaces on which faces should be created or retained
187 auto capableNetifs = context.listNetifs() |
188 boost::adaptors::filtered([this] (const NetworkInterfaceInfo& netif) {
189 return netif.isUp() && netif.isMulticastCapable() &&
190 m_mcastConfig.netifPredicate(netif);
191 });
192
193 // create faces
194 for (const auto& netif : capableNetifs) {
195 shared_ptr<Face> face;
196 try {
197 face = this->createMulticastFace(netif, m_mcastConfig.group);
198 }
199 catch (const EthernetTransport::Error& e) {
200 NFD_LOG_ERROR("Cannot create Ethernet multicast face on " << netif.name << ": " <<
201 e.what() << ", continuing");
202 continue;
203 }
204
205 if (face->getId() == face::INVALID_FACEID) {
206 // new face: register with forwarding
207 context.addFace(face);
208 }
209 else {
210 // existing face: don't destroy
211 oldFaces.erase(face);
212 }
213 }
214 }
215
216 // destroy old faces that are not needed in new configuration
217 for (const auto& face : oldFaces) {
218 face->close();
219 }
220}
221
222} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100223} // namespace nfd