blob: 13f2e8ebf9a43c28302cd59c94481d27cc591bbe [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
dmcoomescf8d0ed2017-02-21 11:39:01 -06003 * Copyright (c) 2014-2018, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * 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 Lehman0a7da612014-10-29 14:39:29 -050023#include "common.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050024#include "conf-parameter.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050025#include "lsa.hpp"
Nick Gordon9eac4d92017-08-29 17:31:29 -050026#include "logger.hpp"
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050027#include "utility/name-helper.hpp"
Vince Lehman904c2412014-09-23 19:36:11 -050028
akmhoque53353462014-04-22 08:43:45 -050029namespace nlsr {
30
Ashlesh Gawandecba0ae22018-03-27 17:57:56 -050031const std::string NLSR_COMPONENT = "nlsr";
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050032const std::string LSA_COMPONENT = "LSA";
Vince Lehman904c2412014-09-23 19:36:11 -050033
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050034INIT_LOGGER(SyncLogicHandler);
35
Alexander Afanasyev7c8882f2014-10-28 12:12:15 -070036template<class T>
37class NullDeleter
38{
39public:
40 void
41 operator()(T*)
42 {
43 }
44};
45
Nick Gordon563611e2018-01-23 13:44:36 -060046SyncLogicHandler::SyncLogicHandler(ndn::Face& face, const IsLsaNew& isLsaNew,
47 const ConfParameter& conf)
Davide Pesaventoa08dc3f2018-05-24 00:40:28 -040048 : onNewLsa(std::make_unique<OnNewLsa>())
Nick Gordon9eac4d92017-08-29 17:31:29 -050049 , m_syncFace(face)
50 , m_isLsaNew(isLsaNew)
Vince Lehman0bcf9a32014-12-10 11:24:45 -060051 , m_confParam(conf)
Vince Lehman0bcf9a32014-12-10 11:24:45 -060052{
Vince Lehman0bcf9a32014-12-10 11:24:45 -060053}
54
akmhoque53353462014-04-22 08:43:45 -050055void
Ashlesh Gawande48101072018-05-30 17:53:06 -050056SyncLogicHandler::createSyncLogic(const ndn::Name& syncPrefix, const ndn::time::milliseconds& syncInterestLifetime)
akmhoque53353462014-04-22 08:43:45 -050057{
Ashlesh Gawande48101072018-05-30 17:53:06 -050058 if (m_syncLogic != nullptr) {
59 NLSR_LOG_WARN("Trying to create Sync Logic object, but Sync Logic object already exists");
Vince Lehman9d097802015-03-16 17:55:59 -050060 return;
61 }
62
Vince Lehman9d097802015-03-16 17:55:59 -050063 // Build LSA sync update prefix
64 buildUpdatePrefix();
65
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050066 NLSR_LOG_DEBUG("Creating Sync Logic object. Sync Prefix: " << syncPrefix);
Vince Lehman904c2412014-09-23 19:36:11 -050067
Ashlesh Gawande48101072018-05-30 17:53:06 -050068 // The face's lifetime is managed in main.cpp; Logic should not manage the memory
Vince Lehman904c2412014-09-23 19:36:11 -050069 // of the object
dmcoomes9f936662017-03-02 10:33:09 -060070 std::shared_ptr<ndn::Face> facePtr(&m_syncFace, NullDeleter<ndn::Face>());
Vince Lehman904c2412014-09-23 19:36:11 -050071
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050072 m_syncLogic = std::make_shared<SyncProtocolAdapter>(*facePtr,
73 m_confParam.getSyncProtocol(),
74 syncPrefix,
75 m_nameLsaUserPrefix,
76 syncInterestLifetime,
77 std::bind(&SyncLogicHandler::processUpdate, this, _1, _2));
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050078
79 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_OFF) {
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050080 m_syncLogic->addUserNode(m_adjLsaUserPrefix);
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050081 }
laqinfanac4b6562017-12-08 11:24:21 +000082 else if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050083 m_syncLogic->addUserNode(m_coorLsaUserPrefix);
laqinfanac4b6562017-12-08 11:24:21 +000084 }
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050085 else {
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050086 m_syncLogic->addUserNode(m_adjLsaUserPrefix);
87 m_syncLogic->addUserNode(m_coorLsaUserPrefix);
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050088 }
akmhoque53353462014-04-22 08:43:45 -050089}
90
91void
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050092SyncLogicHandler::processUpdate(const ndn::Name& updateName, uint64_t highSeq)
akmhoque53353462014-04-22 08:43:45 -050093{
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050094 NLSR_LOG_DEBUG("Update Name: " << updateName << " Seq no: " << highSeq);
Vince Lehman904c2412014-09-23 19:36:11 -050095
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050096 int32_t nlsrPosition = util::getNameComponentPosition(updateName, nlsr::NLSR_COMPONENT);
97 int32_t lsaPosition = util::getNameComponentPosition(updateName, nlsr::LSA_COMPONENT);
Vince Lehman904c2412014-09-23 19:36:11 -050098
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050099 if (nlsrPosition < 0 || lsaPosition < 0) {
100 NLSR_LOG_WARN("Received malformed sync update");
101 return;
akmhoque53353462014-04-22 08:43:45 -0500102 }
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500103
104 ndn::Name networkName = updateName.getSubName(1, nlsrPosition-1);
105 ndn::Name routerName = updateName.getSubName(lsaPosition + 1).getPrefix(-1);
106
107 ndn::Name originRouter = networkName;
108 originRouter.append(routerName);
109
110 processUpdateFromSync(originRouter, updateName, highSeq);
akmhoque53353462014-04-22 08:43:45 -0500111}
112
113void
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500114SyncLogicHandler::processUpdateFromSync(const ndn::Name& originRouter,
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500115 const ndn::Name& updateName, uint64_t seqNo)
akmhoque53353462014-04-22 08:43:45 -0500116{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500117 NLSR_LOG_DEBUG("Origin Router of update: " << originRouter);
akmhoque53353462014-04-22 08:43:45 -0500118
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500119 // A router should not try to fetch its own LSA
120 if (originRouter != m_confParam.getRouterPrefix()) {
Vince Lehman904c2412014-09-23 19:36:11 -0500121
Nick Gordon727d4832017-10-13 18:04:25 -0500122 Lsa::Type lsaType;
123 std::istringstream(updateName.get(updateName.size()-1).toUri()) >> lsaType;
Vince Lehman904c2412014-09-23 19:36:11 -0500124
dmcoomes5bcb39e2017-10-31 15:07:55 -0500125 NLSR_LOG_DEBUG("Received sync update with higher " << lsaType
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500126 << " sequence number than entry in LSDB");
127
Nick Gordon9eac4d92017-08-29 17:31:29 -0500128 if (m_isLsaNew(originRouter, lsaType, seqNo)) {
Nick Gordon727d4832017-10-13 18:04:25 -0500129 if (lsaType == Lsa::Type::ADJACENCY && seqNo != 0 &&
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500130 m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500131 NLSR_LOG_ERROR("Got an update for adjacency LSA when hyperbolic routing"
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500132 << " is enabled. Not going to fetch.");
133 return;
134 }
135
Nick Gordon727d4832017-10-13 18:04:25 -0500136 if (lsaType == Lsa::Type::COORDINATE && seqNo != 0 &&
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500137 m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_OFF) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500138 NLSR_LOG_ERROR("Got an update for coordinate LSA when link-state"
Nick Gordon0f1bf1d2017-06-22 15:40:27 -0500139 << " is enabled. Not going to fetch.");
140 return;
141 }
Nick Gordon9eac4d92017-08-29 17:31:29 -0500142 (*onNewLsa)(updateName, seqNo);
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500143 }
akmhoque53353462014-04-22 08:43:45 -0500144 }
145}
146
Vince Lehman904c2412014-09-23 19:36:11 -0500147void
Nick Gordon727d4832017-10-13 18:04:25 -0500148SyncLogicHandler::publishRoutingUpdate(const Lsa::Type& type, const uint64_t& seqNo)
Vince Lehman904c2412014-09-23 19:36:11 -0500149{
Ashlesh Gawande48101072018-05-30 17:53:06 -0500150 if (m_syncLogic == nullptr) {
151 NLSR_LOG_FATAL("Cannot publish routing update; SyncLogic does not exist");
Vince Lehman9d097802015-03-16 17:55:59 -0500152
Ashlesh Gawande48101072018-05-30 17:53:06 -0500153 BOOST_THROW_EXCEPTION(SyncLogicHandler::Error("Cannot publish routing update; SyncLogic does not exist"));
Vince Lehman9d097802015-03-16 17:55:59 -0500154 }
155
Nick Gordon727d4832017-10-13 18:04:25 -0500156 switch (type) {
157 case Lsa::Type::ADJACENCY:
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500158 m_syncLogic->publishUpdate(m_adjLsaUserPrefix, seqNo);
Nick Gordon727d4832017-10-13 18:04:25 -0500159 break;
160 case Lsa::Type::COORDINATE:
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500161 m_syncLogic->publishUpdate(m_coorLsaUserPrefix, seqNo);
Nick Gordon727d4832017-10-13 18:04:25 -0500162 break;
163 case Lsa::Type::NAME:
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500164 m_syncLogic->publishUpdate(m_nameLsaUserPrefix, seqNo);
Nick Gordon727d4832017-10-13 18:04:25 -0500165 break;
166 default:
167 break;
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500168 }
Vince Lehman904c2412014-09-23 19:36:11 -0500169}
170
171void
Vince Lehmanc11cc202015-01-20 11:41:33 -0600172SyncLogicHandler::buildUpdatePrefix()
173{
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500174 ndn::Name updatePrefix = m_confParam.getLsaPrefix();
175 updatePrefix.append(m_confParam.getSiteName());
176 updatePrefix.append(m_confParam.getRouterName());
177
178 m_nameLsaUserPrefix = updatePrefix;
Nick Gordon727d4832017-10-13 18:04:25 -0500179 m_nameLsaUserPrefix.append(std::to_string(Lsa::Type::NAME));
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500180
181 m_adjLsaUserPrefix = updatePrefix;
Nick Gordon727d4832017-10-13 18:04:25 -0500182 m_adjLsaUserPrefix.append(std::to_string(Lsa::Type::ADJACENCY));
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500183
184 m_coorLsaUserPrefix = updatePrefix;
Nick Gordon727d4832017-10-13 18:04:25 -0500185 m_coorLsaUserPrefix.append(std::to_string(Lsa::Type::COORDINATE));
Vince Lehmanc11cc202015-01-20 11:41:33 -0600186}
187
Nick Gordonfad8e252016-08-11 14:21:38 -0500188} // namespace nlsr