akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 2 | /* |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2025, 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 | |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 22 | #include "name-prefix-table.hpp" |
| 23 | |
| 24 | #include "logger.hpp" |
| 25 | #include "nlsr.hpp" |
| 26 | #include "routing-table.hpp" |
| 27 | |
| 28 | #include <algorithm> |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 29 | #include <list> |
| 30 | #include <utility> |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 31 | |
| 32 | namespace nlsr { |
| 33 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 34 | INIT_LOGGER(route.NamePrefixTable); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 35 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 36 | NamePrefixTable::NamePrefixTable(const ndn::Name& ownRouterName, Fib& fib, |
| 37 | RoutingTable& routingTable, |
| 38 | AfterRoutingChange& afterRoutingChangeSignal, |
| 39 | Lsdb::AfterLsdbModified& afterLsdbModifiedSignal) |
| 40 | : m_ownRouterName(ownRouterName) |
| 41 | , m_fib(fib) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 42 | , m_routingTable(routingTable) |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 43 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 44 | m_afterRoutingChangeConnection = afterRoutingChangeSignal.connect( |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 45 | [this] (const std::list<RoutingTableEntry>& entries) { |
| 46 | updateWithNewRoute(entries); |
| 47 | }); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 48 | |
| 49 | m_afterLsdbModified = afterLsdbModifiedSignal.connect( |
| 50 | [this] (std::shared_ptr<Lsa> lsa, LsdbUpdate updateType, |
| 51 | const auto& namesToAdd, const auto& namesToRemove) { |
| 52 | updateFromLsdb(lsa, updateType, namesToAdd, namesToRemove); |
| 53 | } |
| 54 | ); |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | NamePrefixTable::~NamePrefixTable() |
| 58 | { |
| 59 | m_afterRoutingChangeConnection.disconnect(); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 60 | m_afterLsdbModified.disconnect(); |
| 61 | } |
| 62 | |
| 63 | void |
| 64 | NamePrefixTable::updateFromLsdb(std::shared_ptr<Lsa> lsa, LsdbUpdate updateType, |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 65 | const std::list<nlsr::PrefixInfo>& namesToAdd, |
| 66 | const std::list<nlsr::PrefixInfo>& namesToRemove) |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 67 | { |
| 68 | if (m_ownRouterName == lsa->getOriginRouter()) { |
| 69 | return; |
| 70 | } |
| 71 | NLSR_LOG_TRACE("Got update from Lsdb for router: " << lsa->getOriginRouter()); |
| 72 | |
| 73 | if (updateType == LsdbUpdate::INSTALLED) { |
| 74 | addEntry(lsa->getOriginRouter(), lsa->getOriginRouter()); |
| 75 | |
| 76 | if (lsa->getType() == Lsa::Type::NAME) { |
| 77 | auto nlsa = std::static_pointer_cast<NameLsa>(lsa); |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 78 | for (const auto &prefix : nlsa->getNpl().getPrefixInfo()) { |
| 79 | if (prefix.getName() != m_ownRouterName) { |
| 80 | m_nexthopCost[DestNameKey(lsa->getOriginRouter(), prefix.getName())] = prefix.getCost(); |
| 81 | addEntry(prefix.getName(), lsa->getOriginRouter()); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | else if (updateType == LsdbUpdate::UPDATED) { |
| 87 | if (lsa->getType() != Lsa::Type::NAME) { |
| 88 | return; |
| 89 | } |
| 90 | |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 91 | for (const auto &prefix : namesToAdd) { |
| 92 | if (prefix.getName() != m_ownRouterName) { |
| 93 | m_nexthopCost[DestNameKey(lsa->getOriginRouter(), prefix.getName())] = prefix.getCost(); |
| 94 | addEntry(prefix.getName(), lsa->getOriginRouter()); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 98 | for (const auto &prefix : namesToRemove) { |
| 99 | if (prefix.getName() != m_ownRouterName) { |
| 100 | m_nexthopCost.erase(m_nexthopCost.find(DestNameKey(lsa->getOriginRouter(), prefix.getName()))); |
| 101 | removeEntry(prefix.getName(), lsa->getOriginRouter()); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | } |
| 105 | else { |
| 106 | removeEntry(lsa->getOriginRouter(), lsa->getOriginRouter()); |
| 107 | if (lsa->getType() == Lsa::Type::NAME) { |
| 108 | auto nlsa = std::static_pointer_cast<NameLsa>(lsa); |
| 109 | for (const auto& name : nlsa->getNpl().getNames()) { |
| 110 | if (name != m_ownRouterName) { |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 111 | m_nexthopCost.erase(m_nexthopCost.find(DestNameKey(lsa->getOriginRouter(), name))); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 112 | removeEntry(name, lsa->getOriginRouter()); |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | } |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 117 | } |
| 118 | |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 119 | NexthopList |
| 120 | NamePrefixTable::adjustNexthopCosts(const NexthopList& nhlist, const ndn::Name& nameToCheck, const ndn::Name& destRouterName) |
| 121 | { |
| 122 | NexthopList new_nhList; |
| 123 | for (const auto& nh : nhlist.getNextHops()) { |
| 124 | const NextHop newNextHop = NextHop(nh.getConnectingFaceUri(), nh.getRouteCost() + |
| 125 | m_nexthopCost[DestNameKey(destRouterName, nameToCheck)]); |
| 126 | new_nhList.addNextHop(newNextHop); |
| 127 | } |
| 128 | return new_nhList; |
| 129 | } |
| 130 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 131 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 132 | NamePrefixTable::addEntry(const ndn::Name& name, const ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 133 | { |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 134 | // Check if the advertised name prefix is in the table already. |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 135 | auto nameItr = std::find_if(m_table.begin(), m_table.end(), |
| 136 | [&] (const auto& entry) { return name == entry->getNamePrefix(); }); |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 137 | |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 138 | // Attempt to find a routing table pool entry (RTPE) we can use. |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 139 | auto rtpeItr = m_rtpool.find(destRouter); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 140 | |
| 141 | // These declarations just to make the compiler happy... |
| 142 | RoutingTablePoolEntry rtpe; |
| 143 | std::shared_ptr<RoutingTablePoolEntry> rtpePtr(nullptr); |
| 144 | |
| 145 | // There isn't currently a routing table entry in the pool for this name |
| 146 | if (rtpeItr == m_rtpool.end()) { |
| 147 | // See if there is a routing table entry available we could use |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 148 | RoutingTableEntry* routeEntryPtr = m_routingTable.findRoutingTableEntry(destRouter); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 149 | |
| 150 | // We have to create a new routing table entry |
| 151 | if (routeEntryPtr == nullptr) { |
| 152 | rtpe = RoutingTablePoolEntry(destRouter, 0); |
| 153 | } |
| 154 | // There was already a usable one in the routing table |
| 155 | else { |
| 156 | rtpe = RoutingTablePoolEntry(*routeEntryPtr, 0); |
| 157 | } |
| 158 | |
| 159 | // Add the new pool object to the pool. |
| 160 | rtpePtr = addRtpeToPool(rtpe); |
| 161 | } |
| 162 | // There was one already, so just fetch that one. |
| 163 | else { |
| 164 | rtpePtr = (*rtpeItr).second; |
| 165 | } |
| 166 | |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 167 | std::shared_ptr<NamePrefixTableEntry> npte; |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 168 | // Either we have to make a new NPT entry or there already was one. |
| 169 | if (nameItr == m_table.end()) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 170 | NLSR_LOG_DEBUG("Adding origin: " << rtpePtr->getDestination() |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 171 | << " to a new name prefix: " << name); |
| 172 | npte = std::make_shared<NamePrefixTableEntry>(name); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 173 | npte->addRoutingTableEntry(rtpePtr); |
| 174 | npte->generateNhlfromRteList(); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 175 | m_table.push_back(npte); |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 176 | |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 177 | // If this entry has next hops, we need to inform the FIB |
Nick Gordon | ff9a627 | 2017-10-12 13:38:29 -0500 | [diff] [blame] | 178 | if (npte->getNexthopList().size() > 0) { |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 179 | NLSR_LOG_TRACE("Updating FIB with next hops for " << npte->getNamePrefix()); |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 180 | m_fib.update(name, adjustNexthopCosts(npte->getNexthopList(), name, destRouter)); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 181 | } |
| 182 | // The routing table may recalculate and add a routing table entry |
| 183 | // with no next hops to replace an existing routing table entry. In |
| 184 | // this case, the name prefix is no longer reachable through a next |
| 185 | // hop and should be removed from the FIB. But, the prefix should |
| 186 | // remain in the Name Prefix Table as a future routing table |
| 187 | // calculation may add next hops. |
| 188 | else { |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 189 | NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB"); |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 190 | m_fib.remove(name); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 191 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 192 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 193 | else { |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 194 | npte = *nameItr; |
Ashlesh Gawande | e5002b3 | 2018-12-20 21:07:31 -0600 | [diff] [blame] | 195 | NLSR_LOG_TRACE("Adding origin: " << rtpePtr->getDestination() << |
| 196 | " to existing prefix: " << **nameItr); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 197 | (*nameItr)->addRoutingTableEntry(rtpePtr); |
| 198 | (*nameItr)->generateNhlfromRteList(); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 199 | |
Nick Gordon | ff9a627 | 2017-10-12 13:38:29 -0500 | [diff] [blame] | 200 | if ((*nameItr)->getNexthopList().size() > 0) { |
Ashlesh Gawande | e5002b3 | 2018-12-20 21:07:31 -0600 | [diff] [blame] | 201 | NLSR_LOG_TRACE("Updating FIB with next hops for " << (**nameItr)); |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 202 | m_fib.update(name, adjustNexthopCosts((*nameItr)->getNexthopList(), name, destRouter)); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 203 | } |
| 204 | else { |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 205 | NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB"); |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 206 | m_fib.remove(name); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 207 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 208 | } |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 209 | |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 210 | // Add the reference to this NPT to the RTPE. |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 211 | rtpePtr->namePrefixTableEntries.try_emplace(npte->getNamePrefix(), |
| 212 | std::weak_ptr<NamePrefixTableEntry>(npte)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 216 | NamePrefixTable::removeEntry(const ndn::Name& name, const ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 217 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 218 | NLSR_LOG_DEBUG("Removing origin: " << destRouter << " from " << name); |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 219 | |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 220 | // Fetch an iterator to the appropriate pair object in the pool. |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 221 | auto rtpeItr = m_rtpool.find(destRouter); |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 222 | |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 223 | // Simple error checking to prevent any unusual behavior in the case |
| 224 | // that we try to remove an entry that isn't there. |
| 225 | if (rtpeItr == m_rtpool.end()) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 226 | NLSR_LOG_DEBUG("No entry for origin: " << destRouter |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 227 | << " found, so it cannot be removed from prefix: " << name); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 228 | return; |
| 229 | } |
| 230 | std::shared_ptr<RoutingTablePoolEntry> rtpePtr = rtpeItr->second; |
| 231 | |
| 232 | // Ensure that the entry exists |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 233 | auto nameItr = std::find_if(m_table.begin(), m_table.end(), |
| 234 | [&] (const auto& entry) { return entry->getNamePrefix() == name; }); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 235 | if (nameItr != m_table.end()) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 236 | NLSR_LOG_TRACE("Removing origin: " << rtpePtr->getDestination() |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 237 | << " from prefix: " << **nameItr); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 238 | |
| 239 | // Rather than iterating through the whole list periodically, just |
| 240 | // delete them here if they have no references. |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 241 | if ((*nameItr)->removeRoutingTableEntry(rtpePtr) == 0) { |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 242 | deleteRtpeFromPool(rtpePtr); |
| 243 | } |
| 244 | |
| 245 | // If the prefix is a router prefix and it does not have any other |
| 246 | // routing table entries, the Adjacency/Coordinate LSA associated |
| 247 | // with that origin router has been removed from the LSDB and so |
| 248 | // the router prefix should be removed from the Name Prefix Table. |
| 249 | // |
| 250 | // If the prefix is an advertised name prefix: If another router |
| 251 | // advertises this name prefix, the RteList should have another |
| 252 | // entry for that router; the next hops should be recalculated |
| 253 | // and installed in the FIB. |
| 254 | // |
| 255 | // If no other router advertises this name prefix, the RteList |
| 256 | // should be empty and the prefix can be removed from the Name |
| 257 | // Prefix Table. Once a new Name LSA advertises this prefix, a |
| 258 | // new entry for the prefix will be created. |
| 259 | // |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 260 | if ((*nameItr)->getRteListSize() == 0) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 261 | NLSR_LOG_TRACE(**nameItr << " has no routing table entries;" |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 262 | << " removing from table and FIB"); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 263 | m_table.erase(nameItr); |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 264 | m_fib.remove(name); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 265 | } |
| 266 | else { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 267 | NLSR_LOG_TRACE(**nameItr << " has other routing table entries;" |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 268 | << " updating FIB with next hops"); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 269 | (*nameItr)->generateNhlfromRteList(); |
awlane | 6d7c37f | 2025-03-07 11:53:58 -0600 | [diff] [blame] | 270 | m_fib.update(name, adjustNexthopCosts((*nameItr)->getNexthopList(), name, destRouter)); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 271 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 272 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 273 | else { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 274 | NLSR_LOG_DEBUG("Attempted to remove origin: " << rtpePtr->getDestination() |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 275 | << " from non-existent prefix: " << name); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
| 279 | void |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 280 | NamePrefixTable::updateWithNewRoute(const std::list<RoutingTableEntry>& entries) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 281 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 282 | NLSR_LOG_DEBUG("Updating table with newly calculated routes"); |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 283 | |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 284 | // Iterate over each pool entry we have |
| 285 | for (auto&& poolEntryPair : m_rtpool) { |
| 286 | auto&& poolEntry = poolEntryPair.second; |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 287 | auto sourceEntry = std::find_if(entries.begin(), entries.end(), |
| 288 | [&poolEntry] (const RoutingTableEntry& entry) { |
| 289 | return poolEntry->getDestination() == entry.getDestination(); |
| 290 | }); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 291 | // If this pool entry has a corresponding entry in the routing table now |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 292 | if (sourceEntry != entries.end() |
| 293 | && poolEntry->getNexthopList() != sourceEntry->getNexthopList()) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 294 | NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " has changed next-hops."); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 295 | poolEntry->setNexthopList(sourceEntry->getNexthopList()); |
| 296 | for (const auto& nameEntry : poolEntry->namePrefixTableEntries) { |
| 297 | auto nameEntryFullPtr = nameEntry.second.lock(); |
| 298 | addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination()); |
| 299 | } |
| 300 | } |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 301 | else if (sourceEntry == entries.end()) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 302 | NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " now has no next-hops."); |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 303 | poolEntry->getNexthopList().clear(); |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 304 | for (const auto& nameEntry : poolEntry->namePrefixTableEntries) { |
| 305 | auto nameEntryFullPtr = nameEntry.second.lock(); |
| 306 | addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination()); |
| 307 | } |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 308 | } |
| 309 | else { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 310 | NLSR_LOG_TRACE("No change in routing entry:" << poolEntry->getDestination() |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 311 | << ", no action necessary."); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | } |
| 315 | |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 316 | // Inserts the routing table pool entry into the NPT's RTE storage |
| 317 | // pool. This cannot fail, so the pool is guaranteed to contain the |
| 318 | // item after this occurs. |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 319 | std::shared_ptr<RoutingTablePoolEntry> |
| 320 | NamePrefixTable::addRtpeToPool(RoutingTablePoolEntry& rtpe) |
| 321 | { |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 322 | auto poolIt = m_rtpool.try_emplace(rtpe.getDestination(), |
| 323 | std::make_shared<RoutingTablePoolEntry>(rtpe)).first; |
| 324 | return poolIt->second; |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 325 | } |
| 326 | |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 327 | // Removes the routing table pool entry from the storage pool. The |
| 328 | // postconditions of this function are guaranteed to include that |
| 329 | // the storage pool does not contain such an item. Additionally, |
| 330 | // this function cannot fail, but nonetheless debug information is |
| 331 | // given in the case that this function is called with an entry that |
| 332 | // isn't in the pool. |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 333 | void |
| 334 | NamePrefixTable::deleteRtpeFromPool(std::shared_ptr<RoutingTablePoolEntry> rtpePtr) |
| 335 | { |
| 336 | if (m_rtpool.erase(rtpePtr->getDestination()) != 1) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 337 | NLSR_LOG_DEBUG("Attempted to delete non-existent origin: " |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 338 | << rtpePtr->getDestination() |
| 339 | << " from NPT routing table entry storage pool."); |
Nick Gordon | b50e51b | 2016-07-22 16:05:57 -0500 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 343 | void |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 344 | NamePrefixTable::writeLog() |
| 345 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 346 | NLSR_LOG_DEBUG(*this); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 347 | } |
| 348 | |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 349 | std::ostream& |
| 350 | operator<<(std::ostream& os, const NamePrefixTable& table) |
| 351 | { |
| 352 | os << "----------------NPT----------------------\n"; |
| 353 | |
Nick Gordon | c0c6bcf | 2017-08-15 18:11:21 -0500 | [diff] [blame] | 354 | for (const auto& entryPtr : table) { |
| 355 | os << *entryPtr << std::endl; |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | return os; |
| 359 | } |
| 360 | |
| 361 | } // namespace nlsr |