blob: b10afb04d4dc86a76af7b021ce914d4409d01c85 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
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 Shi63bd0342016-08-17 16:57:14 +000023
akmhoque31d1d4b2014-05-05 22:08:14 -050024#include "nlsr.hpp"
25#include "lsdb.hpp"
26#include "hello-protocol.hpp"
27#include "utility/name-helper.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050028#include "logger.hpp"
akmhoque31d1d4b2014-05-05 22:08:14 -050029
30namespace nlsr {
31
akmhoque674b0b12014-05-20 14:33:28 -050032INIT_LOGGER("HelloProtocol");
33
akmhoque93f1a072014-06-19 16:24:28 -050034const std::string HelloProtocol::INFO_COMPONENT = "INFO";
35const std::string HelloProtocol::NLSR_COMPONENT = "NLSR";
akmhoque157b0a42014-05-13 00:26:37 -050036
akmhoque31d1d4b2014-05-05 22:08:14 -050037void
38HelloProtocol::expressInterest(const ndn::Name& interestName, uint32_t seconds)
39{
akmhoque674b0b12014-05-20 14:33:28 -050040 _LOG_DEBUG("Expressing Interest :" << interestName);
akmhoque31d1d4b2014-05-05 22:08:14 -050041 ndn::Interest i(interestName);
42 i.setInterestLifetime(ndn::time::seconds(seconds));
43 i.setMustBeFresh(true);
44 m_nlsr.getNlsrFace().expressInterest(i,
dmcoomes9f936662017-03-02 10:33:09 -060045 std::bind(&HelloProtocol::onContent,
akmhoque31d1d4b2014-05-05 22:08:14 -050046 this,
47 _1, _2),
Alexander Afanasyev1de901f2017-03-09 12:43:57 -080048 std::bind(&HelloProtocol::processInterestTimedOut, // Nack
49 this, _1),
dmcoomes9f936662017-03-02 10:33:09 -060050 std::bind(&HelloProtocol::processInterestTimedOut,
akmhoque31d1d4b2014-05-05 22:08:14 -050051 this, _1));
52}
53
54void
55HelloProtocol::sendScheduledInterest(uint32_t seconds)
56{
57 std::list<Adjacent> adjList = m_nlsr.getAdjacencyList().getAdjList();
58 for (std::list<Adjacent>::iterator it = adjList.begin(); it != adjList.end();
akmhoque157b0a42014-05-13 00:26:37 -050059 ++it) {
Nick G97e34942016-07-11 14:46:27 -050060 // If this adjacency has a Face, just proceed as usual.
akmhoquec04e7272014-07-02 11:00:14 -050061 if((*it).getFaceId() != 0) {
dmcoomes9f936662017-03-02 10:33:09 -060062 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoquec04e7272014-07-02 11:00:14 -050063 ndn::Name interestName = (*it).getName() ;
64 interestName.append(NLSR_COMPONENT);
65 interestName.append(INFO_COMPONENT);
66 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
67 expressInterest(interestName,
68 m_nlsr.getConfParameter().getInterestResendTime());
69 }
Nick G97e34942016-07-11 14:46:27 -050070 // If it does not have a Face, we need to give it one. A
71 // successful registration prompts a callback that sends the hello
72 // Interest to the new Face.
akmhoquec04e7272014-07-02 11:00:14 -050073 else {
74 registerPrefixes((*it).getName(), (*it).getConnectingFaceUri(),
akmhoquebf11c5f2014-07-21 14:49:47 -050075 (*it).getLinkCost(), ndn::time::milliseconds::max());
akmhoquec04e7272014-07-02 11:00:14 -050076 }
akmhoque31d1d4b2014-05-05 22:08:14 -050077 }
78 scheduleInterest(m_nlsr.getConfParameter().getInfoInterestInterval());
79}
80
81void
82HelloProtocol::scheduleInterest(uint32_t seconds)
83{
Vince Lehman50df6b72015-03-03 12:06:40 -060084 _LOG_DEBUG("Scheduling HELLO Interests in " << ndn::time::seconds(seconds));
85
Vince Lehman7c603292014-09-11 17:48:16 -050086 m_scheduler.scheduleEvent(ndn::time::seconds(seconds),
dmcoomes9f936662017-03-02 10:33:09 -060087 std::bind(&HelloProtocol::sendScheduledInterest, this, seconds));
akmhoque31d1d4b2014-05-05 22:08:14 -050088}
89
90void
91HelloProtocol::processInterest(const ndn::Name& name,
92 const ndn::Interest& interest)
93{
dmcoomes9f936662017-03-02 10:33:09 -060094 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoque31d1d4b2014-05-05 22:08:14 -050095 const ndn::Name interestName = interest.getName();
akmhoque674b0b12014-05-20 14:33:28 -050096 _LOG_DEBUG("Interest Received for Name: " << interestName);
akmhoque157b0a42014-05-13 00:26:37 -050097 if (interestName.get(-2).toUri() != INFO_COMPONENT) {
akmhoque31d1d4b2014-05-05 22:08:14 -050098 return;
99 }
akmhoque157b0a42014-05-13 00:26:37 -0500100 ndn::Name neighbor;
101 neighbor.wireDecode(interestName.get(-1).blockFromValue());
akmhoque674b0b12014-05-20 14:33:28 -0500102 _LOG_DEBUG("Neighbor: " << neighbor);
akmhoque157b0a42014-05-13 00:26:37 -0500103 if (m_nlsr.getAdjacencyList().isNeighbor(neighbor)) {
dmcoomes9f936662017-03-02 10:33:09 -0600104 std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>();
akmhoque69c9aa92014-07-23 15:15:05 -0500105 data->setName(ndn::Name(interest.getName()).appendVersion());
106 data->setFreshnessPeriod(ndn::time::seconds(10)); // 10 sec
107 data->setContent(reinterpret_cast<const uint8_t*>(INFO_COMPONENT.c_str()),
akmhoque157b0a42014-05-13 00:26:37 -0500108 INFO_COMPONENT.size());
akmhoque69c9aa92014-07-23 15:15:05 -0500109 m_nlsr.getKeyChain().sign(*data, m_nlsr.getDefaultCertName());
110 _LOG_DEBUG("Sending out data for name: " << interest.getName());
111 m_nlsr.getNlsrFace().put(*data);
akmhoquec04e7272014-07-02 11:00:14 -0500112 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor);
Nick G97e34942016-07-11 14:46:27 -0500113 // If this neighbor was previously inactive, send our own hello interest, too
Vince Lehmancb76ade2014-08-28 21:24:41 -0500114 if (adjacent->getStatus() == Adjacent::STATUS_INACTIVE) {
Nick G97e34942016-07-11 14:46:27 -0500115 // We can only do that if the neighbor currently has a face.
akmhoquec04e7272014-07-02 11:00:14 -0500116 if(adjacent->getFaceId() != 0){
dmcoomes9f936662017-03-02 10:33:09 -0600117 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoquec04e7272014-07-02 11:00:14 -0500118 ndn::Name interestName(neighbor);
119 interestName.append(NLSR_COMPONENT);
120 interestName.append(INFO_COMPONENT);
121 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
122 expressInterest(interestName,
123 m_nlsr.getConfParameter().getInterestResendTime());
124 }
Nick G97e34942016-07-11 14:46:27 -0500125 // If the originator of the Interest currently lacks a Face, we
126 // need to give it one.
akmhoquec04e7272014-07-02 11:00:14 -0500127 else {
128 registerPrefixes(adjacent->getName(), adjacent->getConnectingFaceUri(),
akmhoquebf11c5f2014-07-21 14:49:47 -0500129 adjacent->getLinkCost(), ndn::time::milliseconds::max());
akmhoquec04e7272014-07-02 11:00:14 -0500130 }
akmhoque31d1d4b2014-05-05 22:08:14 -0500131 }
132 }
133}
134
135void
136HelloProtocol::processInterestTimedOut(const ndn::Interest& interest)
137{
dmcoomes9f936662017-03-02 10:33:09 -0600138 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoque31d1d4b2014-05-05 22:08:14 -0500139 const ndn::Name interestName(interest.getName());
akmhoque674b0b12014-05-20 14:33:28 -0500140 _LOG_DEBUG("Interest timed out for Name: " << interestName);
akmhoque157b0a42014-05-13 00:26:37 -0500141 if (interestName.get(-2).toUri() != INFO_COMPONENT) {
akmhoque31d1d4b2014-05-05 22:08:14 -0500142 return;
143 }
akmhoque93f1a072014-06-19 16:24:28 -0500144 ndn::Name neighbor = interestName.getPrefix(-3);
akmhoque674b0b12014-05-20 14:33:28 -0500145 _LOG_DEBUG("Neighbor: " << neighbor);
akmhoque31d1d4b2014-05-05 22:08:14 -0500146 m_nlsr.getAdjacencyList().incrementTimedOutInterestCount(neighbor);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500147
148 Adjacent::Status status = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
149
akmhoque31d1d4b2014-05-05 22:08:14 -0500150 uint32_t infoIntTimedOutCount =
151 m_nlsr.getAdjacencyList().getTimedOutInterestCount(neighbor);
akmhoque674b0b12014-05-20 14:33:28 -0500152 _LOG_DEBUG("Status: " << status);
153 _LOG_DEBUG("Info Interest Timed out: " << infoIntTimedOutCount);
akmhoque157b0a42014-05-13 00:26:37 -0500154 if ((infoIntTimedOutCount < m_nlsr.getConfParameter().getInterestRetryNumber())) {
dmcoomes9f936662017-03-02 10:33:09 -0600155 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoque31d1d4b2014-05-05 22:08:14 -0500156 ndn::Name interestName(neighbor);
akmhoque93f1a072014-06-19 16:24:28 -0500157 interestName.append(NLSR_COMPONENT);
akmhoque157b0a42014-05-13 00:26:37 -0500158 interestName.append(INFO_COMPONENT);
159 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
akmhoque31d1d4b2014-05-05 22:08:14 -0500160 expressInterest(interestName,
161 m_nlsr.getConfParameter().getInterestResendTime());
162 }
Vince Lehmancb76ade2014-08-28 21:24:41 -0500163 else if ((status == Adjacent::STATUS_ACTIVE) &&
akmhoque157b0a42014-05-13 00:26:37 -0500164 (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber())) {
Vince Lehmancb76ade2014-08-28 21:24:41 -0500165 m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_INACTIVE);
Vince Lehman50df6b72015-03-03 12:06:40 -0600166
167 m_nlsr.getLsdb().scheduleAdjLsaBuild();
akmhoque31d1d4b2014-05-05 22:08:14 -0500168 }
169}
170
Nick G97e34942016-07-11 14:46:27 -0500171 // This is the first function that incoming Hello data will
172 // see. This checks if the data appears to be signed, and passes it
173 // on to validate the content of the data.
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700174void
175HelloProtocol::onContent(const ndn::Interest& interest, const ndn::Data& data)
176{
akmhoquedfe615f2014-07-27 14:12:21 -0500177 _LOG_DEBUG("Received data for INFO(name): " << data.getName());
178 if (data.getSignature().hasKeyLocator()) {
179 if (data.getSignature().getKeyLocator().getType() == ndn::KeyLocator::KeyLocator_Name) {
180 _LOG_DEBUG("Data signed with: " << data.getSignature().getKeyLocator().getName());
181 }
182 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700183 m_nlsr.getValidator().validate(data,
dmcoomes9f936662017-03-02 10:33:09 -0600184 std::bind(&HelloProtocol::onContentValidated, this, _1),
185 std::bind(&HelloProtocol::onContentValidationFailed,
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700186 this, _1, _2));
187}
akmhoque31d1d4b2014-05-05 22:08:14 -0500188
Nick G97e34942016-07-11 14:46:27 -0500189 // A validator is called on the incoming data, and if the data
190 // passes the validator's description/definitions, this function is
191 // called. Set the neighbor's status to active and refresh its
192 // LSA. If there was a change in status, we schedule an adjacency
193 // LSA build.
akmhoque31d1d4b2014-05-05 22:08:14 -0500194void
dmcoomes9f936662017-03-02 10:33:09 -0600195HelloProtocol::onContentValidated(const std::shared_ptr<const ndn::Data>& data)
akmhoque31d1d4b2014-05-05 22:08:14 -0500196{
dmcoomes9f936662017-03-02 10:33:09 -0600197 // data name: /<neighbor>/NLSR/INFO/<router>/<version>
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700198 ndn::Name dataName = data->getName();
akmhoquedfe615f2014-07-27 14:12:21 -0500199 _LOG_DEBUG("Data validation successful for INFO(name): " << dataName);
akmhoque157b0a42014-05-13 00:26:37 -0500200 if (dataName.get(-3).toUri() == INFO_COMPONENT) {
akmhoque93f1a072014-06-19 16:24:28 -0500201 ndn::Name neighbor = dataName.getPrefix(-4);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500202
203 Adjacent::Status oldStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
204 m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_ACTIVE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500205 m_nlsr.getAdjacencyList().setTimedOutInterestCount(neighbor, 0);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500206 Adjacent::Status newStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
207
akmhoque2f423352014-06-03 11:49:35 -0500208 _LOG_DEBUG("Neighbor : " << neighbor);
akmhoque674b0b12014-05-20 14:33:28 -0500209 _LOG_DEBUG("Old Status: " << oldStatus << " New Status: " << newStatus);
akmhoque157b0a42014-05-13 00:26:37 -0500210 // change in Adjacency list
211 if ((oldStatus - newStatus) != 0) {
Ashlesh Gawandec5fa3202016-12-05 13:21:51 -0600212 if (m_nlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_ON) {
213 m_nlsr.getRoutingTable().scheduleRoutingTableCalculation(m_nlsr);
214 }
215 else {
216 m_nlsr.getLsdb().scheduleAdjLsaBuild();
217 }
akmhoque31d1d4b2014-05-05 22:08:14 -0500218 }
219 }
220}
221
Nick G97e34942016-07-11 14:46:27 -0500222 // Simply logs a debug message that the content could not be
223 // validated (and is implicitly being discarded as a result).
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700224void
dmcoomes9f936662017-03-02 10:33:09 -0600225HelloProtocol::onContentValidationFailed(const std::shared_ptr<const ndn::Data>& data,
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700226 const std::string& msg)
227{
228 _LOG_DEBUG("Validation Error: " << msg);
229}
230
Nick G97e34942016-07-11 14:46:27 -0500231
232 // Asks the FIB to register the supplied adjacency (in other words,
233 // create a Face for it).
akmhoquec04e7272014-07-02 11:00:14 -0500234void
akmhoque8e0252b2014-07-07 16:04:44 -0500235HelloProtocol::registerPrefixes(const ndn::Name& adjName, const std::string& faceUri,
akmhoquebf11c5f2014-07-21 14:49:47 -0500236 double linkCost, const ndn::time::milliseconds& timeout)
akmhoquec04e7272014-07-02 11:00:14 -0500237{
akmhoque060d3022014-08-12 13:35:06 -0500238 m_nlsr.getFib().registerPrefix(adjName, faceUri, linkCost, timeout,
239 ndn::nfd::ROUTE_FLAG_CAPTURE, 0,
dmcoomes9f936662017-03-02 10:33:09 -0600240 std::bind(&HelloProtocol::onRegistrationSuccess,
akmhoque102aea42014-08-04 10:22:12 -0500241 this, _1, adjName,timeout),
dmcoomes9f936662017-03-02 10:33:09 -0600242 std::bind(&HelloProtocol::onRegistrationFailure,
Junxiao Shi63bd0342016-08-17 16:57:14 +0000243 this, _1, adjName));
akmhoquec04e7272014-07-02 11:00:14 -0500244}
245
Nick G97e34942016-07-11 14:46:27 -0500246 // After we create a new Face, we need to set it up for use. This
247 // function sets the controlling strategy, registers prefixes in
248 // sync, broadcast, and LSA.
akmhoquec04e7272014-07-02 11:00:14 -0500249void
250HelloProtocol::onRegistrationSuccess(const ndn::nfd::ControlParameters& commandSuccessResult,
akmhoque102aea42014-08-04 10:22:12 -0500251 const ndn::Name& neighbor,const ndn::time::milliseconds& timeout)
akmhoquec04e7272014-07-02 11:00:14 -0500252{
253 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor);
254 if (adjacent != 0) {
255 adjacent->setFaceId(commandSuccessResult.getFaceId());
akmhoque102aea42014-08-04 10:22:12 -0500256 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
257 broadcastKeyPrefix.append("KEYS");
258 std::string faceUri = adjacent->getConnectingFaceUri();
259 double linkCost = adjacent->getLinkCost();
260 m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getChronosyncPrefix(),
akmhoque060d3022014-08-12 13:35:06 -0500261 faceUri, linkCost, timeout,
262 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500263 m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getLsaPrefix(),
akmhoque060d3022014-08-12 13:35:06 -0500264 faceUri, linkCost, timeout,
265 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500266 m_nlsr.getFib().registerPrefix(broadcastKeyPrefix,
akmhoque060d3022014-08-12 13:35:06 -0500267 faceUri, linkCost, timeout,
268 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500269
Nick G97e34942016-07-11 14:46:27 -0500270 // Sends a Hello Interest to determine status before the next scheduled.
dmcoomes9f936662017-03-02 10:33:09 -0600271 // interest name: /<neighbor>/NLSR/INFO/<router>
akmhoquec04e7272014-07-02 11:00:14 -0500272 ndn::Name interestName(neighbor);
273 interestName.append(NLSR_COMPONENT);
274 interestName.append(INFO_COMPONENT);
275 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
276 expressInterest(interestName,
277 m_nlsr.getConfParameter().getInterestResendTime());
278 }
279}
280
281void
Junxiao Shi63bd0342016-08-17 16:57:14 +0000282HelloProtocol::onRegistrationFailure(const ndn::nfd::ControlResponse& response,
akmhoquedfe615f2014-07-27 14:12:21 -0500283 const ndn::Name& name)
akmhoquec04e7272014-07-02 11:00:14 -0500284{
Junxiao Shi63bd0342016-08-17 16:57:14 +0000285 _LOG_DEBUG(response.getText() << " (code: " << response.getCode() << ")");
akmhoquedfe615f2014-07-27 14:12:21 -0500286 /*
287 * If NLSR can not create face for given faceUri then it will treat this
288 * failure as one INFO interest timed out. So that NLSR can move on with
289 * building Adj Lsa and calculate routing table. NLSR does not build Adj
290 * Lsa unless all the neighbors are ACTIVE or DEAD. For considering the
291 * missconfigured(link) neighbour dead this is required.
292 */
293 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(name);
294 if (adjacent != 0) {
295 adjacent->setInterestTimedOutNo(adjacent->getInterestTimedOutNo() + 1);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500296 Adjacent::Status status = adjacent->getStatus();
akmhoquedfe615f2014-07-27 14:12:21 -0500297 uint32_t infoIntTimedOutCount = adjacent->getInterestTimedOutNo();
298
299 if (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber()) {
Vince Lehmancb76ade2014-08-28 21:24:41 -0500300 if (status == Adjacent::STATUS_ACTIVE) {
301 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
akmhoquedfe615f2014-07-27 14:12:21 -0500302 }
Vince Lehman50df6b72015-03-03 12:06:40 -0600303
304 m_nlsr.getLsdb().scheduleAdjLsaBuild();
akmhoquedfe615f2014-07-27 14:12:21 -0500305 }
306 }
akmhoquec04e7272014-07-02 11:00:14 -0500307}
308
Nick Gordonfad8e252016-08-11 14:21:38 -0500309} // namespace nlsr