blob: 39b7f6b72bf69fe58a7f920ecebf426de1ac903b [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 Pesavento22db5392017-04-14 00:56:43 -04003 * Copyright (c) 2014-2017, 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>
30#include <ndn-cxx/name.hpp>
Junxiao Shi08e96312017-06-29 18:07:27 +000031#include <ndn-cxx/encoding/buffer-stream.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000032#include <ndn-cxx/mgmt/nfd/controller.hpp>
33#include <ndn-cxx/mgmt/nfd/face-monitor.hpp>
34#include <ndn-cxx/mgmt/nfd/face-status.hpp>
Junxiao Shi83be1da2017-06-30 13:37:37 +000035#include <ndn-cxx/net/face-uri.hpp>
Junxiao Shi08e96312017-06-29 18:07:27 +000036#include <ndn-cxx/security/key-chain.hpp>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070037
38#include <boost/program_options/options_description.hpp>
39#include <boost/program_options/variables_map.hpp>
40#include <boost/program_options/parsers.hpp>
41
Davide Pesaventoa997d292017-08-24 20:16:59 -040042#include <iostream>
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070043
Junxiao Shia1937bf2014-11-06 11:43:40 -070044namespace ndn {
45namespace nfd_autoreg {
46
Junxiao Shi08e96312017-06-29 18:07:27 +000047using ::nfd::Network;
48
Junxiao Shidda0b462014-06-30 19:42:29 -070049class AutoregServer : boost::noncopyable
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070050{
51public:
52 AutoregServer()
Junxiao Shi8e273ca2014-11-12 00:42:29 -070053 : m_controller(m_face, m_keyChain)
Junxiao Shi15b12e72014-08-09 19:56:24 -070054 , m_faceMonitor(m_face)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070055 , m_cost(255)
56 {
57 }
58
59 void
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070060 onRegisterCommandSuccess(uint64_t faceId, const Name& prefix)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070061 {
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070062 std::cerr << "SUCCEED: register " << prefix << " on face " << faceId << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070063 }
64
65 void
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070066 onRegisterCommandFailure(uint64_t faceId, const Name& prefix,
Junxiao Shi29b41282016-08-22 03:47:02 +000067 const nfd::ControlResponse& response)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070068 {
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070069 std::cerr << "FAILED: register " << prefix << " on face " << faceId
Junxiao Shi29b41282016-08-22 03:47:02 +000070 << " (code: " << response.getCode() << ", reason: " << response.getText() << ")"
71 << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070072 }
73
Junxiao Shidda0b462014-06-30 19:42:29 -070074 /**
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070075 * \return true if uri has schema allowed to do auto-registrations
Junxiao Shidda0b462014-06-30 19:42:29 -070076 */
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070077 bool
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070078 hasAllowedSchema(const FaceUri& uri)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070079 {
80 const std::string& scheme = uri.getScheme();
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070081 return (scheme == "udp4" || scheme == "tcp4" ||
82 scheme == "udp6" || scheme == "tcp6");
83 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -070084
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070085 /**
Alexander Afanasyevf056c112014-08-14 16:39:25 -070086 * \return true if address is blacklisted
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070087 */
88 bool
Alexander Afanasyevf056c112014-08-14 16:39:25 -070089 isBlacklisted(const boost::asio::ip::address& address)
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070090 {
Junxiao Shi08e96312017-06-29 18:07:27 +000091 return std::any_of(m_blackList.begin(), m_blackList.end(),
92 bind(&Network::doesContain, _1, address));
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070093 }
94
95 /**
Alexander Afanasyevf056c112014-08-14 16:39:25 -070096 * \return true if address is whitelisted
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -070097 */
98 bool
Alexander Afanasyevf056c112014-08-14 16:39:25 -070099 isWhitelisted(const boost::asio::ip::address& address)
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700100 {
Junxiao Shi08e96312017-06-29 18:07:27 +0000101 return std::any_of(m_whiteList.begin(), m_whiteList.end(),
102 bind(&Network::doesContain, _1, address));
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700103 }
104
105 void
Davide Pesavento22db5392017-04-14 00:56:43 -0400106 registerPrefixesForFace(uint64_t faceId, const std::vector<Name>& prefixes)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700107 {
Junxiao Shi08e96312017-06-29 18:07:27 +0000108 for (const Name& prefix : prefixes) {
109 m_controller.start<nfd::RibRegisterCommand>(
110 nfd::ControlParameters()
111 .setName(prefix)
112 .setFaceId(faceId)
113 .setOrigin(nfd::ROUTE_ORIGIN_AUTOREG)
114 .setCost(m_cost)
115 .setExpirationPeriod(time::milliseconds::max()),
116 bind(&AutoregServer::onRegisterCommandSuccess, this, faceId, prefix),
117 bind(&AutoregServer::onRegisterCommandFailure, this, faceId, prefix, _1));
118 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700119 }
120
121 void
Junxiao Shi08e96312017-06-29 18:07:27 +0000122 registerPrefixesIfNeeded(uint64_t faceId, const FaceUri& uri, nfd::FacePersistency facePersistency)
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700123 {
124 if (hasAllowedSchema(uri)) {
125 boost::system::error_code ec;
126 boost::asio::ip::address address = boost::asio::ip::address::from_string(uri.getHost(), ec);
127
128 if (!address.is_multicast()) {
129 // register all-face prefixes
130 registerPrefixesForFace(faceId, m_allFacesPrefixes);
131
132 // register autoreg prefixes if new face is on-demand and not blacklisted and whitelisted
Junxiao Shi08e96312017-06-29 18:07:27 +0000133 if (facePersistency == nfd::FACE_PERSISTENCY_ON_DEMAND &&
Chengyu Fan9942cea2014-10-13 14:47:13 -0600134 !isBlacklisted(address) && isWhitelisted(address)) {
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700135 registerPrefixesForFace(faceId, m_autoregPrefixes);
136 }
137 }
138 }
139 }
140
141 void
Junxiao Shi08e96312017-06-29 18:07:27 +0000142 onNotification(const nfd::FaceEventNotification& notification)
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700143 {
Junxiao Shi08e96312017-06-29 18:07:27 +0000144 if (notification.getKind() == nfd::FACE_EVENT_CREATED &&
145 notification.getFaceScope() != nfd::FACE_SCOPE_LOCAL) {
146 std::cerr << "PROCESSING: " << notification << std::endl;
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700147
Junxiao Shi08e96312017-06-29 18:07:27 +0000148 registerPrefixesIfNeeded(notification.getFaceId(), FaceUri(notification.getRemoteUri()),
149 notification.getFacePersistency());
150 }
151 else {
152 std::cerr << "IGNORED: " << notification << std::endl;
153 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700154 }
155
156 void
157 signalHandler()
158 {
159 m_face.shutdown();
160 }
161
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700162 void
Alexander Afanasyev60a7ba52014-03-23 11:23:06 -0700163 usage(std::ostream& os,
Davide Pesavento22db5392017-04-14 00:56:43 -0400164 const boost::program_options::options_description& desc,
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700165 const char* programName)
166 {
Alexander Afanasyev60a7ba52014-03-23 11:23:06 -0700167 os << "Usage:\n"
168 << " " << programName << " --prefix=</autoreg/prefix> [--prefix=/another/prefix] ...\n"
169 << "\n";
Davide Pesavento22db5392017-04-14 00:56:43 -0400170 os << desc;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700171 }
172
173 void
174 startProcessing()
175 {
Junxiao Shidda0b462014-06-30 19:42:29 -0700176 std::cerr << "AUTOREG prefixes: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000177 for (const Name& prefix : m_autoregPrefixes) {
178 std::cout << " " << prefix << std::endl;
179 }
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700180 std::cerr << "ALL-FACES-AUTOREG prefixes: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000181 for (const Name& prefix : m_allFacesPrefixes) {
182 std::cout << " " << prefix << std::endl;
183 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700184
Junxiao Shi08e96312017-06-29 18:07:27 +0000185 if (!m_blackList.empty()) {
186 std::cerr << "Blacklisted networks: " << std::endl;
187 for (const Network& network : m_blackList) {
188 std::cout << " " << network << std::endl;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700189 }
Junxiao Shi08e96312017-06-29 18:07:27 +0000190 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700191
Junxiao Shidda0b462014-06-30 19:42:29 -0700192 std::cerr << "Whitelisted networks: " << std::endl;
Junxiao Shi08e96312017-06-29 18:07:27 +0000193 for (const Network& network : m_whiteList) {
194 std::cout << " " << network << std::endl;
195 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700196
Junxiao Shifbf78342015-01-23 14:46:41 -0700197 m_faceMonitor.onNotification.connect(bind(&AutoregServer::onNotification, this, _1));
Junxiao Shi15b12e72014-08-09 19:56:24 -0700198 m_faceMonitor.start();
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700199
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700200 boost::asio::signal_set signalSet(m_face.getIoService(), SIGINT, SIGTERM);
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700201 signalSet.async_wait(bind(&AutoregServer::signalHandler, this));
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700202
203 m_face.processEvents();
204 }
205
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700206 void
207 startFetchingFaceStatusDataset()
208 {
Junxiao Shi08e96312017-06-29 18:07:27 +0000209 m_controller.fetch<nfd::FaceDataset>(
210 [this] (const std::vector<nfd::FaceStatus>& faces) {
Davide Pesavento22db5392017-04-14 00:56:43 -0400211 for (const auto& faceStatus : faces) {
Weiwei Liu7c795132016-10-07 14:22:54 -0700212 registerPrefixesIfNeeded(faceStatus.getFaceId(), FaceUri(faceStatus.getRemoteUri()),
213 faceStatus.getFacePersistency());
214 }
215 },
216 [this] (uint32_t code, const std::string& reason) {});
Alexander Afanasyevf056c112014-08-14 16:39:25 -0700217 }
218
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700219 int
220 main(int argc, char* argv[])
221 {
Davide Pesavento22db5392017-04-14 00:56:43 -0400222 namespace po = boost::program_options;
223
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700224 po::options_description optionDesciption;
225 optionDesciption.add_options()
226 ("help,h", "produce help message")
Davide Pesavento22db5392017-04-14 00:56:43 -0400227 ("prefix,i", po::value<std::vector<Name>>(&m_autoregPrefixes)->composing(),
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700228 "prefix that should be automatically registered when new a remote non-local face is "
229 "established")
Davide Pesavento22db5392017-04-14 00:56:43 -0400230 ("all-faces-prefix,a", po::value<std::vector<Name>>(&m_allFacesPrefixes)->composing(),
Alexander Afanasyev81c1a2a2014-08-14 16:07:47 -0700231 "prefix that should be automatically registered for all TCP and UDP non-local faces "
232 "(blacklists and whitelists do not apply to this prefix)")
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700233 ("cost,c", po::value<uint64_t>(&m_cost)->default_value(255),
234 "FIB cost which should be assigned to autoreg nexthops")
Davide Pesavento22db5392017-04-14 00:56:43 -0400235 ("whitelist,w", po::value<std::vector<Network>>(&m_whiteList)->composing(),
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700236 "Whitelisted network, e.g., 192.168.2.0/24 or ::1/128")
Davide Pesavento22db5392017-04-14 00:56:43 -0400237 ("blacklist,b", po::value<std::vector<Network>>(&m_blackList)->composing(),
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700238 "Blacklisted network, e.g., 192.168.2.32/30 or ::1/128")
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700239 ("version,V", "show version and exit")
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700240 ;
241
242 po::variables_map options;
Junxiao Shi08e96312017-06-29 18:07:27 +0000243 try {
244 po::store(po::command_line_parser(argc, argv).options(optionDesciption).run(), options);
245 po::notify(options);
246 }
247 catch (const std::exception& e) {
248 std::cerr << "ERROR: " << e.what() << std::endl << std::endl;
249 usage(std::cerr, optionDesciption, argv[0]);
250 return 1;
251 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700252
Junxiao Shi08e96312017-06-29 18:07:27 +0000253 if (options.count("help")) {
254 usage(std::cout, optionDesciption, argv[0]);
255 return 0;
256 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700257
Junxiao Shi08e96312017-06-29 18:07:27 +0000258 if (options.count("version")) {
259 std::cout << NFD_VERSION_BUILD_STRING << std::endl;
260 return 0;
261 }
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700262
Junxiao Shi08e96312017-06-29 18:07:27 +0000263 if (m_autoregPrefixes.empty() && m_allFacesPrefixes.empty()) {
264 std::cerr << "ERROR: at least one --prefix or --all-faces-prefix must be specified"
265 << std::endl << std::endl;
266 usage(std::cerr, optionDesciption, argv[0]);
267 return 2;
268 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700269
Junxiao Shi08e96312017-06-29 18:07:27 +0000270 if (m_whiteList.empty()) {
271 // Allow everything
272 m_whiteList.push_back(Network::getMaxRangeV4());
273 m_whiteList.push_back(Network::getMaxRangeV6());
274 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700275
Junxiao Shi08e96312017-06-29 18:07:27 +0000276 try {
277 startFetchingFaceStatusDataset();
278 startProcessing();
279 }
280 catch (const std::exception& e) {
281 std::cerr << "ERROR: " << e.what() << std::endl;
282 return 2;
283 }
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700284
285 return 0;
286 }
287
288private:
289 Face m_face;
Junxiao Shi8e273ca2014-11-12 00:42:29 -0700290 KeyChain m_keyChain;
Junxiao Shi08e96312017-06-29 18:07:27 +0000291 nfd::Controller m_controller;
292 nfd::FaceMonitor m_faceMonitor;
Davide Pesavento22db5392017-04-14 00:56:43 -0400293 std::vector<Name> m_autoregPrefixes;
294 std::vector<Name> m_allFacesPrefixes;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700295 uint64_t m_cost;
296 std::vector<Network> m_whiteList;
297 std::vector<Network> m_blackList;
298};
299
Junxiao Shia1937bf2014-11-06 11:43:40 -0700300} // namespace nfd_autoreg
301} // namespace ndn
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700302
303int
304main(int argc, char* argv[])
305{
Junxiao Shia1937bf2014-11-06 11:43:40 -0700306 ndn::nfd_autoreg::AutoregServer server;
Alexander Afanasyev82afa1a2014-03-20 16:56:56 -0700307 return server.main(argc, argv);
308}