blob: 5142965482db48b53df32dc60a990af0077ec1e0 [file] [log] [blame]
Ivan Yeodb0052d2015-02-08 17:27:04 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2015 Regents of the University of California
4 *
5 * This file is part of NFD (Named Data Networking Forwarding Daemon) Android.
6 * See AUTHORS.md for complete list of NFD Android authors and contributors.
7 *
8 * NFD Android is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NFD Android is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NFD Android, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "nfd-wrapper.hpp"
Ivan Yeodb0052d2015-02-08 17:27:04 -080021
Alexander Afanasyev216df012015-02-10 17:35:46 -080022#include "daemon/nfd.hpp"
23#include "rib/nrd.hpp"
Ivan Yeodb0052d2015-02-08 17:27:04 -080024
Alexander Afanasyev216df012015-02-10 17:35:46 -080025#include "core/global-io.hpp"
26#include "core/config-file.hpp"
27#include "core/logger.hpp"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080028#include "core/privilege-helper.hpp"
Alexander Afanasyev216df012015-02-10 17:35:46 -080029
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080030#include <stdlib.h>
Alexander Afanasyev216df012015-02-10 17:35:46 -080031#include <boost/property_tree/info_parser.hpp>
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080032#include <boost/thread.hpp>
33#include <mutex>
Alexander Afanasyev216df012015-02-10 17:35:46 -080034
35NFD_LOG_INIT("NfdWrapper");
36
37namespace nfd {
38
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080039
40// A little bit of cheating to make sure NFD can be properly restarted
41
42namespace scheduler {
43// defined in scheduler.cpp
44void
45resetGlobalScheduler();
46} // namespace scheduler
47
48void
49resetGlobalIoService();
50
51
Alexander Afanasyev216df012015-02-10 17:35:46 -080052class Runner
53{
54public:
55 Runner()
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080056 : m_io(nullptr)
Alexander Afanasyev216df012015-02-10 17:35:46 -080057 {
58 std::string initialConfig =
59 "general\n"
60 "{\n"
61 "}\n"
62 "\n"
63 "log\n"
64 "{\n"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -080065 " default_level ALL\n"
66 " NameTree INFO\n"
67 " BestRouteStrategy2 INFO\n"
68 " InternalFace INFO\n"
69 " Forwarder INFO\n"
70 " ContentStore INFO\n"
71 " DeadNonceList INFO\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -080072 "}\n"
73 "tables\n"
74 "{\n"
75 " cs_max_packets 100\n"
76 "\n"
77 " strategy_choice\n"
78 " {\n"
79 " / /localhost/nfd/strategy/best-route\n"
80 " /localhost /localhost/nfd/strategy/broadcast\n"
81 " /localhost/nfd /localhost/nfd/strategy/best-route\n"
82 " /ndn/broadcast /localhost/nfd/strategy/broadcast\n"
83 " }\n"
84 "}\n"
85 "\n"
86 "face_system\n"
87 "{\n"
88 " tcp\n"
89 " {\n"
90 " port 6363\n"
91 " }\n"
92 "\n"
93 " udp\n"
94 " {\n"
95 " port 6363\n"
96 " idle_timeout 600\n"
97 " keep_alive_interval 25\n"
98 " mcast no\n"
99 " }\n"
100 "}\n"
101 "\n"
102 "authorizations\n"
103 "{\n"
104 " authorize\n"
105 " {\n"
106 " certfile any\n"
107 " privileges\n"
108 " {\n"
109 " faces\n"
110 " fib\n"
111 " strategy-choice\n"
112 " }\n"
113 " }\n"
114 "}\n"
115 "\n"
116 "rib\n"
117 "{\n"
118 " localhost_security\n"
119 " {\n"
120 " trust-anchor\n"
121 " {\n"
122 " type any\n"
123 " }\n"
124 " }\n"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800125 "\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -0800126 " remote_register\n"
127 " {\n"
128 " cost 15\n"
129 " timeout 10000\n"
130 " retry 0\n"
131 " refresh_interval 300\n"
132 " }\n"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800133 "}\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -0800134 "\n";
135
136 std::istringstream input(initialConfig);
137 boost::property_tree::read_info(input, m_config);
138
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800139 std::unique_lock<std::mutex> lock(m_pointerMutex);
140 m_nfd.reset(new Nfd(m_config, m_keyChain));
141 m_nrd.reset(new rib::Nrd(m_config, m_keyChain));
Alexander Afanasyev216df012015-02-10 17:35:46 -0800142
143 m_nfd->initialize();
144 m_nrd->initialize();
145 }
146
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800147 ~Runner()
Alexander Afanasyev216df012015-02-10 17:35:46 -0800148 {
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800149 stop();
150 m_io->reset();
151 }
152
153 void
154 start()
155 {
156 {
157 std::unique_lock<std::mutex> lock(m_pointerMutex);
158 m_io = &getGlobalIoService();
159 }
160 m_io->run();
161 m_io->reset();
Alexander Afanasyev216df012015-02-10 17:35:46 -0800162 }
163
164 void
165 stop()
166 {
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800167 std::unique_lock<std::mutex> lock(m_pointerMutex);
168
169 m_io->post([this] {
170 m_io->stop();
171 this->m_nrd.reset();
172 this->m_nfd.reset();
173 });
Alexander Afanasyev216df012015-02-10 17:35:46 -0800174 }
175
176private:
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800177 std::mutex m_pointerMutex;
178 boost::asio::io_service* m_io;
Alexander Afanasyev216df012015-02-10 17:35:46 -0800179 ndn::KeyChain m_keyChain;
180 unique_ptr<Nfd> m_nfd; // will use globalIoService
181 unique_ptr<rib::Nrd> m_nrd; // will use globalIoService
182
183 nfd::ConfigSection m_config;
184};
185
186static unique_ptr<Runner> g_runner;
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800187static boost::thread g_thread;
Alexander Afanasyev216df012015-02-10 17:35:46 -0800188
189} // namespace nfd
Ivan Yeodb0052d2015-02-08 17:27:04 -0800190
191JNIEXPORT void JNICALL
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800192Java_net_named_1data_nfd_wrappers_NfdWrapper_startNfd(JNIEnv* env, jclass, jstring homePathJ)
Ivan Yeodb0052d2015-02-08 17:27:04 -0800193{
Alexander Afanasyev216df012015-02-10 17:35:46 -0800194 if (nfd::g_runner.get() == nullptr) {
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800195 // set/update HOME environment variable
196 const char* homePath = env->GetStringUTFChars(homePathJ, nullptr);
197 ::setenv("HOME", homePath, true);
198 env->ReleaseStringUTFChars(homePathJ, homePath);
199 NFD_LOG_INFO("Use [" << homePath << "] as a security storage");
Ivan Yeodb0052d2015-02-08 17:27:04 -0800200
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800201 nfd::g_thread = boost::thread([] {
202 NFD_LOG_INFO("Starting NFD...");
203 try {
204 nfd::g_runner.reset(new nfd::Runner());
205 nfd::g_runner->start();
206 }
207 catch (const std::exception& e) {
208 NFD_LOG_FATAL(e.what());
209 }
210 catch (const nfd::PrivilegeHelper::Error& e) {
211 NFD_LOG_FATAL("PrivilegeHelper: " << e.what());
212 }
213 catch (...) {
214 NFD_LOG_FATAL("Unknown fatal error");
215 }
Alexander Afanasyev216df012015-02-10 17:35:46 -0800216
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800217 nfd::g_runner.reset();
218 nfd::scheduler::resetGlobalScheduler();
219 nfd::resetGlobalIoService();
220 NFD_LOG_INFO("NFD stopped");
221 });
222 }
Ivan Yeodb0052d2015-02-08 17:27:04 -0800223}
224
225JNIEXPORT void JNICALL
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800226Java_net_named_1data_nfd_wrappers_NfdWrapper_stopNfd(JNIEnv*, jclass)
Ivan Yeodb0052d2015-02-08 17:27:04 -0800227{
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800228 if (nfd::g_runner.get() != nullptr) {
229 NFD_LOG_INFO("Stopping NFD...");
230 nfd::g_runner->stop();
231 // do not block anything
Alexander Afanasyev216df012015-02-10 17:35:46 -0800232 }
Ivan Yeodb0052d2015-02-08 17:27:04 -0800233}