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