Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 20 | * |
| 21 | * @author Davide Pesavento <davide.pesavento@lip6.fr> |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 22 | */ |
| 23 | |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 24 | #ifndef NDN_NET_NETWORK_MONITOR_IMPL_NETLINK_HPP |
| 25 | #define NDN_NET_NETWORK_MONITOR_IMPL_NETLINK_HPP |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 26 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 27 | #include "ndn-cxx-config.hpp" |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 28 | #include "../network-monitor.hpp" |
| 29 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 30 | #ifndef NDN_CXX_HAVE_RTNETLINK |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 31 | #error "This file should not be included ..." |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 32 | #endif |
| 33 | |
Davide Pesavento | a0b2a2c | 2018-07-19 01:01:06 -0400 | [diff] [blame] | 34 | #include "netlink-socket.hpp" |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 35 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 36 | #include <map> |
| 37 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 38 | namespace ndn { |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 39 | namespace net { |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 40 | |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 41 | class NetworkMonitorImplNetlink : public NetworkMonitorImpl |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 42 | { |
| 43 | public: |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 44 | /** \brief initialize netlink socket and start enumerating interfaces |
| 45 | */ |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 46 | explicit |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 47 | NetworkMonitorImplNetlink(boost::asio::io_service& io); |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 48 | |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 49 | uint32_t |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 50 | getCapabilities() const final |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 51 | { |
| 52 | return NetworkMonitor::CAP_ENUM | |
| 53 | NetworkMonitor::CAP_IF_ADD_REMOVE | |
| 54 | NetworkMonitor::CAP_STATE_CHANGE | |
| 55 | NetworkMonitor::CAP_MTU_CHANGE | |
| 56 | NetworkMonitor::CAP_ADDR_ADD_REMOVE; |
| 57 | } |
| 58 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 59 | shared_ptr<const NetworkInterface> |
| 60 | getNetworkInterface(const std::string& ifname) const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 61 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 62 | std::vector<shared_ptr<const NetworkInterface>> |
| 63 | listNetworkInterfaces() const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 64 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 65 | private: |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 66 | bool |
| 67 | isEnumerating() const; |
| 68 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 69 | void |
Davide Pesavento | a0b2a2c | 2018-07-19 01:01:06 -0400 | [diff] [blame] | 70 | parseRtnlMessage(const NetlinkMessage& nlmsg); |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 71 | |
| 72 | void |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 73 | parseLinkMessage(const NetlinkMessage& nlmsg); |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 74 | |
| 75 | void |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 76 | parseAddressMessage(const NetlinkMessage& nlmsg); |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 77 | |
| 78 | void |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 79 | parseRouteMessage(const NetlinkMessage& nlmsg); |
| 80 | |
| 81 | void |
| 82 | parseErrorMessage(const NetlinkMessage& nlmsg); |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 83 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 84 | private: |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 85 | std::map<int, shared_ptr<NetworkInterface>> m_interfaces; ///< ifindex => interface |
Davide Pesavento | a0b2a2c | 2018-07-19 01:01:06 -0400 | [diff] [blame] | 86 | RtnlSocket m_rtnlSocket; ///< rtnetlink socket |
Davide Pesavento | 1077499 | 2018-08-19 18:47:50 -0400 | [diff] [blame] | 87 | GenlSocket m_genlSocket; ///< generic netlink socket to communicate with nl80211 |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 88 | bool m_isEnumeratingLinks; ///< true if a dump of all links is in progress |
| 89 | bool m_isEnumeratingAddresses; ///< true if a dump of all addresses is in progress |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 92 | } // namespace net |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 93 | } // namespace ndn |
| 94 | |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 95 | #endif // NDN_NET_NETWORK_MONITOR_IMPL_NETLINK_HPP |