face: Prevent infinite loop in TcpFactory and UdpFactory
Change-Id: Idd694bc08033c524f3c0e569ed74341aa33fce31
Refs: #2292
diff --git a/daemon/face/tcp-factory.cpp b/daemon/face/tcp-factory.cpp
index bdc8c24..598a2c4 100644
--- a/daemon/face/tcp-factory.cpp
+++ b/daemon/face/tcp-factory.cpp
@@ -32,6 +32,12 @@
namespace nfd {
+static const boost::asio::ip::address_v4 ALL_V4_ENDPOINT(
+ boost::asio::ip::address_v4::from_string("0.0.0.0"));
+
+static const boost::asio::ip::address_v6 ALL_V6_ENDPOINT(
+ boost::asio::ip::address_v6::from_string("::"));
+
TcpFactory::TcpFactory(const std::string& defaultPort/* = "6363"*/)
: m_defaultPort(defaultPort)
{
@@ -42,9 +48,6 @@
{
using namespace boost::asio::ip;
- static const address_v4 ALL_V4_ENDPOINT(address_v4::from_string("0.0.0.0"));
- static const address_v6 ALL_V6_ENDPOINT(address_v6::from_string("::"));
-
const address& address = endpoint.address();
if (address.is_v4() && address == ALL_V4_ENDPOINT)
@@ -56,8 +59,7 @@
prohibitAllIpv6Endpoints(endpoint.port());
}
- NFD_LOG_TRACE("prohibiting TCP " <<
- endpoint.address().to_string() << ":" << endpoint.port());
+ NFD_LOG_TRACE("prohibiting TCP " << endpoint);
m_prohibitedEndpoints.insert(endpoint);
}
@@ -69,7 +71,9 @@
for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
for (const address_v4& addr : nic.ipv4Addresses) {
- prohibitEndpoint(tcp::Endpoint(addr, port));
+ if (addr != ALL_V4_ENDPOINT) {
+ prohibitEndpoint(tcp::Endpoint(addr, port));
+ }
}
}
}
@@ -81,7 +85,9 @@
for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
for (const address_v6& addr : nic.ipv6Addresses) {
- prohibitEndpoint(tcp::Endpoint(addr, port));
+ if (addr != ALL_V6_ENDPOINT) {
+ prohibitEndpoint(tcp::Endpoint(addr, port));
+ }
}
}
}