31 #include <boost/range/adaptor/map.hpp> 32 #include <boost/range/algorithm/copy.hpp> 37 namespace ip = boost::asio::ip;
38 namespace net = ndn::net;
46 static std::string id(
"udp");
53 m_netifAddConn =
netmon->onInterfaceAdded.connect([
this] (
const auto& netif) {
54 this->applyMcastConfigToNetif(netif);
86 bool wantListen =
true;
88 bool enableV4 =
false;
89 bool enableV6 =
false;
90 uint32_t idleTimeout = 600;
91 MulticastConfig mcastConfig;
95 enableV4 = enableV6 = mcastConfig.isEnabled =
true;
97 for (
const auto& pair : *configSection) {
98 const std::string& key = pair.first;
101 if (key ==
"listen") {
104 else if (key ==
"port") {
105 port = ConfigFile::parseNumber<uint16_t>(pair,
"face_system.udp");
107 else if (key ==
"enable_v4") {
110 else if (key ==
"enable_v6") {
113 else if (key ==
"idle_timeout") {
114 idleTimeout = ConfigFile::parseNumber<uint32_t>(pair,
"face_system.udp");
116 else if (key ==
"keep_alive_interval") {
119 else if (key ==
"mcast") {
122 else if (key ==
"mcast_group") {
123 const std::string& valueStr = value.get_value<std::string>();
124 boost::system::error_code ec;
125 mcastConfig.group.address(ip::address_v4::from_string(valueStr, ec));
128 valueStr +
"' cannot be parsed as an IPv4 address"));
130 else if (!mcastConfig.group.address().is_multicast()) {
132 valueStr +
"' is not a multicast address"));
135 else if (key ==
"mcast_port") {
136 mcastConfig.group.port(ConfigFile::parseNumber<uint16_t>(pair,
"face_system.udp"));
138 else if (key ==
"mcast_group_v6") {
139 const std::string& valueStr = value.get_value<std::string>();
140 boost::system::error_code ec;
141 mcastConfig.groupV6.address(ip::address_v6::from_string(valueStr, ec));
144 valueStr +
"' cannot be parsed as an IPv6 address"));
146 else if (!mcastConfig.groupV6.address().is_multicast()) {
148 valueStr +
"' is not a multicast address"));
151 else if (key ==
"mcast_port_v6") {
152 mcastConfig.groupV6.port(ConfigFile::parseNumber<uint16_t>(pair,
"face_system.udp"));
154 else if (key ==
"mcast_ad_hoc") {
156 mcastConfig.linkType = wantAdHoc ? ndn::nfd::LINK_TYPE_AD_HOC : ndn::nfd::LINK_TYPE_MULTI_ACCESS;
158 else if (key ==
"whitelist") {
159 mcastConfig.netifPredicate.parseWhitelist(value);
161 else if (key ==
"blacklist") {
162 mcastConfig.netifPredicate.parseBlacklist(value);
169 if (!enableV4 && !enableV6 && !mcastConfig.isEnabled) {
171 "IPv4 and IPv6 UDP channels and UDP multicast have been disabled. " 172 "Remove face_system.udp section to disable UDP channels or enable at least one of them."));
182 shared_ptr<UdpChannel> v4Channel = this->
createChannel(endpoint, time::seconds(idleTimeout));
183 if (wantListen && !v4Channel->isListening()) {
184 v4Channel->listen(this->
addFace,
nullptr);
190 NFD_LOG_WARN(
"Cannot close udp4 channel after its creation");
195 shared_ptr<UdpChannel> v6Channel = this->
createChannel(endpoint, time::seconds(idleTimeout));
196 if (wantListen && !v6Channel->isListening()) {
197 v6Channel->listen(this->
addFace,
nullptr);
203 NFD_LOG_WARN(
"Cannot close udp6 channel after its creation");
206 if (m_mcastConfig.isEnabled != mcastConfig.isEnabled) {
207 if (mcastConfig.isEnabled) {
208 NFD_LOG_INFO(
"enabling multicast on " << mcastConfig.group);
209 NFD_LOG_INFO(
"enabling multicast on " << mcastConfig.groupV6);
215 else if (mcastConfig.isEnabled) {
216 if (m_mcastConfig.linkType != mcastConfig.linkType && !m_mcastFaces.empty()) {
217 NFD_LOG_WARN(
"Cannot change ad hoc setting on existing faces");
219 if (m_mcastConfig.group != mcastConfig.group) {
220 NFD_LOG_INFO(
"changing IPv4 multicast group from " << m_mcastConfig.group <<
221 " to " << mcastConfig.group);
223 if (m_mcastConfig.groupV6 != mcastConfig.groupV6) {
224 NFD_LOG_INFO(
"changing IPv6 multicast group from " << m_mcastConfig.groupV6 <<
225 " to " << mcastConfig.groupV6);
227 if (m_mcastConfig.netifPredicate != mcastConfig.netifPredicate) {
234 m_mcastConfig = mcastConfig;
235 this->applyMcastConfig(context);
244 NFD_LOG_TRACE(
"Cannot create unicast UDP face with LocalUri");
245 onFailure(406,
"Unicast UDP faces cannot be created with a LocalUri");
250 NFD_LOG_TRACE(
"createFace does not support FACE_PERSISTENCY_ON_DEMAND");
251 onFailure(406,
"Outgoing UDP faces do not support on-demand persistency");
256 boost::lexical_cast<uint16_t>(req.
remoteUri.getPort()));
258 if (endpoint.address().is_multicast()) {
259 NFD_LOG_TRACE(
"createFace does not support multicast faces");
260 onFailure(406,
"Cannot create multicast UDP faces");
266 NFD_LOG_TRACE(
"createFace cannot create non-local face with local fields enabled");
267 onFailure(406,
"Local fields can only be enabled on faces with local scope");
274 onFailure(406,
"Override MTU cannot be less than " + to_string(
MIN_MTU));
279 for (
const auto& i : m_channels) {
280 if ((i.first.address().is_v4() && endpoint.address().is_v4()) ||
281 (i.first.address().is_v6() && endpoint.address().is_v6())) {
282 i.second->connect(endpoint, req.
params, onCreated, onFailure);
287 NFD_LOG_TRACE(
"No channels available to connect to " << endpoint);
288 onFailure(504,
"No channels available to connect");
291 shared_ptr<UdpChannel>
293 time::nanoseconds idleTimeout)
295 auto it = m_channels.find(localEndpoint);
296 if (it != m_channels.end())
300 if (m_mcastFaces.find(localEndpoint) != m_mcastFaces.end()) {
301 NDN_THROW(
Error(
"Cannot create UDP channel on " + boost::lexical_cast<std::string>(localEndpoint) +
302 ", endpoint already allocated to a UDP multicast face"));
305 auto channel = std::make_shared<UdpChannel>(localEndpoint, idleTimeout, m_wantCongestionMarking);
306 m_channels[localEndpoint] = channel;
310 std::vector<shared_ptr<const Channel>>
311 UdpFactory::doGetChannels()
const 318 const ip::address& localAddress,
321 BOOST_ASSERT(multicastEndpoint.address().is_multicast());
323 udp::Endpoint localEp(localAddress, multicastEndpoint.port());
324 BOOST_ASSERT(localEp.protocol() == multicastEndpoint.protocol());
326 auto mcastEp = multicastEndpoint;
327 if (mcastEp.address().is_v6()) {
329 auto mcastAddress = mcastEp.address().to_v6();
330 mcastAddress.scope_id(netif->getIndex());
331 mcastEp.address(mcastAddress);
335 auto it = m_mcastFaces.find(localEp);
336 if (it != m_mcastFaces.end()) {
337 if (it->second->getRemoteUri() == FaceUri(mcastEp))
340 NDN_THROW(
Error(
"Cannot create UDP multicast face on " + boost::lexical_cast<std::string>(localEp) +
341 ", endpoint already allocated to a different UDP multicast face"));
345 if (m_channels.find(localEp) != m_channels.end()) {
346 NDN_THROW(
Error(
"Cannot create UDP multicast face on " + boost::lexical_cast<std::string>(localEp) +
347 ", endpoint already allocated to a UDP channel"));
357 auto linkService = make_unique<GenericLinkService>(options);
358 auto transport = make_unique<MulticastUdpTransport>(mcastEp, std::move(rxSock), std::move(txSock),
359 m_mcastConfig.linkType);
360 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
362 m_mcastFaces[localEp] = face;
366 auto channelIt = std::find_if(m_channels.begin(), m_channels.end(),
367 [isV4 = localEp.address().is_v4()] (
const auto& it) {
368 return it.first.address().is_v4() == isV4;
370 face->setChannel(channelIt != m_channels.end() ? channelIt->second :
nullptr);
375 static optional<ip::address>
376 pickAddress(
const net::NetworkInterface& netif, net::AddressFamily af)
378 for (
const auto& na : netif.getNetworkAddresses()) {
379 if (na.getFamily() == af &&
380 (na.getScope() == net::AddressScope::LINK || na.getScope() == net::AddressScope::GLOBAL)) {
387 std::vector<shared_ptr<Face>>
388 UdpFactory::applyMcastConfigToNetif(
const shared_ptr<const net::NetworkInterface>& netif)
390 BOOST_ASSERT(netif !=
nullptr);
392 if (!m_mcastConfig.isEnabled) {
396 if (!netif->isUp()) {
397 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->getName() <<
": netif is down");
401 if (netif->isLoopback()) {
402 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->getName() <<
": netif is loopback");
406 if (!netif->canMulticast()) {
407 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->getName() <<
": netif cannot multicast");
411 if (!m_mcastConfig.netifPredicate(*netif)) {
412 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->getName() <<
": rejected by whitelist/blacklist");
416 std::vector<ip::address> addrs;
417 for (
auto af : {net::AddressFamily::V4, net::AddressFamily::V6}) {
420 addrs.push_back(*addr);
424 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->getName() <<
": no viable IP address");
426 m_netifConns[netif->getIndex()].addrAddConn =
427 netif->onAddressAdded.connect([=] (
auto...) { this->applyMcastConfigToNetif(netif); });
431 NFD_LOG_DEBUG(
"Creating multicast faces on " << netif->getName());
433 std::vector<shared_ptr<Face>> faces;
434 for (
const auto& addr : addrs) {
436 addr.is_v4() ? m_mcastConfig.group : m_mcastConfig.groupV6);
441 faces.push_back(std::move(face));
451 std::set<shared_ptr<Face>> facesToClose;
452 boost::copy(m_mcastFaces | boost::adaptors::map_values,
453 std::inserter(facesToClose, facesToClose.end()));
456 for (
const auto& netif :
netmon->listNetworkInterfaces()) {
457 auto facesToKeep = this->applyMcastConfigToNetif(netif);
458 for (
const auto& face : facesToKeep) {
460 facesToClose.erase(face);
465 for (
const auto& face : facesToClose) {
static const std::string & getId() noexcept
UdpFactory(const CtorParams ¶ms)
FaceCreatedCallback addFace
callback when a new face is created
optional< FaceUri > localUri
std::set< std::string > providedSchemes
FaceUri schemes provided by this protocol factory.
static optional< ip::address > pickAddress(const net::NetworkInterface &netif, net::AddressFamily af)
shared_ptr< Face > createMulticastFace(const shared_ptr< const ndn::net::NetworkInterface > &netif, const boost::asio::ip::address &localAddress, const udp::Endpoint &multicastEndpoint)
Create a multicast UDP face.
static void openTxSocket(protocol::socket &sock, const protocol::endpoint &localEndpoint, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr, bool enableLoopback=false)
std::function< void(uint32_t status, const std::string &reason)> FaceCreationFailedCallback
Prototype for the callback that is invoked when a face fails to be created.
static bool parseYesNo(const ConfigSection &node, const std::string &key, const std::string §ionName)
parse a config option that can be either "yes" or "no"
shared_ptr< ndn::net::NetworkMonitor > netmon
NetworkMonitor for listing available network interfaces and monitoring their changes.
shared_ptr< UdpChannel > createChannel(const udp::Endpoint &localEndpoint, time::nanoseconds idleTimeout)
Create UDP-based channel using udp::Endpoint.
boost::optional< const ConfigSection & > OptionalConfigSection
an optional config file section
#define NFD_REGISTER_PROTOCOL_FACTORY(PF)
Registers a protocol factory.
void connectFaceClosedSignal(Face &face, std::function< void()> f)
Invokes a callback when a face is closed.
context for processing a config section in ProtocolFactory
static std::vector< shared_ptr< const Channel > > getChannelsFromMap(const ChannelMap &channelMap)
boost::property_tree::ptree ConfigSection
a config file section
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
GeneralConfig generalConfig
ndn::nfd::FacePersistency persistency
boost::asio::ip::udp::endpoint Endpoint
Provides support for an underlying protocol.
Options that control the behavior of GenericLinkService.
Parameters to ProtocolFactory constructor.
#define NFD_LOG_INIT(name)
bool wantCongestionMarking
std::function< void(const shared_ptr< Face > &)> FaceCreatedCallback
Prototype for the callback that is invoked when a face is created (in response to an incoming connect...
const ssize_t MIN_MTU
Minimum MTU that may be set.
static void openRxSocket(protocol::socket &sock, const protocol::endpoint &multicastGroup, const boost::asio::ip::address &localAddress, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr)
bool allowCongestionMarking
enables send queue congestion detection and marking
const FaceId INVALID_FACEID
indicates an invalid FaceId
Encapsulates a face creation request and all its parameters.
boost::asio::io_service & getGlobalIoService()
Returns the global io_service instance for the calling thread.