blob: 18996f955b3992377014ac744f0768d82f1abac6 [file] [log] [blame]
Davide Pesavento9a8bae52016-02-24 20:33:08 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento2bf35a62017-04-02 00:41:06 -04003 * Copyright (c) 2013-2017 Regents of the University of California.
Davide Pesavento9a8bae52016-02-24 20:33:08 +01004 *
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 Pesavento2bf35a62017-04-02 00:41:06 -040020 *
21 * @author Davide Pesavento <davide.pesavento@lip6.fr>
Davide Pesavento9a8bae52016-02-24 20:33:08 +010022 */
23
24#ifndef NDN_UTIL_NETWORK_MONITOR_IMPL_RTNL_HPP
25#define NDN_UTIL_NETWORK_MONITOR_IMPL_RTNL_HPP
26
Davide Pesavento2bf35a62017-04-02 00:41:06 -040027#include "ndn-cxx-config.hpp"
Davide Pesavento9a8bae52016-02-24 20:33:08 +010028#include "../network-monitor.hpp"
29
Davide Pesavento2bf35a62017-04-02 00:41:06 -040030#ifndef NDN_CXX_HAVE_RTNETLINK
31#error "This file should not be compiled ..."
32#endif
33
Davide Pesavento9a8bae52016-02-24 20:33:08 +010034#include <boost/asio/posix/stream_descriptor.hpp>
35
Davide Pesavento2bf35a62017-04-02 00:41:06 -040036#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 Pesavento9a8bae52016-02-24 20:33:08 +010044namespace ndn {
45namespace util {
46
Davide Pesavento9a8bae52016-02-24 20:33:08 +010047class NetworkMonitor::Impl
48{
49public:
Davide Pesavento2bf35a62017-04-02 00:41:06 -040050 /** \brief initialize netlink socket and start enumerating interfaces
51 */
Davide Pesavento9a8bae52016-02-24 20:33:08 +010052 Impl(NetworkMonitor& nm, boost::asio::io_service& io);
53
Davide Pesavento2bf35a62017-04-02 00:41:06 -040054 ~Impl();
55
56 shared_ptr<NetworkInterface>
57 getNetworkInterface(const std::string& ifname) const;
58
59 std::vector<shared_ptr<NetworkInterface>>
60 listNetworkInterfaces() const;
61
Davide Pesavento9a8bae52016-02-24 20:33:08 +010062private:
Davide Pesavento2bf35a62017-04-02 00:41:06 -040063 struct RtnlRequest
64 {
65 nlmsghdr nlh;
66 ifinfomsg ifi;
67 rtattr rta __attribute__((aligned(NLMSG_ALIGNTO))); // rtattr has to be aligned
68 uint32_t rtext; // space for IFLA_EXT_MASK
69 };
70
71 bool
72 isEnumerating() const;
73
Davide Pesavento9a8bae52016-02-24 20:33:08 +010074 void
Davide Pesavento2bf35a62017-04-02 00:41:06 -040075 initSocket();
76
77 void
78 sendDumpRequest(uint16_t nlmsgType);
79
80 void
81 asyncRead();
82
83 void
84 handleRead(const boost::system::error_code& error, size_t nBytesReceived,
85 const shared_ptr<boost::asio::posix::stream_descriptor>& socket);
86
87 void
88 parseNetlinkMessage(const nlmsghdr* nlh, size_t len);
89
90 void
91 parseLinkMessage(const nlmsghdr* nlh, const ifinfomsg* ifi);
92
93 void
94 parseAddressMessage(const nlmsghdr* nlh, const ifaddrmsg* ifa);
95
96 void
97 parseRouteMessage(const nlmsghdr* nlh, const rtmsg* rtm);
98
99 static void
100 updateInterfaceState(NetworkInterface& interface, uint8_t operState);
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100101
102private:
103 NetworkMonitor& m_nm;
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400104 std::map<int /*ifindex*/, shared_ptr<NetworkInterface>> m_interfaces; ///< interface map
105 std::array<uint8_t, 16384> m_buffer; ///< holds netlink messages received from the kernel
106 shared_ptr<boost::asio::posix::stream_descriptor> m_socket; ///< the netlink socket
107 uint32_t m_pid; ///< our port ID (unicast address for netlink sockets)
108 uint32_t m_sequenceNo; ///< sequence number of the last netlink request sent to the kernel
109 bool m_isEnumeratingLinks; ///< true if a dump of all links is in progress
110 bool m_isEnumeratingAddresses; ///< true if a dump of all addresses is in progress
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100111};
112
113} // namespace util
114} // namespace ndn
115
116#endif // NDN_UTIL_NETWORK_MONITOR_IMPL_RTNL_HPP