blob: 02761a9b2c191f2bf7e742ec6afcb5ed9c85f357 [file] [log] [blame]
Davide Pesavento248d6bd2014-03-09 10:24:08 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -08003 * Copyright (c) 2014-2015, 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.
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/>.
Davide Pesaventob499a602014-11-18 22:36:56 +010024 */
Davide Pesavento248d6bd2014-03-09 10:24:08 +010025
26#include "network-interface.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Davide Pesavento248d6bd2014-03-09 10:24:08 +010028
Davide Pesaventob499a602014-11-18 22:36:56 +010029#include <cerrno>
30#include <cstring>
31#include <type_traits>
32#include <unordered_map>
Davide Pesavento248d6bd2014-03-09 10:24:08 +010033
Alexander Afanasyev49343f62015-01-26 21:58:07 -080034#ifdef HAVE_IFADDRS_H
35#include <ifaddrs.h> // for getifaddrs()
36
Davide Pesavento248d6bd2014-03-09 10:24:08 +010037#include <arpa/inet.h> // for inet_ntop()
38#include <netinet/in.h> // for struct sockaddr_in{,6}
Davide Pesavento248d6bd2014-03-09 10:24:08 +010039
40#if defined(__linux__)
41#include <net/if_arp.h> // for ARPHRD_* constants
42#include <netpacket/packet.h> // for struct sockaddr_ll
Alexander Afanasyev500b2532014-03-31 12:29:25 -070043#elif defined(__APPLE__) || defined(__FreeBSD__)
Davide Pesavento248d6bd2014-03-09 10:24:08 +010044#include <net/if_dl.h> // for struct sockaddr_dl
Davide Pesaventob499a602014-11-18 22:36:56 +010045#include <net/if_types.h> // for IFT_* constants
Davide Pesavento248d6bd2014-03-09 10:24:08 +010046#endif
47
Alexander Afanasyev49343f62015-01-26 21:58:07 -080048#endif // HAVE_IFADDRS_H
49
50
Davide Pesavento1bdef282014-04-08 20:59:50 +020051NFD_LOG_INIT("NetworkInterfaceInfo");
Davide Pesavento248d6bd2014-03-09 10:24:08 +010052
Davide Pesavento1bdef282014-04-08 20:59:50 +020053namespace nfd {
Davide Pesavento248d6bd2014-03-09 10:24:08 +010054
Davide Pesaventob499a602014-11-18 22:36:56 +010055static_assert(std::is_standard_layout<NetworkInterfaceInfo>::value,
56 "NetworkInterfaceInfo must be a standard layout type");
57#ifdef HAVE_IS_DEFAULT_CONSTRUCTIBLE
58static_assert(std::is_default_constructible<NetworkInterfaceInfo>::value,
59 "NetworkInterfaceInfo must provide a default constructor");
60#endif
61
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080062#ifdef WITH_TESTS
63static shared_ptr<std::vector<NetworkInterfaceInfo>> s_debugNetworkInterfaces = nullptr;
64
65void
66setDebugNetworkInterfaces(shared_ptr<std::vector<NetworkInterfaceInfo>> interfaces)
67{
68 s_debugNetworkInterfaces = interfaces;
69}
70#endif
71
Davide Pesaventob499a602014-11-18 22:36:56 +010072std::vector<NetworkInterfaceInfo>
Davide Pesavento248d6bd2014-03-09 10:24:08 +010073listNetworkInterfaces()
74{
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080075#ifdef WITH_TESTS
76 if (s_debugNetworkInterfaces != nullptr) {
77 return *s_debugNetworkInterfaces;
78 }
79#endif
80
Alexander Afanasyev49343f62015-01-26 21:58:07 -080081#ifdef HAVE_IFADDRS_H
Davide Pesaventob499a602014-11-18 22:36:56 +010082 using namespace boost::asio::ip;
83 using std::strerror;
Davide Pesavento248d6bd2014-03-09 10:24:08 +010084
Davide Pesaventob499a602014-11-18 22:36:56 +010085 std::unordered_map<std::string, NetworkInterfaceInfo> ifmap;
86 ifaddrs* ifa_list = nullptr;
87
Davide Pesavento248d6bd2014-03-09 10:24:08 +010088 if (::getifaddrs(&ifa_list) < 0)
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070089 BOOST_THROW_EXCEPTION(std::runtime_error(std::string("getifaddrs() failed: ") +
90 strerror(errno)));
Davide Pesavento248d6bd2014-03-09 10:24:08 +010091
Davide Pesaventob499a602014-11-18 22:36:56 +010092 for (ifaddrs* ifa = ifa_list; ifa != nullptr; ifa = ifa->ifa_next) {
93 std::string ifname(ifa->ifa_name);
94 NetworkInterfaceInfo& netif = ifmap[ifname];
95 netif.name = ifa->ifa_name;
96 netif.flags = ifa->ifa_flags;
97
98 if (ifa->ifa_addr == nullptr)
99 continue;
100
101 switch (ifa->ifa_addr->sa_family) {
102
103 case AF_INET: {
104 const sockaddr_in* sin = reinterpret_cast<sockaddr_in*>(ifa->ifa_addr);
105 char address[INET_ADDRSTRLEN];
106 if (::inet_ntop(AF_INET, &sin->sin_addr, address, sizeof(address))) {
107 netif.ipv4Addresses.push_back(address_v4::from_string(address));
108 NFD_LOG_TRACE(ifname << ": added IPv4 address " << address);
109 }
Davide Pesavento248d6bd2014-03-09 10:24:08 +0100110 else
Davide Pesaventob499a602014-11-18 22:36:56 +0100111 NFD_LOG_WARN(ifname << ": inet_ntop(AF_INET) failed: " << strerror(errno));
112 break;
Davide Pesavento248d6bd2014-03-09 10:24:08 +0100113 }
114
Davide Pesaventob499a602014-11-18 22:36:56 +0100115 case AF_INET6: {
116 const sockaddr_in6* sin6 = reinterpret_cast<sockaddr_in6*>(ifa->ifa_addr);
117 char address[INET6_ADDRSTRLEN];
118 if (::inet_ntop(AF_INET6, &sin6->sin6_addr, address, sizeof(address))) {
119 netif.ipv6Addresses.push_back(address_v6::from_string(address));
120 NFD_LOG_TRACE(ifname << ": added IPv6 address " << address);
121 }
122 else
123 NFD_LOG_WARN(ifname << ": inet_ntop(AF_INET6) failed: " << strerror(errno));
124 break;
125 }
126
127#if defined(__linux__)
128 case AF_PACKET: {
129 const sockaddr_ll* sll = reinterpret_cast<sockaddr_ll*>(ifa->ifa_addr);
130 netif.index = sll->sll_ifindex;
131 if (sll->sll_hatype == ARPHRD_ETHER && sll->sll_halen == ethernet::ADDR_LEN) {
132 netif.etherAddress = ethernet::Address(sll->sll_addr);
133 NFD_LOG_TRACE(ifname << ": added Ethernet address " << netif.etherAddress);
134 }
135 else if (sll->sll_hatype != ARPHRD_LOOPBACK) {
136 NFD_LOG_DEBUG(ifname << ": ignoring link-layer address for unhandled hardware type "
137 << sll->sll_hatype);
138 }
139 break;
140 }
141
142#elif defined(__APPLE__) || defined(__FreeBSD__)
143 case AF_LINK: {
144 const sockaddr_dl* sdl = reinterpret_cast<sockaddr_dl*>(ifa->ifa_addr);
145 netif.index = sdl->sdl_index;
146 if (sdl->sdl_type == IFT_ETHER && sdl->sdl_alen == ethernet::ADDR_LEN) {
147 netif.etherAddress = ethernet::Address(reinterpret_cast<uint8_t*>(LLADDR(sdl)));
148 NFD_LOG_TRACE(ifname << ": added Ethernet address " << netif.etherAddress);
149 }
150 else if (sdl->sdl_type != IFT_LOOP) {
151 NFD_LOG_DEBUG(ifname << ": ignoring link-layer address for unhandled interface type "
152 << sdl->sdl_type);
153 }
154 break;
155 }
156#endif
157 }
158
159 if (netif.isBroadcastCapable() && ifa->ifa_broadaddr != nullptr) {
160 const sockaddr_in* sin = reinterpret_cast<sockaddr_in*>(ifa->ifa_broadaddr);
161 char address[INET_ADDRSTRLEN];
162 if (::inet_ntop(AF_INET, &sin->sin_addr, address, sizeof(address))) {
163 netif.broadcastAddress = address_v4::from_string(address);
164 NFD_LOG_TRACE(ifname << ": added IPv4 broadcast address " << address);
165 }
166 else
167 NFD_LOG_WARN(ifname << ": inet_ntop(AF_INET) for broadaddr failed: " << strerror(errno));
168 }
169 }
170
Davide Pesavento248d6bd2014-03-09 10:24:08 +0100171 ::freeifaddrs(ifa_list);
172
Davide Pesaventob499a602014-11-18 22:36:56 +0100173 std::vector<NetworkInterfaceInfo> v;
174 v.reserve(ifmap.size());
175 for (auto&& element : ifmap) {
176 v.push_back(element.second);
Davide Pesavento248d6bd2014-03-09 10:24:08 +0100177 }
178
Davide Pesaventob499a602014-11-18 22:36:56 +0100179 return v;
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800180#else
181 return {};
182#endif // HAVE_IFADDRS_H
Davide Pesavento248d6bd2014-03-09 10:24:08 +0100183}
184
185} // namespace nfd