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 | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 23 | #include "nlsr.hpp" |
| 24 | #include "lsdb.hpp" |
| 25 | #include "hello-protocol.hpp" |
| 26 | #include "utility/name-helper.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 27 | #include "logger.hpp" |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 28 | |
| 29 | namespace nlsr { |
| 30 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 31 | INIT_LOGGER("HelloProtocol"); |
| 32 | |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 33 | const std::string HelloProtocol::INFO_COMPONENT = "INFO"; |
| 34 | const std::string HelloProtocol::NLSR_COMPONENT = "NLSR"; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 35 | |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 36 | void |
| 37 | HelloProtocol::expressInterest(const ndn::Name& interestName, uint32_t seconds) |
| 38 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 39 | _LOG_DEBUG("Expressing Interest :" << interestName); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 40 | ndn::Interest i(interestName); |
| 41 | i.setInterestLifetime(ndn::time::seconds(seconds)); |
| 42 | i.setMustBeFresh(true); |
| 43 | m_nlsr.getNlsrFace().expressInterest(i, |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 44 | ndn::bind(&HelloProtocol::onContent, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 45 | this, |
| 46 | _1, _2), |
| 47 | ndn::bind(&HelloProtocol::processInterestTimedOut, |
| 48 | this, _1)); |
| 49 | } |
| 50 | |
| 51 | void |
| 52 | HelloProtocol::sendScheduledInterest(uint32_t seconds) |
| 53 | { |
| 54 | std::list<Adjacent> adjList = m_nlsr.getAdjacencyList().getAdjList(); |
| 55 | for (std::list<Adjacent>::iterator it = adjList.begin(); it != adjList.end(); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 56 | ++it) { |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 57 | if((*it).getFaceId() != 0) { |
| 58 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
| 59 | ndn::Name interestName = (*it).getName() ; |
| 60 | interestName.append(NLSR_COMPONENT); |
| 61 | interestName.append(INFO_COMPONENT); |
| 62 | interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode()); |
| 63 | expressInterest(interestName, |
| 64 | m_nlsr.getConfParameter().getInterestResendTime()); |
| 65 | } |
| 66 | else { |
| 67 | registerPrefixes((*it).getName(), (*it).getConnectingFaceUri(), |
akmhoque | bf11c5f | 2014-07-21 14:49:47 -0500 | [diff] [blame] | 68 | (*it).getLinkCost(), ndn::time::milliseconds::max()); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 69 | } |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 70 | } |
| 71 | scheduleInterest(m_nlsr.getConfParameter().getInfoInterestInterval()); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | HelloProtocol::scheduleInterest(uint32_t seconds) |
| 76 | { |
Vince Lehman | 7c60329 | 2014-09-11 17:48:16 -0500 | [diff] [blame^] | 77 | m_scheduler.scheduleEvent(ndn::time::seconds(seconds), |
| 78 | ndn::bind(&HelloProtocol::sendScheduledInterest, this, seconds)); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | void |
| 82 | HelloProtocol::processInterest(const ndn::Name& name, |
| 83 | const ndn::Interest& interest) |
| 84 | { |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 85 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 86 | const ndn::Name interestName = interest.getName(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 87 | _LOG_DEBUG("Interest Received for Name: " << interestName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 88 | if (interestName.get(-2).toUri() != INFO_COMPONENT) { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 89 | return; |
| 90 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 91 | ndn::Name neighbor; |
| 92 | neighbor.wireDecode(interestName.get(-1).blockFromValue()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 93 | _LOG_DEBUG("Neighbor: " << neighbor); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 94 | if (m_nlsr.getAdjacencyList().isNeighbor(neighbor)) { |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 95 | ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>(); |
| 96 | data->setName(ndn::Name(interest.getName()).appendVersion()); |
| 97 | data->setFreshnessPeriod(ndn::time::seconds(10)); // 10 sec |
| 98 | data->setContent(reinterpret_cast<const uint8_t*>(INFO_COMPONENT.c_str()), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 99 | INFO_COMPONENT.size()); |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 100 | m_nlsr.getKeyChain().sign(*data, m_nlsr.getDefaultCertName()); |
| 101 | _LOG_DEBUG("Sending out data for name: " << interest.getName()); |
| 102 | m_nlsr.getNlsrFace().put(*data); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 103 | Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor); |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 104 | if (adjacent->getStatus() == Adjacent::STATUS_INACTIVE) { |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 105 | if(adjacent->getFaceId() != 0){ |
| 106 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
| 107 | ndn::Name interestName(neighbor); |
| 108 | interestName.append(NLSR_COMPONENT); |
| 109 | interestName.append(INFO_COMPONENT); |
| 110 | interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode()); |
| 111 | expressInterest(interestName, |
| 112 | m_nlsr.getConfParameter().getInterestResendTime()); |
| 113 | } |
| 114 | else { |
| 115 | registerPrefixes(adjacent->getName(), adjacent->getConnectingFaceUri(), |
akmhoque | bf11c5f | 2014-07-21 14:49:47 -0500 | [diff] [blame] | 116 | adjacent->getLinkCost(), ndn::time::milliseconds::max()); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 117 | } |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | void |
| 123 | HelloProtocol::processInterestTimedOut(const ndn::Interest& interest) |
| 124 | { |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 125 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 126 | const ndn::Name interestName(interest.getName()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 127 | _LOG_DEBUG("Interest timed out for Name: " << interestName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 128 | if (interestName.get(-2).toUri() != INFO_COMPONENT) { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 129 | return; |
| 130 | } |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 131 | ndn::Name neighbor = interestName.getPrefix(-3); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 132 | _LOG_DEBUG("Neighbor: " << neighbor); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 133 | m_nlsr.getAdjacencyList().incrementTimedOutInterestCount(neighbor); |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 134 | |
| 135 | Adjacent::Status status = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor); |
| 136 | |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 137 | uint32_t infoIntTimedOutCount = |
| 138 | m_nlsr.getAdjacencyList().getTimedOutInterestCount(neighbor); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 139 | _LOG_DEBUG("Status: " << status); |
| 140 | _LOG_DEBUG("Info Interest Timed out: " << infoIntTimedOutCount); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 141 | if ((infoIntTimedOutCount < m_nlsr.getConfParameter().getInterestRetryNumber())) { |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 142 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 143 | ndn::Name interestName(neighbor); |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 144 | interestName.append(NLSR_COMPONENT); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 145 | interestName.append(INFO_COMPONENT); |
| 146 | interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 147 | expressInterest(interestName, |
| 148 | m_nlsr.getConfParameter().getInterestResendTime()); |
| 149 | } |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 150 | else if ((status == Adjacent::STATUS_ACTIVE) && |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 151 | (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber())) { |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 152 | m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_INACTIVE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 153 | m_nlsr.incrementAdjBuildCount(); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 154 | if (m_nlsr.getIsBuildAdjLsaSheduled() == false) { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 155 | _LOG_DEBUG("Scheduling scheduledAdjLsaBuild"); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 156 | m_nlsr.setIsBuildAdjLsaSheduled(true); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 157 | // event here |
Vince Lehman | 7c60329 | 2014-09-11 17:48:16 -0500 | [diff] [blame^] | 158 | m_scheduler.scheduleEvent(ndn::time::seconds(5), |
| 159 | ndn::bind(&Lsdb::scheduledAdjLsaBuild, &m_nlsr.getLsdb())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | } |
| 163 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 164 | void |
| 165 | HelloProtocol::onContent(const ndn::Interest& interest, const ndn::Data& data) |
| 166 | { |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 167 | _LOG_DEBUG("Received data for INFO(name): " << data.getName()); |
| 168 | if (data.getSignature().hasKeyLocator()) { |
| 169 | if (data.getSignature().getKeyLocator().getType() == ndn::KeyLocator::KeyLocator_Name) { |
| 170 | _LOG_DEBUG("Data signed with: " << data.getSignature().getKeyLocator().getName()); |
| 171 | } |
| 172 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 173 | m_nlsr.getValidator().validate(data, |
| 174 | ndn::bind(&HelloProtocol::onContentValidated, this, _1), |
| 175 | ndn::bind(&HelloProtocol::onContentValidationFailed, |
| 176 | this, _1, _2)); |
| 177 | } |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 178 | |
| 179 | void |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 180 | HelloProtocol::onContentValidated(const ndn::shared_ptr<const ndn::Data>& data) |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 181 | { |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 182 | /* data name: /<neighbor>/NLSR/INFO/<router>/<version> */ |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 183 | ndn::Name dataName = data->getName(); |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 184 | _LOG_DEBUG("Data validation successful for INFO(name): " << dataName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 185 | if (dataName.get(-3).toUri() == INFO_COMPONENT) { |
akmhoque | 93f1a07 | 2014-06-19 16:24:28 -0500 | [diff] [blame] | 186 | ndn::Name neighbor = dataName.getPrefix(-4); |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 187 | |
| 188 | Adjacent::Status oldStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor); |
| 189 | m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_ACTIVE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 190 | m_nlsr.getAdjacencyList().setTimedOutInterestCount(neighbor, 0); |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 191 | Adjacent::Status newStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor); |
| 192 | |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 193 | _LOG_DEBUG("Neighbor : " << neighbor); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 194 | _LOG_DEBUG("Old Status: " << oldStatus << " New Status: " << newStatus); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 195 | // change in Adjacency list |
| 196 | if ((oldStatus - newStatus) != 0) { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 197 | m_nlsr.incrementAdjBuildCount(); |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 198 | // Need to schedule event for Adjacency LSA building |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 199 | if (m_nlsr.getIsBuildAdjLsaSheduled() == false) { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 200 | _LOG_DEBUG("Scheduling scheduledAdjLsaBuild"); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 201 | m_nlsr.setIsBuildAdjLsaSheduled(true); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 202 | // event here |
Vince Lehman | 7c60329 | 2014-09-11 17:48:16 -0500 | [diff] [blame^] | 203 | m_scheduler.scheduleEvent(ndn::time::seconds(5), |
| 204 | ndn::bind(&Lsdb::scheduledAdjLsaBuild, &m_nlsr.getLsdb())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | } |
| 208 | } |
| 209 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 210 | void |
| 211 | HelloProtocol::onContentValidationFailed(const ndn::shared_ptr<const ndn::Data>& data, |
| 212 | const std::string& msg) |
| 213 | { |
| 214 | _LOG_DEBUG("Validation Error: " << msg); |
| 215 | } |
| 216 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 217 | void |
akmhoque | 8e0252b | 2014-07-07 16:04:44 -0500 | [diff] [blame] | 218 | HelloProtocol::registerPrefixes(const ndn::Name& adjName, const std::string& faceUri, |
akmhoque | bf11c5f | 2014-07-21 14:49:47 -0500 | [diff] [blame] | 219 | double linkCost, const ndn::time::milliseconds& timeout) |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 220 | { |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 221 | m_nlsr.getFib().registerPrefix(adjName, faceUri, linkCost, timeout, |
| 222 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0, |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 223 | ndn::bind(&HelloProtocol::onRegistrationSuccess, |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 224 | this, _1, adjName,timeout), |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 225 | ndn::bind(&HelloProtocol::onRegistrationFailure, |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 226 | this, _1, _2, adjName)); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | void |
| 230 | HelloProtocol::onRegistrationSuccess(const ndn::nfd::ControlParameters& commandSuccessResult, |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 231 | const ndn::Name& neighbor,const ndn::time::milliseconds& timeout) |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 232 | { |
| 233 | Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor); |
| 234 | if (adjacent != 0) { |
| 235 | adjacent->setFaceId(commandSuccessResult.getFaceId()); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 236 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 237 | broadcastKeyPrefix.append("KEYS"); |
| 238 | std::string faceUri = adjacent->getConnectingFaceUri(); |
| 239 | double linkCost = adjacent->getLinkCost(); |
| 240 | m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getChronosyncPrefix(), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 241 | faceUri, linkCost, timeout, |
| 242 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 243 | m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getLsaPrefix(), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 244 | faceUri, linkCost, timeout, |
| 245 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 246 | m_nlsr.getFib().registerPrefix(broadcastKeyPrefix, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 247 | faceUri, linkCost, timeout, |
| 248 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 249 | m_nlsr.setStrategies(); |
| 250 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 251 | /* interest name: /<neighbor>/NLSR/INFO/<router> */ |
| 252 | ndn::Name interestName(neighbor); |
| 253 | interestName.append(NLSR_COMPONENT); |
| 254 | interestName.append(INFO_COMPONENT); |
| 255 | interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode()); |
| 256 | expressInterest(interestName, |
| 257 | m_nlsr.getConfParameter().getInterestResendTime()); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | void |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 262 | HelloProtocol::onRegistrationFailure(uint32_t code, const std::string& error, |
| 263 | const ndn::Name& name) |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 264 | { |
| 265 | _LOG_DEBUG(error << " (code: " << code << ")"); |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 266 | /* |
| 267 | * If NLSR can not create face for given faceUri then it will treat this |
| 268 | * failure as one INFO interest timed out. So that NLSR can move on with |
| 269 | * building Adj Lsa and calculate routing table. NLSR does not build Adj |
| 270 | * Lsa unless all the neighbors are ACTIVE or DEAD. For considering the |
| 271 | * missconfigured(link) neighbour dead this is required. |
| 272 | */ |
| 273 | Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(name); |
| 274 | if (adjacent != 0) { |
| 275 | adjacent->setInterestTimedOutNo(adjacent->getInterestTimedOutNo() + 1); |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 276 | Adjacent::Status status = adjacent->getStatus(); |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 277 | uint32_t infoIntTimedOutCount = adjacent->getInterestTimedOutNo(); |
| 278 | |
| 279 | if (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber()) { |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 280 | if (status == Adjacent::STATUS_ACTIVE) { |
| 281 | adjacent->setStatus(Adjacent::STATUS_INACTIVE); |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 282 | } |
| 283 | m_nlsr.incrementAdjBuildCount(); |
| 284 | if (m_nlsr.getIsBuildAdjLsaSheduled() == false) { |
| 285 | _LOG_DEBUG("Scheduling scheduledAdjLsaBuild"); |
| 286 | m_nlsr.setIsBuildAdjLsaSheduled(true); |
| 287 | // event here |
Vince Lehman | 7c60329 | 2014-09-11 17:48:16 -0500 | [diff] [blame^] | 288 | m_scheduler.scheduleEvent(ndn::time::seconds(5), |
| 289 | ndn::bind(&Lsdb::scheduledAdjLsaBuild, &m_nlsr.getLsdb())); |
akmhoque | dfe615f | 2014-07-27 14:12:21 -0500 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | } |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 293 | } |
| 294 | |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 295 | } //namespace nlsr |