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