blob: a5544a8caeae8b5854ff5c54588ad038a3e13bd2 [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"
Alexander Afanasyevedf1e2b2015-04-19 19:31:17 -0700100 " websocket\n"
101 " {\n"
102 " listen yes\n"
103 " port 9696\n"
104 " enable_v4 yes\n"
105 " enable_v6 yes\n"
106 " }\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -0800107 "}\n"
108 "\n"
109 "authorizations\n"
110 "{\n"
111 " authorize\n"
112 " {\n"
113 " certfile any\n"
114 " privileges\n"
115 " {\n"
116 " faces\n"
117 " fib\n"
118 " strategy-choice\n"
119 " }\n"
120 " }\n"
121 "}\n"
122 "\n"
123 "rib\n"
124 "{\n"
125 " localhost_security\n"
126 " {\n"
127 " trust-anchor\n"
128 " {\n"
129 " type any\n"
130 " }\n"
131 " }\n"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800132 "\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -0800133 " remote_register\n"
134 " {\n"
135 " cost 15\n"
136 " timeout 10000\n"
137 " retry 0\n"
138 " refresh_interval 300\n"
139 " }\n"
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800140 "}\n"
Alexander Afanasyev216df012015-02-10 17:35:46 -0800141 "\n";
142
143 std::istringstream input(initialConfig);
144 boost::property_tree::read_info(input, m_config);
145
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800146 std::unique_lock<std::mutex> lock(m_pointerMutex);
147 m_nfd.reset(new Nfd(m_config, m_keyChain));
148 m_nrd.reset(new rib::Nrd(m_config, m_keyChain));
Alexander Afanasyev216df012015-02-10 17:35:46 -0800149
150 m_nfd->initialize();
151 m_nrd->initialize();
152 }
153
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800154 ~Runner()
Alexander Afanasyev216df012015-02-10 17:35:46 -0800155 {
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800156 stop();
157 m_io->reset();
158 }
159
160 void
161 start()
162 {
163 {
164 std::unique_lock<std::mutex> lock(m_pointerMutex);
165 m_io = &getGlobalIoService();
166 }
167 m_io->run();
168 m_io->reset();
Alexander Afanasyev216df012015-02-10 17:35:46 -0800169 }
170
171 void
172 stop()
173 {
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800174 std::unique_lock<std::mutex> lock(m_pointerMutex);
175
176 m_io->post([this] {
177 m_io->stop();
178 this->m_nrd.reset();
179 this->m_nfd.reset();
180 });
Alexander Afanasyev216df012015-02-10 17:35:46 -0800181 }
182
183private:
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800184 std::mutex m_pointerMutex;
185 boost::asio::io_service* m_io;
Alexander Afanasyev216df012015-02-10 17:35:46 -0800186 ndn::KeyChain m_keyChain;
187 unique_ptr<Nfd> m_nfd; // will use globalIoService
188 unique_ptr<rib::Nrd> m_nrd; // will use globalIoService
189
190 nfd::ConfigSection m_config;
191};
192
193static unique_ptr<Runner> g_runner;
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800194static boost::thread g_thread;
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700195static std::map<std::string, std::string> g_params;
Alexander Afanasyev216df012015-02-10 17:35:46 -0800196
197} // namespace nfd
Ivan Yeodb0052d2015-02-08 17:27:04 -0800198
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700199
200std::map<std::string, std::string>
201getParams(JNIEnv* env, jobject jParams)
202{
203 std::map<std::string, std::string> params;
204
205 jclass jcMap = env->GetObjectClass(jParams);
206 jclass jcSet = env->FindClass("java/util/Set");
207 jclass jcIterator = env->FindClass("java/util/Iterator");
208 jclass jcMapEntry = env->FindClass("java/util/Map$Entry");
209
210 jmethodID jcMapEntrySet = env->GetMethodID(jcMap, "entrySet", "()Ljava/util/Set;");
211 jmethodID jcSetIterator = env->GetMethodID(jcSet, "iterator", "()Ljava/util/Iterator;");
212 jmethodID jcIteratorHasNext = env->GetMethodID(jcIterator, "hasNext", "()Z");
213 jmethodID jcIteratorNext = env->GetMethodID(jcIterator, "next", "()Ljava/lang/Object;");
214 jmethodID jcMapEntryGetKey = env->GetMethodID(jcMapEntry, "getKey", "()Ljava/lang/Object;");
215 jmethodID jcMapEntryGetValue = env->GetMethodID(jcMapEntry, "getValue", "()Ljava/lang/Object;");
216
217 jobject jParamsEntrySet = env->CallObjectMethod(jParams, jcMapEntrySet);
218 jobject jParamsIterator = env->CallObjectMethod(jParamsEntrySet, jcSetIterator);
219 jboolean bHasNext = env->CallBooleanMethod(jParamsIterator, jcIteratorHasNext);
220 while (bHasNext) {
221 jobject entry = env->CallObjectMethod(jParamsIterator, jcIteratorNext);
222
223 jstring jKey = (jstring)env->CallObjectMethod(entry, jcMapEntryGetKey);
224 jstring jValue = (jstring)env->CallObjectMethod(entry, jcMapEntryGetValue);
225
226 const char* cKey = env->GetStringUTFChars(jKey, nullptr);
227 const char* cValue = env->GetStringUTFChars(jValue, nullptr);
228
229 params.insert(std::make_pair(cKey, cValue));
230
231 env->ReleaseStringUTFChars(jKey, cKey);
232 env->ReleaseStringUTFChars(jValue, cValue);
233
234 bHasNext = env->CallBooleanMethod(jParamsIterator, jcIteratorHasNext);
235 }
236
237 return params;
238}
239
240
Ivan Yeodb0052d2015-02-08 17:27:04 -0800241JNIEXPORT void JNICALL
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700242Java_net_named_1data_nfd_service_NfdService_startNfd(JNIEnv* env, jclass, jobject jParams)
Ivan Yeodb0052d2015-02-08 17:27:04 -0800243{
Alexander Afanasyev216df012015-02-10 17:35:46 -0800244 if (nfd::g_runner.get() == nullptr) {
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700245 nfd::g_params = getParams(env, jParams);
246
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800247 // set/update HOME environment variable
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700248 ::setenv("HOME", nfd::g_params["homePath"].c_str(), true);
249 NFD_LOG_INFO("Use [" << nfd::g_params["homePath"] << "] as a security storage");
Ivan Yeodb0052d2015-02-08 17:27:04 -0800250
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800251 nfd::g_thread = boost::thread([] {
252 NFD_LOG_INFO("Starting NFD...");
253 try {
254 nfd::g_runner.reset(new nfd::Runner());
255 nfd::g_runner->start();
256 }
257 catch (const std::exception& e) {
258 NFD_LOG_FATAL(e.what());
259 }
260 catch (const nfd::PrivilegeHelper::Error& e) {
261 NFD_LOG_FATAL("PrivilegeHelper: " << e.what());
262 }
263 catch (...) {
264 NFD_LOG_FATAL("Unknown fatal error");
265 }
Alexander Afanasyev216df012015-02-10 17:35:46 -0800266
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800267 nfd::g_runner.reset();
268 nfd::scheduler::resetGlobalScheduler();
269 nfd::resetGlobalIoService();
270 NFD_LOG_INFO("NFD stopped");
271 });
272 }
Ivan Yeodb0052d2015-02-08 17:27:04 -0800273}
274
275JNIEXPORT void JNICALL
Ivan Yeo6296dce2015-02-10 23:29:43 -0800276Java_net_named_1data_nfd_service_NfdService_stopNfd(JNIEnv*, jclass)
Ivan Yeodb0052d2015-02-08 17:27:04 -0800277{
Alexander Afanasyevc134b6f2015-02-12 17:01:44 -0800278 if (nfd::g_runner.get() != nullptr) {
279 NFD_LOG_INFO("Stopping NFD...");
280 nfd::g_runner->stop();
281 // do not block anything
Alexander Afanasyev216df012015-02-10 17:35:46 -0800282 }
Ivan Yeodb0052d2015-02-08 17:27:04 -0800283}
Alexander Afanasyev45b7ad62015-04-19 22:00:45 -0700284
285JNIEXPORT jobject JNICALL
286Java_net_named_1data_nfd_service_NfdService_getNfdLogModules(JNIEnv* env, jclass)
287{
288 jclass jcLinkedList = env->FindClass("java/util/LinkedList");
289 jmethodID jcLinkedListConstructor = env->GetMethodID(jcLinkedList, "<init>", "()V");
290 jmethodID jcLinkedListAdd = env->GetMethodID(jcLinkedList, "add", "(Ljava/lang/Object;)Z");
291
292 jobject jModules = env->NewObject(jcLinkedList, jcLinkedListConstructor);
293
294 for (const auto& module : nfd::LoggerFactory::getInstance().getModules()) {
295 jstring jModule = env->NewStringUTF(module.c_str());
296 env->CallBooleanMethod(jModules, jcLinkedListAdd, jModule);
297 }
298
299 return jModules;
300}