blob: 53a0815cbdc5e5b9cccec205d8212dbcdfa6db65 [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");
37
38void
39EthernetFactory::processConfig(OptionalConfigSection configSection,
40 FaceSystem::ConfigContext& context)
Davide Pesavento44deacc2014-02-19 10:48:07 +010041{
Junxiao Shi7003c602017-01-10 13:35:28 +000042 // ether
43 // {
44 // mcast yes
45 // mcast_group 01:00:5E:00:17:AA
46 // whitelist
47 // {
48 // *
49 // }
50 // blacklist
51 // {
52 // }
53 // }
Davide Pesavento44deacc2014-02-19 10:48:07 +010054
Junxiao Shi7003c602017-01-10 13:35:28 +000055 MulticastConfig mcastConfig;
Davide Pesavento44deacc2014-02-19 10:48:07 +010056
Junxiao Shi7003c602017-01-10 13:35:28 +000057 if (configSection) {
58 // face_system.ether.mcast defaults to 'yes' but only if face_system.ether section is present
59 mcastConfig.isEnabled = true;
Davide Pesavento35120ea2015-11-17 21:13:18 +010060
Junxiao Shi7003c602017-01-10 13:35:28 +000061 for (const auto& pair : *configSection) {
62 const std::string& key = pair.first;
63 const ConfigSection& value = pair.second;
Davide Pesavento7726ae52014-11-23 21:01:05 +010064
Junxiao Shi7003c602017-01-10 13:35:28 +000065 if (key == "mcast") {
66 mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "ether");
67 }
68 else if (key == "mcast_group") {
69 const std::string& valueStr = value.get_value<std::string>();
70 mcastConfig.group = ethernet::Address::fromString(valueStr);
71 if (mcastConfig.group.isNull()) {
72 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
73 valueStr + "' cannot be parsed as an Ethernet address"));
74 }
75 else if (!mcastConfig.group.isMulticast()) {
76 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.ether.mcast_group: '" +
77 valueStr + "' is not a multicast address"));
78 }
79 }
80 else if (key == "whitelist") {
81 mcastConfig.netifPredicate.parseWhitelist(value);
82 }
83 else if (key == "blacklist") {
84 mcastConfig.netifPredicate.parseBlacklist(value);
85 }
86 else {
87 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.ether." + key));
88 }
89 }
90 }
Davide Pesavento44deacc2014-02-19 10:48:07 +010091
Junxiao Shi7003c602017-01-10 13:35:28 +000092 if (!context.isDryRun) {
93 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
94 if (mcastConfig.isEnabled) {
95 NFD_LOG_INFO("enabling multicast on " << mcastConfig.group);
96 }
97 else {
98 NFD_LOG_INFO("disabling multicast");
99 }
100 }
101 else if (m_mcastConfig.group != mcastConfig.group) {
102 NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group <<
103 " to " << mcastConfig.group);
104 }
105 else if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
106 NFD_LOG_INFO("changing whitelist/blacklist");
107 }
108 else {
109 // There's no configuration change, but we still need to re-apply configuration because
110 // netifs may have changed.
111 }
112
113 m_mcastConfig = mcastConfig;
114 this->applyConfig(context);
115 }
Davide Pesavento44deacc2014-02-19 10:48:07 +0100116}
117
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800118void
119EthernetFactory::createFace(const FaceUri& uri,
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800120 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -0700121 bool wantLocalFieldsEnabled,
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800122 const FaceCreatedCallback& onCreated,
Eric Newberry42602412016-08-27 09:33:18 -0700123 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800124{
Eric Newberry42602412016-08-27 09:33:18 -0700125 onFailure(406, "Unsupported protocol");
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800126}
127
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200128std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600129EthernetFactory::getChannels() const
130{
Davide Pesavento7726ae52014-11-23 21:01:05 +0100131 return {};
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600132}
133
Junxiao Shicde37ad2015-12-24 01:02:05 -0700134shared_ptr<Face>
Junxiao Shi7003c602017-01-10 13:35:28 +0000135EthernetFactory::createMulticastFace(const NetworkInterfaceInfo& netif,
136 const ethernet::Address& address)
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200137{
Junxiao Shi7003c602017-01-10 13:35:28 +0000138 BOOST_ASSERT(address.isMulticast());
139
140 auto key = std::make_pair(netif.name, address);
141 auto found = m_mcastFaces.find(key);
142 if (found != m_mcastFaces.end()) {
143 return found->second;
144 }
145
146 face::GenericLinkService::Options opts;
147 opts.allowFragmentation = true;
148 opts.allowReassembly = true;
149
150 auto linkService = make_unique<face::GenericLinkService>(opts);
151 auto transport = make_unique<face::EthernetTransport>(netif, address);
152 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
153
154 m_mcastFaces[key] = face;
155 connectFaceClosedSignal(*face, [this, key] { m_mcastFaces.erase(key); });
156
157 return face;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200158}
159
Junxiao Shi7003c602017-01-10 13:35:28 +0000160void
161EthernetFactory::applyConfig(const FaceSystem::ConfigContext& context)
162{
163 // collect old faces
164 std::set<shared_ptr<Face>> oldFaces;
165 boost::copy(m_mcastFaces | boost::adaptors::map_values,
166 std::inserter(oldFaces, oldFaces.end()));
167
168 if (m_mcastConfig.isEnabled) {
169 // determine interfaces on which faces should be created or retained
170 auto capableNetifs = context.listNetifs() |
171 boost::adaptors::filtered([this] (const NetworkInterfaceInfo& netif) {
172 return netif.isUp() && netif.isMulticastCapable() &&
173 m_mcastConfig.netifPredicate(netif);
174 });
175
176 // create faces
177 for (const auto& netif : capableNetifs) {
178 shared_ptr<Face> face;
179 try {
180 face = this->createMulticastFace(netif, m_mcastConfig.group);
181 }
182 catch (const EthernetTransport::Error& e) {
183 NFD_LOG_ERROR("Cannot create Ethernet multicast face on " << netif.name << ": " <<
184 e.what() << ", continuing");
185 continue;
186 }
187
188 if (face->getId() == face::INVALID_FACEID) {
189 // new face: register with forwarding
190 context.addFace(face);
191 }
192 else {
193 // existing face: don't destroy
194 oldFaces.erase(face);
195 }
196 }
197 }
198
199 // destroy old faces that are not needed in new configuration
200 for (const auto& face : oldFaces) {
201 face->close();
202 }
203}
204
205} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100206} // namespace nfd