blob: 7a72b82c5b0b375549ca067e97c53794fe19e76b [file] [log] [blame]
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa997d292017-08-24 20:16:59 -04002/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shifbf78342015-01-23 14:46:41 -07004 * 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/>.
Junxiao Shidda0b462014-06-30 19:42:29 -070024 */
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070025
Davide Pesaventoa997d292017-08-24 20:16:59 -040026#include "core/network.hpp"
27#include "core/version.hpp"
28
Alexander Afanasyev4a771362014-04-24 21:29:33 -070029#include <ndn-cxx/face.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000030#include <ndn-cxx/mgmt/nfd/controller.hpp>
31#include <ndn-cxx/mgmt/nfd/face-monitor.hpp>
32#include <ndn-cxx/mgmt/nfd/face-status.hpp>
Junxiao Shi83be1da2017-06-30 13:37:37 +000033#include <ndn-cxx/net/face-uri.hpp>
Junxiao Shi08e96312017-06-29 18:07:27 +000034#include <ndn-cxx/security/key-chain.hpp>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070035
Davide Pesavento97e33022019-02-14 16:00:50 -050036#include <boost/exception/diagnostic_information.hpp>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070037#include <boost/program_options/options_description.hpp>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070038#include <boost/program_options/parsers.hpp>
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040039#include <boost/program_options/variables_map.hpp>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070040
Davide Pesaventoa997d292017-08-24 20:16:59 -040041#include <iostream>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070042
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040043namespace nfd::tools::autoreg {
Junxiao Shi08e96312017-06-29 18:07:27 +000044
Junxiao Shidda0b462014-06-30 19:42:29 -070045class AutoregServer : boost::noncopyable
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070046{
47public:
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040048 static void
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070049 onRegisterCommandSuccess(uint64_t faceId, const Name& prefix)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070050 {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040051 std::cerr << "SUCCESS: register " << prefix << " on face " << faceId << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070052 }
53
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040054 static void
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070055 onRegisterCommandFailure(uint64_t faceId, const Name& prefix,
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040056 const ndn::nfd::ControlResponse& response)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070057 {
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070058 std::cerr << "FAILED: register " << prefix << " on face " << faceId
Junxiao Shi29b41282016-08-22 03:47:02 +000059 << " (code: " << response.getCode() << ", reason: " << response.getText() << ")"
60 << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070061 }
62
Junxiao Shidda0b462014-06-30 19:42:29 -070063 /**
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070064 * \return true if uri has schema allowed to do auto-registrations
Junxiao Shidda0b462014-06-30 19:42:29 -070065 */
Davide Pesavento59769b12017-11-12 23:52:06 -050066 static bool
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070067 hasAllowedSchema(const FaceUri& uri)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070068 {
69 const std::string& scheme = uri.getScheme();
Davide Pesavento59769b12017-11-12 23:52:06 -050070 return scheme == "udp4" || scheme == "tcp4" ||
71 scheme == "udp6" || scheme == "tcp6";
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070072 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070073
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070074 /**
Alexander Afanasyevf056c112014-08-14 16:39:25 -070075 * \return true if address is blacklisted
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070076 */
77 bool
Davide Pesavento59769b12017-11-12 23:52:06 -050078 isBlacklisted(const boost::asio::ip::address& address) const
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070079 {
Junxiao Shi08e96312017-06-29 18:07:27 +000080 return std::any_of(m_blackList.begin(), m_blackList.end(),
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040081 [&] (const auto& net) { return net.doesContain(address); });
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070082 }
83
84 /**
Alexander Afanasyevf056c112014-08-14 16:39:25 -070085 * \return true if address is whitelisted
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070086 */
87 bool
Davide Pesavento59769b12017-11-12 23:52:06 -050088 isWhitelisted(const boost::asio::ip::address& address) const
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070089 {
Junxiao Shi08e96312017-06-29 18:07:27 +000090 return std::any_of(m_whiteList.begin(), m_whiteList.end(),
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040091 [&] (const auto& net) { return net.doesContain(address); });
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070092 }
93
94 void
Davide Pesavento22db5392017-04-14 00:56:43 -040095 registerPrefixesForFace(uint64_t faceId, const std::vector<Name>& prefixes)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070096 {
Junxiao Shi08e96312017-06-29 18:07:27 +000097 for (const Name& prefix : prefixes) {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040098 m_controller.start<ndn::nfd::RibRegisterCommand>(
99 ndn::nfd::ControlParameters()
Junxiao Shi08e96312017-06-29 18:07:27 +0000100 .setName(prefix)
101 .setFaceId(faceId)
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400102 .setOrigin(ndn::nfd::ROUTE_ORIGIN_AUTOREG)
Junxiao Shi08e96312017-06-29 18:07:27 +0000103 .setCost(m_cost)
104 .setExpirationPeriod(time::milliseconds::max()),
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400105 [=] (auto&&...) { onRegisterCommandSuccess(faceId, prefix); },
106 [=] (const auto& response) { onRegisterCommandFailure(faceId, prefix, response); });
Junxiao Shi08e96312017-06-29 18:07:27 +0000107 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700108 }
109
110 void
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400111 registerPrefixesIfNeeded(uint64_t faceId, const FaceUri& uri, ndn::nfd::FacePersistency facePersistency)
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700112 {
113 if (hasAllowedSchema(uri)) {
114 boost::system::error_code ec;
Davide Pesavento9c33b902018-05-20 01:30:29 -0400115 auto address = boost::asio::ip::address::from_string(uri.getHost(), ec);
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700116
117 if (!address.is_multicast()) {
118 // register all-face prefixes
119 registerPrefixesForFace(faceId, m_allFacesPrefixes);
120
121 // register autoreg prefixes if new face is on-demand and not blacklisted and whitelisted
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400122 if (facePersistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND &&
Chengyu Fan9942cea2014-10-13 14:47:13 -0600123 !isBlacklisted(address) && isWhitelisted(address)) {
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700124 registerPrefixesForFace(faceId, m_autoregPrefixes);
125 }
126 }
127 }
128 }
129
130 void
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400131 onNotification(const ndn::nfd::FaceEventNotification& notification)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700132 {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400133 if (notification.getKind() == ndn::nfd::FACE_EVENT_CREATED &&
134 notification.getFaceScope() != ndn::nfd::FACE_SCOPE_LOCAL) {
Junxiao Shi08e96312017-06-29 18:07:27 +0000135 std::cerr << "PROCESSING: " << notification << std::endl;
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700136
Junxiao Shi08e96312017-06-29 18:07:27 +0000137 registerPrefixesIfNeeded(notification.getFaceId(), FaceUri(notification.getRemoteUri()),
138 notification.getFacePersistency());
139 }
140 else {
141 std::cerr << "IGNORED: " << notification << std::endl;
142 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700143 }
144
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700145 void
146 startProcessing()
147 {
Junxiao Shidda0b462014-06-30 19:42:29 -0700148 std::cerr << "AUTOREG prefixes: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000149 for (const Name& prefix : m_autoregPrefixes) {
150 std::cout << " " << prefix << std::endl;
151 }
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700152 std::cerr << "ALL-FACES-AUTOREG prefixes: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000153 for (const Name& prefix : m_allFacesPrefixes) {
154 std::cout << " " << prefix << std::endl;
155 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700156
Junxiao Shi08e96312017-06-29 18:07:27 +0000157 if (!m_blackList.empty()) {
158 std::cerr << "Blacklisted networks: " << std::endl;
159 for (const Network& network : m_blackList) {
160 std::cout << " " << network << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700161 }
Junxiao Shi08e96312017-06-29 18:07:27 +0000162 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700163
Junxiao Shidda0b462014-06-30 19:42:29 -0700164 std::cerr << "Whitelisted networks: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000165 for (const Network& network : m_whiteList) {
166 std::cout << " " << network << std::endl;
167 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700168
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400169 m_faceMonitor.onNotification.connect([this] (const auto& notif) { onNotification(notif); });
Junxiao Shi15b12e72014-08-09 19:56:24 -0700170 m_faceMonitor.start();
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700171
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700172 boost::asio::signal_set signalSet(m_face.getIoService(), SIGINT, SIGTERM);
Davide Pesavento412c9822021-07-02 00:21:05 -0400173 signalSet.async_wait([this] (auto&&...) { m_face.shutdown(); });
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700174
175 m_face.processEvents();
176 }
177
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700178 void
179 startFetchingFaceStatusDataset()
180 {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400181 m_controller.fetch<ndn::nfd::FaceDataset>(
Davide Pesavento412c9822021-07-02 00:21:05 -0400182 [this] (const auto& faces) {
Davide Pesavento22db5392017-04-14 00:56:43 -0400183 for (const auto& faceStatus : faces) {
Weiwei Liu7c795132016-10-07 14:22:54 -0700184 registerPrefixesIfNeeded(faceStatus.getFaceId(), FaceUri(faceStatus.getRemoteUri()),
185 faceStatus.getFacePersistency());
186 }
187 },
Davide Pesavento412c9822021-07-02 00:21:05 -0400188 [] (auto&&...) {});
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700189 }
190
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700191 int
192 main(int argc, char* argv[])
193 {
Davide Pesavento22db5392017-04-14 00:56:43 -0400194 namespace po = boost::program_options;
195
Davide Pesavento59769b12017-11-12 23:52:06 -0500196 po::options_description optionsDesc("Options");
197 optionsDesc.add_options()
198 ("help,h", "print this message and exit")
199 ("version,V", "show version information and exit")
Davide Pesavento22db5392017-04-14 00:56:43 -0400200 ("prefix,i", po::value<std::vector<Name>>(&m_autoregPrefixes)->composing(),
Davide Pesavento59769b12017-11-12 23:52:06 -0500201 "prefix that should be automatically registered when a new non-local face is created")
Davide Pesavento22db5392017-04-14 00:56:43 -0400202 ("all-faces-prefix,a", po::value<std::vector<Name>>(&m_allFacesPrefixes)->composing(),
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700203 "prefix that should be automatically registered for all TCP and UDP non-local faces "
204 "(blacklists and whitelists do not apply to this prefix)")
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400205 ("cost,c", po::value<uint64_t>(&m_cost)->default_value(m_cost),
Davide Pesavento59769b12017-11-12 23:52:06 -0500206 "FIB cost that should be assigned to autoreg nexthops")
Davide Pesavento22db5392017-04-14 00:56:43 -0400207 ("whitelist,w", po::value<std::vector<Network>>(&m_whiteList)->composing(),
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700208 "Whitelisted network, e.g., 192.168.2.0/24 or ::1/128")
Davide Pesavento22db5392017-04-14 00:56:43 -0400209 ("blacklist,b", po::value<std::vector<Network>>(&m_blackList)->composing(),
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700210 "Blacklisted network, e.g., 192.168.2.32/30 or ::1/128")
211 ;
212
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400213 auto usage = [&] (std::ostream& os) {
214 os << "Usage: " << argv[0] << " [--prefix=</autoreg/prefix>]... [options]\n"
215 << "\n"
216 << optionsDesc;
217 };
218
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700219 po::variables_map options;
Junxiao Shi08e96312017-06-29 18:07:27 +0000220 try {
Davide Pesavento59769b12017-11-12 23:52:06 -0500221 po::store(po::parse_command_line(argc, argv, optionsDesc), options);
Junxiao Shi08e96312017-06-29 18:07:27 +0000222 po::notify(options);
223 }
224 catch (const std::exception& e) {
225 std::cerr << "ERROR: " << e.what() << std::endl << std::endl;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400226 usage(std::cerr);
Davide Pesavento59769b12017-11-12 23:52:06 -0500227 return 2;
Junxiao Shi08e96312017-06-29 18:07:27 +0000228 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700229
Davide Pesavento59769b12017-11-12 23:52:06 -0500230 if (options.count("help") > 0) {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400231 usage(std::cout);
Junxiao Shi08e96312017-06-29 18:07:27 +0000232 return 0;
233 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700234
Davide Pesavento59769b12017-11-12 23:52:06 -0500235 if (options.count("version") > 0) {
Junxiao Shi08e96312017-06-29 18:07:27 +0000236 std::cout << NFD_VERSION_BUILD_STRING << std::endl;
237 return 0;
238 }
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700239
Junxiao Shi08e96312017-06-29 18:07:27 +0000240 if (m_autoregPrefixes.empty() && m_allFacesPrefixes.empty()) {
241 std::cerr << "ERROR: at least one --prefix or --all-faces-prefix must be specified"
242 << std::endl << std::endl;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400243 usage(std::cerr);
Junxiao Shi08e96312017-06-29 18:07:27 +0000244 return 2;
245 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700246
Junxiao Shi08e96312017-06-29 18:07:27 +0000247 if (m_whiteList.empty()) {
248 // Allow everything
249 m_whiteList.push_back(Network::getMaxRangeV4());
250 m_whiteList.push_back(Network::getMaxRangeV6());
251 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700252
Junxiao Shi08e96312017-06-29 18:07:27 +0000253 try {
254 startFetchingFaceStatusDataset();
255 startProcessing();
256 }
257 catch (const std::exception& e) {
Davide Pesavento97e33022019-02-14 16:00:50 -0500258 std::cerr << "ERROR: " << boost::diagnostic_information(e);
Davide Pesavento59769b12017-11-12 23:52:06 -0500259 return 1;
Junxiao Shi08e96312017-06-29 18:07:27 +0000260 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700261
262 return 0;
263 }
264
265private:
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400266 ndn::Face m_face;
267 ndn::KeyChain m_keyChain;
268 ndn::nfd::Controller m_controller{m_face, m_keyChain};
269 ndn::nfd::FaceMonitor m_faceMonitor{m_face};
Davide Pesavento22db5392017-04-14 00:56:43 -0400270 std::vector<Name> m_autoregPrefixes;
271 std::vector<Name> m_allFacesPrefixes;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400272 uint64_t m_cost = 255;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700273 std::vector<Network> m_whiteList;
274 std::vector<Network> m_blackList;
275};
276
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400277} // namespace nfd::tools::autoreg
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700278
279int
280main(int argc, char* argv[])
281{
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400282 nfd::tools::autoreg::AutoregServer server;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700283 return server.main(argc, argv);
284}