Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 4 | * 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 25 | |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 26 | #include "ethernet-factory.hpp" |
Davide Pesavento | 35120ea | 2015-11-17 21:13:18 +0100 | [diff] [blame] | 27 | #include "ethernet-transport.hpp" |
| 28 | #include "generic-link-service.hpp" |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 29 | #include "core/logger.hpp" |
| 30 | #include <boost/range/adaptors.hpp> |
| 31 | #include <boost/range/algorithm/copy.hpp> |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 32 | |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 33 | namespace nfd { |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 34 | namespace face { |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 35 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 36 | NFD_LOG_INIT("EthernetFactory"); |
| 37 | |
| 38 | void |
| 39 | EthernetFactory::processConfig(OptionalConfigSection configSection, |
| 40 | FaceSystem::ConfigContext& context) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 41 | { |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 42 | // 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 Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 54 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 55 | MulticastConfig mcastConfig; |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 56 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 57 | if (configSection) { |
| 58 | // face_system.ether.mcast defaults to 'yes' but only if face_system.ether section is present |
| 59 | mcastConfig.isEnabled = true; |
Davide Pesavento | 35120ea | 2015-11-17 21:13:18 +0100 | [diff] [blame] | 60 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 61 | for (const auto& pair : *configSection) { |
| 62 | const std::string& key = pair.first; |
| 63 | const ConfigSection& value = pair.second; |
Davide Pesavento | 7726ae5 | 2014-11-23 21:01:05 +0100 | [diff] [blame] | 64 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 65 | 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 Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 91 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 92 | 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 Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 118 | void |
| 119 | EthernetFactory::createFace(const FaceUri& uri, |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 120 | ndn::nfd::FacePersistency persistency, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 121 | bool wantLocalFieldsEnabled, |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 122 | const FaceCreatedCallback& onCreated, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 123 | const FaceCreationFailedCallback& onFailure) |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 124 | { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 125 | onFailure(406, "Unsupported protocol"); |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 126 | } |
| 127 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 128 | std::vector<shared_ptr<const Channel>> |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 129 | EthernetFactory::getChannels() const |
| 130 | { |
Davide Pesavento | 7726ae5 | 2014-11-23 21:01:05 +0100 | [diff] [blame] | 131 | return {}; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 132 | } |
| 133 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 134 | shared_ptr<Face> |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 135 | EthernetFactory::createMulticastFace(const NetworkInterfaceInfo& netif, |
| 136 | const ethernet::Address& address) |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 137 | { |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 138 | 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 Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 158 | } |
| 159 | |
Junxiao Shi | 7003c60 | 2017-01-10 13:35:28 +0000 | [diff] [blame^] | 160 | void |
| 161 | EthernetFactory::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 Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 206 | } // namespace nfd |