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 | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 68 | name.append(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 69 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 70 | getNlsrFace().setInterestFilter(name, |
| 71 | ndn::bind(&Lsdb::processInterest, |
| 72 | &m_nlsrLsdb, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 73 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 74 | ndn::bind(&Nlsr::registrationFailed, this, _1)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | void |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 78 | Nlsr::registerPrefixes() |
| 79 | { |
| 80 | std::string strategy("ndn:/localhost/nfd/strategy/broadcast"); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame^] | 81 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 82 | broadcastKeyPrefix.append("KEYS"); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 83 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 84 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 85 | it != adjacents.end(); it++) { |
| 86 | m_fib.registerPrefix((*it).getName(), (*it).getConnectingFaceUri(), |
| 87 | (*it).getLinkCost(), 31536000); /* One Year in seconds */ |
| 88 | m_fib.registerPrefix(m_confParam.getChronosyncPrefix(), |
| 89 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
| 90 | m_fib.registerPrefix(m_confParam.getLsaPrefix(), |
| 91 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame^] | 92 | m_fib.registerPrefix(broadcastKeyPrefix, |
| 93 | (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000); |
| 94 | m_fib.setStrategy((*it).getName(), strategy); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 95 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 96 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 97 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy); |
| 98 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame^] | 99 | m_fib.setStrategy(broadcastKeyPrefix, strategy); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 103 | Nlsr::initialize() |
| 104 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 105 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 106 | m_confParam.buildRouterPrefix(); |
| 107 | m_nlsrLsdb.setLsaRefreshTime(m_confParam.getLsaRefreshTime()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 108 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 109 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 110 | m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir()); |
| 111 | m_sequencingManager.initiateSeqNoFromFile(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 112 | /* Logging start */ |
| 113 | m_confParam.writeLog(); |
| 114 | m_adjacencyList.writeLog(); |
| 115 | m_namePrefixList.writeLog(); |
| 116 | /* Logging end */ |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 117 | registerPrefixes(); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 118 | setInfoInterestFilter(); |
| 119 | setLsaInterestFilter(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 120 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
| 121 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 122 | m_syncLogicHandler.setSyncPrefix(m_confParam.getChronosyncPrefix().toUri()); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 123 | m_syncLogicHandler.createSyncSocket(boost::ref(*this)); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 124 | //m_interestManager.scheduleInfoInterest(10); |
| 125 | m_helloProtocol.scheduleInterest(10); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 126 | |
| 127 | intializeKey(); |
| 128 | registerKeyPrefix(); |
| 129 | } |
| 130 | |
| 131 | void |
| 132 | Nlsr::intializeKey() |
| 133 | { |
| 134 | m_defaultIdentity = m_confParam.getRouterPrefix(); |
| 135 | m_defaultIdentity.append("NLSR"); |
| 136 | |
Yingdi Yu | 9a18bfb | 2014-06-19 14:06:21 -0700 | [diff] [blame] | 137 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 138 | |
| 139 | ndn::shared_ptr<ndn::IdentityCertificate> certificate = m_keyChain.selfSign(keyName); |
| 140 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 141 | |
| 142 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 143 | loadCertToPublish(certificate); |
| 144 | |
| 145 | m_defaultCertName = certificate->getName(); |
| 146 | } |
| 147 | |
| 148 | void |
| 149 | Nlsr::registerKeyPrefix() |
| 150 | { |
| 151 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 152 | keyPrefix.append("KEYS"); |
| 153 | m_nlsrFace.setInterestFilter(keyPrefix, |
| 154 | ndn::bind(&Nlsr::onKeyInterest, |
| 155 | this, _1, _2), |
| 156 | ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
| 157 | ndn::bind(&Nlsr::registrationFailed, this, _1)); |
| 158 | |
| 159 | } |
| 160 | |
| 161 | void |
| 162 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 163 | { |
| 164 | const ndn::Name& interestName = interest.getName(); |
| 165 | |
| 166 | ndn::Name certName = interestName.getSubName(name.size()); |
| 167 | |
| 168 | if (certName[-2].toUri() == "ID-CERT") |
| 169 | { |
| 170 | certName = certName.getPrefix(-1); |
| 171 | } |
| 172 | else if (certName[-1].toUri() != "ID-CERT") |
| 173 | return; //Wrong key interest. |
| 174 | |
| 175 | ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
| 176 | |
| 177 | if (!static_cast<bool>(cert)) |
| 178 | return; // cert is not found |
| 179 | |
| 180 | Data data(interestName); |
| 181 | data.setContent(cert->wireEncode()); |
| 182 | m_keyChain.signWithSha256(data); |
| 183 | |
| 184 | m_nlsrFace.put(data); |
| 185 | } |
| 186 | |
| 187 | void |
| 188 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 189 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 190 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 191 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 192 | void |
| 193 | Nlsr::startEventLoop() |
| 194 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 195 | m_nlsrFace.processEvents(); |
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 | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 198 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 199 | Nlsr::usage(const string& progname) |
| 200 | { |
| 201 | cout << "Usage: " << progname << " [OPTIONS...]" << endl; |
| 202 | cout << " NDN routing...." << endl; |
| 203 | cout << " -d, --daemon Run in daemon mode" << endl; |
| 204 | cout << " -f, --config_file Specify configuration file name" << endl; |
| 205 | cout << " -p, --api_port port where api client will connect" << endl; |
| 206 | cout << " -h, --help Display this help message" << endl; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 207 | } |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 208 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 209 | |
| 210 | } // namespace nlsr |