akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 2 | /* |
Junxiao Shi | b875293 | 2024-01-07 15:18:46 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, 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/>. |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [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 "lsdb.hpp" |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 23 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 24 | #include "logger.hpp" |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 25 | #include "nlsr.hpp" |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 26 | #include "utility/name-helper.hpp" |
| 27 | |
Alexander Afanasyev | 135288c | 2022-04-23 23:06:56 -0400 | [diff] [blame] | 28 | #include <ndn-cxx/lp/tags.hpp> |
| 29 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 30 | namespace nlsr { |
| 31 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 32 | INIT_LOGGER(Lsdb); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 33 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 34 | Lsdb::Lsdb(ndn::Face& face, ndn::KeyChain& keyChain, ConfParameter& confParam) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 35 | : m_face(face) |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 36 | , m_scheduler(face.getIoContext()) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 37 | , m_confParam(confParam) |
Davide Pesavento | 1954a0c | 2022-09-30 15:56:04 -0400 | [diff] [blame] | 38 | , m_sync(m_face, keyChain, |
Junxiao Shi | f467467 | 2024-01-06 02:27:36 +0000 | [diff] [blame] | 39 | [this] (const auto& routerName, Lsa::Type lsaType, uint64_t seqNo, uint64_t) { |
| 40 | return isLsaNew(routerName, lsaType, seqNo); |
| 41 | }, |
| 42 | SyncLogicOptions{ |
| 43 | confParam.getSyncProtocol(), |
| 44 | confParam.getSyncPrefix(), |
| 45 | confParam.getSyncUserPrefix(), |
| 46 | confParam.getSyncInterestLifetime(), |
| 47 | confParam.getRouterPrefix(), |
| 48 | confParam.getHyperbolicState() |
| 49 | }) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 50 | , m_lsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 51 | , m_adjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()) |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 52 | , m_thisRouterPrefix(m_confParam.getRouterPrefix()) |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 53 | , m_sequencingManager(m_confParam.getStateFileDir(), m_confParam.getHyperbolicState()) |
Davide Pesavento | 1954a0c | 2022-09-30 15:56:04 -0400 | [diff] [blame] | 54 | , m_onNewLsaConnection(m_sync.onNewLsa.connect( |
Ashlesh Gawande | 08bce9c | 2019-04-05 11:08:07 -0500 | [diff] [blame] | 55 | [this] (const ndn::Name& updateName, uint64_t sequenceNumber, |
Alexander Afanasyev | 135288c | 2022-04-23 23:06:56 -0400 | [diff] [blame] | 56 | const ndn::Name& originRouter, uint64_t incomingFaceId) { |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 57 | ndn::Name lsaInterest{updateName}; |
| 58 | lsaInterest.appendNumber(sequenceNumber); |
Alexander Afanasyev | 135288c | 2022-04-23 23:06:56 -0400 | [diff] [blame] | 59 | expressInterest(lsaInterest, 0, incomingFaceId); |
Nick Gordon | 9eac4d9 | 2017-08-29 17:31:29 -0500 | [diff] [blame] | 60 | })) |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 61 | , m_segmenter(keyChain, m_confParam.getSigningInfo()) |
| 62 | , m_segmentFifo(100) |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 63 | , m_isBuildAdjLsaScheduled(false) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 64 | , m_adjBuildCount(0) |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 65 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 66 | ndn::Name name = m_confParam.getLsaPrefix(); |
| 67 | NLSR_LOG_DEBUG("Setting interest filter for LsaPrefix: " << name); |
| 68 | |
| 69 | m_face.setInterestFilter(ndn::InterestFilter(name).allowLoopback(false), |
| 70 | [this] (const auto& name, const auto& interest) { processInterest(name, interest); }, |
| 71 | [] (const auto& name) { NLSR_LOG_DEBUG("Successfully registered prefix: " << name); }, |
| 72 | [] (const auto& name, const auto& reason) { |
| 73 | NLSR_LOG_ERROR("Failed to register prefix " << name); |
| 74 | NDN_THROW(std::runtime_error("Register prefix failed: " + reason)); |
| 75 | }, |
| 76 | m_confParam.getSigningInfo(), ndn::nfd::ROUTE_FLAG_CAPTURE); |
| 77 | |
| 78 | buildAndInstallOwnNameLsa(); |
| 79 | // Install coordinate LSAs if using HR or dry-run HR. |
| 80 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 81 | buildAndInstallOwnCoordinateLsa(); |
| 82 | } |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 85 | Lsdb::~Lsdb() |
| 86 | { |
| 87 | for (const auto& fetcher : m_fetchers) { |
| 88 | fetcher->stop(); |
| 89 | } |
| 90 | } |
| 91 | |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 92 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 93 | Lsdb::buildAndInstallOwnNameLsa() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 94 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 95 | NameLsa nameLsa(m_thisRouterPrefix, m_sequencingManager.getNameLsaSeq() + 1, |
| 96 | getLsaExpirationTimePoint(), m_confParam.getNamePrefixList()); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 97 | m_sequencingManager.increaseNameLsaSeq(); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 98 | m_sequencingManager.writeSeqNoToFile(); |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 99 | m_sync.publishRoutingUpdate(Lsa::Type::NAME, m_sequencingManager.getNameLsaSeq()); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 100 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 101 | installLsa(std::make_shared<NameLsa>(nameLsa)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 105 | Lsdb::buildAndInstallOwnCoordinateLsa() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 106 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 107 | CoordinateLsa corLsa(m_thisRouterPrefix, m_sequencingManager.getCorLsaSeq() + 1, |
| 108 | getLsaExpirationTimePoint(), m_confParam.getCorR(), |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 109 | m_confParam.getCorTheta()); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 110 | m_sequencingManager.increaseCorLsaSeq(); |
| 111 | m_sequencingManager.writeSeqNoToFile(); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 112 | |
| 113 | // Sync coordinate LSAs if using HR or HR dry run. |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 114 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 115 | m_sync.publishRoutingUpdate(Lsa::Type::COORDINATE, m_sequencingManager.getCorLsaSeq()); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 116 | } |
| 117 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 118 | installLsa(std::make_shared<CoordinateLsa>(corLsa)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 119 | } |
| 120 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 121 | void |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 122 | Lsdb::scheduleAdjLsaBuild() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 123 | { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 124 | m_adjBuildCount++; |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 125 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 126 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 127 | // Don't build adjacency LSAs in hyperbolic routing |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 128 | NLSR_LOG_DEBUG("Adjacency LSA not built while in hyperbolic routing state"); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 129 | return; |
| 130 | } |
| 131 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 132 | if (m_isBuildAdjLsaScheduled) { |
Ashlesh Gawande | 6b388fc | 2019-09-30 10:14:41 -0500 | [diff] [blame] | 133 | NLSR_LOG_DEBUG("Rescheduling Adjacency LSA build in " << m_adjLsaBuildInterval); |
| 134 | } |
| 135 | else { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 136 | NLSR_LOG_DEBUG("Scheduling Adjacency LSA build in " << m_adjLsaBuildInterval); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 137 | m_isBuildAdjLsaScheduled = true; |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 138 | } |
Ashlesh Gawande | 6b388fc | 2019-09-30 10:14:41 -0500 | [diff] [blame] | 139 | m_scheduledAdjLsaBuild = m_scheduler.schedule(m_adjLsaBuildInterval, [this] { buildAdjLsa(); }); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 140 | } |
| 141 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 142 | void |
| 143 | Lsdb::writeLog() const |
| 144 | { |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 145 | for (auto type : {Lsa::Type::COORDINATE, Lsa::Type::NAME, Lsa::Type::ADJACENCY}) { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 146 | if ((type == Lsa::Type::COORDINATE && |
| 147 | m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_OFF) || |
| 148 | (type == Lsa::Type::ADJACENCY && |
| 149 | m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON)) { |
| 150 | continue; |
| 151 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 152 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 153 | NLSR_LOG_DEBUG("---------------" << type << " LSDB-------------------"); |
| 154 | auto lsaRange = m_lsdb.get<byType>().equal_range(type); |
| 155 | for (auto lsaIt = lsaRange.first; lsaIt != lsaRange.second; ++lsaIt) { |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 156 | NLSR_LOG_DEBUG(**lsaIt); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 157 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 158 | } |
| 159 | } |
| 160 | |
| 161 | void |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 162 | Lsdb::processInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 163 | { |
| 164 | ndn::Name interestName(interest.getName()); |
| 165 | NLSR_LOG_DEBUG("Interest received for LSA: " << interestName); |
| 166 | |
| 167 | if (interestName[-2].isVersion()) { |
| 168 | // Interest for particular segment |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 169 | auto data = m_segmentFifo.find(interestName); |
| 170 | if (data) { |
| 171 | NLSR_LOG_TRACE("Replying from FIFO buffer"); |
| 172 | m_face.put(*data); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 173 | return; |
| 174 | } |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 175 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 176 | // Remove version and segment |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 177 | interestName = interestName.getPrefix(-2); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 178 | NLSR_LOG_TRACE("Interest w/o segment and version: " << interestName); |
| 179 | } |
| 180 | |
| 181 | // increment RCV_LSA_INTEREST |
| 182 | lsaIncrementSignal(Statistics::PacketType::RCV_LSA_INTEREST); |
| 183 | |
| 184 | std::string chkString("LSA"); |
| 185 | int32_t lsaPosition = util::getNameComponentPosition(interestName, chkString); |
| 186 | |
| 187 | // Forms the name of the router that the Interest packet came from. |
| 188 | ndn::Name originRouter = m_confParam.getNetwork(); |
| 189 | originRouter.append(interestName.getSubName(lsaPosition + 1, |
| 190 | interestName.size() - lsaPosition - 3)); |
| 191 | |
| 192 | // if the interest is for this router's LSA |
| 193 | if (originRouter == m_thisRouterPrefix && lsaPosition >= 0) { |
| 194 | uint64_t seqNo = interestName[-1].toNumber(); |
| 195 | NLSR_LOG_DEBUG("LSA sequence number from interest: " << seqNo); |
| 196 | |
| 197 | std::string lsaType = interestName[-2].toUri(); |
| 198 | Lsa::Type interestedLsType; |
| 199 | std::istringstream(lsaType) >> interestedLsType; |
| 200 | if (interestedLsType == Lsa::Type::BASE) { |
| 201 | NLSR_LOG_WARN("Received unrecognized LSA type: " << lsaType); |
| 202 | return; |
| 203 | } |
| 204 | |
| 205 | incrementInterestRcvdStats(interestedLsType); |
| 206 | if (processInterestForLsa(interest, originRouter, interestedLsType, seqNo)) { |
| 207 | lsaIncrementSignal(Statistics::PacketType::SENT_LSA_DATA); |
| 208 | } |
| 209 | } |
| 210 | // else the interest is for other router's LSA, serve signed data from LsaSegmentStorage |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 211 | else if (auto lsaSegment = m_lsaStorage.find(interest); lsaSegment) { |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 212 | NLSR_LOG_TRACE("Found data in LSA storage. Sending data for " << interest.getName()); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 213 | m_face.put(*lsaSegment); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | bool |
| 218 | Lsdb::processInterestForLsa(const ndn::Interest& interest, const ndn::Name& originRouter, |
| 219 | Lsa::Type lsaType, uint64_t seqNo) |
| 220 | { |
| 221 | NLSR_LOG_DEBUG(interest << " received for " << lsaType); |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 222 | |
| 223 | if (auto lsaPtr = findLsa(originRouter, lsaType); lsaPtr) { |
| 224 | NLSR_LOG_TRACE("Verifying SeqNo for " << lsaType << " is same as requested"); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 225 | if (lsaPtr->getSeqNo() == seqNo) { |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 226 | auto segments = m_segmenter.segment(lsaPtr->wireEncode(), |
| 227 | ndn::Name(interest.getName()).appendVersion(), |
| 228 | ndn::MAX_NDN_PACKET_SIZE / 2, m_lsaRefreshTime); |
| 229 | for (const auto& data : segments) { |
| 230 | m_segmentFifo.insert(*data, m_lsaRefreshTime); |
| 231 | m_scheduler.schedule(m_lsaRefreshTime, |
| 232 | [this, name = data->getName()] { m_segmentFifo.erase(name); }); |
| 233 | } |
| 234 | |
| 235 | uint64_t segNum = 0; |
| 236 | if (interest.getName()[-1].isSegment()) { |
| 237 | segNum = interest.getName()[-1].toSegment(); |
| 238 | } |
| 239 | if (segNum < segments.size()) { |
| 240 | m_face.put(*segments[segNum]); |
| 241 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 242 | incrementDataSentStats(lsaType); |
| 243 | return true; |
| 244 | } |
| 245 | } |
| 246 | else { |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 247 | NLSR_LOG_TRACE(interest << " was not found in our LSDB"); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 248 | } |
| 249 | return false; |
| 250 | } |
| 251 | |
| 252 | void |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 253 | Lsdb::installLsa(std::shared_ptr<Lsa> lsa) |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 254 | { |
| 255 | auto timeToExpire = m_lsaRefreshTime; |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 256 | if (lsa->getOriginRouter() != m_thisRouterPrefix) { |
| 257 | auto duration = lsa->getExpirationTimePoint() - ndn::time::system_clock::now(); |
| 258 | if (duration > ndn::time::seconds(0)) { |
| 259 | timeToExpire = ndn::time::duration_cast<ndn::time::seconds>(duration); |
| 260 | } |
| 261 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 262 | |
| 263 | auto chkLsa = findLsa(lsa->getOriginRouter(), lsa->getType()); |
| 264 | if (chkLsa == nullptr) { |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 265 | NLSR_LOG_DEBUG("Adding LSA:\n" << *lsa); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 266 | |
| 267 | m_lsdb.emplace(lsa); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 268 | onLsdbModified(lsa, LsdbUpdate::INSTALLED, {}, {}); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 269 | |
| 270 | lsa->setExpiringEventId(scheduleLsaExpiration(lsa, timeToExpire)); |
| 271 | } |
| 272 | // Else this is a known name LSA, so we are updating it. |
| 273 | else if (chkLsa->getSeqNo() < lsa->getSeqNo()) { |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 274 | NLSR_LOG_DEBUG("Updating LSA:\n" << *chkLsa); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 275 | chkLsa->setSeqNo(lsa->getSeqNo()); |
| 276 | chkLsa->setExpirationTimePoint(lsa->getExpirationTimePoint()); |
| 277 | |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 278 | auto [updated, namesToAdd, namesToRemove] = chkLsa->update(lsa); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 279 | if (updated) { |
| 280 | onLsdbModified(lsa, LsdbUpdate::UPDATED, namesToAdd, namesToRemove); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 283 | chkLsa->setExpiringEventId(scheduleLsaExpiration(chkLsa, timeToExpire)); |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 284 | NLSR_LOG_DEBUG("Updated LSA:\n" << *chkLsa); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 288 | void |
| 289 | Lsdb::removeLsa(const LsaContainer::index<Lsdb::byName>::type::iterator& lsaIt) |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 290 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 291 | if (lsaIt != m_lsdb.end()) { |
| 292 | auto lsaPtr = *lsaIt; |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 293 | NLSR_LOG_DEBUG("Removing LSA:\n" << *lsaPtr); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 294 | m_lsdb.erase(lsaIt); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 295 | onLsdbModified(lsaPtr, LsdbUpdate::REMOVED, {}, {}); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 296 | } |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | void |
| 300 | Lsdb::removeLsa(const ndn::Name& router, Lsa::Type lsaType) |
| 301 | { |
| 302 | removeLsa(m_lsdb.get<byName>().find(std::make_tuple(router, lsaType))); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 305 | void |
| 306 | Lsdb::buildAdjLsa() |
| 307 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 308 | NLSR_LOG_TRACE("buildAdjLsa called"); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 309 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 310 | m_isBuildAdjLsaScheduled = false; |
Vince Lehman | f7eec4f | 2015-05-08 19:02:31 -0500 | [diff] [blame] | 311 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 312 | if (m_confParam.getAdjacencyList().isAdjLsaBuildable(m_confParam.getInterestRetryNumber())) { |
Vince Lehman | f7eec4f | 2015-05-08 19:02:31 -0500 | [diff] [blame] | 313 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 314 | int adjBuildCount = m_adjBuildCount; |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 315 | // Only do the adjLsa build if there's one scheduled |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 316 | if (adjBuildCount > 0) { |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 317 | // It only makes sense to do the adjLsa build if we have neighbors |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 318 | if (m_confParam.getAdjacencyList().getNumOfActiveNeighbor() > 0) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 319 | NLSR_LOG_DEBUG("Building and installing own Adj LSA"); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 320 | buildAndInstallOwnAdjLsa(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 321 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 322 | // We have no active neighbors, meaning no one can route through |
| 323 | // us. So delete our entry in the LSDB. This prevents this |
| 324 | // router from refreshing the LSA, eventually causing other |
| 325 | // routers to delete it, too. |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 326 | else { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 327 | NLSR_LOG_DEBUG("Removing own Adj LSA; no ACTIVE neighbors"); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 328 | removeLsa(m_thisRouterPrefix, Lsa::Type::ADJACENCY); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 329 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 330 | // In the case that during building the adj LSA, the FIB has to |
| 331 | // wait on an Interest response, the number of scheduled adj LSA |
| 332 | // builds could change, so we shouldn't just set it to 0. |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 333 | m_adjBuildCount = m_adjBuildCount - adjBuildCount; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 334 | } |
| 335 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 336 | // We are still waiting to know the adjacency status of some |
| 337 | // neighbor, so schedule a build for later (when all that has |
| 338 | // hopefully finished) |
| 339 | else { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 340 | m_isBuildAdjLsaScheduled = true; |
Ashlesh Gawande | 6b388fc | 2019-09-30 10:14:41 -0500 | [diff] [blame] | 341 | auto schedulingTime = ndn::time::seconds(m_confParam.getInterestRetryNumber() * |
| 342 | m_confParam.getInterestResendTime()); |
| 343 | m_scheduledAdjLsaBuild = m_scheduler.schedule(schedulingTime, [this] { buildAdjLsa(); }); |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 344 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 345 | } |
| 346 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 347 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 348 | Lsdb::buildAndInstallOwnAdjLsa() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 349 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 350 | AdjLsa adjLsa(m_thisRouterPrefix, m_sequencingManager.getAdjLsaSeq() + 1, |
akmhoque | c7a79b2 | 2014-05-26 08:06:19 -0500 | [diff] [blame] | 351 | getLsaExpirationTimePoint(), |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 352 | m_confParam.getAdjacencyList()); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 353 | m_sequencingManager.increaseAdjLsaSeq(); |
| 354 | m_sequencingManager.writeSeqNoToFile(); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 355 | |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 356 | //Sync adjacency LSAs if link-state or dry-run HR is enabled. |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 357 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_ON) { |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 358 | m_sync.publishRoutingUpdate(Lsa::Type::ADJACENCY, m_sequencingManager.getAdjLsaSeq()); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 359 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 360 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 361 | installLsa(std::make_shared<AdjLsa>(adjLsa)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 362 | } |
| 363 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 364 | ndn::scheduler::EventId |
| 365 | Lsdb::scheduleLsaExpiration(std::shared_ptr<Lsa> lsa, ndn::time::seconds expTime) |
| 366 | { |
| 367 | NLSR_LOG_DEBUG("Scheduling expiration in: " << expTime + GRACE_PERIOD << " for " << lsa->getOriginRouter()); |
| 368 | return m_scheduler.schedule(expTime + GRACE_PERIOD, [this, lsa] { expireOrRefreshLsa(lsa); }); |
| 369 | } |
| 370 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 371 | void |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 372 | Lsdb::expireOrRefreshLsa(std::shared_ptr<Lsa> lsa) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 373 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 374 | NLSR_LOG_DEBUG("ExpireOrRefreshLsa called for " << lsa->getType()); |
| 375 | NLSR_LOG_DEBUG("OriginRouter: " << lsa->getOriginRouter() << " Seq No: " << lsa->getSeqNo()); |
| 376 | |
| 377 | auto lsaIt = m_lsdb.get<byName>().find(std::make_tuple(lsa->getOriginRouter(), lsa->getType())); |
| 378 | |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 379 | // If this name LSA exists in the LSDB |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 380 | if (lsaIt != m_lsdb.end()) { |
| 381 | auto lsaPtr = *lsaIt; |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 382 | NLSR_LOG_DEBUG(*lsaPtr); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 383 | NLSR_LOG_DEBUG("LSA Exists with seq no: " << lsaPtr->getSeqNo()); |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 384 | // If its seq no is the one we are expecting. |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 385 | if (lsaPtr->getSeqNo() == lsa->getSeqNo()) { |
| 386 | if (lsaPtr->getOriginRouter() == m_thisRouterPrefix) { |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 387 | NLSR_LOG_DEBUG("Own " << lsaPtr->getType() << " LSA, so refreshing it"); |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 388 | NLSR_LOG_DEBUG("Current LSA:\n" << *lsaPtr); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 389 | lsaPtr->setSeqNo(lsaPtr->getSeqNo() + 1); |
| 390 | m_sequencingManager.setLsaSeq(lsaPtr->getSeqNo(), lsaPtr->getType()); |
| 391 | lsaPtr->setExpirationTimePoint(getLsaExpirationTimePoint()); |
Junxiao Shi | 153fbc1 | 2024-01-09 23:37:23 +0000 | [diff] [blame] | 392 | NLSR_LOG_DEBUG("Updated LSA:\n" << *lsaPtr); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 393 | // schedule refreshing event again |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 394 | lsaPtr->setExpiringEventId(scheduleLsaExpiration(lsaPtr, m_lsaRefreshTime)); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 395 | m_sequencingManager.writeSeqNoToFile(); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 396 | m_sync.publishRoutingUpdate(lsaPtr->getType(), m_sequencingManager.getLsaSeq(lsaPtr->getType())); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 397 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 398 | // Since we cannot refresh other router's LSAs, our only choice is to expire. |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 399 | else { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 400 | NLSR_LOG_DEBUG("Other's " << lsaPtr->getType() << " LSA, so removing from LSDB"); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 401 | removeLsa(lsaIt); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | } |
| 405 | } |
| 406 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 407 | void |
Alexander Afanasyev | 135288c | 2022-04-23 23:06:56 -0400 | [diff] [blame] | 408 | Lsdb::expressInterest(const ndn::Name& interestName, uint32_t timeoutCount, uint64_t incomingFaceId, |
Davide Pesavento | 658fd85 | 2023-05-10 22:15:03 -0400 | [diff] [blame] | 409 | ndn::time::steady_clock::time_point deadline) |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 410 | { |
Alejandro Gil Torres | e0d2048 | 2016-03-06 23:56:19 -0600 | [diff] [blame] | 411 | // increment SENT_LSA_INTEREST |
| 412 | lsaIncrementSignal(Statistics::PacketType::SENT_LSA_INTEREST); |
| 413 | |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 414 | if (deadline == DEFAULT_LSA_RETRIEVAL_DEADLINE) { |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 415 | deadline = ndn::time::steady_clock::now() + ndn::time::seconds(static_cast<int>(LSA_REFRESH_TIME_MAX)); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 416 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 417 | // The first component of the interest is the name. |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 418 | ndn::Name lsaName = interestName.getSubName(0, interestName.size()-1); |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 419 | // The seq no is the last |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 420 | uint64_t seqNo = interestName[-1].toNumber(); |
| 421 | |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 422 | // If the LSA is not found in the list currently. |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 423 | if (m_highestSeqNo.find(lsaName) == m_highestSeqNo.end()) { |
| 424 | m_highestSeqNo[lsaName] = seqNo; |
| 425 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 426 | // If the new seq no is higher, that means the LSA is valid |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 427 | else if (seqNo > m_highestSeqNo[lsaName]) { |
| 428 | m_highestSeqNo[lsaName] = seqNo; |
| 429 | } |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 430 | // Otherwise, its an old/invalid LSA |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 431 | else if (seqNo < m_highestSeqNo[lsaName]) { |
| 432 | return; |
| 433 | } |
| 434 | |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 435 | ndn::Interest interest(interestName); |
Alexander Afanasyev | 135288c | 2022-04-23 23:06:56 -0400 | [diff] [blame] | 436 | if (incomingFaceId != 0) { |
| 437 | interest.setTag(std::make_shared<ndn::lp::NextHopFaceIdTag>(incomingFaceId)); |
| 438 | } |
Junxiao Shi | 43f37a0 | 2023-08-09 00:09:00 +0000 | [diff] [blame] | 439 | ndn::SegmentFetcher::Options options; |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 440 | options.interestLifetime = m_confParam.getLsaInterestLifetime(); |
awlane | 0c87b12 | 2022-06-17 15:53:10 -0500 | [diff] [blame] | 441 | options.maxTimeout = m_confParam.getLsaInterestLifetime(); |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 442 | |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 443 | NLSR_LOG_DEBUG("Fetching Data for LSA: " << interestName << " Seq number: " << seqNo); |
Junxiao Shi | 43f37a0 | 2023-08-09 00:09:00 +0000 | [diff] [blame] | 444 | auto fetcher = ndn::SegmentFetcher::start(m_face, interest, m_confParam.getValidator(), options); |
Ashlesh Gawande | 05cb728 | 2018-08-30 14:39:41 -0500 | [diff] [blame] | 445 | |
Ashlesh Gawande | 744e481 | 2018-08-22 16:26:24 -0500 | [diff] [blame] | 446 | auto it = m_fetchers.insert(fetcher).first; |
| 447 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 448 | fetcher->afterSegmentValidated.connect([this] (const ndn::Data& data) { |
Ashlesh Gawande | 1505240 | 2018-12-12 20:20:00 -0600 | [diff] [blame] | 449 | // Nlsr class subscribes to this to fetch certificates |
| 450 | afterSegmentValidatedSignal(data); |
| 451 | |
| 452 | // If we don't do this IMS throws: std::bad_weak_ptr: bad_weak_ptr |
| 453 | auto lsaSegment = std::make_shared<const ndn::Data>(data); |
| 454 | m_lsaStorage.insert(*lsaSegment); |
Ashlesh Gawande | 1505240 | 2018-12-12 20:20:00 -0600 | [diff] [blame] | 455 | // Schedule deletion of the segment |
| 456 | m_scheduler.schedule(ndn::time::seconds(LSA_REFRESH_TIME_DEFAULT), |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 457 | [this, name = lsaSegment->getName()] { m_lsaStorage.erase(name); }); |
Ashlesh Gawande | 1505240 | 2018-12-12 20:20:00 -0600 | [diff] [blame] | 458 | }); |
| 459 | |
| 460 | fetcher->onComplete.connect([=] (const ndn::ConstBufferPtr& bufferPtr) { |
| 461 | m_lsaStorage.erase(ndn::Name(lsaName).appendNumber(seqNo - 1)); |
| 462 | afterFetchLsa(bufferPtr, interestName); |
| 463 | m_fetchers.erase(it); |
| 464 | }); |
| 465 | |
| 466 | fetcher->onError.connect([=] (uint32_t errorCode, const std::string& msg) { |
| 467 | onFetchLsaError(errorCode, msg, interestName, timeoutCount, deadline, lsaName, seqNo); |
| 468 | m_fetchers.erase(it); |
| 469 | }); |
Muktadir Chowdhury | c3ea26f | 2018-01-05 21:40:59 +0000 | [diff] [blame] | 470 | |
Nick Gordon | 727d483 | 2017-10-13 18:04:25 -0500 | [diff] [blame] | 471 | Lsa::Type lsaType; |
| 472 | std::istringstream(interestName[-2].toUri()) >> lsaType; |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 473 | incrementInterestSentStats(lsaType); |
| 474 | } |
| 475 | |
| 476 | void |
| 477 | Lsdb::onFetchLsaError(uint32_t errorCode, const std::string& msg, const ndn::Name& interestName, |
Davide Pesavento | 658fd85 | 2023-05-10 22:15:03 -0400 | [diff] [blame] | 478 | uint32_t retransmitNo, const ndn::time::steady_clock::time_point& deadline, |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 479 | ndn::Name lsaName, uint64_t seqNo) |
| 480 | { |
| 481 | NLSR_LOG_DEBUG("Failed to fetch LSA: " << lsaName << ", Error code: " << errorCode |
| 482 | << ", Message: " << msg); |
| 483 | |
| 484 | if (ndn::time::steady_clock::now() < deadline) { |
| 485 | auto it = m_highestSeqNo.find(lsaName); |
| 486 | if (it != m_highestSeqNo.end() && it->second == seqNo) { |
| 487 | // If the SegmentFetcher failed due to an Interest timeout, it is safe to re-express |
| 488 | // immediately since at the least the LSA Interest lifetime has elapsed. |
| 489 | // Otherwise, it is necessary to delay the Interest re-expression to prevent |
| 490 | // the potential for constant Interest flooding. |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 491 | auto delay = m_confParam.getLsaInterestLifetime(); |
Junxiao Shi | 43f37a0 | 2023-08-09 00:09:00 +0000 | [diff] [blame] | 492 | if (errorCode == ndn::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT) { |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 493 | delay = 0_s; |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 494 | } |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 495 | m_scheduler.schedule(delay, std::bind(&Lsdb::expressInterest, this, interestName, |
| 496 | retransmitNo + 1, /*Multicast FaceID*/0, deadline)); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 497 | } |
Alejandro Gil Torres | e0d2048 | 2016-03-06 23:56:19 -0600 | [diff] [blame] | 498 | } |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | void |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 502 | Lsdb::afterFetchLsa(const ndn::ConstBufferPtr& bufferPtr, const ndn::Name& interestName) |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 503 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 504 | NLSR_LOG_DEBUG("Received data for LSA interest: " << interestName); |
| 505 | lsaIncrementSignal(Statistics::PacketType::RCV_LSA_DATA); |
Ashlesh Gawande | 939b6f8 | 2018-12-09 16:51:09 -0600 | [diff] [blame] | 506 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 507 | ndn::Name lsaName = interestName.getSubName(0, interestName.size()-1); |
| 508 | uint64_t seqNo = interestName[-1].toNumber(); |
| 509 | |
| 510 | if (m_highestSeqNo.find(lsaName) == m_highestSeqNo.end()) { |
| 511 | m_highestSeqNo[lsaName] = seqNo; |
Ashlesh Gawande | 939b6f8 | 2018-12-09 16:51:09 -0600 | [diff] [blame] | 512 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 513 | else if (seqNo > m_highestSeqNo[lsaName]) { |
| 514 | m_highestSeqNo[lsaName] = seqNo; |
Davide Pesavento | 65ee992 | 2022-11-16 00:21:43 -0500 | [diff] [blame] | 515 | NLSR_LOG_TRACE("SeqNo for LSA(name): " << interestName << " updated"); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 516 | } |
| 517 | else if (seqNo < m_highestSeqNo[lsaName]) { |
| 518 | return; |
| 519 | } |
Alejandro Gil Torres | e0d2048 | 2016-03-06 23:56:19 -0600 | [diff] [blame] | 520 | |
Muktadir R Chowdhury | aa3b085 | 2015-08-06 13:08:56 -0500 | [diff] [blame] | 521 | std::string chkString("LSA"); |
Ashlesh Gawande | 939b6f8 | 2018-12-09 16:51:09 -0600 | [diff] [blame] | 522 | int32_t lsaPosition = util::getNameComponentPosition(interestName, chkString); |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 523 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 524 | if (lsaPosition >= 0) { |
| 525 | // Extracts the prefix of the originating router from the data. |
| 526 | ndn::Name originRouter = m_confParam.getNetwork(); |
| 527 | originRouter.append(interestName.getSubName(lsaPosition + 1, |
| 528 | interestName.size() - lsaPosition - 3)); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 529 | try { |
| 530 | Lsa::Type interestedLsType; |
| 531 | std::istringstream(interestName[-2].toUri()) >> interestedLsType; |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 532 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 533 | if (interestedLsType == Lsa::Type::BASE) { |
| 534 | NLSR_LOG_WARN("Received unrecognized LSA Type: " << interestName[-2].toUri()); |
| 535 | return; |
| 536 | } |
Ashlesh Gawande | 5bf8317 | 2014-09-19 12:38:17 -0500 | [diff] [blame] | 537 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 538 | ndn::Block block(bufferPtr); |
| 539 | if (interestedLsType == Lsa::Type::NAME) { |
| 540 | lsaIncrementSignal(Statistics::PacketType::RCV_NAME_LSA_DATA); |
| 541 | if (isLsaNew(originRouter, interestedLsType, seqNo)) { |
| 542 | installLsa(std::make_shared<NameLsa>(block)); |
| 543 | } |
| 544 | } |
| 545 | else if (interestedLsType == Lsa::Type::ADJACENCY) { |
| 546 | lsaIncrementSignal(Statistics::PacketType::RCV_ADJ_LSA_DATA); |
| 547 | if (isLsaNew(originRouter, interestedLsType, seqNo)) { |
| 548 | installLsa(std::make_shared<AdjLsa>(block)); |
| 549 | } |
| 550 | } |
| 551 | else if (interestedLsType == Lsa::Type::COORDINATE) { |
| 552 | lsaIncrementSignal(Statistics::PacketType::RCV_COORD_LSA_DATA); |
| 553 | if (isLsaNew(originRouter, interestedLsType, seqNo)) { |
| 554 | installLsa(std::make_shared<CoordinateLsa>(block)); |
| 555 | } |
| 556 | } |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 557 | } |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 558 | catch (const std::exception& e) { |
Davide Pesavento | fd1e940 | 2023-11-13 15:40:41 -0500 | [diff] [blame] | 559 | NLSR_LOG_TRACE("LSA data decoding error: " << e.what()); |
Ashlesh Gawande | 939b6f8 | 2018-12-09 16:51:09 -0600 | [diff] [blame] | 560 | } |
Nick Gordon | 8f23b5d | 2017-08-31 17:53:07 -0500 | [diff] [blame] | 561 | } |
| 562 | } |
| 563 | |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 564 | } // namespace nlsr |