Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +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 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
| 26 | #include "udp-factory.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 27 | #include "generic-link-service.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 28 | #include "multicast-udp-transport.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 29 | #include "core/global-io.hpp" |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 30 | #include <boost/range/adaptors.hpp> |
| 31 | #include <boost/range/algorithm/copy.hpp> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 32 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 33 | #ifdef __linux__ |
| 34 | #include <cerrno> // for errno |
| 35 | #include <cstring> // for std::strerror() |
| 36 | #include <sys/socket.h> // for setsockopt() |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 37 | #endif // __linux__ |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 38 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 39 | namespace nfd { |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 40 | namespace face { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 41 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 42 | namespace ip = boost::asio::ip; |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 43 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 44 | NFD_LOG_INIT("UdpFactory"); |
Junxiao Shi | b47247d | 2017-01-24 15:09:16 +0000 | [diff] [blame] | 45 | NFD_REGISTER_PROTOCOL_FACTORY(UdpFactory); |
| 46 | |
| 47 | const std::string& |
| 48 | UdpFactory::getId() |
| 49 | { |
| 50 | static std::string id("udp"); |
| 51 | return id; |
| 52 | } |
| 53 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 54 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 55 | void |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 56 | UdpFactory::processConfig(OptionalConfigSection configSection, |
| 57 | FaceSystem::ConfigContext& context) |
| 58 | { |
| 59 | // udp |
| 60 | // { |
| 61 | // port 6363 |
| 62 | // enable_v4 yes |
| 63 | // enable_v6 yes |
| 64 | // idle_timeout 600 |
| 65 | // keep_alive_interval 25 ; acceptable but ignored |
| 66 | // mcast yes |
| 67 | // mcast_group 224.0.23.170 |
| 68 | // mcast_port 56363 |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 69 | // mcast_ad_hoc no |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 70 | // whitelist |
| 71 | // { |
| 72 | // * |
| 73 | // } |
| 74 | // blacklist |
| 75 | // { |
| 76 | // } |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 77 | // } |
| 78 | |
| 79 | uint16_t port = 6363; |
| 80 | bool enableV4 = false; |
| 81 | bool enableV6 = false; |
| 82 | uint32_t idleTimeout = 600; |
| 83 | MulticastConfig mcastConfig; |
| 84 | |
| 85 | if (configSection) { |
| 86 | // These default to 'yes' but only if face_system.udp section is present |
| 87 | enableV4 = enableV6 = mcastConfig.isEnabled = true; |
| 88 | |
| 89 | for (const auto& pair : *configSection) { |
| 90 | const std::string& key = pair.first; |
| 91 | const ConfigSection& value = pair.second; |
| 92 | |
| 93 | if (key == "port") { |
| 94 | port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.udp"); |
| 95 | } |
| 96 | else if (key == "enable_v4") { |
| 97 | enableV4 = ConfigFile::parseYesNo(pair, "face_system.udp"); |
| 98 | } |
| 99 | else if (key == "enable_v6") { |
| 100 | enableV6 = ConfigFile::parseYesNo(pair, "face_system.udp"); |
| 101 | } |
| 102 | else if (key == "idle_timeout") { |
| 103 | idleTimeout = ConfigFile::parseNumber<uint32_t>(pair, "face_system.udp"); |
| 104 | } |
| 105 | else if (key == "keep_alive_interval") { |
| 106 | // ignored |
| 107 | } |
| 108 | else if (key == "mcast") { |
| 109 | mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "face_system.udp"); |
| 110 | } |
| 111 | else if (key == "mcast_group") { |
| 112 | const std::string& valueStr = value.get_value<std::string>(); |
| 113 | boost::system::error_code ec; |
| 114 | mcastConfig.group.address(boost::asio::ip::address_v4::from_string(valueStr, ec)); |
| 115 | if (ec) { |
| 116 | BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.udp.mcast_group: '" + |
| 117 | valueStr + "' cannot be parsed as an IPv4 address")); |
| 118 | } |
| 119 | else if (!mcastConfig.group.address().is_multicast()) { |
| 120 | BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.udp.mcast_group: '" + |
| 121 | valueStr + "' is not a multicast address")); |
| 122 | } |
| 123 | } |
| 124 | else if (key == "mcast_port") { |
| 125 | mcastConfig.group.port(ConfigFile::parseNumber<uint16_t>(pair, "face_system.udp")); |
| 126 | } |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 127 | else if (key == "mcast_ad_hoc") { |
| 128 | bool wantAdHoc = ConfigFile::parseYesNo(pair, "face_system.udp"); |
| 129 | mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS; |
| 130 | } |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 131 | else if (key == "whitelist") { |
| 132 | mcastConfig.netifPredicate.parseWhitelist(value); |
| 133 | } |
| 134 | else if (key == "blacklist") { |
| 135 | mcastConfig.netifPredicate.parseBlacklist(value); |
| 136 | } |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 137 | else { |
| 138 | BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.udp." + key)); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | if (!enableV4 && !enableV6 && !mcastConfig.isEnabled) { |
| 143 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 144 | "IPv4 and IPv6 UDP channels and UDP multicast have been disabled. " |
| 145 | "Remove face_system.udp section to disable UDP channels or enable at least one of them.")); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | if (!context.isDryRun) { |
| 150 | if (enableV4) { |
| 151 | udp::Endpoint endpoint(ip::udp::v4(), port); |
| 152 | shared_ptr<UdpChannel> v4Channel = this->createChannel(endpoint, time::seconds(idleTimeout)); |
| 153 | if (!v4Channel->isListening()) { |
| 154 | v4Channel->listen(context.addFace, nullptr); |
| 155 | } |
| 156 | providedSchemes.insert("udp"); |
| 157 | providedSchemes.insert("udp4"); |
| 158 | } |
| 159 | else if (providedSchemes.count("udp4") > 0) { |
| 160 | NFD_LOG_WARN("Cannot close udp4 channel after its creation"); |
| 161 | } |
| 162 | |
| 163 | if (enableV6) { |
| 164 | udp::Endpoint endpoint(ip::udp::v6(), port); |
| 165 | shared_ptr<UdpChannel> v6Channel = this->createChannel(endpoint, time::seconds(idleTimeout)); |
| 166 | if (!v6Channel->isListening()) { |
| 167 | v6Channel->listen(context.addFace, nullptr); |
| 168 | } |
| 169 | providedSchemes.insert("udp"); |
| 170 | providedSchemes.insert("udp6"); |
| 171 | } |
| 172 | else if (providedSchemes.count("udp6") > 0) { |
| 173 | NFD_LOG_WARN("Cannot close udp6 channel after its creation"); |
| 174 | } |
| 175 | |
| 176 | if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) { |
| 177 | if (mcastConfig.isEnabled) { |
| 178 | NFD_LOG_INFO("enabling multicast on " << mcastConfig.group); |
| 179 | } |
| 180 | else { |
| 181 | NFD_LOG_INFO("disabling multicast"); |
| 182 | } |
| 183 | } |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 184 | else if (mcastConfig.isEnabled) { |
| 185 | if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) { |
| 186 | NFD_LOG_WARN("Cannot change ad hoc setting on existing faces"); |
| 187 | } |
| 188 | if (m_mcastConfig.group != mcastConfig.group) { |
| 189 | NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group << |
| 190 | " to " << mcastConfig.group); |
| 191 | } |
| 192 | if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) { |
| 193 | NFD_LOG_INFO("changing whitelist/blacklist"); |
| 194 | } |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 197 | // Even if there's no configuration change, we still need to re-apply configuration because |
| 198 | // netifs may have changed. |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 199 | m_mcastConfig = mcastConfig; |
| 200 | this->applyMulticastConfig(context); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | void |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 205 | UdpFactory::createFace(const FaceUri& remoteUri, |
| 206 | const ndn::optional<FaceUri>& localUri, |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 207 | ndn::nfd::FacePersistency persistency, |
| 208 | bool wantLocalFieldsEnabled, |
| 209 | const FaceCreatedCallback& onCreated, |
| 210 | const FaceCreationFailedCallback& onFailure) |
| 211 | { |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 212 | BOOST_ASSERT(remoteUri.isCanonical()); |
| 213 | |
| 214 | if (localUri) { |
| 215 | NFD_LOG_TRACE("Cannot create unicast UDP face with LocalUri"); |
| 216 | onFailure(406, "Unicast UDP faces cannot be created with a LocalUri"); |
| 217 | return; |
| 218 | } |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 219 | |
| 220 | if (persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) { |
| 221 | NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND"); |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 222 | onFailure(406, "Outgoing UDP faces do not support on-demand persistency"); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 223 | return; |
| 224 | } |
| 225 | |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 226 | udp::Endpoint endpoint(ip::address::from_string(remoteUri.getHost()), |
| 227 | boost::lexical_cast<uint16_t>(remoteUri.getPort())); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 228 | |
| 229 | if (endpoint.address().is_multicast()) { |
| 230 | NFD_LOG_TRACE("createFace does not support multicast faces"); |
| 231 | onFailure(406, "Cannot create multicast UDP faces"); |
| 232 | return; |
| 233 | } |
| 234 | |
| 235 | if (m_prohibitedEndpoints.find(endpoint) != m_prohibitedEndpoints.end()) { |
| 236 | NFD_LOG_TRACE("Requested endpoint is prohibited " |
| 237 | "(reserved by this NFD or disallowed by face management protocol)"); |
| 238 | onFailure(406, "Requested endpoint is prohibited"); |
| 239 | return; |
| 240 | } |
| 241 | |
| 242 | if (wantLocalFieldsEnabled) { |
| 243 | // UDP faces are never local |
| 244 | NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled"); |
| 245 | onFailure(406, "Local fields can only be enabled on faces with local scope"); |
| 246 | return; |
| 247 | } |
| 248 | |
| 249 | // very simple logic for now |
| 250 | for (const auto& i : m_channels) { |
| 251 | if ((i.first.address().is_v4() && endpoint.address().is_v4()) || |
| 252 | (i.first.address().is_v6() && endpoint.address().is_v6())) { |
| 253 | i.second->connect(endpoint, persistency, onCreated, onFailure); |
| 254 | return; |
| 255 | } |
| 256 | } |
| 257 | |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 258 | NFD_LOG_TRACE("No channels available to connect to " << endpoint); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 259 | onFailure(504, "No channels available to connect"); |
| 260 | } |
| 261 | |
| 262 | void |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 263 | UdpFactory::prohibitEndpoint(const udp::Endpoint& endpoint) |
| 264 | { |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 265 | if (endpoint.address().is_v4() && |
| 266 | endpoint.address() == ip::address_v4::any()) { |
| 267 | prohibitAllIpv4Endpoints(endpoint.port()); |
| 268 | } |
| 269 | else if (endpoint.address().is_v6() && |
| 270 | endpoint.address() == ip::address_v6::any()) { |
| 271 | prohibitAllIpv6Endpoints(endpoint.port()); |
| 272 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 273 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 274 | NFD_LOG_TRACE("prohibiting UDP " << endpoint); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 275 | m_prohibitedEndpoints.insert(endpoint); |
| 276 | } |
| 277 | |
| 278 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 279 | UdpFactory::prohibitAllIpv4Endpoints(uint16_t port) |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 280 | { |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 281 | for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) { |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 282 | for (const auto& addr : nic.ipv4Addresses) { |
| 283 | if (addr != ip::address_v4::any()) { |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 284 | prohibitEndpoint(udp::Endpoint(addr, port)); |
| 285 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 286 | } |
| 287 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 288 | if (nic.isBroadcastCapable() && |
| 289 | nic.broadcastAddress != ip::address_v4::any()) { |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 290 | prohibitEndpoint(udp::Endpoint(nic.broadcastAddress, port)); |
| 291 | } |
| 292 | } |
| 293 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 294 | prohibitEndpoint(udp::Endpoint(ip::address_v4::broadcast(), port)); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 298 | UdpFactory::prohibitAllIpv6Endpoints(uint16_t port) |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 299 | { |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 300 | for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) { |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 301 | for (const auto& addr : nic.ipv6Addresses) { |
| 302 | if (addr != ip::address_v6::any()) { |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 303 | prohibitEndpoint(udp::Endpoint(addr, port)); |
| 304 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 305 | } |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 306 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 307 | } |
| 308 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 309 | shared_ptr<UdpChannel> |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 310 | UdpFactory::createChannel(const udp::Endpoint& localEndpoint, |
| 311 | time::nanoseconds idleTimeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 312 | { |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 313 | auto it = m_channels.find(localEndpoint); |
| 314 | if (it != m_channels.end()) |
| 315 | return it->second; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 316 | |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 317 | if (localEndpoint.address().is_multicast()) { |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 318 | BOOST_THROW_EXCEPTION(Error("createChannel is only for unicast channels. The provided endpoint " |
| 319 | "is multicast. Use createMulticastFace to create a multicast face")); |
| 320 | } |
| 321 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 322 | // check if the endpoint is already used by a multicast face |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 323 | if (m_mcastFaces.find(localEndpoint) != m_mcastFaces.end()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 324 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP unicast channel, local " |
| 325 | "endpoint is already allocated for a UDP multicast face")); |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 326 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 327 | |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 328 | auto channel = std::make_shared<UdpChannel>(localEndpoint, idleTimeout); |
| 329 | m_channels[localEndpoint] = channel; |
| 330 | prohibitEndpoint(localEndpoint); |
| 331 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 332 | return channel; |
| 333 | } |
| 334 | |
| 335 | shared_ptr<UdpChannel> |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 336 | UdpFactory::createChannel(const std::string& localIp, const std::string& localPort, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 337 | time::nanoseconds idleTimeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 338 | { |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 339 | udp::Endpoint endpoint(ip::address::from_string(localIp), |
| 340 | boost::lexical_cast<uint16_t>(localPort)); |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 341 | return createChannel(endpoint, idleTimeout); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 342 | } |
| 343 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 344 | std::vector<shared_ptr<const Channel>> |
| 345 | UdpFactory::getChannels() const |
| 346 | { |
| 347 | return getChannelsFromMap(m_channels); |
| 348 | } |
| 349 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 350 | shared_ptr<Face> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 351 | UdpFactory::createMulticastFace(const udp::Endpoint& localEndpoint, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 352 | const udp::Endpoint& multicastEndpoint, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 353 | const std::string& networkInterfaceName) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 354 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 355 | // checking if the local and multicast endpoints are already in use for a multicast face |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 356 | auto it = m_mcastFaces.find(localEndpoint); |
| 357 | if (it != m_mcastFaces.end()) { |
| 358 | if (it->second->getRemoteUri() == FaceUri(multicastEndpoint)) |
| 359 | return it->second; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 360 | else |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 361 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, local " |
| 362 | "endpoint is already allocated for a UDP multicast face " |
| 363 | "on a different multicast group")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 364 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 365 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 366 | // checking if the local endpoint is already in use for a unicast channel |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 367 | if (m_channels.find(localEndpoint) != m_channels.end()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 368 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, local " |
| 369 | "endpoint is already allocated for a UDP unicast channel")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 370 | } |
| 371 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 372 | if (m_prohibitedEndpoints.find(multicastEndpoint) != m_prohibitedEndpoints.end()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 373 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, " |
| 374 | "remote endpoint is owned by this NFD instance")); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 375 | } |
| 376 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 377 | if (localEndpoint.address().is_v6() || multicastEndpoint.address().is_v6()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 378 | BOOST_THROW_EXCEPTION(Error("IPv6 multicast is not supported yet. Please provide an IPv4 " |
| 379 | "address")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 380 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 381 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 382 | if (localEndpoint.port() != multicastEndpoint.port()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 383 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, " |
| 384 | "both endpoints should have the same port number. ")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | if (!multicastEndpoint.address().is_multicast()) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 388 | BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, " |
| 389 | "the multicast group given as input is not a multicast address")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 390 | } |
| 391 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 392 | ip::udp::socket receiveSocket(getGlobalIoService()); |
| 393 | receiveSocket.open(multicastEndpoint.protocol()); |
| 394 | receiveSocket.set_option(ip::udp::socket::reuse_address(true)); |
| 395 | receiveSocket.bind(multicastEndpoint); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 396 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 397 | ip::udp::socket sendSocket(getGlobalIoService()); |
| 398 | sendSocket.open(multicastEndpoint.protocol()); |
| 399 | sendSocket.set_option(ip::udp::socket::reuse_address(true)); |
| 400 | sendSocket.set_option(ip::multicast::enable_loopback(false)); |
| 401 | sendSocket.bind(udp::Endpoint(ip::address_v4::any(), multicastEndpoint.port())); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 402 | if (localEndpoint.address() != ip::address_v4::any()) |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 403 | sendSocket.set_option(ip::multicast::outbound_interface(localEndpoint.address().to_v4())); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 404 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 405 | sendSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(), |
| 406 | localEndpoint.address().to_v4())); |
| 407 | receiveSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(), |
Alexander Afanasyev | dc01700 | 2014-06-18 16:37:54 -0700 | [diff] [blame] | 408 | localEndpoint.address().to_v4())); |
| 409 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 410 | #ifdef __linux__ |
| 411 | /* |
| 412 | * On Linux, if there is more than one MulticastUdpFace for the same multicast |
| 413 | * group but they are bound to different network interfaces, the socket needs |
| 414 | * to be bound to the specific interface using SO_BINDTODEVICE, otherwise the |
| 415 | * face will receive all packets sent to the other interfaces as well. |
| 416 | * This happens only on Linux. On OS X, the ip::multicast::join_group option |
| 417 | * is enough to get the desired behaviour. |
| 418 | */ |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 419 | if (!networkInterfaceName.empty()) { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 420 | if (::setsockopt(receiveSocket.native_handle(), SOL_SOCKET, SO_BINDTODEVICE, |
| 421 | networkInterfaceName.c_str(), networkInterfaceName.size() + 1) < 0) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 422 | BOOST_THROW_EXCEPTION(Error("Cannot bind multicast face to " + networkInterfaceName + |
| 423 | ": " + std::strerror(errno))); |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 424 | } |
| 425 | } |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 426 | #endif // __linux__ |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 427 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 428 | auto linkService = make_unique<GenericLinkService>(); |
| 429 | auto transport = make_unique<MulticastUdpTransport>(localEndpoint, multicastEndpoint, |
| 430 | std::move(receiveSocket), |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 431 | std::move(sendSocket), |
| 432 | m_mcastConfig.linkType); |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 433 | auto face = make_shared<Face>(std::move(linkService), std::move(transport)); |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 434 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 435 | m_mcastFaces[localEndpoint] = face; |
| 436 | connectFaceClosedSignal(*face, [this, localEndpoint] { m_mcastFaces.erase(localEndpoint); }); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 437 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 438 | return face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 439 | } |
| 440 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 441 | shared_ptr<Face> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 442 | UdpFactory::createMulticastFace(const std::string& localIp, |
| 443 | const std::string& multicastIp, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 444 | const std::string& multicastPort, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 445 | const std::string& networkInterfaceName) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 446 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 447 | udp::Endpoint localEndpoint(ip::address::from_string(localIp), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 448 | boost::lexical_cast<uint16_t>(multicastPort)); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 449 | udp::Endpoint multicastEndpoint(ip::address::from_string(multicastIp), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 450 | boost::lexical_cast<uint16_t>(multicastPort)); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 451 | return createMulticastFace(localEndpoint, multicastEndpoint, networkInterfaceName); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 452 | } |
| 453 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 454 | void |
| 455 | UdpFactory::applyMulticastConfig(const FaceSystem::ConfigContext& context) |
| 456 | { |
| 457 | // collect old faces |
| 458 | std::set<shared_ptr<Face>> oldFaces; |
| 459 | boost::copy(m_mcastFaces | boost::adaptors::map_values, |
| 460 | std::inserter(oldFaces, oldFaces.end())); |
| 461 | |
| 462 | if (m_mcastConfig.isEnabled) { |
| 463 | // determine interfaces on which faces should be created or retained |
| 464 | auto capableNetifRange = context.listNetifs() | |
| 465 | boost::adaptors::filtered([this] (const NetworkInterfaceInfo& netif) { |
| 466 | return netif.isUp() && netif.isMulticastCapable() && |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 467 | !netif.ipv4Addresses.empty() && |
| 468 | m_mcastConfig.netifPredicate(netif); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 469 | }); |
| 470 | |
| 471 | bool needIfname = false; |
| 472 | #ifdef __linux__ |
| 473 | std::vector<NetworkInterfaceInfo> capableNetifs; |
| 474 | boost::copy(capableNetifRange, std::back_inserter(capableNetifs)); |
| 475 | // on Linux, ifname is needed to create more than one UDP multicast face on the same group |
| 476 | needIfname = capableNetifs.size() > 1; |
| 477 | #else |
| 478 | auto& capableNetifs = capableNetifRange; |
| 479 | #endif // __linux__ |
| 480 | |
| 481 | // create faces |
| 482 | for (const auto& netif : capableNetifs) { |
| 483 | udp::Endpoint localEndpoint(netif.ipv4Addresses.front(), m_mcastConfig.group.port()); |
| 484 | shared_ptr<Face> face = this->createMulticastFace(localEndpoint, m_mcastConfig.group, |
| 485 | needIfname ? netif.name : ""); |
| 486 | if (face->getId() == INVALID_FACEID) { |
| 487 | // new face: register with forwarding |
| 488 | context.addFace(face); |
| 489 | } |
| 490 | else { |
| 491 | // existing face: don't destroy |
| 492 | oldFaces.erase(face); |
| 493 | } |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | // destroy old faces that are not needed in new configuration |
| 498 | for (const auto& face : oldFaces) { |
| 499 | face->close(); |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | } // namespace face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 504 | } // namespace nfd |