blob: 1434aa4e6f08e985a7a07af923abe7806c7b425f [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 Lehman9d097802015-03-16 17:55:59 -0500141SyncLogicHandler::createSyncSocket(const ndn::Name& syncPrefix)
akmhoque53353462014-04-22 08:43:45 -0500142{
Vince Lehman9d097802015-03-16 17:55:59 -0500143 if (m_syncSocket != nullptr) {
144 _LOG_WARN("Trying to create Sync socket, but Sync socket already exists");
145 return;
146 }
147
148 m_syncPrefix = syncPrefix;
149
150 // Build LSA sync update prefix
151 buildUpdatePrefix();
152
akmhoque674b0b12014-05-20 14:33:28 -0500153 _LOG_DEBUG("Creating Sync socket. Sync Prefix: " << m_syncPrefix);
Vince Lehman904c2412014-09-23 19:36:11 -0500154
155 // The face's lifetime is managed in main.cpp; SyncSocket should not manage the memory
156 // of the object
Alexander Afanasyev7c8882f2014-10-28 12:12:15 -0700157 ndn::shared_ptr<ndn::Face> facePtr(&m_syncFace, NullDeleter<ndn::Face>());
Vince Lehman904c2412014-09-23 19:36:11 -0500158
159 m_syncSocket = ndn::make_shared<Sync::SyncSocket>(m_syncPrefix, m_validator, facePtr,
160 ndn::bind(&SyncLogicHandler::onNsyncUpdate,
161 this, _1, _2),
162 ndn::bind(&SyncLogicHandler::onNsyncRemoval,
163 this, _1));
akmhoque53353462014-04-22 08:43:45 -0500164}
165
166void
Vince Lehman904c2412014-09-23 19:36:11 -0500167SyncLogicHandler::onNsyncUpdate(const vector<Sync::MissingDataInfo>& v, Sync::SyncSocket* socket)
akmhoque53353462014-04-22 08:43:45 -0500168{
Vince Lehman904c2412014-09-23 19:36:11 -0500169 _LOG_DEBUG("Received Nsync update event");
170
171 for (size_t i = 0; i < v.size(); i++){
172 _LOG_DEBUG("Update Name: " << v[i].prefix << " Seq no: " << v[i].high.getSeq());
173
174 SyncUpdate update(v[i].prefix, v[i].high.getSeq());
175
176 processUpdateFromSync(update);
akmhoque53353462014-04-22 08:43:45 -0500177 }
178}
179
180void
Vince Lehman904c2412014-09-23 19:36:11 -0500181SyncLogicHandler::onNsyncRemoval(const string& prefix)
akmhoque53353462014-04-22 08:43:45 -0500182{
Vince Lehman904c2412014-09-23 19:36:11 -0500183 _LOG_DEBUG("Received Nsync removal event");
akmhoque53353462014-04-22 08:43:45 -0500184}
185
186void
Vince Lehman904c2412014-09-23 19:36:11 -0500187SyncLogicHandler::processUpdateFromSync(const SyncUpdate& update)
akmhoque53353462014-04-22 08:43:45 -0500188{
Vince Lehman904c2412014-09-23 19:36:11 -0500189 ndn::Name originRouter;
akmhoque53353462014-04-22 08:43:45 -0500190
Vince Lehman904c2412014-09-23 19:36:11 -0500191 try {
192 originRouter = update.getOriginRouter();
193 }
194 catch (std::exception& e) {
195 _LOG_WARN("Received malformed sync update");
akmhoque31d1d4b2014-05-05 22:08:14 -0500196 return;
akmhoque53353462014-04-22 08:43:45 -0500197 }
akmhoque53353462014-04-22 08:43:45 -0500198
Vince Lehman904c2412014-09-23 19:36:11 -0500199 // A router should not try to fetch its own LSA
200 if (originRouter != m_confParam.getRouterPrefix()) {
201
202 update.getSequencingManager().writeLog();
203
akmhoque157b0a42014-05-13 00:26:37 -0500204 try {
alvy49b1c0c2014-12-19 13:57:46 -0600205 if (isLsaNew(originRouter, NameLsa::TYPE_STRING, update.getNameLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500206 _LOG_DEBUG("Received sync update with higher Name LSA sequence number than entry in LSDB");
207
alvy49b1c0c2014-12-19 13:57:46 -0600208 expressInterestForLsa(update, NameLsa::TYPE_STRING, update.getNameLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500209 }
Vince Lehman904c2412014-09-23 19:36:11 -0500210
alvy49b1c0c2014-12-19 13:57:46 -0600211 if (isLsaNew(originRouter, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500212 _LOG_DEBUG("Received sync update with higher Adj LSA sequence number than entry in LSDB");
213
alvy49b1c0c2014-12-19 13:57:46 -0600214 expressInterestForLsa(update, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500215 }
Vince Lehman904c2412014-09-23 19:36:11 -0500216
alvy49b1c0c2014-12-19 13:57:46 -0600217 if (isLsaNew(originRouter, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo())) {
Vince Lehman904c2412014-09-23 19:36:11 -0500218 _LOG_DEBUG("Received sync update with higher Cor LSA sequence number than entry in LSDB");
219
alvy49b1c0c2014-12-19 13:57:46 -0600220 expressInterestForLsa(update, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo());
akmhoque31d1d4b2014-05-05 22:08:14 -0500221 }
akmhoque53353462014-04-22 08:43:45 -0500222 }
akmhoque157b0a42014-05-13 00:26:37 -0500223 catch (std::exception& e) {
akmhoque31d1d4b2014-05-05 22:08:14 -0500224 std::cerr << e.what() << std::endl;
225 return;
akmhoque53353462014-04-22 08:43:45 -0500226 }
227 }
228}
229
Vince Lehman904c2412014-09-23 19:36:11 -0500230bool
231SyncLogicHandler::isLsaNew(const ndn::Name& originRouter, const std::string& lsaType,
232 uint64_t seqNo)
akmhoque53353462014-04-22 08:43:45 -0500233{
Vince Lehman904c2412014-09-23 19:36:11 -0500234 ndn::Name lsaKey = originRouter;
235 lsaKey.append(lsaType);
236
alvy49b1c0c2014-12-19 13:57:46 -0600237 if (lsaType == NameLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500238 {
239 return m_lsdb.isNameLsaNew(lsaKey, seqNo);
240 }
alvy49b1c0c2014-12-19 13:57:46 -0600241 else if (lsaType == AdjLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500242 {
243 return m_lsdb.isAdjLsaNew(lsaKey, seqNo);
244 }
alvy49b1c0c2014-12-19 13:57:46 -0600245 else if (lsaType == CoordinateLsa::TYPE_STRING)
Vince Lehman904c2412014-09-23 19:36:11 -0500246 {
247 return m_lsdb.isCoordinateLsaNew(lsaKey, seqNo);
248 }
249
250 return false;
akmhoque53353462014-04-22 08:43:45 -0500251}
252
akmhoque53353462014-04-22 08:43:45 -0500253void
Vince Lehman904c2412014-09-23 19:36:11 -0500254SyncLogicHandler::expressInterestForLsa(const SyncUpdate& update, std::string lsaType,
255 uint64_t seqNo)
akmhoque53353462014-04-22 08:43:45 -0500256{
Vince Lehman904c2412014-09-23 19:36:11 -0500257 ndn::Name interest(update.getName());
258 interest.append(lsaType);
259 interest.appendNumber(seqNo);
260
261 m_lsdb.expressInterest(interest, 0);
262}
263
264void
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600265SyncLogicHandler::publishRoutingUpdate()
Vince Lehman904c2412014-09-23 19:36:11 -0500266{
Vince Lehman9d097802015-03-16 17:55:59 -0500267 if (m_syncSocket == nullptr) {
268 _LOG_FATAL("Cannot publish routing update; SyncSocket does not exist");
269
270 throw SyncLogicHandler::Error("Cannot publish routing update; SyncSocket does not exist");
271 }
272
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600273 m_sequencingManager.writeSeqNoToFile();
274
275 publishSyncUpdate(m_updatePrefix, m_sequencingManager.getCombinedSeqNo());
Vince Lehman904c2412014-09-23 19:36:11 -0500276}
277
278void
Vince Lehmanc11cc202015-01-20 11:41:33 -0600279SyncLogicHandler::buildUpdatePrefix()
280{
281 m_updatePrefix = m_confParam.getLsaPrefix();
282 m_updatePrefix.append(m_confParam.getSiteName());
283 m_updatePrefix.append(m_confParam.getRouterName());
284}
285
286void
Vince Lehman904c2412014-09-23 19:36:11 -0500287SyncLogicHandler::publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo)
288{
289 _LOG_DEBUG("Publishing Sync Update. Prefix: " << updatePrefix << " Seq No: " << seqNo);
290
akmhoque53353462014-04-22 08:43:45 -0500291 ndn::Name updateName(updatePrefix);
292 string data("NoData");
Vince Lehman904c2412014-09-23 19:36:11 -0500293
294 m_syncSocket->publishData(updateName.toUri(), 0, data.c_str(), data.size(), 1000, seqNo);
akmhoque53353462014-04-22 08:43:45 -0500295}
296
297}//namespace nlsr