blob: fc03bc326392d3ce2eaa5750d161b8dfeece10d0 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05003 * Copyright (c) 2014-2016, The University of Memphis,
4 * 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 **/
akmhoque31d1d4b2014-05-05 22:08:14 -050023#include "nlsr.hpp"
24#include "lsdb.hpp"
25#include "hello-protocol.hpp"
26#include "utility/name-helper.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050027#include "logger.hpp"
akmhoque31d1d4b2014-05-05 22:08:14 -050028
29namespace nlsr {
30
akmhoque674b0b12014-05-20 14:33:28 -050031INIT_LOGGER("HelloProtocol");
32
akmhoque93f1a072014-06-19 16:24:28 -050033const std::string HelloProtocol::INFO_COMPONENT = "INFO";
34const std::string HelloProtocol::NLSR_COMPONENT = "NLSR";
akmhoque157b0a42014-05-13 00:26:37 -050035
akmhoque31d1d4b2014-05-05 22:08:14 -050036void
37HelloProtocol::expressInterest(const ndn::Name& interestName, uint32_t seconds)
38{
akmhoque674b0b12014-05-20 14:33:28 -050039 _LOG_DEBUG("Expressing Interest :" << interestName);
akmhoque31d1d4b2014-05-05 22:08:14 -050040 ndn::Interest i(interestName);
41 i.setInterestLifetime(ndn::time::seconds(seconds));
42 i.setMustBeFresh(true);
43 m_nlsr.getNlsrFace().expressInterest(i,
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070044 ndn::bind(&HelloProtocol::onContent,
akmhoque31d1d4b2014-05-05 22:08:14 -050045 this,
46 _1, _2),
47 ndn::bind(&HelloProtocol::processInterestTimedOut,
48 this, _1));
49}
50
51void
52HelloProtocol::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();
akmhoque157b0a42014-05-13 00:26:37 -050056 ++it) {
akmhoquec04e7272014-07-02 11:00:14 -050057 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(),
akmhoquebf11c5f2014-07-21 14:49:47 -050068 (*it).getLinkCost(), ndn::time::milliseconds::max());
akmhoquec04e7272014-07-02 11:00:14 -050069 }
akmhoque31d1d4b2014-05-05 22:08:14 -050070 }
71 scheduleInterest(m_nlsr.getConfParameter().getInfoInterestInterval());
72}
73
74void
75HelloProtocol::scheduleInterest(uint32_t seconds)
76{
Vince Lehman50df6b72015-03-03 12:06:40 -060077 _LOG_DEBUG("Scheduling HELLO Interests in " << ndn::time::seconds(seconds));
78
Vince Lehman7c603292014-09-11 17:48:16 -050079 m_scheduler.scheduleEvent(ndn::time::seconds(seconds),
80 ndn::bind(&HelloProtocol::sendScheduledInterest, this, seconds));
akmhoque31d1d4b2014-05-05 22:08:14 -050081}
82
83void
84HelloProtocol::processInterest(const ndn::Name& name,
85 const ndn::Interest& interest)
86{
akmhoque93f1a072014-06-19 16:24:28 -050087 /* interest name: /<neighbor>/NLSR/INFO/<router> */
akmhoque31d1d4b2014-05-05 22:08:14 -050088 const ndn::Name interestName = interest.getName();
akmhoque674b0b12014-05-20 14:33:28 -050089 _LOG_DEBUG("Interest Received for Name: " << interestName);
akmhoque157b0a42014-05-13 00:26:37 -050090 if (interestName.get(-2).toUri() != INFO_COMPONENT) {
akmhoque31d1d4b2014-05-05 22:08:14 -050091 return;
92 }
akmhoque157b0a42014-05-13 00:26:37 -050093 ndn::Name neighbor;
94 neighbor.wireDecode(interestName.get(-1).blockFromValue());
akmhoque674b0b12014-05-20 14:33:28 -050095 _LOG_DEBUG("Neighbor: " << neighbor);
akmhoque157b0a42014-05-13 00:26:37 -050096 if (m_nlsr.getAdjacencyList().isNeighbor(neighbor)) {
akmhoque69c9aa92014-07-23 15:15:05 -050097 ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>();
98 data->setName(ndn::Name(interest.getName()).appendVersion());
99 data->setFreshnessPeriod(ndn::time::seconds(10)); // 10 sec
100 data->setContent(reinterpret_cast<const uint8_t*>(INFO_COMPONENT.c_str()),
akmhoque157b0a42014-05-13 00:26:37 -0500101 INFO_COMPONENT.size());
akmhoque69c9aa92014-07-23 15:15:05 -0500102 m_nlsr.getKeyChain().sign(*data, m_nlsr.getDefaultCertName());
103 _LOG_DEBUG("Sending out data for name: " << interest.getName());
104 m_nlsr.getNlsrFace().put(*data);
akmhoquec04e7272014-07-02 11:00:14 -0500105 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500106 if (adjacent->getStatus() == Adjacent::STATUS_INACTIVE) {
akmhoquec04e7272014-07-02 11:00:14 -0500107 if(adjacent->getFaceId() != 0){
108 /* interest name: /<neighbor>/NLSR/INFO/<router> */
109 ndn::Name interestName(neighbor);
110 interestName.append(NLSR_COMPONENT);
111 interestName.append(INFO_COMPONENT);
112 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
113 expressInterest(interestName,
114 m_nlsr.getConfParameter().getInterestResendTime());
115 }
116 else {
117 registerPrefixes(adjacent->getName(), adjacent->getConnectingFaceUri(),
akmhoquebf11c5f2014-07-21 14:49:47 -0500118 adjacent->getLinkCost(), ndn::time::milliseconds::max());
akmhoquec04e7272014-07-02 11:00:14 -0500119 }
akmhoque31d1d4b2014-05-05 22:08:14 -0500120 }
121 }
122}
123
124void
125HelloProtocol::processInterestTimedOut(const ndn::Interest& interest)
126{
akmhoque93f1a072014-06-19 16:24:28 -0500127 /* interest name: /<neighbor>/NLSR/INFO/<router> */
akmhoque31d1d4b2014-05-05 22:08:14 -0500128 const ndn::Name interestName(interest.getName());
akmhoque674b0b12014-05-20 14:33:28 -0500129 _LOG_DEBUG("Interest timed out for Name: " << interestName);
akmhoque157b0a42014-05-13 00:26:37 -0500130 if (interestName.get(-2).toUri() != INFO_COMPONENT) {
akmhoque31d1d4b2014-05-05 22:08:14 -0500131 return;
132 }
akmhoque93f1a072014-06-19 16:24:28 -0500133 ndn::Name neighbor = interestName.getPrefix(-3);
akmhoque674b0b12014-05-20 14:33:28 -0500134 _LOG_DEBUG("Neighbor: " << neighbor);
akmhoque31d1d4b2014-05-05 22:08:14 -0500135 m_nlsr.getAdjacencyList().incrementTimedOutInterestCount(neighbor);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500136
137 Adjacent::Status status = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
138
akmhoque31d1d4b2014-05-05 22:08:14 -0500139 uint32_t infoIntTimedOutCount =
140 m_nlsr.getAdjacencyList().getTimedOutInterestCount(neighbor);
akmhoque674b0b12014-05-20 14:33:28 -0500141 _LOG_DEBUG("Status: " << status);
142 _LOG_DEBUG("Info Interest Timed out: " << infoIntTimedOutCount);
akmhoque157b0a42014-05-13 00:26:37 -0500143 if ((infoIntTimedOutCount < m_nlsr.getConfParameter().getInterestRetryNumber())) {
akmhoque93f1a072014-06-19 16:24:28 -0500144 /* interest name: /<neighbor>/NLSR/INFO/<router> */
akmhoque31d1d4b2014-05-05 22:08:14 -0500145 ndn::Name interestName(neighbor);
akmhoque93f1a072014-06-19 16:24:28 -0500146 interestName.append(NLSR_COMPONENT);
akmhoque157b0a42014-05-13 00:26:37 -0500147 interestName.append(INFO_COMPONENT);
148 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
akmhoque31d1d4b2014-05-05 22:08:14 -0500149 expressInterest(interestName,
150 m_nlsr.getConfParameter().getInterestResendTime());
151 }
Vince Lehmancb76ade2014-08-28 21:24:41 -0500152 else if ((status == Adjacent::STATUS_ACTIVE) &&
akmhoque157b0a42014-05-13 00:26:37 -0500153 (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber())) {
Vince Lehmancb76ade2014-08-28 21:24:41 -0500154 m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_INACTIVE);
Vince Lehman50df6b72015-03-03 12:06:40 -0600155
156 m_nlsr.getLsdb().scheduleAdjLsaBuild();
akmhoque31d1d4b2014-05-05 22:08:14 -0500157 }
158}
159
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700160void
161HelloProtocol::onContent(const ndn::Interest& interest, const ndn::Data& data)
162{
akmhoquedfe615f2014-07-27 14:12:21 -0500163 _LOG_DEBUG("Received data for INFO(name): " << data.getName());
164 if (data.getSignature().hasKeyLocator()) {
165 if (data.getSignature().getKeyLocator().getType() == ndn::KeyLocator::KeyLocator_Name) {
166 _LOG_DEBUG("Data signed with: " << data.getSignature().getKeyLocator().getName());
167 }
168 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700169 m_nlsr.getValidator().validate(data,
170 ndn::bind(&HelloProtocol::onContentValidated, this, _1),
171 ndn::bind(&HelloProtocol::onContentValidationFailed,
172 this, _1, _2));
173}
akmhoque31d1d4b2014-05-05 22:08:14 -0500174
175void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700176HelloProtocol::onContentValidated(const ndn::shared_ptr<const ndn::Data>& data)
akmhoque31d1d4b2014-05-05 22:08:14 -0500177{
akmhoque93f1a072014-06-19 16:24:28 -0500178 /* data name: /<neighbor>/NLSR/INFO/<router>/<version> */
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700179 ndn::Name dataName = data->getName();
akmhoquedfe615f2014-07-27 14:12:21 -0500180 _LOG_DEBUG("Data validation successful for INFO(name): " << dataName);
akmhoque157b0a42014-05-13 00:26:37 -0500181 if (dataName.get(-3).toUri() == INFO_COMPONENT) {
akmhoque93f1a072014-06-19 16:24:28 -0500182 ndn::Name neighbor = dataName.getPrefix(-4);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500183
184 Adjacent::Status oldStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
185 m_nlsr.getAdjacencyList().setStatusOfNeighbor(neighbor, Adjacent::STATUS_ACTIVE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500186 m_nlsr.getAdjacencyList().setTimedOutInterestCount(neighbor, 0);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500187 Adjacent::Status newStatus = m_nlsr.getAdjacencyList().getStatusOfNeighbor(neighbor);
188
akmhoque2f423352014-06-03 11:49:35 -0500189 _LOG_DEBUG("Neighbor : " << neighbor);
akmhoque674b0b12014-05-20 14:33:28 -0500190 _LOG_DEBUG("Old Status: " << oldStatus << " New Status: " << newStatus);
akmhoque157b0a42014-05-13 00:26:37 -0500191 // change in Adjacency list
192 if ((oldStatus - newStatus) != 0) {
Vince Lehman50df6b72015-03-03 12:06:40 -0600193 m_nlsr.getLsdb().scheduleAdjLsaBuild();
akmhoque31d1d4b2014-05-05 22:08:14 -0500194 }
195 }
196}
197
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700198void
199HelloProtocol::onContentValidationFailed(const ndn::shared_ptr<const ndn::Data>& data,
200 const std::string& msg)
201{
202 _LOG_DEBUG("Validation Error: " << msg);
203}
204
akmhoquec04e7272014-07-02 11:00:14 -0500205void
akmhoque8e0252b2014-07-07 16:04:44 -0500206HelloProtocol::registerPrefixes(const ndn::Name& adjName, const std::string& faceUri,
akmhoquebf11c5f2014-07-21 14:49:47 -0500207 double linkCost, const ndn::time::milliseconds& timeout)
akmhoquec04e7272014-07-02 11:00:14 -0500208{
akmhoque060d3022014-08-12 13:35:06 -0500209 m_nlsr.getFib().registerPrefix(adjName, faceUri, linkCost, timeout,
210 ndn::nfd::ROUTE_FLAG_CAPTURE, 0,
akmhoquec04e7272014-07-02 11:00:14 -0500211 ndn::bind(&HelloProtocol::onRegistrationSuccess,
akmhoque102aea42014-08-04 10:22:12 -0500212 this, _1, adjName,timeout),
akmhoquec04e7272014-07-02 11:00:14 -0500213 ndn::bind(&HelloProtocol::onRegistrationFailure,
akmhoquedfe615f2014-07-27 14:12:21 -0500214 this, _1, _2, adjName));
akmhoquec04e7272014-07-02 11:00:14 -0500215}
216
217void
218HelloProtocol::onRegistrationSuccess(const ndn::nfd::ControlParameters& commandSuccessResult,
akmhoque102aea42014-08-04 10:22:12 -0500219 const ndn::Name& neighbor,const ndn::time::milliseconds& timeout)
akmhoquec04e7272014-07-02 11:00:14 -0500220{
221 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(neighbor);
222 if (adjacent != 0) {
223 adjacent->setFaceId(commandSuccessResult.getFaceId());
akmhoque102aea42014-08-04 10:22:12 -0500224 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
225 broadcastKeyPrefix.append("KEYS");
226 std::string faceUri = adjacent->getConnectingFaceUri();
227 double linkCost = adjacent->getLinkCost();
228 m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getChronosyncPrefix(),
akmhoque060d3022014-08-12 13:35:06 -0500229 faceUri, linkCost, timeout,
230 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500231 m_nlsr.getFib().registerPrefix(m_nlsr.getConfParameter().getLsaPrefix(),
akmhoque060d3022014-08-12 13:35:06 -0500232 faceUri, linkCost, timeout,
233 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500234 m_nlsr.getFib().registerPrefix(broadcastKeyPrefix,
akmhoque060d3022014-08-12 13:35:06 -0500235 faceUri, linkCost, timeout,
236 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
akmhoque102aea42014-08-04 10:22:12 -0500237 m_nlsr.setStrategies();
238
akmhoquec04e7272014-07-02 11:00:14 -0500239 /* interest name: /<neighbor>/NLSR/INFO/<router> */
240 ndn::Name interestName(neighbor);
241 interestName.append(NLSR_COMPONENT);
242 interestName.append(INFO_COMPONENT);
243 interestName.append(m_nlsr.getConfParameter().getRouterPrefix().wireEncode());
244 expressInterest(interestName,
245 m_nlsr.getConfParameter().getInterestResendTime());
246 }
247}
248
249void
akmhoquedfe615f2014-07-27 14:12:21 -0500250HelloProtocol::onRegistrationFailure(uint32_t code, const std::string& error,
251 const ndn::Name& name)
akmhoquec04e7272014-07-02 11:00:14 -0500252{
253 _LOG_DEBUG(error << " (code: " << code << ")");
akmhoquedfe615f2014-07-27 14:12:21 -0500254 /*
255 * If NLSR can not create face for given faceUri then it will treat this
256 * failure as one INFO interest timed out. So that NLSR can move on with
257 * building Adj Lsa and calculate routing table. NLSR does not build Adj
258 * Lsa unless all the neighbors are ACTIVE or DEAD. For considering the
259 * missconfigured(link) neighbour dead this is required.
260 */
261 Adjacent *adjacent = m_nlsr.getAdjacencyList().findAdjacent(name);
262 if (adjacent != 0) {
263 adjacent->setInterestTimedOutNo(adjacent->getInterestTimedOutNo() + 1);
Vince Lehmancb76ade2014-08-28 21:24:41 -0500264 Adjacent::Status status = adjacent->getStatus();
akmhoquedfe615f2014-07-27 14:12:21 -0500265 uint32_t infoIntTimedOutCount = adjacent->getInterestTimedOutNo();
266
267 if (infoIntTimedOutCount == m_nlsr.getConfParameter().getInterestRetryNumber()) {
Vince Lehmancb76ade2014-08-28 21:24:41 -0500268 if (status == Adjacent::STATUS_ACTIVE) {
269 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
akmhoquedfe615f2014-07-27 14:12:21 -0500270 }
Vince Lehman50df6b72015-03-03 12:06:40 -0600271
272 m_nlsr.getLsdb().scheduleAdjLsaBuild();
akmhoquedfe615f2014-07-27 14:12:21 -0500273 }
274 }
akmhoquec04e7272014-07-02 11:00:14 -0500275}
276
Nick Gordonfad8e252016-08-11 14:21:38 -0500277} // namespace nlsr