blob: 9e8ae6d4c9ab78168f0fe1c5749d8d30a5264ed1 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014 University of Memphis,
4 * Regents of the University of California
5 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * \author A K M Mahmudul Hoque <ahoque1@memphis.edu>
21 *
22 **/
akmhoque298385a2014-02-13 14:13:09 -060023#include <cstdlib>
akmhoque92afde42014-02-18 14:04:07 -060024#include <string>
akmhoque298385a2014-02-13 14:13:09 -060025#include <sstream>
akmhoque05d5fcf2014-04-15 14:58:45 -050026#include <cstdio>
akmhoque298385a2014-02-13 14:13:09 -060027
28#include "nlsr.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050029#include "adjacent.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050030#include "logger.hpp"
akmhoque2bb198e2014-02-28 11:46:27 -060031
akmhoque298385a2014-02-13 14:13:09 -060032
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
34
akmhoque674b0b12014-05-20 14:33:28 -050035INIT_LOGGER("nlsr");
36
akmhoque53353462014-04-22 08:43:45 -050037using namespace ndn;
38using namespace std;
39
40void
41Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060042{
akmhoquefdbddb12014-05-02 18:35:19 -050043 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl;
44 throw Error("Error: Prefix registration failed");
akmhoque53353462014-04-22 08:43:45 -050045}
akmhoque1fd8c1e2014-02-19 19:41:49 -060046
akmhoque157b0a42014-05-13 00:26:37 -050047void
48Nlsr::onRegistrationSuccess(const ndn::Name& name)
49{
50}
akmhoque1fd8c1e2014-02-19 19:41:49 -060051
akmhoque53353462014-04-22 08:43:45 -050052void
akmhoque31d1d4b2014-05-05 22:08:14 -050053Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -050054{
akmhoque31d1d4b2014-05-05 22:08:14 -050055 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -050056 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -050057 getNlsrFace().setInterestFilter(name,
akmhoque31d1d4b2014-05-05 22:08:14 -050058 ndn::bind(&HelloProtocol::processInterest,
59 &m_helloProtocol, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050060 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque31d1d4b2014-05-05 22:08:14 -050061 ndn::bind(&Nlsr::registrationFailed, this, _1));
62}
63
64void
65Nlsr::setLsaInterestFilter()
66{
akmhoque157b0a42014-05-13 00:26:37 -050067 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -050068 name.append(m_confParam.getSiteName());
69 name.append(m_confParam.getRouterName());
akmhoque674b0b12014-05-20 14:33:28 -050070 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -050071 getNlsrFace().setInterestFilter(name,
72 ndn::bind(&Lsdb::processInterest,
73 &m_nlsrLsdb, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050074 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoquefdbddb12014-05-02 18:35:19 -050075 ndn::bind(&Nlsr::registrationFailed, this, _1));
akmhoque53353462014-04-22 08:43:45 -050076}
77
78void
akmhoquec04e7272014-07-02 11:00:14 -050079Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -050080{
81 std::string strategy("ndn:/localhost/nfd/strategy/broadcast");
akmhoque3cb0cfc2014-06-24 10:32:24 -050082 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
83 broadcastKeyPrefix.append("KEYS");
akmhoque157b0a42014-05-13 00:26:37 -050084 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
85 for (std::list<Adjacent>::iterator it = adjacents.begin();
86 it != adjacents.end(); it++) {
akmhoque3cb0cfc2014-06-24 10:32:24 -050087 m_fib.setStrategy((*it).getName(), strategy);
akmhoque157b0a42014-05-13 00:26:37 -050088 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070089
akmhoque157b0a42014-05-13 00:26:37 -050090 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy);
91 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy);
akmhoque3cb0cfc2014-06-24 10:32:24 -050092 m_fib.setStrategy(broadcastKeyPrefix, strategy);
akmhoque157b0a42014-05-13 00:26:37 -050093}
94
95void
akmhoque53353462014-04-22 08:43:45 -050096Nlsr::initialize()
97{
akmhoque674b0b12014-05-20 14:33:28 -050098 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -050099 m_confParam.buildRouterPrefix();
100 m_nlsrLsdb.setLsaRefreshTime(m_confParam.getLsaRefreshTime());
akmhoque31d1d4b2014-05-05 22:08:14 -0500101 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500102 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500103 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
104 m_sequencingManager.initiateSeqNoFromFile();
akmhoquee1765152014-06-30 11:32:01 -0500105 m_syncLogicHandler.setSyncPrefix(m_confParam.getChronosyncPrefix().toUri());
akmhoque674b0b12014-05-20 14:33:28 -0500106 /* Logging start */
107 m_confParam.writeLog();
108 m_adjacencyList.writeLog();
109 m_namePrefixList.writeLog();
110 /* Logging end */
akmhoquec04e7272014-07-02 11:00:14 -0500111 intializeKey();
112 setStrategies();
akmhoque31d1d4b2014-05-05 22:08:14 -0500113 setInfoInterestFilter();
114 setLsaInterestFilter();
akmhoque674b0b12014-05-20 14:33:28 -0500115 m_nlsrLsdb.buildAndInstallOwnNameLsa();
116 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
akmhoquec8a10f72014-04-25 18:42:55 -0500117 m_syncLogicHandler.createSyncSocket(boost::ref(*this));
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700118 registerKeyPrefix();
akmhoquee1765152014-06-30 11:32:01 -0500119 m_helloProtocol.scheduleInterest(10);
akmhoque18f861a2014-07-07 18:32:04 -0500120
121 m_faceMonitor.startNotification();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700122}
123
124void
125Nlsr::intializeKey()
126{
127 m_defaultIdentity = m_confParam.getRouterPrefix();
128 m_defaultIdentity.append("NLSR");
129
Yingdi Yu9a18bfb2014-06-19 14:06:21 -0700130 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700131
132 ndn::shared_ptr<ndn::IdentityCertificate> certificate = m_keyChain.selfSign(keyName);
133 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
134
135 m_keyChain.addCertificateAsIdentityDefault(*certificate);
136 loadCertToPublish(certificate);
137
138 m_defaultCertName = certificate->getName();
139}
140
141void
142Nlsr::registerKeyPrefix()
143{
144 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
145 keyPrefix.append("KEYS");
146 m_nlsrFace.setInterestFilter(keyPrefix,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700147 ndn::bind(&Nlsr::onKeyInterest,
148 this, _1, _2),
149 ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
150 ndn::bind(&Nlsr::registrationFailed, this, _1));
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700151
152}
153
154void
155Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
156{
157 const ndn::Name& interestName = interest.getName();
158
159 ndn::Name certName = interestName.getSubName(name.size());
160
161 if (certName[-2].toUri() == "ID-CERT")
162 {
163 certName = certName.getPrefix(-1);
164 }
165 else if (certName[-1].toUri() != "ID-CERT")
166 return; //Wrong key interest.
167
168 ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
169
170 if (!static_cast<bool>(cert))
171 return; // cert is not found
172
173 Data data(interestName);
174 data.setContent(cert->wireEncode());
175 m_keyChain.signWithSha256(data);
176
177 m_nlsrFace.put(data);
178}
179
180void
181Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
182{
akmhoque53353462014-04-22 08:43:45 -0500183}
akmhoque5a44dd42014-03-12 18:11:32 -0500184
akmhoque53353462014-04-22 08:43:45 -0500185void
akmhoquee1765152014-06-30 11:32:01 -0500186Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult)
187{
akmhoquee1765152014-06-30 11:32:01 -0500188}
189
190void
191Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error)
192{
193 std::cerr << error << " (code: " << code << ")";
194 throw Error("Error: Face destruction failed");
195}
196
197void
198Nlsr::destroyFaces()
199{
200 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
201 for (std::list<Adjacent>::iterator it = adjacents.begin();
202 it != adjacents.end(); it++) {
akmhoquec04e7272014-07-02 11:00:14 -0500203 m_fib.destroyFace((*it).getConnectingFaceUri(),
204 ndn::bind(&Nlsr::onDestroyFaceSuccess, this, _1),
205 ndn::bind(&Nlsr::onDestroyFaceFailure, this, _1, _2));
akmhoquee1765152014-06-30 11:32:01 -0500206 }
207}
208
akmhoquec04e7272014-07-02 11:00:14 -0500209
210
akmhoquee1765152014-06-30 11:32:01 -0500211
212void
akmhoquec04e7272014-07-02 11:00:14 -0500213Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500214{
akmhoquec04e7272014-07-02 11:00:14 -0500215 ndn::nfd::FaceEventKind kind = faceEventNotification.getKind();
216 if (kind == ndn::nfd::FACE_EVENT_DESTROYED) {
217 uint64_t faceId = faceEventNotification.getFaceId();
218 Adjacent *adjacent = m_adjacencyList.findAdjacent(faceId);
219 if (adjacent != 0) {
220 _LOG_DEBUG("Face to " << adjacent->getName() << "deleted");
221 adjacent->setFaceId(0);
222 }
223 }
akmhoquee1765152014-06-30 11:32:01 -0500224}
225
226
227void
akmhoque53353462014-04-22 08:43:45 -0500228Nlsr::startEventLoop()
229{
akmhoquefdbddb12014-05-02 18:35:19 -0500230 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500231}
akmhoque5a44dd42014-03-12 18:11:32 -0500232
akmhoquefdbddb12014-05-02 18:35:19 -0500233void
akmhoque53353462014-04-22 08:43:45 -0500234Nlsr::usage(const string& progname)
235{
236 cout << "Usage: " << progname << " [OPTIONS...]" << endl;
237 cout << " NDN routing...." << endl;
238 cout << " -d, --daemon Run in daemon mode" << endl;
239 cout << " -f, --config_file Specify configuration file name" << endl;
240 cout << " -p, --api_port port where api client will connect" << endl;
241 cout << " -h, --help Display this help message" << endl;
akmhoque53353462014-04-22 08:43:45 -0500242}
akmhoque298385a2014-02-13 14:13:09 -0600243
akmhoqueb1710aa2014-02-19 17:13:36 -0600244
245} // namespace nlsr