akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- 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 | **/ |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 23 | #include <cstdlib> |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame] | 24 | #include <string> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 25 | #include <sstream> |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame] | 26 | #include <cstdio> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 27 | |
| 28 | #include "nlsr.hpp" |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 29 | #include "adjacent.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 30 | #include "logger.hpp" |
akmhoque | 2bb198e | 2014-02-28 11:46:27 -0600 | [diff] [blame] | 31 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 32 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 33 | namespace nlsr { |
| 34 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 35 | INIT_LOGGER("nlsr"); |
| 36 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 37 | using namespace ndn; |
| 38 | using namespace std; |
| 39 | |
| 40 | void |
| 41 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 42 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 43 | std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl; |
| 44 | throw Error("Error: Prefix registration failed"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 45 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 46 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 47 | void |
| 48 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 49 | { |
| 50 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 51 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 52 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 53 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 54 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 55 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 56 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 57 | getNlsrFace().setInterestFilter(name, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 58 | ndn::bind(&HelloProtocol::processInterest, |
| 59 | &m_helloProtocol, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 60 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 61 | ndn::bind(&Nlsr::registrationFailed, this, _1)); |
| 62 | } |
| 63 | |
| 64 | void |
| 65 | Nlsr::setLsaInterestFilter() |
| 66 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 67 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 68 | name.append(m_confParam.getSiteName()); |
| 69 | name.append(m_confParam.getRouterName()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 70 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 71 | getNlsrFace().setInterestFilter(name, |
| 72 | ndn::bind(&Lsdb::processInterest, |
| 73 | &m_nlsrLsdb, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 74 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 75 | ndn::bind(&Nlsr::registrationFailed, this, _1)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 79 | Nlsr::registerPrefixes() |
| 80 | { |
| 81 | std::string strategy("ndn:/localhost/nfd/strategy/broadcast"); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 82 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 83 | broadcastKeyPrefix.append("KEYS"); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 84 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 85 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 86 | it != adjacents.end(); it++) { |
| 87 | m_fib.registerPrefix((*it).getName(), (*it).getConnectingFaceUri(), |
| 88 | (*it).getLinkCost(), 31536000); /* One Year in seconds */ |
| 89 | m_fib.registerPrefix(m_confParam.getChronosyncPrefix(), |
| 90 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
| 91 | m_fib.registerPrefix(m_confParam.getLsaPrefix(), |
| 92 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 93 | m_fib.registerPrefix(broadcastKeyPrefix, |
| 94 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
| 95 | m_fib.setStrategy((*it).getName(), strategy); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 96 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 97 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 98 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy); |
| 99 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 100 | m_fib.setStrategy(broadcastKeyPrefix, strategy); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 104 | Nlsr::initialize() |
| 105 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 106 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 107 | m_confParam.buildRouterPrefix(); |
| 108 | m_nlsrLsdb.setLsaRefreshTime(m_confParam.getLsaRefreshTime()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 109 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 110 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 111 | m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir()); |
| 112 | m_sequencingManager.initiateSeqNoFromFile(); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 113 | m_syncLogicHandler.setSyncPrefix(m_confParam.getChronosyncPrefix().toUri()); |
| 114 | intializeKey(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 115 | /* Logging start */ |
| 116 | m_confParam.writeLog(); |
| 117 | m_adjacencyList.writeLog(); |
| 118 | m_namePrefixList.writeLog(); |
| 119 | /* Logging end */ |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 120 | |
| 121 | createFaces(); |
| 122 | } |
| 123 | |
| 124 | void |
| 125 | Nlsr::start() |
| 126 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 127 | registerPrefixes(); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 128 | setInfoInterestFilter(); |
| 129 | setLsaInterestFilter(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 130 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
| 131 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 132 | m_syncLogicHandler.createSyncSocket(boost::ref(*this)); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 133 | registerKeyPrefix(); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 134 | m_helloProtocol.scheduleInterest(10); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | void |
| 138 | Nlsr::intializeKey() |
| 139 | { |
| 140 | m_defaultIdentity = m_confParam.getRouterPrefix(); |
| 141 | m_defaultIdentity.append("NLSR"); |
| 142 | |
Yingdi Yu | 9a18bfb | 2014-06-19 14:06:21 -0700 | [diff] [blame] | 143 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 144 | |
| 145 | ndn::shared_ptr<ndn::IdentityCertificate> certificate = m_keyChain.selfSign(keyName); |
| 146 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 147 | |
| 148 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 149 | loadCertToPublish(certificate); |
| 150 | |
| 151 | m_defaultCertName = certificate->getName(); |
| 152 | } |
| 153 | |
| 154 | void |
| 155 | Nlsr::registerKeyPrefix() |
| 156 | { |
| 157 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 158 | keyPrefix.append("KEYS"); |
| 159 | m_nlsrFace.setInterestFilter(keyPrefix, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 160 | ndn::bind(&Nlsr::onKeyInterest, |
| 161 | this, _1, _2), |
| 162 | ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
| 163 | ndn::bind(&Nlsr::registrationFailed, this, _1)); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 164 | |
| 165 | } |
| 166 | |
| 167 | void |
| 168 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 169 | { |
| 170 | const ndn::Name& interestName = interest.getName(); |
| 171 | |
| 172 | ndn::Name certName = interestName.getSubName(name.size()); |
| 173 | |
| 174 | if (certName[-2].toUri() == "ID-CERT") |
| 175 | { |
| 176 | certName = certName.getPrefix(-1); |
| 177 | } |
| 178 | else if (certName[-1].toUri() != "ID-CERT") |
| 179 | return; //Wrong key interest. |
| 180 | |
| 181 | ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
| 182 | |
| 183 | if (!static_cast<bool>(cert)) |
| 184 | return; // cert is not found |
| 185 | |
| 186 | Data data(interestName); |
| 187 | data.setContent(cert->wireEncode()); |
| 188 | m_keyChain.signWithSha256(data); |
| 189 | |
| 190 | m_nlsrFace.put(data); |
| 191 | } |
| 192 | |
| 193 | void |
| 194 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 195 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 196 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 197 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 198 | void |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 199 | Nlsr::createFace(const std::string& faceUri, |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 200 | const CommandSucceedCallback& onSuccess, |
| 201 | const CommandFailCallback& onFailure) |
| 202 | { |
| 203 | ndn::nfd::ControlParameters faceParameters; |
| 204 | faceParameters |
akmhoque | dbee8e3 | 2014-06-30 12:46:02 -0500 | [diff] [blame^] | 205 | .setUri(faceUri); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 206 | m_controller.start<ndn::nfd::FaceCreateCommand>(faceParameters, |
| 207 | onSuccess, |
| 208 | onFailure); |
| 209 | } |
| 210 | |
| 211 | void |
| 212 | Nlsr::onCreateFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult) |
| 213 | { |
| 214 | m_nFacesCreated++; |
| 215 | if (m_nFacesToCreate == m_nFacesCreated) |
| 216 | { |
| 217 | start(); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | void |
| 222 | Nlsr::onCreateFaceFailure(int32_t code, const std::string& error) |
| 223 | { |
| 224 | _LOG_DEBUG(error << " (code: " << code << ")"); |
| 225 | destroyFaces(); |
| 226 | throw Error("Error: Face creation failed"); |
| 227 | } |
| 228 | |
| 229 | void |
| 230 | Nlsr::createFaces() |
| 231 | { |
| 232 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 233 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 234 | it != adjacents.end(); it++) { |
| 235 | createFace((*it).getConnectingFaceUri(), |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 236 | ndn::bind(&Nlsr::onCreateFaceSuccess, this, _1), |
| 237 | ndn::bind(&Nlsr::onCreateFaceFailure, this, _1, _2)); |
| 238 | m_nFacesToCreate++; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | |
| 243 | void |
| 244 | Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult) |
| 245 | { |
| 246 | |
| 247 | } |
| 248 | |
| 249 | void |
| 250 | Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error) |
| 251 | { |
| 252 | std::cerr << error << " (code: " << code << ")"; |
| 253 | throw Error("Error: Face destruction failed"); |
| 254 | } |
| 255 | |
| 256 | void |
| 257 | Nlsr::destroyFaces() |
| 258 | { |
| 259 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 260 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 261 | it != adjacents.end(); it++) { |
| 262 | destroyFace((*it).getConnectingFaceUri()); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | void |
| 267 | Nlsr::destroyFace(const std::string& faceUri) |
| 268 | { |
| 269 | ndn::nfd::ControlParameters faceParameters; |
| 270 | faceParameters |
| 271 | .setUri(faceUri); |
| 272 | m_controller.start<ndn::nfd::FaceCreateCommand>(faceParameters, |
| 273 | ndn::bind(&Nlsr::destroyFaceInNfd, |
| 274 | this, _1), |
| 275 | ndn::bind(&Nlsr::onDestroyFaceFailure, |
| 276 | this, _1, _2)); |
| 277 | } |
| 278 | |
| 279 | void |
| 280 | Nlsr::destroyFaceInNfd(const ndn::nfd::ControlParameters& faceDestroyResult) |
| 281 | { |
| 282 | ndn::nfd::ControlParameters faceParameters; |
| 283 | faceParameters |
| 284 | .setFaceId(faceDestroyResult.getFaceId()); |
| 285 | m_controller.start<ndn::nfd::FaceDestroyCommand>(faceParameters, |
| 286 | ndn::bind(&Nlsr::onDestroyFaceSuccess, |
| 287 | this, _1), |
| 288 | ndn::bind(&Nlsr::onDestroyFaceFailure, |
| 289 | this, _1, _2)); |
| 290 | } |
| 291 | |
| 292 | |
| 293 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 294 | Nlsr::startEventLoop() |
| 295 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 296 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 297 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 298 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 299 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 300 | Nlsr::usage(const string& progname) |
| 301 | { |
| 302 | cout << "Usage: " << progname << " [OPTIONS...]" << endl; |
| 303 | cout << " NDN routing...." << endl; |
| 304 | cout << " -d, --daemon Run in daemon mode" << endl; |
| 305 | cout << " -f, --config_file Specify configuration file name" << endl; |
| 306 | cout << " -p, --api_port port where api client will connect" << endl; |
| 307 | cout << " -h, --help Display this help message" << endl; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 308 | } |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 309 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 310 | |
| 311 | } // namespace nlsr |