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 | /* |
Junxiao Shi | feddc3c | 2019-01-17 19:06:00 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, 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 | c0a5a39 | 2017-08-19 16:49:30 -0400 | [diff] [blame] | 41 | // suppress warning caused by boost::program_options::parse_config_file |
| 42 | #ifdef __clang__ |
| 43 | #pragma clang diagnostic ignored "-Wundefined-func-template" |
| 44 | #endif |
| 45 | |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 46 | // ndn-autoconfig is an NDN tool not an NFD tool, so it uses ndn::tools::autoconfig namespace. |
| 47 | // 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] | 48 | namespace ndn { |
| 49 | namespace tools { |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 50 | namespace autoconfig { |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 51 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 52 | namespace po = boost::program_options; |
| 53 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 54 | const time::nanoseconds DAEMON_INITIAL_DELAY = 100_ms; |
| 55 | const time::nanoseconds DAEMON_UNCONDITIONAL_INTERVAL = 1_h; |
| 56 | const time::nanoseconds NETMON_DAMPEN_PERIOD = 5_s; |
| 57 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 58 | static void |
| 59 | usage(std::ostream& os, |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 60 | const po::options_description& opts, |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 61 | const char* programName) |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 62 | { |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 63 | os << "Usage: " << programName << " [options]\n" |
| 64 | << "\n" |
| 65 | << opts; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static void |
| 69 | runDaemon(Procedure& proc) |
| 70 | { |
| 71 | boost::asio::signal_set terminateSignals(proc.getIoService()); |
| 72 | terminateSignals.add(SIGINT); |
| 73 | terminateSignals.add(SIGTERM); |
| 74 | terminateSignals.async_wait([&] (const boost::system::error_code& error, int signalNo) { |
| 75 | if (error) { |
| 76 | return; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 77 | } |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 78 | const char* signalName = ::strsignal(signalNo); |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 79 | std::cerr << "Exiting on signal "; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 80 | if (signalName == nullptr) { |
| 81 | std::cerr << signalNo; |
| 82 | } |
| 83 | else { |
| 84 | std::cerr << signalName; |
| 85 | } |
| 86 | std::cerr << std::endl; |
| 87 | proc.getIoService().stop(); |
| 88 | }); |
| 89 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 90 | Scheduler sched(proc.getIoService()); |
| 91 | scheduler::ScopedEventId runEvt; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 92 | auto scheduleRerun = [&] (time::nanoseconds delay) { |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 93 | runEvt = sched.schedule(delay, [&] { proc.runOnce(); }); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 94 | }; |
| 95 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 96 | proc.onComplete.connect([&] (bool isSuccess) { |
| 97 | scheduleRerun(DAEMON_UNCONDITIONAL_INTERVAL); |
| 98 | }); |
Alexander Afanasyev | e46279dc | 2015-01-29 15:39:17 -0800 | [diff] [blame] | 99 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 100 | net::NetworkMonitor netmon(proc.getIoService()); |
| 101 | netmon.onNetworkStateChanged.connect([&] { scheduleRerun(NETMON_DAMPEN_PERIOD); }); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 102 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 103 | scheduleRerun(DAEMON_INITIAL_DELAY); |
| 104 | proc.getIoService().run(); |
| 105 | } |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 106 | |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 107 | static int |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 108 | main(int argc, char** argv) |
| 109 | { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 110 | Options options; |
| 111 | bool isDaemon = false; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 112 | std::string configFile; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 113 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 114 | po::options_description optionsDescription("Options"); |
| 115 | optionsDescription.add_options() |
| 116 | ("help,h", "print this message and exit") |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 117 | ("version,V", "show version information and exit") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 118 | ("daemon,d", po::bool_switch(&isDaemon)->default_value(isDaemon), |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 119 | "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] | 120 | "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] | 121 | "NOTE: if the connection to NFD fails, the daemon will exit.") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 122 | ("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] | 123 | "URL for NDN-FCH (Find Closest Hub) service") |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 124 | ("config,c", po::value<std::string>(&configFile), |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 125 | "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] | 126 | ; |
| 127 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 128 | po::variables_map vm; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 129 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 130 | po::store(po::parse_command_line(argc, argv, optionsDescription), vm); |
| 131 | po::notify(vm); |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 132 | } |
| 133 | catch (const std::exception& e) { |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 134 | std::cerr << "ERROR: " << e.what() << "\n\n"; |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 135 | usage(std::cerr, optionsDescription, argv[0]); |
| 136 | return 2; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 137 | } |
| 138 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 139 | if (vm.count("help")) { |
| 140 | usage(std::cout, optionsDescription, argv[0]); |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 141 | return 0; |
| 142 | } |
| 143 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 144 | if (vm.count("version")) { |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 145 | std::cout << NFD_VERSION_BUILD_STRING << std::endl; |
| 146 | return 0; |
| 147 | } |
| 148 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 149 | if (vm.count("config")) { |
| 150 | po::options_description configFileOptions; |
| 151 | configFileOptions.add_options() |
| 152 | ("enabled", po::value<bool>()->default_value(false)) |
| 153 | ; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 154 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 155 | po::store(po::parse_config_file<char>(configFile.data(), configFileOptions), vm); |
| 156 | po::notify(vm); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 157 | } |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 158 | catch (const std::exception& e) { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 159 | std::cerr << "ERROR in config: " << e.what() << "\n\n"; |
| 160 | return 2; |
| 161 | } |
| 162 | if (!vm["enabled"].as<bool>()) { |
| 163 | // not enabled in config |
| 164 | return 0; |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 168 | int exitCode = 0; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 169 | try { |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 170 | Face face; |
| 171 | KeyChain keyChain; |
| 172 | Procedure proc(face, keyChain); |
| 173 | proc.initialize(options); |
| 174 | |
| 175 | if (isDaemon) { |
| 176 | runDaemon(proc); |
| 177 | } |
| 178 | else { |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 179 | proc.onComplete.connect([&exitCode] (bool isSuccess) { exitCode = isSuccess ? 0 : 1; }); |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 180 | proc.runOnce(); |
| 181 | face.processEvents(); |
| 182 | } |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 183 | } |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 184 | catch (const std::exception& e) { |
Davide Pesavento | 97e3302 | 2019-02-14 16:00:50 -0500 | [diff] [blame] | 185 | std::cerr << "ERROR: " << boost::diagnostic_information(e); |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 186 | return 1; |
| 187 | } |
Davide Pesavento | 59769b1 | 2017-11-12 23:52:06 -0500 | [diff] [blame] | 188 | |
Junxiao Shi | cb76686 | 2017-07-07 22:21:04 +0000 | [diff] [blame] | 189 | return exitCode; |
Alexander Afanasyev | 2a655f7 | 2015-01-26 18:38:33 -0800 | [diff] [blame] | 190 | } |
Junxiao Shi | 52fa45c | 2016-11-29 21:18:13 +0000 | [diff] [blame] | 191 | |
| 192 | } // namespace autoconfig |
| 193 | } // namespace tools |
| 194 | } // namespace ndn |
| 195 | |
| 196 | int |
| 197 | main(int argc, char** argv) |
| 198 | { |
| 199 | return ndn::tools::autoconfig::main(argc, argv); |
| 200 | } |