31 #include <boost/range/adaptor/map.hpp> 32 #include <boost/range/algorithm/copy.hpp> 37 namespace ip = boost::asio::ip;
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));
127 BOOST_THROW_EXCEPTION(ConfigFile::Error(
"face_system.udp.mcast_group: '" +
128 valueStr +
"' cannot be parsed as an IPv4 address"));
130 else if (!mcastConfig.group.address().is_multicast()) {
131 BOOST_THROW_EXCEPTION(ConfigFile::Error(
"face_system.udp.mcast_group: '" +
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));
143 BOOST_THROW_EXCEPTION(ConfigFile::Error(
"face_system.udp.mcast_group_v6: '" +
144 valueStr +
"' cannot be parsed as an IPv6 address"));
146 else if (!mcastConfig.groupV6.address().is_multicast()) {
147 BOOST_THROW_EXCEPTION(ConfigFile::Error(
"face_system.udp.mcast_group_v6: '" +
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") {
158 else if (key ==
"whitelist") {
159 mcastConfig.netifPredicate.parseWhitelist(value);
161 else if (key ==
"blacklist") {
162 mcastConfig.netifPredicate.parseBlacklist(value);
165 BOOST_THROW_EXCEPTION(ConfigFile::Error(
"Unrecognized option face_system.udp." + key));
169 if (!enableV4 && !enableV6 && !mcastConfig.isEnabled) {
170 BOOST_THROW_EXCEPTION(ConfigFile::Error(
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);
239 UdpFactory::doCreateFace(
const CreateFaceRequest& req,
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");
255 udp::Endpoint endpoint(ip::address::from_string(req.remoteUri.getHost()),
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");
264 if (req.params.wantLocalFields) {
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");
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 BOOST_THROW_EXCEPTION(
Error(
"Cannot create UDP channel on " +
302 boost::lexical_cast<std::string>(localEndpoint) +
303 ", endpoint already allocated for a UDP multicast face"));
306 auto channel = std::make_shared<UdpChannel>(localEndpoint, idleTimeout, m_wantCongestionMarking);
307 m_channels[localEndpoint] = channel;
311 std::vector<shared_ptr<const Channel>>
312 UdpFactory::doGetChannels()
const 319 const ip::address& localAddress,
322 BOOST_ASSERT(multicastEndpoint.address().is_multicast());
324 udp::Endpoint localEp(localAddress, multicastEndpoint.port());
325 BOOST_ASSERT(localEp.protocol() == multicastEndpoint.protocol());
327 auto mcastEp = multicastEndpoint;
328 if (mcastEp.address().is_v6()) {
330 auto mcastAddress = mcastEp.address().to_v6();
331 mcastAddress.scope_id(netif->
getIndex());
332 mcastEp.address(mcastAddress);
336 auto it = m_mcastFaces.find(localEp);
337 if (it != m_mcastFaces.end()) {
338 if (it->second->getRemoteUri() ==
FaceUri(mcastEp))
341 BOOST_THROW_EXCEPTION(
Error(
"Cannot create UDP multicast face on " +
342 boost::lexical_cast<std::string>(localEp) +
343 ", endpoint already allocated for a different UDP multicast face"));
347 if (m_channels.find(localEp) != m_channels.end()) {
348 BOOST_THROW_EXCEPTION(
Error(
"Cannot create UDP multicast face on " +
349 boost::lexical_cast<std::string>(localEp) +
350 ", endpoint already allocated for a UDP channel"));
360 auto linkService = make_unique<GenericLinkService>(options);
361 auto transport = make_unique<MulticastUdpTransport>(mcastEp, std::move(rxSock), std::move(txSock),
362 m_mcastConfig.linkType);
363 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
365 m_mcastFaces[localEp] = face;
371 static optional<ip::address>
375 if (na.getFamily() == af &&
376 (na.getScope() == net::AddressScope::LINK || na.getScope() == net::AddressScope::GLOBAL)) {
383 std::vector<shared_ptr<Face>>
384 UdpFactory::applyMcastConfigToNetif(
const shared_ptr<const net::NetworkInterface>& netif)
386 BOOST_ASSERT(netif !=
nullptr);
388 if (!m_mcastConfig.isEnabled) {
392 if (!netif->
isUp()) {
403 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->
getName() <<
": netif cannot multicast");
407 if (!m_mcastConfig.netifPredicate(*netif)) {
408 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->
getName() <<
": rejected by whitelist/blacklist");
412 std::vector<ip::address> addrs;
413 for (
auto af : {net::AddressFamily::V4, net::AddressFamily::V6}) {
416 addrs.push_back(*addr);
420 NFD_LOG_DEBUG(
"Not creating multicast faces on " << netif->
getName() <<
": no viable IP address");
422 m_netifConns[netif->
getIndex()].addrAddConn =
423 netif->
onAddressAdded.connect([=] (
auto...) { this->applyMcastConfigToNetif(netif); });
429 std::vector<shared_ptr<Face>> faces;
430 for (
const auto& addr : addrs) {
432 addr.is_v4() ? m_mcastConfig.group : m_mcastConfig.groupV6);
437 faces.push_back(std::move(face));
444 UdpFactory::applyMcastConfig(
const FaceSystem::ConfigContext&)
447 std::set<shared_ptr<Face>> facesToClose;
448 boost::copy(m_mcastFaces | boost::adaptors::map_values,
449 std::inserter(facesToClose, facesToClose.end()));
452 for (
const auto& netif :
netmon->listNetworkInterfaces()) {
453 auto facesToKeep = this->applyMcastConfigToNetif(netif);
454 for (
const auto& face : facesToKeep) {
456 facesToClose.erase(face);
461 for (
const auto& face : facesToClose) {
std::set< std::string > providedSchemes
FaceUri schemes provided by this protocol factory.
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 openRxSocket(protocol::socket &sock, const protocol::endpoint &multicastGroup, const boost::asio::ip::address &localAddress, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr)
bool wantCongestionMarking
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.
GeneralConfig generalConfig
std::string getName() const
Returns the name of the interface, unique on the system.
static constexpr ssize_t MIN_MTU
minimum MTU that may be set on a transport
static optional< ip::address > pickAddress(const net::NetworkInterface &netif, net::AddressFamily af)
detail::SimulatorIo & getGlobalIoService()
NFD_REGISTER_PROTOCOL_FACTORY(EthernetFactory)
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.
boost::optional< const ConfigSection & > OptionalConfigSection
an optional config file section
std::function< void(const shared_ptr< Face > &face)> FaceCreatedCallback
Prototype for the callback that is invoked when a face is created (in response to an incoming connect...
void connectFaceClosedSignal(Face &face, const std::function< void()> &f)
invokes a callback when the face is closed
Protocol factory for UDP over IPv4 and IPv6.
FaceCreatedCallback addFace
callback when a new face is created
Represents one network interface attached to the host.
Provides support for an underlying protocol.
bool allowCongestionMarking
enables send queue congestion detection and marking
Copyright (c) 2011-2015 Regents of the University of California.
static void openTxSocket(protocol::socket &sock, const protocol::endpoint &localEndpoint, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr, bool enableLoopback=false)
bool canMulticast() const
Returns true if the interface supports multicast communication.
bool isUp() const
Returns true if the interface is administratively up.
shared_ptr< UdpChannel > createChannel(const udp::Endpoint &localEndpoint, time::nanoseconds idleTimeout)
Create UDP-based channel using udp::Endpoint.
Parameters to ProtocolFactory constructor.
boost::property_tree::ptree ConfigSection
a config file section
represents the underlying protocol and address used by a Face
context for processing a config section in ProtocolFactory
boost::asio::ip::udp::endpoint Endpoint
Options that control the behavior of GenericLinkService.
static const std::string & getId() noexcept
std::string to_string(const V &v)
static std::vector< shared_ptr< const Channel > > getChannelsFromMap(const ChannelMap &channelMap)
int getIndex() const
Returns an opaque ID that uniquely identifies the interface on the system.
#define NFD_LOG_INIT(name)
const std::set< NetworkAddress > & getNetworkAddresses() const
Returns a list of all network-layer addresses present on the interface.
const FaceId INVALID_FACEID
indicates an invalid FaceId
bool isLoopback() const
Returns true if the interface is a loopback interface.
const nullopt_t nullopt((nullopt_t::init()))
UdpFactory(const CtorParams ¶ms)
util::Signal< NetworkInterface, NetworkAddress > onAddressAdded
Fires when a network-layer address is added to the interface.