Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 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 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 24 | #ifndef NDN_NET_NETWORK_MONITOR_IMPL_RTNL_HPP |
| 25 | #define NDN_NET_NETWORK_MONITOR_IMPL_RTNL_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 |
| 31 | #error "This file should not be compiled ..." |
| 32 | #endif |
| 33 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 34 | #include <boost/asio/posix/stream_descriptor.hpp> |
| 35 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 36 | #include <array> |
| 37 | #include <map> |
| 38 | |
| 39 | #include <linux/netlink.h> |
| 40 | #include <linux/rtnetlink.h> |
| 41 | #include <linux/if_addr.h> |
| 42 | #include <linux/if_link.h> |
| 43 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 44 | namespace ndn { |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 45 | namespace net { |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 46 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 47 | class NetworkMonitorImplRtnl : public NetworkMonitorImpl |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 48 | { |
| 49 | public: |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 50 | using Error = NetworkMonitor::Error; |
| 51 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 52 | /** \brief initialize netlink socket and start enumerating interfaces |
| 53 | */ |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 54 | explicit |
| 55 | NetworkMonitorImplRtnl(boost::asio::io_service& io); |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 56 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 57 | ~NetworkMonitorImplRtnl(); |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 58 | |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 59 | uint32_t |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 60 | getCapabilities() const final |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 61 | { |
| 62 | return NetworkMonitor::CAP_ENUM | |
| 63 | NetworkMonitor::CAP_IF_ADD_REMOVE | |
| 64 | NetworkMonitor::CAP_STATE_CHANGE | |
| 65 | NetworkMonitor::CAP_MTU_CHANGE | |
| 66 | NetworkMonitor::CAP_ADDR_ADD_REMOVE; |
| 67 | } |
| 68 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 69 | shared_ptr<const NetworkInterface> |
| 70 | getNetworkInterface(const std::string& ifname) const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 71 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 72 | std::vector<shared_ptr<const NetworkInterface>> |
| 73 | listNetworkInterfaces() const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 74 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 75 | private: |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 76 | struct RtnlRequest |
| 77 | { |
| 78 | nlmsghdr nlh; |
| 79 | ifinfomsg ifi; |
| 80 | rtattr rta __attribute__((aligned(NLMSG_ALIGNTO))); // rtattr has to be aligned |
| 81 | uint32_t rtext; // space for IFLA_EXT_MASK |
| 82 | }; |
| 83 | |
| 84 | bool |
| 85 | isEnumerating() const; |
| 86 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 87 | void |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 88 | initSocket(); |
| 89 | |
| 90 | void |
| 91 | sendDumpRequest(uint16_t nlmsgType); |
| 92 | |
| 93 | void |
| 94 | asyncRead(); |
| 95 | |
| 96 | void |
| 97 | handleRead(const boost::system::error_code& error, size_t nBytesReceived, |
| 98 | const shared_ptr<boost::asio::posix::stream_descriptor>& socket); |
| 99 | |
| 100 | void |
| 101 | parseNetlinkMessage(const nlmsghdr* nlh, size_t len); |
| 102 | |
| 103 | void |
| 104 | parseLinkMessage(const nlmsghdr* nlh, const ifinfomsg* ifi); |
| 105 | |
| 106 | void |
| 107 | parseAddressMessage(const nlmsghdr* nlh, const ifaddrmsg* ifa); |
| 108 | |
| 109 | void |
| 110 | parseRouteMessage(const nlmsghdr* nlh, const rtmsg* rtm); |
| 111 | |
| 112 | static void |
| 113 | updateInterfaceState(NetworkInterface& interface, uint8_t operState); |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 114 | |
| 115 | private: |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 116 | std::map<int, shared_ptr<NetworkInterface>> m_interfaces; ///< ifindex => interface |
| 117 | std::array<uint8_t, 16384> m_buffer; ///< netlink messages received from the kernel |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 118 | shared_ptr<boost::asio::posix::stream_descriptor> m_socket; ///< the netlink socket |
| 119 | uint32_t m_pid; ///< our port ID (unicast address for netlink sockets) |
| 120 | uint32_t m_sequenceNo; ///< sequence number of the last netlink request sent to the kernel |
| 121 | bool m_isEnumeratingLinks; ///< true if a dump of all links is in progress |
| 122 | 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] | 123 | }; |
| 124 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 125 | } // namespace net |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 126 | } // namespace ndn |
| 127 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 128 | #endif // NDN_NET_NETWORK_MONITOR_IMPL_RTNL_HPP |