Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
| 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. |
| 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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "test-netif-ip.hpp" |
| 27 | #include "core/global-io.hpp" |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame^] | 28 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 29 | #include <ndn-cxx/net/network-monitor.hpp> |
| 30 | |
| 31 | namespace nfd { |
| 32 | namespace tests { |
| 33 | |
| 34 | std::vector<shared_ptr<const NetworkInterface>> |
| 35 | collectNetworkInterfaces(bool allowCached) |
| 36 | { |
| 37 | using ndn::net::NetworkMonitor; |
| 38 | |
| 39 | static std::vector<shared_ptr<const NetworkInterface>> cached; |
| 40 | // cached.empty() indicates there's no cached list of netifs. |
| 41 | // Although it could also mean a system without any network interface, this situation is rare |
| 42 | // because the loopback interface is present on almost all systems. |
| 43 | |
| 44 | if (!allowCached || cached.empty()) { |
| 45 | NetworkMonitor netmon(getGlobalIoService()); |
| 46 | if ((netmon.getCapabilities() & NetworkMonitor::CAP_ENUM) == 0) { |
| 47 | BOOST_THROW_EXCEPTION(NetworkMonitor::Error("NetworkMonitor::CAP_ENUM is unavailable")); |
| 48 | } |
| 49 | |
| 50 | netmon.onEnumerationCompleted.connect([] { getGlobalIoService().stop(); }); |
| 51 | getGlobalIoService().run(); |
| 52 | getGlobalIoService().reset(); |
| 53 | |
| 54 | cached = netmon.listNetworkInterfaces(); |
| 55 | } |
| 56 | |
| 57 | return cached; |
| 58 | } |
| 59 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 60 | template<typename E> |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame^] | 61 | static bool |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 62 | matchTristate(E e, bool b) |
| 63 | { |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame^] | 64 | return (e == E::Unspecified) || |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 65 | (e == E::Yes && b) || |
| 66 | (e == E::No && !b); |
| 67 | } |
| 68 | |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame^] | 69 | boost::asio::ip::address |
| 70 | getTestIp(AddressFamily family, AddressScope scope, MulticastInterface mcast) |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 71 | { |
| 72 | for (const auto& interface : collectNetworkInterfaces()) { |
| 73 | if (!interface->isUp() || |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 74 | !matchTristate(mcast, interface->canMulticast())) { |
| 75 | continue; |
| 76 | } |
| 77 | for (const auto& address : interface->getNetworkAddresses()) { |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame^] | 78 | if (!address.getIp().is_unspecified() && |
| 79 | (family == AddressFamily::UNSPECIFIED || |
| 80 | family == address.getFamily()) && |
| 81 | (scope == AddressScope::Unspecified || |
| 82 | static_cast<int>(scope) == static_cast<int>(address.getScope())) && |
| 83 | (scope != AddressScope::Loopback || |
| 84 | address.getIp().is_loopback())) { |
| 85 | return address.getIp(); |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 86 | } |
| 87 | } |
| 88 | } |
| 89 | return {}; |
| 90 | } |
| 91 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 92 | } // namespace tests |
| 93 | } // namespace nfd |