blob: 705a721cd72316d5dec0bda397732edb52d5f165 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Vince Lehmanc2e51f62015-01-20 15:03:11 -06003 * Copyright (c) 2014-2015, The University of Memphis,
4 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
akmhoque53353462014-04-22 08:43:45 -050022#include "sync-logic-handler.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050023
Vince Lehman0a7da612014-10-29 14:39:29 -050024#include "common.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050025#include "conf-parameter.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050026#include "logger.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050027#include "lsa.hpp"
28#include "lsdb.hpp"
29#include "sequencing-manager.hpp"
30#include "utility/name-helper.hpp"
31
akmhoque53353462014-04-22 08:43:45 -050032namespace nlsr {
33
akmhoque674b0b12014-05-20 14:33:28 -050034INIT_LOGGER("SyncLogicHandler");
35
akmhoquefdbddb12014-05-02 18:35:19 -050036using namespace ndn;
37using namespace std;
38
Vince Lehman904c2412014-09-23 19:36:11 -050039class SyncUpdate
40{
41public:
42 class Error : public std::runtime_error
43 {
44 public:
45 explicit
46 Error(const std::string& what)
47 : std::runtime_error(what)
48 {
49 }
50 };
51
52public:
53 SyncUpdate(const ndn::Name& name, uint64_t seqNo)
54 : m_name(name)
55 , m_seqManager(seqNo)
56 {
57 }
58
59 const ndn::Name&
60 getName() const
61 {
62 return m_name;
63 }
64
65 const ndn::Name
66 getOriginRouter() const
67 {
68 int32_t nlsrPosition = util::getNameComponentPosition(m_name, NLSR_COMPONENT);
69 int32_t lsaPosition = util::getNameComponentPosition(m_name, LSA_COMPONENT);
70
71 if (nlsrPosition < 0 || lsaPosition < 0) {
72 throw Error("Cannot parse update name because expected components are missing");
73 }
74
75 ndn::Name networkName = m_name.getSubName(0, nlsrPosition);
76 ndn::Name routerName = m_name.getSubName(lsaPosition + 1);
77
78 ndn::Name originRouter = networkName;
79 originRouter.append(routerName);
80
81 return originRouter;
82 }
83
84 uint64_t
85 getNameLsaSeqNo() const
86 {
87 return m_seqManager.getNameLsaSeq();
88 }
89
90 uint64_t
91 getAdjLsaSeqNo() const
92 {
93 return m_seqManager.getAdjLsaSeq();
94 }
95
96 uint64_t
97 getCorLsaSeqNo() const
98 {
99 return m_seqManager.getCorLsaSeq();
100 }
101
102 const SequencingManager&
103 getSequencingManager() const
104 {
105 return m_seqManager;
106 }
107
108private:
109 const ndn::Name m_name;
110 SequencingManager m_seqManager;
111
112 static const std::string NLSR_COMPONENT;
113 static const std::string LSA_COMPONENT;
114};
115
116const std::string SyncUpdate::NLSR_COMPONENT = "NLSR";
117const std::string SyncUpdate::LSA_COMPONENT = "LSA";
118
Alexander Afanasyev7c8882f2014-10-28 12:12:15 -0700119template<class T>
120class NullDeleter
121{
122public:
123 void
124 operator()(T*)
125 {
126 }
127};
128
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600129SyncLogicHandler::SyncLogicHandler(ndn::Face& face,
130 Lsdb& lsdb, ConfParameter& conf,
131 SequencingManager& seqManager)
132 : m_validator(new ndn::ValidatorNull())
133 , m_syncFace(face)
134 , m_lsdb(lsdb)
135 , m_confParam(conf)
136 , m_sequencingManager(seqManager)
137{
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600138}
139
akmhoque53353462014-04-22 08:43:45 -0500140void
Vince Lehman904c2412014-09-23 19:36:11 -0500141SyncLogicHandler::createSyncSocket()
akmhoque53353462014-04-22 08:43:45 -0500142{
akmhoque674b0b12014-05-20 14:33:28 -0500143 _LOG_DEBUG("Creating Sync socket. Sync Prefix: " << m_syncPrefix);
Vince Lehman904c2412014-09-23 19:36:11 -0500144
145 // The face's lifetime is managed in main.cpp; SyncSocket should not manage the memory
146 // of the object
Alexander Afanasyev7c8882f2014-10-28 12:12:15 -0700147 ndn::shared_ptr<ndn::Face> facePtr(&m_syncFace, NullDeleter<ndn::Face>());
Vince Lehman904c2412014-09-23 19:36:11 -0500148
149 m_syncSocket = ndn::make_shared<Sync::SyncSocket>(m_syncPrefix, m_validator, facePtr,
150 ndn::bind(&SyncLogicHandler::onNsyncUpdate,
151 this, _1, _2),
152 ndn::bind(&SyncLogicHandler::onNsyncRemoval,
153 this, _1));
akmhoque53353462014-04-22 08:43:45 -0500154}
155
156void
Vince Lehman904c2412014-09-23 19:36:11 -0500157SyncLogicHandler::onNsyncUpdate(const vector<Sync::MissingDataInfo>& v, Sync::SyncSocket* socket)
akmhoque53353462014-04-22 08:43:45 -0500158{
Vince Lehman904c2412014-09-23 19:36:11 -0500159 _LOG_DEBUG("Received Nsync update event");
160
161 for (size_t i = 0; i < v.size(); i++){
162 _LOG_DEBUG("Update Name: " << v[i].prefix << " Seq no: " << v[i].high.getSeq());
163
164 SyncUpdate update(v[i].prefix, v[i].high.getSeq());
165
166 processUpdateFromSync(update);
akmhoque53353462014-04-22 08:43:45 -0500167 }
168}
169
170void
Vince Lehman904c2412014-09-23 19:36:11 -0500171SyncLogicHandler::onNsyncRemoval(const string& prefix)
akmhoque53353462014-04-22 08:43:45 -0500172{
Vince Lehman904c2412014-09-23 19:36:11 -0500173 _LOG_DEBUG("Received Nsync removal event");
akmhoque53353462014-04-22 08:43:45 -0500174}
175
176void
Vince Lehman904c2412014-09-23 19:36:11 -0500177SyncLogicHandler::processUpdateFromSync(const SyncUpdate& update)
akmhoque53353462014-04-22 08:43:45 -0500178{
Vince Lehman904c2412014-09-23 19:36:11 -0500179 ndn::Name originRouter;
akmhoque53353462014-04-22 08:43:45 -0500180
Vince Lehman904c2412014-09-23 19:36:11 -0500181 try {
182 originRouter = update.getOriginRouter();
183 }
184 catch (std::exception& e) {
185 _LOG_WARN("Received malformed sync update");
akmhoque31d1d4b2014-05-05 22:08:14 -0500186 return;
akmhoque53353462014-04-22 08:43:45 -0500187 }
akmhoque53353462014-04-22 08:43:45 -0500188
Vince Lehman904c2412014-09-23 19:36:11 -0500189 // A router should not try to fetch its own LSA
190 if (originRouter != m_confParam.getRouterPrefix()) {
191
192 update.getSequencingManager().writeLog();
193
akmhoque157b0a42014-05-13 00:26:37 -0500194 try {
alvy49b1c0c2014-12-19 13:57:46 -0600195 if (isLsaNew(originRouter, NameLsa::TYPE_STRING, update.getNameLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500196 _LOG_DEBUG("Received sync update with higher Name LSA sequence number than entry in LSDB");
197
alvy49b1c0c2014-12-19 13:57:46 -0600198 expressInterestForLsa(update, NameLsa::TYPE_STRING, update.getNameLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500199 }
Vince Lehman904c2412014-09-23 19:36:11 -0500200
alvy49b1c0c2014-12-19 13:57:46 -0600201 if (isLsaNew(originRouter, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500202 _LOG_DEBUG("Received sync update with higher Adj LSA sequence number than entry in LSDB");
203
alvy49b1c0c2014-12-19 13:57:46 -0600204 expressInterestForLsa(update, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500205 }
Vince Lehman904c2412014-09-23 19:36:11 -0500206
alvy49b1c0c2014-12-19 13:57:46 -0600207 if (isLsaNew(originRouter, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500208 _LOG_DEBUG("Received sync update with higher Cor LSA sequence number than entry in LSDB");
209
alvy49b1c0c2014-12-19 13:57:46 -0600210 expressInterestForLsa(update, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500211 }
akmhoque53353462014-04-22 08:43:45 -0500212 }
akmhoque157b0a42014-05-13 00:26:37 -0500213 catch (std::exception& e) {
akmhoque31d1d4b2014-05-05 22:08:14 -0500214 std::cerr << e.what() << std::endl;
215 return;
akmhoque53353462014-04-22 08:43:45 -0500216 }
217 }
218}
219
Vince Lehman904c2412014-09-23 19:36:11 -0500220bool
221SyncLogicHandler::isLsaNew(const ndn::Name& originRouter, const std::string& lsaType,
222 uint64_t seqNo)
akmhoque53353462014-04-22 08:43:45 -0500223{
Vince Lehman904c2412014-09-23 19:36:11 -0500224 ndn::Name lsaKey = originRouter;
225 lsaKey.append(lsaType);
226
alvy49b1c0c2014-12-19 13:57:46 -0600227 if (lsaType == NameLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500228 {
229 return m_lsdb.isNameLsaNew(lsaKey, seqNo);
230 }
alvy49b1c0c2014-12-19 13:57:46 -0600231 else if (lsaType == AdjLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500232 {
233 return m_lsdb.isAdjLsaNew(lsaKey, seqNo);
234 }
alvy49b1c0c2014-12-19 13:57:46 -0600235 else if (lsaType == CoordinateLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500236 {
237 return m_lsdb.isCoordinateLsaNew(lsaKey, seqNo);
238 }
239
240 return false;
akmhoque53353462014-04-22 08:43:45 -0500241}
242
akmhoque53353462014-04-22 08:43:45 -0500243void
Vince Lehman904c2412014-09-23 19:36:11 -0500244SyncLogicHandler::expressInterestForLsa(const SyncUpdate& update, std::string lsaType,
245 uint64_t seqNo)
akmhoque53353462014-04-22 08:43:45 -0500246{
Vince Lehman904c2412014-09-23 19:36:11 -0500247 ndn::Name interest(update.getName());
248 interest.append(lsaType);
249 interest.appendNumber(seqNo);
250
251 m_lsdb.expressInterest(interest, 0);
252}
253
254void
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600255SyncLogicHandler::publishRoutingUpdate()
Vince Lehman904c2412014-09-23 19:36:11 -0500256{
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600257 m_sequencingManager.writeSeqNoToFile();
258
259 publishSyncUpdate(m_updatePrefix, m_sequencingManager.getCombinedSeqNo());
Vince Lehman904c2412014-09-23 19:36:11 -0500260}
261
262void
Vince Lehmanc11cc202015-01-20 11:41:33 -0600263SyncLogicHandler::buildUpdatePrefix()
264{
265 m_updatePrefix = m_confParam.getLsaPrefix();
266 m_updatePrefix.append(m_confParam.getSiteName());
267 m_updatePrefix.append(m_confParam.getRouterName());
268}
269
270void
Vince Lehman904c2412014-09-23 19:36:11 -0500271SyncLogicHandler::publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo)
272{
273 _LOG_DEBUG("Publishing Sync Update. Prefix: " << updatePrefix << " Seq No: " << seqNo);
274
akmhoque53353462014-04-22 08:43:45 -0500275 ndn::Name updateName(updatePrefix);
276 string data("NoData");
Vince Lehman904c2412014-09-23 19:36:11 -0500277
278 m_syncSocket->publishData(updateName.toUri(), 0, data.c_str(), data.size(), 1000, seqNo);
akmhoque53353462014-04-22 08:43:45 -0500279}
280
281}//namespace nlsr