Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | c52cd5e | 2022-03-05 20:40:54 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 4 | * 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 Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 26 | #include "procedure.hpp" |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 27 | #include "core/version.hpp" |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 28 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 29 | #include <signal.h> |
| 30 | #include <string.h> |
Davide Pesavento | 97e3302 | 2019-02-14 16:00:50 -0500 | [diff] [blame] | 31 | |
| 32 | #include <boost/exception/diagnostic_information.hpp> |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 33 | #include <boost/program_options/options_description.hpp> |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 34 | #include <boost/program_options/parsers.hpp> |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 35 | #include <boost/program_options/variables_map.hpp> |
Davide Pesavento | 97e3302 | 2019-02-14 16:00:50 -0500 | [diff] [blame] | 36 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 37 | #include <ndn-cxx/net/network-monitor.hpp> |
| 38 | #include <ndn-cxx/util/scheduler.hpp> |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 39 | #include <ndn-cxx/util/time.hpp> |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 40 | |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 41 | // 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 Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 43 | namespace ndn { |
| 44 | namespace tools { |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 45 | namespace autoconfig { |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 46 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 47 | namespace po = boost::program_options; |
| 48 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 49 | const time::nanoseconds DAEMON_INITIAL_DELAY = 100_ms; |
| 50 | const time::nanoseconds DAEMON_UNCONDITIONAL_INTERVAL = 1_h; |
| 51 | const time::nanoseconds NETMON_DAMPEN_PERIOD = 5_s; |
| 52 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 53 | static void |
| 54 | usage(std::ostream& os, |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 55 | const po::options_description& opts, |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 56 | const char* programName) |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 57 | { |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 58 | os << "Usage: " << programName << " [options]\n" |
| 59 | << "\n" |
| 60 | << opts; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static void |
| 64 | runDaemon(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 Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 72 | } |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 73 | const char* signalName = ::strsignal(signalNo); |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 74 | std::cerr << "Exiting on signal "; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 75 | 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 Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 85 | Scheduler sched(proc.getIoService()); |
| 86 | scheduler::ScopedEventId runEvt; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 87 | auto scheduleRerun = [&] (time::nanoseconds delay) { |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 88 | runEvt = sched.schedule(delay, [&] { proc.runOnce(); }); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 89 | }; |
| 90 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 91 | proc.onComplete.connect([&] (bool isSuccess) { |
| 92 | scheduleRerun(DAEMON_UNCONDITIONAL_INTERVAL); |
| 93 | }); |
Alexander Afanasyev | e46279dc | 2015-01-29 15:39:17 -0800 | [diff] [blame] | 94 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 95 | net::NetworkMonitor netmon(proc.getIoService()); |
| 96 | netmon.onNetworkStateChanged.connect([&] { scheduleRerun(NETMON_DAMPEN_PERIOD); }); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 97 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 98 | scheduleRerun(DAEMON_INITIAL_DELAY); |
| 99 | proc.getIoService().run(); |
| 100 | } |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 101 | |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 102 | static int |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 103 | main(int argc, char** argv) |
| 104 | { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 105 | Options options; |
| 106 | bool isDaemon = false; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 107 | std::string configFile; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 108 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 109 | po::options_description optionsDescription("Options"); |
| 110 | optionsDescription.add_options() |
| 111 | ("help,h", "print this message and exit") |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 112 | ("version,V", "show version information and exit") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 113 | ("daemon,d", po::bool_switch(&isDaemon)->default_value(isDaemon), |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 114 | "Run in daemon mode, detecting network change events and re-running the auto-discovery procedure. " |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 115 | "In addition, the auto-discovery procedure is unconditionally re-run every hour.\n" |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 116 | "NOTE: if the connection to NFD fails, the daemon will exit.") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 117 | ("ndn-fch-url", po::value<std::string>(&options.ndnFchUrl)->default_value(options.ndnFchUrl), |
Alexander Afanasyev | 2a00194 | 2016-12-14 18:18:41 -0800 | [diff] [blame] | 118 | "URL for NDN-FCH (Find Closest Hub) service") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 119 | ("config,c", po::value<std::string>(&configFile), |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 120 | "Configuration file. Exit immediately unless 'enabled = true' is specified in the config file.") |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 121 | ; |
| 122 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 123 | po::variables_map vm; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 124 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 125 | po::store(po::parse_command_line(argc, argv, optionsDescription), vm); |
| 126 | po::notify(vm); |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 127 | } |
| 128 | catch (const std::exception& e) { |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 129 | std::cerr << "ERROR: " << e.what() << "\n\n"; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 130 | usage(std::cerr, optionsDescription, argv[0]); |
| 131 | return 2; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 132 | } |
| 133 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 134 | if (vm.count("help")) { |
| 135 | usage(std::cout, optionsDescription, argv[0]); |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 139 | if (vm.count("version")) { |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 140 | std::cout << NFD_VERSION_BUILD_STRING << std::endl; |
| 141 | return 0; |
| 142 | } |
| 143 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 144 | if (vm.count("config")) { |
| 145 | po::options_description configFileOptions; |
| 146 | configFileOptions.add_options() |
| 147 | ("enabled", po::value<bool>()->default_value(false)) |
| 148 | ; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 149 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 150 | po::store(po::parse_config_file<char>(configFile.data(), configFileOptions), vm); |
| 151 | po::notify(vm); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 152 | } |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 153 | catch (const std::exception& e) { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 154 | 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 Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 163 | int exitCode = 0; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 164 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 165 | 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 Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 174 | proc.onComplete.connect([&exitCode] (bool isSuccess) { exitCode = isSuccess ? 0 : 1; }); |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 175 | proc.runOnce(); |
| 176 | face.processEvents(); |
| 177 | } |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 178 | } |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 179 | catch (const std::exception& e) { |
Davide Pesavento | 97e3302 | 2019-02-14 16:00:50 -0500 | [diff] [blame] | 180 | std::cerr << "ERROR: " << boost::diagnostic_information(e); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 181 | return 1; |
| 182 | } |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 183 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 184 | return exitCode; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 185 | } |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 186 | |
| 187 | } // namespace autoconfig |
| 188 | } // namespace tools |
| 189 | } // namespace ndn |
| 190 | |
| 191 | int |
| 192 | main(int argc, char** argv) |
| 193 | { |
| 194 | return ndn::tools::autoconfig::main(argc, argv); |
| 195 | } |