akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 3 | * Copyright (c) 2014-2019, The University of Memphis, |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 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/>. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 20 | **/ |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 21 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 22 | #include "sync-logic-handler.hpp" |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 23 | #include "common.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 24 | #include "conf-parameter.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 25 | #include "lsa.hpp" |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 26 | #include "logger.hpp" |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 27 | #include "utility/name-helper.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 28 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 29 | namespace nlsr { |
| 30 | |
Ashlesh Gawande | cba0ae2 | 2018-03-27 17:57:56 -0500 | [diff] [blame] | 31 | const std::string NLSR_COMPONENT = "nlsr"; |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 32 | const std::string LSA_COMPONENT = "LSA"; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 33 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 34 | INIT_LOGGER(SyncLogicHandler); |
| 35 | |
Alexander Afanasyev | 7c8882f | 2014-10-28 12:12:15 -0700 | [diff] [blame] | 36 | template<class T> |
| 37 | class NullDeleter |
| 38 | { |
| 39 | public: |
| 40 | void |
| 41 | operator()(T*) |
| 42 | { |
| 43 | } |
| 44 | }; |
| 45 | |
Nick Gordon | 563611e | 2018-01-23 13:44:36 -0600 | [diff] [blame] | 46 | SyncLogicHandler::SyncLogicHandler(ndn::Face& face, const IsLsaNew& isLsaNew, |
| 47 | const ConfParameter& conf) |
Davide Pesavento | a08dc3f | 2018-05-24 00:40:28 -0400 | [diff] [blame] | 48 | : onNewLsa(std::make_unique<OnNewLsa>()) |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 49 | , m_syncFace(face) |
| 50 | , m_isLsaNew(isLsaNew) |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 51 | , m_confParam(conf) |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 52 | { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 53 | createSyncLogic(conf.getSyncPrefix()); |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 54 | } |
| 55 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 56 | void |
Ashlesh Gawande | 4810107 | 2018-05-30 17:53:06 -0500 | [diff] [blame] | 57 | SyncLogicHandler::createSyncLogic(const ndn::Name& syncPrefix, const ndn::time::milliseconds& syncInterestLifetime) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 58 | { |
Ashlesh Gawande | 4810107 | 2018-05-30 17:53:06 -0500 | [diff] [blame] | 59 | if (m_syncLogic != nullptr) { |
| 60 | NLSR_LOG_WARN("Trying to create Sync Logic object, but Sync Logic object already exists"); |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 61 | return; |
| 62 | } |
| 63 | |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 64 | // Build LSA sync update prefix |
| 65 | buildUpdatePrefix(); |
| 66 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 67 | NLSR_LOG_DEBUG("Creating Sync Logic object. Sync Prefix: " << syncPrefix); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 68 | |
Ashlesh Gawande | 4810107 | 2018-05-30 17:53:06 -0500 | [diff] [blame] | 69 | // The face's lifetime is managed in main.cpp; Logic should not manage the memory |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 70 | // of the object |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 71 | std::shared_ptr<ndn::Face> facePtr(&m_syncFace, NullDeleter<ndn::Face>()); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 72 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 73 | m_syncLogic = std::make_shared<SyncProtocolAdapter>(*facePtr, |
| 74 | m_confParam.getSyncProtocol(), |
| 75 | syncPrefix, |
| 76 | m_nameLsaUserPrefix, |
| 77 | syncInterestLifetime, |
| 78 | std::bind(&SyncLogicHandler::processUpdate, this, _1, _2)); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 79 | |
| 80 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_OFF) { |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 81 | m_syncLogic->addUserNode(m_adjLsaUserPrefix); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 82 | } |
laqinfan | ac4b656 | 2017-12-08 11:24:21 +0000 | [diff] [blame] | 83 | else if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 84 | m_syncLogic->addUserNode(m_coorLsaUserPrefix); |
laqinfan | ac4b656 | 2017-12-08 11:24:21 +0000 | [diff] [blame] | 85 | } |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 86 | else { |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 87 | m_syncLogic->addUserNode(m_adjLsaUserPrefix); |
| 88 | m_syncLogic->addUserNode(m_coorLsaUserPrefix); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 89 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 93 | SyncLogicHandler::processUpdate(const ndn::Name& updateName, uint64_t highSeq) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 94 | { |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 95 | NLSR_LOG_DEBUG("Update Name: " << updateName << " Seq no: " << highSeq); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 96 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 97 | int32_t nlsrPosition = util::getNameComponentPosition(updateName, nlsr::NLSR_COMPONENT); |
| 98 | int32_t lsaPosition = util::getNameComponentPosition(updateName, nlsr::LSA_COMPONENT); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 99 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 100 | if (nlsrPosition < 0 || lsaPosition < 0) { |
| 101 | NLSR_LOG_WARN("Received malformed sync update"); |
| 102 | return; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 103 | } |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 104 | |
| 105 | ndn::Name networkName = updateName.getSubName(1, nlsrPosition-1); |
| 106 | ndn::Name routerName = updateName.getSubName(lsaPosition + 1).getPrefix(-1); |
| 107 | |
| 108 | ndn::Name originRouter = networkName; |
| 109 | originRouter.append(routerName); |
| 110 | |
| 111 | processUpdateFromSync(originRouter, updateName, highSeq); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | void |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 115 | SyncLogicHandler::processUpdateFromSync(const ndn::Name& originRouter, |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 116 | const ndn::Name& updateName, uint64_t seqNo) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 117 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 118 | NLSR_LOG_DEBUG("Origin Router of update: " << originRouter); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 119 | |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 120 | // A router should not try to fetch its own LSA |
| 121 | if (originRouter != m_confParam.getRouterPrefix()) { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 122 | |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 123 | Lsa::Type lsaType; |
| 124 | std::istringstream(updateName.get(updateName.size()-1).toUri()) >> lsaType; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 125 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 126 | NLSR_LOG_DEBUG("Received sync update with higher " << lsaType << |
| 127 | " sequence number than entry in LSDB"); |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 128 | |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 129 | if (m_isLsaNew(originRouter, lsaType, seqNo)) { |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 130 | if (lsaType == Lsa::Type::ADJACENCY && seqNo != 0 && |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 131 | m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 132 | NLSR_LOG_ERROR("Got an update for adjacency LSA when hyperbolic routing " << |
| 133 | "is enabled. Not going to fetch."); |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 134 | return; |
| 135 | } |
| 136 | |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 137 | if (lsaType == Lsa::Type::COORDINATE && seqNo != 0 && |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 138 | m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_OFF) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 139 | NLSR_LOG_ERROR("Got an update for coordinate LSA when link-state " << |
| 140 | "is enabled. Not going to fetch."); |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 141 | return; |
| 142 | } |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 143 | (*onNewLsa)(updateName, seqNo); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 144 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 148 | void |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 149 | SyncLogicHandler::publishRoutingUpdate(const Lsa::Type& type, const uint64_t& seqNo) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 150 | { |
Ashlesh Gawande | 4810107 | 2018-05-30 17:53:06 -0500 | [diff] [blame] | 151 | if (m_syncLogic == nullptr) { |
| 152 | NLSR_LOG_FATAL("Cannot publish routing update; SyncLogic does not exist"); |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 153 | |
Ashlesh Gawande | 4810107 | 2018-05-30 17:53:06 -0500 | [diff] [blame] | 154 | BOOST_THROW_EXCEPTION(SyncLogicHandler::Error("Cannot publish routing update; SyncLogic does not exist")); |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 155 | } |
| 156 | |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 157 | switch (type) { |
| 158 | case Lsa::Type::ADJACENCY: |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 159 | m_syncLogic->publishUpdate(m_adjLsaUserPrefix, seqNo); |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 160 | break; |
| 161 | case Lsa::Type::COORDINATE: |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 162 | m_syncLogic->publishUpdate(m_coorLsaUserPrefix, seqNo); |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 163 | break; |
| 164 | case Lsa::Type::NAME: |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 165 | m_syncLogic->publishUpdate(m_nameLsaUserPrefix, seqNo); |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 166 | break; |
| 167 | default: |
| 168 | break; |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 169 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | void |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 173 | SyncLogicHandler::buildUpdatePrefix() |
| 174 | { |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 175 | ndn::Name updatePrefix = m_confParam.getLsaPrefix(); |
| 176 | updatePrefix.append(m_confParam.getSiteName()); |
| 177 | updatePrefix.append(m_confParam.getRouterName()); |
| 178 | |
| 179 | m_nameLsaUserPrefix = updatePrefix; |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 180 | m_nameLsaUserPrefix.append(std::to_string(Lsa::Type::NAME)); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 181 | |
| 182 | m_adjLsaUserPrefix = updatePrefix; |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 183 | m_adjLsaUserPrefix.append(std::to_string(Lsa::Type::ADJACENCY)); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 184 | |
| 185 | m_coorLsaUserPrefix = updatePrefix; |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 186 | m_coorLsaUserPrefix.append(std::to_string(Lsa::Type::COORDINATE)); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 187 | } |
| 188 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 189 | } // namespace nlsr |