blob: ecfad81333be71f85a8eceb4e5e89e0e52b2ac11 [file] [log] [blame]
Alexander Afanasyev2a655f72015-01-26 18:38:33 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shicb766862017-07-07 22:21:04 +00002/*
Davide Pesaventoc52cd5e2022-03-05 20:40:54 -05003 * Copyright (c) 2014-2022, Regents of the University of California,
Alexander Afanasyev2a655f72015-01-26 18:38:33 -08004 * 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.
10 *
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/>.
24 */
25
Junxiao Shicb766862017-07-07 22:21:04 +000026#include "procedure.hpp"
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000027#include "core/version.hpp"
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080028
Junxiao Shicb766862017-07-07 22:21:04 +000029#include <signal.h>
30#include <string.h>
Davide Pesavento97e33022019-02-14 16:00:50 -050031
32#include <boost/exception/diagnostic_information.hpp>
Alexander Afanasyev5c475972015-12-20 16:16:56 -080033#include <boost/program_options/options_description.hpp>
Alexander Afanasyev5c475972015-12-20 16:16:56 -080034#include <boost/program_options/parsers.hpp>
Junxiao Shi52fa45c2016-11-29 21:18:13 +000035#include <boost/program_options/variables_map.hpp>
Davide Pesavento97e33022019-02-14 16:00:50 -050036
Junxiao Shicb766862017-07-07 22:21:04 +000037#include <ndn-cxx/net/network-monitor.hpp>
38#include <ndn-cxx/util/scheduler.hpp>
Junxiao Shicb766862017-07-07 22:21:04 +000039#include <ndn-cxx/util/time.hpp>
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080040
Davide Pesavento59769b12017-11-12 23:52:06 -050041// ndn-autoconfig is an NDN tool not an NFD tool, so it uses ndn::tools::autoconfig namespace.
42// It lives in NFD repository because nfd-start can automatically start ndn-autoconfig in daemon mode.
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080043namespace ndn {
44namespace tools {
Junxiao Shi52fa45c2016-11-29 21:18:13 +000045namespace autoconfig {
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080046
Junxiao Shicb766862017-07-07 22:21:04 +000047namespace po = boost::program_options;
48
Davide Pesavento14e71f02019-03-28 17:35:25 -040049const time::nanoseconds DAEMON_INITIAL_DELAY = 100_ms;
50const time::nanoseconds DAEMON_UNCONDITIONAL_INTERVAL = 1_h;
51const time::nanoseconds NETMON_DAMPEN_PERIOD = 5_s;
52
Junxiao Shicb766862017-07-07 22:21:04 +000053static void
54usage(std::ostream& os,
Davide Pesavento59769b12017-11-12 23:52:06 -050055 const po::options_description& opts,
Junxiao Shicb766862017-07-07 22:21:04 +000056 const char* programName)
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080057{
Davide Pesavento59769b12017-11-12 23:52:06 -050058 os << "Usage: " << programName << " [options]\n"
59 << "\n"
60 << opts;
Junxiao Shicb766862017-07-07 22:21:04 +000061}
62
63static void
64runDaemon(Procedure& proc)
65{
66 boost::asio::signal_set terminateSignals(proc.getIoService());
67 terminateSignals.add(SIGINT);
68 terminateSignals.add(SIGTERM);
69 terminateSignals.async_wait([&] (const boost::system::error_code& error, int signalNo) {
70 if (error) {
71 return;
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080072 }
Junxiao Shicb766862017-07-07 22:21:04 +000073 const char* signalName = ::strsignal(signalNo);
Davide Pesavento59769b12017-11-12 23:52:06 -050074 std::cerr << "Exiting on signal ";
Junxiao Shicb766862017-07-07 22:21:04 +000075 if (signalName == nullptr) {
76 std::cerr << signalNo;
77 }
78 else {
79 std::cerr << signalName;
80 }
81 std::cerr << std::endl;
82 proc.getIoService().stop();
83 });
84
Davide Pesavento3dade002019-03-19 11:29:56 -060085 Scheduler sched(proc.getIoService());
86 scheduler::ScopedEventId runEvt;
Junxiao Shicb766862017-07-07 22:21:04 +000087 auto scheduleRerun = [&] (time::nanoseconds delay) {
Davide Pesavento3dade002019-03-19 11:29:56 -060088 runEvt = sched.schedule(delay, [&] { proc.runOnce(); });
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080089 };
90
Junxiao Shicb766862017-07-07 22:21:04 +000091 proc.onComplete.connect([&] (bool isSuccess) {
92 scheduleRerun(DAEMON_UNCONDITIONAL_INTERVAL);
93 });
Alexander Afanasyeve46279dc2015-01-29 15:39:17 -080094
Junxiao Shicb766862017-07-07 22:21:04 +000095 net::NetworkMonitor netmon(proc.getIoService());
96 netmon.onNetworkStateChanged.connect([&] { scheduleRerun(NETMON_DAMPEN_PERIOD); });
Alexander Afanasyev2a655f72015-01-26 18:38:33 -080097
Junxiao Shicb766862017-07-07 22:21:04 +000098 scheduleRerun(DAEMON_INITIAL_DELAY);
99 proc.getIoService().run();
100}
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800101
Junxiao Shi52fa45c2016-11-29 21:18:13 +0000102static int
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800103main(int argc, char** argv)
104{
Junxiao Shicb766862017-07-07 22:21:04 +0000105 Options options;
106 bool isDaemon = false;
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800107 std::string configFile;
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800108
Junxiao Shicb766862017-07-07 22:21:04 +0000109 po::options_description optionsDescription("Options");
110 optionsDescription.add_options()
111 ("help,h", "print this message and exit")
Davide Pesavento59769b12017-11-12 23:52:06 -0500112 ("version,V", "show version information and exit")
Junxiao Shicb766862017-07-07 22:21:04 +0000113 ("daemon,d", po::bool_switch(&isDaemon)->default_value(isDaemon),
Davide Pesavento59769b12017-11-12 23:52:06 -0500114 "Run in daemon mode, detecting network change events and re-running the auto-discovery procedure. "
Junxiao Shicb766862017-07-07 22:21:04 +0000115 "In addition, the auto-discovery procedure is unconditionally re-run every hour.\n"
Davide Pesavento59769b12017-11-12 23:52:06 -0500116 "NOTE: if the connection to NFD fails, the daemon will exit.")
Junxiao Shicb766862017-07-07 22:21:04 +0000117 ("ndn-fch-url", po::value<std::string>(&options.ndnFchUrl)->default_value(options.ndnFchUrl),
Alexander Afanasyev2a001942016-12-14 18:18:41 -0800118 "URL for NDN-FCH (Find Closest Hub) service")
Junxiao Shicb766862017-07-07 22:21:04 +0000119 ("config,c", po::value<std::string>(&configFile),
Davide Pesavento59769b12017-11-12 23:52:06 -0500120 "Configuration file. Exit immediately unless 'enabled = true' is specified in the config file.")
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800121 ;
122
Junxiao Shicb766862017-07-07 22:21:04 +0000123 po::variables_map vm;
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800124 try {
Junxiao Shicb766862017-07-07 22:21:04 +0000125 po::store(po::parse_command_line(argc, argv, optionsDescription), vm);
126 po::notify(vm);
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800127 }
128 catch (const std::exception& e) {
Davide Pesavento59769b12017-11-12 23:52:06 -0500129 std::cerr << "ERROR: " << e.what() << "\n\n";
Junxiao Shicb766862017-07-07 22:21:04 +0000130 usage(std::cerr, optionsDescription, argv[0]);
131 return 2;
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800132 }
133
Junxiao Shicb766862017-07-07 22:21:04 +0000134 if (vm.count("help")) {
135 usage(std::cout, optionsDescription, argv[0]);
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800136 return 0;
137 }
138
Junxiao Shicb766862017-07-07 22:21:04 +0000139 if (vm.count("version")) {
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800140 std::cout << NFD_VERSION_BUILD_STRING << std::endl;
141 return 0;
142 }
143
Junxiao Shicb766862017-07-07 22:21:04 +0000144 if (vm.count("config")) {
145 po::options_description configFileOptions;
146 configFileOptions.add_options()
147 ("enabled", po::value<bool>()->default_value(false))
148 ;
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800149 try {
Junxiao Shicb766862017-07-07 22:21:04 +0000150 po::store(po::parse_config_file<char>(configFile.data(), configFileOptions), vm);
151 po::notify(vm);
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800152 }
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800153 catch (const std::exception& e) {
Junxiao Shicb766862017-07-07 22:21:04 +0000154 std::cerr << "ERROR in config: " << e.what() << "\n\n";
155 return 2;
156 }
157 if (!vm["enabled"].as<bool>()) {
158 // not enabled in config
159 return 0;
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800160 }
161 }
162
Junxiao Shicb766862017-07-07 22:21:04 +0000163 int exitCode = 0;
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800164 try {
Junxiao Shicb766862017-07-07 22:21:04 +0000165 Face face;
166 KeyChain keyChain;
167 Procedure proc(face, keyChain);
168 proc.initialize(options);
169
170 if (isDaemon) {
171 runDaemon(proc);
172 }
173 else {
Davide Pesavento59769b12017-11-12 23:52:06 -0500174 proc.onComplete.connect([&exitCode] (bool isSuccess) { exitCode = isSuccess ? 0 : 1; });
Junxiao Shicb766862017-07-07 22:21:04 +0000175 proc.runOnce();
176 face.processEvents();
177 }
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800178 }
Junxiao Shicb766862017-07-07 22:21:04 +0000179 catch (const std::exception& e) {
Davide Pesavento97e33022019-02-14 16:00:50 -0500180 std::cerr << "ERROR: " << boost::diagnostic_information(e);
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800181 return 1;
182 }
Davide Pesavento59769b12017-11-12 23:52:06 -0500183
Junxiao Shicb766862017-07-07 22:21:04 +0000184 return exitCode;
Alexander Afanasyev2a655f72015-01-26 18:38:33 -0800185}
Junxiao Shi52fa45c2016-11-29 21:18:13 +0000186
187} // namespace autoconfig
188} // namespace tools
189} // namespace ndn
190
191int
192main(int argc, char** argv)
193{
194 return ndn::tools::autoconfig::main(argc, argv);
195}