blob: 2ad3d455d15d26a4091234eb54201939736e4dae [file] [log] [blame]
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa997d292017-08-24 20:16:59 -04002/*
3 * Copyright (c) 2014-2017, Regents of the University of California,
Alexander Afanasyev31c781e2015-02-09 17:39:59 -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.
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/>.
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060024 */
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080025
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080026#include "nfd.hpp"
Junxiao Shib2600172016-07-11 08:53:53 +000027#include "rib/service.hpp"
Junxiao Shi98e29f42014-03-31 10:27:26 -070028
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000029#include "core/version.hpp"
Junxiao Shi98e29f42014-03-31 10:27:26 -070030#include "core/global-io.hpp"
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080031#include "core/logger.hpp"
Steve DiBenedetto24b9a642014-04-07 15:45:39 -060032#include "core/privilege-helper.hpp"
Spyridon Mastorakisd374c402015-09-09 15:07:00 -070033#include "core/extended-error-message.hpp"
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080034
35#include <string.h>
36
37#include <boost/filesystem.hpp>
38#include <boost/program_options/options_description.hpp>
39#include <boost/program_options/variables_map.hpp>
40#include <boost/program_options/parsers.hpp>
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080041
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080042// boost::thread is used instead of std::thread to guarantee proper cleanup of thread local storage,
Davide Pesaventocafae242016-04-22 02:21:35 +020043// see http://www.boost.org/doc/libs/1_54_0/doc/html/thread/thread_local_storage.html
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080044#include <boost/thread.hpp>
45
46#include <atomic>
47#include <condition_variable>
Davide Pesaventoa997d292017-08-24 20:16:59 -040048#include <iostream>
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080049
Junxiao Shi09bf7c42014-01-31 11:10:25 -070050namespace nfd {
51
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070052NFD_LOG_INIT("NFD");
Junxiao Shi09bf7c42014-01-31 11:10:25 -070053
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080054/** \brief Executes NFD with RIB manager
55 *
56 * NFD (main forwarding procedure) and RIB manager execute in two different threads.
Junxiao Shi71d12142016-07-23 20:10:18 +000057 * Each thread has its own instances of global io_service and global scheduler.
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080058 *
59 * When either of the daemons fails, execution of non-failed daemon will be terminated as
60 * well. In other words, when NFD fails, RIB manager will be terminated; when RIB manager
61 * fails, NFD will be terminated.
62 */
Alexander Afanasyev31367922015-02-09 20:51:10 -080063class NfdRunner : noncopyable
Junxiao Shi09bf7c42014-01-31 11:10:25 -070064{
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -070065public:
Alexander Afanasyev5959b012014-06-02 19:18:12 +030066 explicit
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080067 NfdRunner(const std::string& configFile)
Alexander Afanasyevf08a7372015-02-09 21:28:19 -080068 : m_nfd(configFile, m_nfdKeyChain)
69 , m_configFile(configFile)
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080070 , m_terminationSignalSet(getGlobalIoService())
71 , m_reloadSignalSet(getGlobalIoService())
Alexander Afanasyev5959b012014-06-02 19:18:12 +030072 {
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080073 m_terminationSignalSet.add(SIGINT);
74 m_terminationSignalSet.add(SIGTERM);
75 m_terminationSignalSet.async_wait(bind(&NfdRunner::terminate, this, _1, _2));
Alexander Afanasyev5959b012014-06-02 19:18:12 +030076
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080077 m_reloadSignalSet.add(SIGHUP);
78 m_reloadSignalSet.async_wait(bind(&NfdRunner::reload, this, _1, _2));
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -070079 }
80
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -070081 static void
82 printUsage(std::ostream& os, const std::string& programName)
83 {
84 os << "Usage: \n"
85 << " " << programName << " [options]\n"
86 << "\n"
87 << "Run NFD forwarding daemon\n"
88 << "\n"
89 << "Options:\n"
Alexander Afanasyevb47d5382014-05-05 14:35:03 -070090 << " [--help] - print this help message\n"
91 << " [--version] - print version and exit\n"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060092 << " [--modules] - list available logging modules\n"
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -070093 << " [--config /path/to/nfd.conf] - path to configuration file "
94 << "(default: " << DEFAULT_CONFIG_FILE << ")\n"
95 ;
96 }
97
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060098 static void
99 printModules(std::ostream& os)
100 {
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600101 os << "Available logging modules: \n";
102
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800103 for (const auto& module : LoggerFactory::getInstance().getModules()) {
104 os << module << "\n";
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700105 }
106 }
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700107
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700108 void
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800109 initialize()
110 {
111 m_nfd.initialize();
112 }
113
114 int
115 run()
116 {
117 /** \brief return value
118 * A non-zero value is assigned when either NFD or RIB manager (running in a separate
119 * thread) fails.
120 */
121 std::atomic_int retval(0);
122
123 boost::asio::io_service* const mainIo = &getGlobalIoService();
Junxiao Shib2600172016-07-11 08:53:53 +0000124 boost::asio::io_service* ribIo = nullptr;
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800125
126 // Mutex and conditional variable to implement synchronization between main and RIB manager
127 // threads:
Junxiao Shib2600172016-07-11 08:53:53 +0000128 // - to block main thread until RIB manager thread starts and initializes ribIo (to allow
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800129 // stopping it later)
130 std::mutex m;
131 std::condition_variable cv;
132
133 std::string configFile = this->m_configFile; // c++11 lambda cannot capture member variables
Junxiao Shib2600172016-07-11 08:53:53 +0000134 boost::thread ribThread([configFile, &retval, &ribIo, mainIo, &cv, &m] {
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800135 {
136 std::lock_guard<std::mutex> lock(m);
Junxiao Shib2600172016-07-11 08:53:53 +0000137 ribIo = &getGlobalIoService();
138 BOOST_ASSERT(ribIo != mainIo);
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800139 }
Junxiao Shib2600172016-07-11 08:53:53 +0000140 cv.notify_all(); // notify that ribIo has been assigned
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800141
142 try {
Junxiao Shib2600172016-07-11 08:53:53 +0000143 ndn::KeyChain ribKeyChain;
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800144 // must be created inside a separate thread
Junxiao Shib2600172016-07-11 08:53:53 +0000145 rib::Service ribService(configFile, ribKeyChain);
146 ribService.initialize();
147 getGlobalIoService().run(); // ribIo is not thread-safe to use here
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800148 }
149 catch (const std::exception& e) {
150 NFD_LOG_FATAL(e.what());
151 retval = 6;
152 mainIo->stop();
153 }
154
155 {
156 std::lock_guard<std::mutex> lock(m);
Junxiao Shib2600172016-07-11 08:53:53 +0000157 ribIo = nullptr;
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800158 }
159 });
160
161 {
Junxiao Shib2600172016-07-11 08:53:53 +0000162 // Wait to guarantee that ribIo is properly initialized, so it can be used to terminate
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800163 // RIB manager thread.
164 std::unique_lock<std::mutex> lock(m);
Junxiao Shib2600172016-07-11 08:53:53 +0000165 cv.wait(lock, [&ribIo] { return ribIo != nullptr; });
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800166 }
167
168 try {
169 mainIo->run();
170 }
171 catch (const std::exception& e) {
Junxiao Shi71d12142016-07-23 20:10:18 +0000172 NFD_LOG_FATAL(getExtendedErrorMessage(e));
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800173 retval = 4;
174 }
175 catch (const PrivilegeHelper::Error& e) {
176 NFD_LOG_FATAL(e.what());
177 retval = 5;
178 }
179
180 {
Junxiao Shib2600172016-07-11 08:53:53 +0000181 // ribIo is guaranteed to be alive at this point
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800182 std::lock_guard<std::mutex> lock(m);
Junxiao Shib2600172016-07-11 08:53:53 +0000183 if (ribIo != nullptr) {
184 ribIo->stop();
185 ribIo = nullptr;
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800186 }
187 }
Junxiao Shib2600172016-07-11 08:53:53 +0000188 ribThread.join();
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800189
190 return retval;
191 }
192
193 void
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800194 terminate(const boost::system::error_code& error, int signalNo)
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700195 {
196 if (error)
197 return;
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700198
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800199 NFD_LOG_INFO("Caught signal '" << ::strsignal(signalNo) << "', exiting...");
200 getGlobalIoService().stop();
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700201 }
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600202
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300203 void
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800204 reload(const boost::system::error_code& error, int signalNo)
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300205 {
206 if (error)
207 return;
208
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800209 NFD_LOG_INFO("Caught signal '" << ::strsignal(signalNo) << "', reloading...");
210 m_nfd.reloadConfigFile();
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300211
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800212 m_reloadSignalSet.async_wait(bind(&NfdRunner::reload, this, _1, _2));
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300213 }
214
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700215private:
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800216 ndn::KeyChain m_nfdKeyChain;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800217 Nfd m_nfd;
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800218 std::string m_configFile;
219
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800220 boost::asio::signal_set m_terminationSignalSet;
221 boost::asio::signal_set m_reloadSignalSet;
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700222};
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700223
224} // namespace nfd
225
226int
227main(int argc, char** argv)
228{
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700229 using namespace nfd;
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700230
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800231 namespace po = boost::program_options;
232
233 po::options_description description;
234
235 std::string configFile = DEFAULT_CONFIG_FILE;
236 description.add_options()
237 ("help,h", "print this help message")
238 ("version,V", "print version and exit")
239 ("modules,m", "list available logging modules")
240 ("config,c", po::value<std::string>(&configFile), "path to configuration file")
241 ;
242
243 po::variables_map vm;
244 try {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700245 po::store(po::command_line_parser(argc, argv).options(description).run(), vm);
246 po::notify(vm);
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800247 }
248 catch (const std::exception& e) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700249 // avoid NFD_LOG_FATAL to ensure that errors related to command-line parsing always appear on the
250 // terminal and are not littered with timestamps and other things added by the logging subsystem
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800251 std::cerr << "ERROR: " << e.what() << std::endl;
252 NfdRunner::printUsage(std::cerr, argv[0]);
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700253 return 1;
254 }
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700255
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800256 if (vm.count("help") > 0) {
257 NfdRunner::printUsage(std::cout, argv[0]);
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700258 return 0;
259 }
260
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800261 if (vm.count("version") > 0) {
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700262 std::cout << NFD_VERSION_BUILD_STRING << std::endl;
263 return 0;
264 }
265
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800266 if (vm.count("modules") > 0) {
267 NfdRunner::printModules(std::cout);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600268 return 0;
269 }
270
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800271 NfdRunner runner(configFile);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600272
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700273 try {
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800274 runner.initialize();
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700275 }
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800276 catch (const boost::filesystem::filesystem_error& e) {
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700277 if (e.code() == boost::system::errc::permission_denied) {
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600278 NFD_LOG_FATAL("Permissions denied for " << e.path1() << ". " <<
279 argv[0] << " should be run as superuser");
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700280 return 3;
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700281 }
282 else {
Spyridon Mastorakisd374c402015-09-09 15:07:00 -0700283 NFD_LOG_FATAL(getExtendedErrorMessage(e));
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700284 return 2;
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700285 }
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600286 }
287 catch (const std::exception& e) {
Spyridon Mastorakisd374c402015-09-09 15:07:00 -0700288 NFD_LOG_FATAL(getExtendedErrorMessage(e));
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700289 return 2;
290 }
Steve DiBenedetto24b9a642014-04-07 15:45:39 -0600291 catch (const PrivilegeHelper::Error& e) {
292 // PrivilegeHelper::Errors do not inherit from std::exception
293 // and represent seteuid/gid failures
294
295 NFD_LOG_FATAL(e.what());
296 return 3;
297 }
298
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800299 return runner.run();
Alexander Afanasyev5a4388a2014-03-27 18:02:55 -0700300}