blob: 7477fb012131c7f0c22709eb03361ef026a79753 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2d491752017-07-14 21:32:05 +00002/*
Junxiao Shi64d99f22017-01-21 23:06:36 +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 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
26#include "udp-factory.hpp"
Yukai Tu0a49d342015-09-13 12:54:22 +080027#include "generic-link-service.hpp"
Yukai Tu0a49d342015-09-13 12:54:22 +080028#include "multicast-udp-transport.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010029#include "core/global-io.hpp"
Yanbiao Liafb20592017-08-03 16:20:46 -070030
31#include <ndn-cxx/net/address-converter.hpp>
Junxiao Shi64d99f22017-01-21 23:06:36 +000032#include <boost/range/adaptors.hpp>
33#include <boost/range/algorithm/copy.hpp>
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
Davide Pesavento292e5e12015-03-13 02:08:33 +010035#ifdef __linux__
36#include <cerrno> // for errno
37#include <cstring> // for std::strerror()
38#include <sys/socket.h> // for setsockopt()
Junxiao Shi64d99f22017-01-21 23:06:36 +000039#endif // __linux__
Giulio Grassi6d7176d2014-04-16 16:08:48 +020040
Giulio Grassi624f6c62014-02-18 19:42:14 +010041namespace nfd {
Junxiao Shi64d99f22017-01-21 23:06:36 +000042namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010043
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020044namespace ip = boost::asio::ip;
Junxiao Shi79494162014-04-02 18:25:11 -070045
Giulio Grassi624f6c62014-02-18 19:42:14 +010046NFD_LOG_INIT("UdpFactory");
Junxiao Shib47247d2017-01-24 15:09:16 +000047NFD_REGISTER_PROTOCOL_FACTORY(UdpFactory);
48
49const std::string&
50UdpFactory::getId()
51{
52 static std::string id("udp");
53 return id;
54}
55
Junxiao Shi0ba6d642017-07-17 00:53:22 +000056UdpFactory::UdpFactory(const CtorParams& params)
57 : ProtocolFactory(params)
58{
Junxiao Shibbace1d2017-08-06 20:03:37 +000059 m_netifAddConn = netmon->onInterfaceAdded.connect(bind(&UdpFactory::applyMcastConfigToNetif, this, _1));
Junxiao Shi0ba6d642017-07-17 00:53:22 +000060}
Giulio Grassi624f6c62014-02-18 19:42:14 +010061
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060062void
Junxiao Shi64d99f22017-01-21 23:06:36 +000063UdpFactory::processConfig(OptionalConfigSection configSection,
64 FaceSystem::ConfigContext& context)
65{
66 // udp
67 // {
68 // port 6363
69 // enable_v4 yes
70 // enable_v6 yes
71 // idle_timeout 600
72 // keep_alive_interval 25 ; acceptable but ignored
73 // mcast yes
74 // mcast_group 224.0.23.170
75 // mcast_port 56363
Teng Liangfe4fce32017-03-29 04:49:38 +000076 // mcast_ad_hoc no
Junxiao Shic31080d2017-01-24 15:10:12 +000077 // whitelist
78 // {
79 // *
80 // }
81 // blacklist
82 // {
83 // }
Junxiao Shi64d99f22017-01-21 23:06:36 +000084 // }
85
86 uint16_t port = 6363;
87 bool enableV4 = false;
88 bool enableV6 = false;
89 uint32_t idleTimeout = 600;
90 MulticastConfig mcastConfig;
91
92 if (configSection) {
93 // These default to 'yes' but only if face_system.udp section is present
94 enableV4 = enableV6 = mcastConfig.isEnabled = true;
95
96 for (const auto& pair : *configSection) {
97 const std::string& key = pair.first;
98 const ConfigSection& value = pair.second;
99
100 if (key == "port") {
101 port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.udp");
102 }
103 else if (key == "enable_v4") {
104 enableV4 = ConfigFile::parseYesNo(pair, "face_system.udp");
105 }
106 else if (key == "enable_v6") {
107 enableV6 = ConfigFile::parseYesNo(pair, "face_system.udp");
108 }
109 else if (key == "idle_timeout") {
110 idleTimeout = ConfigFile::parseNumber<uint32_t>(pair, "face_system.udp");
111 }
112 else if (key == "keep_alive_interval") {
113 // ignored
114 }
115 else if (key == "mcast") {
116 mcastConfig.isEnabled = ConfigFile::parseYesNo(pair, "face_system.udp");
117 }
118 else if (key == "mcast_group") {
119 const std::string& valueStr = value.get_value<std::string>();
120 boost::system::error_code ec;
121 mcastConfig.group.address(boost::asio::ip::address_v4::from_string(valueStr, ec));
122 if (ec) {
123 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.udp.mcast_group: '" +
124 valueStr + "' cannot be parsed as an IPv4 address"));
125 }
126 else if (!mcastConfig.group.address().is_multicast()) {
127 BOOST_THROW_EXCEPTION(ConfigFile::Error("face_system.udp.mcast_group: '" +
128 valueStr + "' is not a multicast address"));
129 }
130 }
131 else if (key == "mcast_port") {
132 mcastConfig.group.port(ConfigFile::parseNumber<uint16_t>(pair, "face_system.udp"));
133 }
Teng Liangfe4fce32017-03-29 04:49:38 +0000134 else if (key == "mcast_ad_hoc") {
135 bool wantAdHoc = ConfigFile::parseYesNo(pair, "face_system.udp");
136 mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS;
137 }
Junxiao Shic31080d2017-01-24 15:10:12 +0000138 else if (key == "whitelist") {
139 mcastConfig.netifPredicate.parseWhitelist(value);
140 }
141 else if (key == "blacklist") {
142 mcastConfig.netifPredicate.parseBlacklist(value);
143 }
Junxiao Shi64d99f22017-01-21 23:06:36 +0000144 else {
145 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.udp." + key));
146 }
147 }
148
149 if (!enableV4 && !enableV6 && !mcastConfig.isEnabled) {
150 BOOST_THROW_EXCEPTION(ConfigFile::Error(
151 "IPv4 and IPv6 UDP channels and UDP multicast have been disabled. "
152 "Remove face_system.udp section to disable UDP channels or enable at least one of them."));
153 }
154 }
155
Junxiao Shi79a92082017-08-08 02:40:59 +0000156 if (context.isDryRun) {
157 return;
Junxiao Shi64d99f22017-01-21 23:06:36 +0000158 }
Junxiao Shi79a92082017-08-08 02:40:59 +0000159
160 if (enableV4) {
161 udp::Endpoint endpoint(ip::udp::v4(), port);
162 shared_ptr<UdpChannel> v4Channel = this->createChannel(endpoint, time::seconds(idleTimeout));
163 if (!v4Channel->isListening()) {
164 v4Channel->listen(this->addFace, nullptr);
165 }
166 providedSchemes.insert("udp");
167 providedSchemes.insert("udp4");
168 }
169 else if (providedSchemes.count("udp4") > 0) {
170 NFD_LOG_WARN("Cannot close udp4 channel after its creation");
171 }
172
173 if (enableV6) {
174 udp::Endpoint endpoint(ip::udp::v6(), port);
175 shared_ptr<UdpChannel> v6Channel = this->createChannel(endpoint, time::seconds(idleTimeout));
176 if (!v6Channel->isListening()) {
177 v6Channel->listen(this->addFace, nullptr);
178 }
179 providedSchemes.insert("udp");
180 providedSchemes.insert("udp6");
181 }
182 else if (providedSchemes.count("udp6") > 0) {
183 NFD_LOG_WARN("Cannot close udp6 channel after its creation");
184 }
185
186 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
187 if (mcastConfig.isEnabled) {
188 NFD_LOG_INFO("enabling multicast on " << mcastConfig.group);
189 }
190 else {
191 NFD_LOG_INFO("disabling multicast");
192 }
193 }
194 else if (mcastConfig.isEnabled) {
195 if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) {
196 NFD_LOG_WARN("Cannot change ad hoc setting on existing faces");
197 }
198 if (m_mcastConfig.group != mcastConfig.group) {
199 NFD_LOG_INFO("changing multicast group from " << m_mcastConfig.group <<
200 " to " << mcastConfig.group);
201 }
202 if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
203 NFD_LOG_INFO("changing whitelist/blacklist");
204 }
205 }
206
207 // Even if there's no configuration change, we still need to re-apply configuration because
208 // netifs may have changed.
209 m_mcastConfig = mcastConfig;
210 this->applyMcastConfig(context);
Junxiao Shi64d99f22017-01-21 23:06:36 +0000211}
212
213void
Eric Newberry944f38b2017-07-20 20:54:22 -0400214UdpFactory::createFace(const CreateFaceParams& params,
Junxiao Shi64d99f22017-01-21 23:06:36 +0000215 const FaceCreatedCallback& onCreated,
216 const FaceCreationFailedCallback& onFailure)
217{
Eric Newberry944f38b2017-07-20 20:54:22 -0400218 BOOST_ASSERT(params.remoteUri.isCanonical());
Eric Newberry78e32b02017-04-01 14:34:44 +0000219
Eric Newberry944f38b2017-07-20 20:54:22 -0400220 if (params.localUri) {
Eric Newberry78e32b02017-04-01 14:34:44 +0000221 NFD_LOG_TRACE("Cannot create unicast UDP face with LocalUri");
222 onFailure(406, "Unicast UDP faces cannot be created with a LocalUri");
223 return;
224 }
Junxiao Shi64d99f22017-01-21 23:06:36 +0000225
Eric Newberry944f38b2017-07-20 20:54:22 -0400226 if (params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) {
Junxiao Shi64d99f22017-01-21 23:06:36 +0000227 NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND");
Davide Pesavento46afec42017-05-28 14:28:47 -0400228 onFailure(406, "Outgoing UDP faces do not support on-demand persistency");
Junxiao Shi64d99f22017-01-21 23:06:36 +0000229 return;
230 }
231
Yanbiao Liafb20592017-08-03 16:20:46 -0700232 udp::Endpoint endpoint(ndn::ip::addressFromString(params.remoteUri.getHost()),
Eric Newberry944f38b2017-07-20 20:54:22 -0400233 boost::lexical_cast<uint16_t>(params.remoteUri.getPort()));
Junxiao Shi64d99f22017-01-21 23:06:36 +0000234
235 if (endpoint.address().is_multicast()) {
236 NFD_LOG_TRACE("createFace does not support multicast faces");
237 onFailure(406, "Cannot create multicast UDP faces");
238 return;
239 }
240
Eric Newberry2642cd22017-07-13 21:34:53 -0400241 if (params.wantLocalFields) {
Junxiao Shi64d99f22017-01-21 23:06:36 +0000242 // UDP faces are never local
243 NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
244 onFailure(406, "Local fields can only be enabled on faces with local scope");
245 return;
246 }
247
248 // very simple logic for now
249 for (const auto& i : m_channels) {
250 if ((i.first.address().is_v4() && endpoint.address().is_v4()) ||
251 (i.first.address().is_v6() && endpoint.address().is_v6())) {
Eric Newberry2642cd22017-07-13 21:34:53 -0400252 i.second->connect(endpoint, params.persistency, params.wantLpReliability,
253 onCreated, onFailure);
Junxiao Shi64d99f22017-01-21 23:06:36 +0000254 return;
255 }
256 }
257
Davide Pesavento46afec42017-05-28 14:28:47 -0400258 NFD_LOG_TRACE("No channels available to connect to " << endpoint);
Junxiao Shi64d99f22017-01-21 23:06:36 +0000259 onFailure(504, "No channels available to connect");
260}
261
Giulio Grassi624f6c62014-02-18 19:42:14 +0100262shared_ptr<UdpChannel>
Davide Pesavento46afec42017-05-28 14:28:47 -0400263UdpFactory::createChannel(const udp::Endpoint& localEndpoint,
264 time::nanoseconds idleTimeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100265{
Davide Pesavento46afec42017-05-28 14:28:47 -0400266 auto it = m_channels.find(localEndpoint);
267 if (it != m_channels.end())
268 return it->second;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100269
Davide Pesavento46afec42017-05-28 14:28:47 -0400270 if (localEndpoint.address().is_multicast()) {
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200271 BOOST_THROW_EXCEPTION(Error("createChannel is only for unicast channels. The provided endpoint "
272 "is multicast. Use createMulticastFace to create a multicast face"));
273 }
274
Yukai Tu0a49d342015-09-13 12:54:22 +0800275 // check if the endpoint is already used by a multicast face
Davide Pesavento46afec42017-05-28 14:28:47 -0400276 if (m_mcastFaces.find(localEndpoint) != m_mcastFaces.end()) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700277 BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP unicast channel, local "
278 "endpoint is already allocated for a UDP multicast face"));
Yukai Tu0a49d342015-09-13 12:54:22 +0800279 }
Junxiao Shi79494162014-04-02 18:25:11 -0700280
Davide Pesavento46afec42017-05-28 14:28:47 -0400281 auto channel = std::make_shared<UdpChannel>(localEndpoint, idleTimeout);
282 m_channels[localEndpoint] = channel;
Davide Pesavento46afec42017-05-28 14:28:47 -0400283
Giulio Grassi624f6c62014-02-18 19:42:14 +0100284 return channel;
285}
286
Junxiao Shi64d99f22017-01-21 23:06:36 +0000287std::vector<shared_ptr<const Channel>>
288UdpFactory::getChannels() const
289{
290 return getChannelsFromMap(m_channels);
291}
292
Junxiao Shicde37ad2015-12-24 01:02:05 -0700293shared_ptr<Face>
Giulio Grassi624f6c62014-02-18 19:42:14 +0100294UdpFactory::createMulticastFace(const udp::Endpoint& localEndpoint,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200295 const udp::Endpoint& multicastEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -0400296 const std::string& networkInterfaceName)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100297{
Davide Pesavento292e5e12015-03-13 02:08:33 +0100298 // checking if the local and multicast endpoints are already in use for a multicast face
Davide Pesavento46afec42017-05-28 14:28:47 -0400299 auto it = m_mcastFaces.find(localEndpoint);
300 if (it != m_mcastFaces.end()) {
301 if (it->second->getRemoteUri() == FaceUri(multicastEndpoint))
302 return it->second;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100303 else
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700304 BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, local "
305 "endpoint is already allocated for a UDP multicast face "
306 "on a different multicast group"));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100307 }
Junxiao Shi79494162014-04-02 18:25:11 -0700308
Davide Pesavento292e5e12015-03-13 02:08:33 +0100309 // checking if the local endpoint is already in use for a unicast channel
Davide Pesavento46afec42017-05-28 14:28:47 -0400310 if (m_channels.find(localEndpoint) != m_channels.end()) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700311 BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, local "
312 "endpoint is already allocated for a UDP unicast channel"));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100313 }
314
315 if (localEndpoint.address().is_v6() || multicastEndpoint.address().is_v6()) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700316 BOOST_THROW_EXCEPTION(Error("IPv6 multicast is not supported yet. Please provide an IPv4 "
317 "address"));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100318 }
Junxiao Shi79494162014-04-02 18:25:11 -0700319
Giulio Grassi624f6c62014-02-18 19:42:14 +0100320 if (localEndpoint.port() != multicastEndpoint.port()) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700321 BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, "
322 "both endpoints should have the same port number. "));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100323 }
324
325 if (!multicastEndpoint.address().is_multicast()) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700326 BOOST_THROW_EXCEPTION(Error("Cannot create the requested UDP multicast face, "
327 "the multicast group given as input is not a multicast address"));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100328 }
329
Davide Pesavento292e5e12015-03-13 02:08:33 +0100330 ip::udp::socket receiveSocket(getGlobalIoService());
331 receiveSocket.open(multicastEndpoint.protocol());
332 receiveSocket.set_option(ip::udp::socket::reuse_address(true));
333 receiveSocket.bind(multicastEndpoint);
Junxiao Shi79494162014-04-02 18:25:11 -0700334
Davide Pesavento292e5e12015-03-13 02:08:33 +0100335 ip::udp::socket sendSocket(getGlobalIoService());
336 sendSocket.open(multicastEndpoint.protocol());
337 sendSocket.set_option(ip::udp::socket::reuse_address(true));
338 sendSocket.set_option(ip::multicast::enable_loopback(false));
339 sendSocket.bind(udp::Endpoint(ip::address_v4::any(), multicastEndpoint.port()));
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200340 if (localEndpoint.address() != ip::address_v4::any())
Davide Pesavento292e5e12015-03-13 02:08:33 +0100341 sendSocket.set_option(ip::multicast::outbound_interface(localEndpoint.address().to_v4()));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100342
Davide Pesavento292e5e12015-03-13 02:08:33 +0100343 sendSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(),
344 localEndpoint.address().to_v4()));
345 receiveSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(),
Alexander Afanasyevdc017002014-06-18 16:37:54 -0700346 localEndpoint.address().to_v4()));
347
Davide Pesavento292e5e12015-03-13 02:08:33 +0100348#ifdef __linux__
Junxiao Shibbace1d2017-08-06 20:03:37 +0000349 // On Linux, if there is more than one multicast UDP face for the same multicast
350 // group but they are bound to different network interfaces, the socket needs
351 // to be bound to the specific interface using SO_BINDTODEVICE, otherwise the
352 // face will receive all packets sent to the other interfaces as well.
353 // This happens only on Linux. On macOS, the ip::multicast::join_group option
354 // is enough to get the desired behaviour.
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200355 if (!networkInterfaceName.empty()) {
Davide Pesavento292e5e12015-03-13 02:08:33 +0100356 if (::setsockopt(receiveSocket.native_handle(), SOL_SOCKET, SO_BINDTODEVICE,
357 networkInterfaceName.c_str(), networkInterfaceName.size() + 1) < 0) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700358 BOOST_THROW_EXCEPTION(Error("Cannot bind multicast face to " + networkInterfaceName +
359 ": " + std::strerror(errno)));
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200360 }
361 }
Junxiao Shi64d99f22017-01-21 23:06:36 +0000362#endif // __linux__
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200363
Junxiao Shi64d99f22017-01-21 23:06:36 +0000364 auto linkService = make_unique<GenericLinkService>();
365 auto transport = make_unique<MulticastUdpTransport>(localEndpoint, multicastEndpoint,
366 std::move(receiveSocket),
Teng Liangfe4fce32017-03-29 04:49:38 +0000367 std::move(sendSocket),
368 m_mcastConfig.linkType);
Davide Pesavento46afec42017-05-28 14:28:47 -0400369 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
Junxiao Shic099ddb2014-12-25 20:53:20 -0700370
Junxiao Shi64d99f22017-01-21 23:06:36 +0000371 m_mcastFaces[localEndpoint] = face;
372 connectFaceClosedSignal(*face, [this, localEndpoint] { m_mcastFaces.erase(localEndpoint); });
Giulio Grassi624f6c62014-02-18 19:42:14 +0100373
Davide Pesavento292e5e12015-03-13 02:08:33 +0100374 return face;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100375}
376
Junxiao Shicde37ad2015-12-24 01:02:05 -0700377shared_ptr<Face>
Giulio Grassi624f6c62014-02-18 19:42:14 +0100378UdpFactory::createMulticastFace(const std::string& localIp,
379 const std::string& multicastIp,
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200380 const std::string& multicastPort,
Davide Pesavento46afec42017-05-28 14:28:47 -0400381 const std::string& networkInterfaceName)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100382{
Yanbiao Liafb20592017-08-03 16:20:46 -0700383 udp::Endpoint localEndpoint(ndn::ip::addressFromString(localIp),
Chengyu Fan4381fb62015-01-14 11:37:04 -0700384 boost::lexical_cast<uint16_t>(multicastPort));
Yanbiao Liafb20592017-08-03 16:20:46 -0700385 udp::Endpoint multicastEndpoint(ndn::ip::addressFromString(multicastIp),
Chengyu Fan4381fb62015-01-14 11:37:04 -0700386 boost::lexical_cast<uint16_t>(multicastPort));
Chengyu Fan4381fb62015-01-14 11:37:04 -0700387 return createMulticastFace(localEndpoint, multicastEndpoint, networkInterfaceName);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100388}
389
Junxiao Shibbace1d2017-08-06 20:03:37 +0000390static ndn::optional<ndn::net::NetworkAddress>
391getV4Address(const ndn::net::NetworkInterface& netif)
392{
393 using namespace ndn::net;
394 for (const NetworkAddress& na : netif.getNetworkAddresses()) {
395 if (na.getFamily() == AddressFamily::V4 && na.getScope() != AddressScope::NOWHERE) {
396 return na;
397 }
398 }
399 return ndn::nullopt;
400}
401
402shared_ptr<Face>
403UdpFactory::applyMcastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif)
404{
405 if (!m_mcastConfig.isEnabled) {
406 return nullptr;
407 }
408
409 if (!netif->isUp()) {
410 NFD_LOG_DEBUG("Not creating multicast face on " << netif->getName() << ": netif is down");
411 return nullptr;
412 }
413
414 if (!netif->canMulticast()) {
415 NFD_LOG_DEBUG("Not creating multicast face on " << netif->getName() << ": netif cannot multicast");
416 return nullptr;
417 }
418
419 auto address = getV4Address(*netif);
420 if (!address) {
421 NFD_LOG_DEBUG("Not creating multicast face on " << netif->getName() << ": no IPv4 address");
422 // keep an eye on new addresses
423 m_netifConns[netif->getIndex()].addrAddConn =
424 netif->onAddressAdded.connectSingleShot(bind(&UdpFactory::applyMcastConfigToNetif, this, netif));
425 return nullptr;
426 }
427
428 if (!m_mcastConfig.netifPredicate(*netif)) {
Junxiao Shi79a92082017-08-08 02:40:59 +0000429 NFD_LOG_DEBUG("Not creating multicast face on " << netif->getName() << ": rejected by whitelist/blacklist");
Junxiao Shibbace1d2017-08-06 20:03:37 +0000430 return nullptr;
431 }
432
433 NFD_LOG_DEBUG("Creating multicast face on " << netif->getName());
434 udp::Endpoint localEndpoint(address->getIp(), m_mcastConfig.group.port());
435 auto face = this->createMulticastFace(localEndpoint, m_mcastConfig.group, netif->getName());
Junxiao Shi79a92082017-08-08 02:40:59 +0000436 // ifname is only used on Linux. It is not required if there is only one multicast-capable netif,
437 // but it is always supplied because a new netif can be added at anytime.
Junxiao Shibbace1d2017-08-06 20:03:37 +0000438
439 if (face->getId() == INVALID_FACEID) {
440 // new face: register with forwarding
441 this->addFace(face);
442 }
443 return face;
444}
445
Junxiao Shi64d99f22017-01-21 23:06:36 +0000446void
Junxiao Shibbace1d2017-08-06 20:03:37 +0000447UdpFactory::applyMcastConfig(const FaceSystem::ConfigContext& context)
Junxiao Shi64d99f22017-01-21 23:06:36 +0000448{
449 // collect old faces
450 std::set<shared_ptr<Face>> oldFaces;
Junxiao Shibbace1d2017-08-06 20:03:37 +0000451 boost::copy(m_mcastFaces | boost::adaptors::map_values, std::inserter(oldFaces, oldFaces.end()));
Junxiao Shi64d99f22017-01-21 23:06:36 +0000452
Junxiao Shibbace1d2017-08-06 20:03:37 +0000453 // create faces if requested by config
454 for (const auto& netif : netmon->listNetworkInterfaces()) {
455 auto face = this->applyMcastConfigToNetif(netif);
456 if (face != nullptr) {
457 // don't destroy face
458 oldFaces.erase(face);
Junxiao Shi64d99f22017-01-21 23:06:36 +0000459 }
460 }
461
462 // destroy old faces that are not needed in new configuration
463 for (const auto& face : oldFaces) {
464 face->close();
465 }
466}
467
468} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100469} // namespace nfd