blob: 55f0c54386a22c06f162a1fffc00e9df20d8f7cb [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -08003 * Copyright (c) 2014-2020, 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/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070020 */
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
Vince Lehmancae33b62015-06-05 09:21:30 -050022#include "name-prefix-table.hpp"
23
24#include "logger.hpp"
25#include "nlsr.hpp"
26#include "routing-table.hpp"
27
28#include <algorithm>
akmhoque53353462014-04-22 08:43:45 -050029#include <list>
30#include <utility>
akmhoque53353462014-04-22 08:43:45 -050031
32namespace nlsr {
33
dmcoomescf8d0ed2017-02-21 11:39:01 -060034INIT_LOGGER(route.NamePrefixTable);
akmhoque674b0b12014-05-20 14:33:28 -050035
Ashlesh Gawande85998a12017-12-07 22:22:13 -060036NamePrefixTable::NamePrefixTable(Fib& fib, RoutingTable& routingTable,
Nick Gordond40a5882017-09-05 15:34:58 -050037 std::unique_ptr<AfterRoutingChange>& afterRoutingChangeSignal)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060038 : m_fib(fib)
39 , m_routingTable(routingTable)
Nick Gordonb7b58392017-08-17 16:29:21 -050040{
41 m_afterRoutingChangeConnection = afterRoutingChangeSignal->connect(
42 [this] (const std::list<RoutingTableEntry>& entries) {
43 updateWithNewRoute(entries);
44 });
45}
46
47NamePrefixTable::~NamePrefixTable()
48{
49 m_afterRoutingChangeConnection.disconnect();
50}
51
akmhoque53353462014-04-22 08:43:45 -050052void
akmhoque31d1d4b2014-05-05 22:08:14 -050053NamePrefixTable::addEntry(const ndn::Name& name, const ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -050054{
Vince Lehmancae33b62015-06-05 09:21:30 -050055
Nick Gordonb50e51b2016-07-22 16:05:57 -050056 // Check if the advertised name prefix is in the table already.
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050057 NptEntryList::iterator nameItr =
58 std::find_if(m_table.begin(),
59 m_table.end(),
60 [&] (const std::shared_ptr<NamePrefixTableEntry>& entry) {
61 return name == entry->getNamePrefix();
62 });
Vince Lehmancae33b62015-06-05 09:21:30 -050063
Nick Gordonb50e51b2016-07-22 16:05:57 -050064 // Attempt to find a routing table pool entry (RTPE) we can use.
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050065 RoutingTableEntryPool::iterator rtpeItr = m_rtpool.find(destRouter);
Nick Gordonb50e51b2016-07-22 16:05:57 -050066
67 // These declarations just to make the compiler happy...
68 RoutingTablePoolEntry rtpe;
69 std::shared_ptr<RoutingTablePoolEntry> rtpePtr(nullptr);
70
71 // There isn't currently a routing table entry in the pool for this name
72 if (rtpeItr == m_rtpool.end()) {
73 // See if there is a routing table entry available we could use
Ashlesh Gawande85998a12017-12-07 22:22:13 -060074 RoutingTableEntry* routeEntryPtr = m_routingTable.findRoutingTableEntry(destRouter);
Nick Gordonb50e51b2016-07-22 16:05:57 -050075
76 // We have to create a new routing table entry
77 if (routeEntryPtr == nullptr) {
78 rtpe = RoutingTablePoolEntry(destRouter, 0);
79 }
80 // There was already a usable one in the routing table
81 else {
82 rtpe = RoutingTablePoolEntry(*routeEntryPtr, 0);
83 }
84
85 // Add the new pool object to the pool.
86 rtpePtr = addRtpeToPool(rtpe);
87 }
88 // There was one already, so just fetch that one.
89 else {
90 rtpePtr = (*rtpeItr).second;
91 }
92
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050093 std::shared_ptr<NamePrefixTableEntry> npte;
Nick Gordonb50e51b2016-07-22 16:05:57 -050094 // Either we have to make a new NPT entry or there already was one.
95 if (nameItr == m_table.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -050096 NLSR_LOG_DEBUG("Adding origin: " << rtpePtr->getDestination()
Nick Gordonb50e51b2016-07-22 16:05:57 -050097 << " to a new name prefix: " << name);
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050098 npte = make_shared<NamePrefixTableEntry>(name);
99 npte->addRoutingTableEntry(rtpePtr);
100 npte->generateNhlfromRteList();
Nick Gordonb50e51b2016-07-22 16:05:57 -0500101 m_table.push_back(npte);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500102 // If this entry has next hops, we need to inform the FIB
Nick Gordonff9a6272017-10-12 13:38:29 -0500103 if (npte->getNexthopList().size() > 0) {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500104 NLSR_LOG_TRACE("Updating FIB with next hops for " << npte->getNamePrefix());
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600105 m_fib.update(name, npte->getNexthopList());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500106 }
107 // The routing table may recalculate and add a routing table entry
108 // with no next hops to replace an existing routing table entry. In
109 // this case, the name prefix is no longer reachable through a next
110 // hop and should be removed from the FIB. But, the prefix should
111 // remain in the Name Prefix Table as a future routing table
112 // calculation may add next hops.
113 else {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500114 NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB");
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600115 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500116 }
akmhoque53353462014-04-22 08:43:45 -0500117 }
akmhoque157b0a42014-05-13 00:26:37 -0500118 else {
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500119 npte = *nameItr;
Ashlesh Gawandee5002b32018-12-20 21:07:31 -0600120 NLSR_LOG_TRACE("Adding origin: " << rtpePtr->getDestination() <<
121 " to existing prefix: " << **nameItr);
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500122 (*nameItr)->addRoutingTableEntry(rtpePtr);
123 (*nameItr)->generateNhlfromRteList();
Nick Gordonb50e51b2016-07-22 16:05:57 -0500124
Nick Gordonff9a6272017-10-12 13:38:29 -0500125 if ((*nameItr)->getNexthopList().size() > 0) {
Ashlesh Gawandee5002b32018-12-20 21:07:31 -0600126 NLSR_LOG_TRACE("Updating FIB with next hops for " << (**nameItr));
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600127 m_fib.update(name, (*nameItr)->getNexthopList());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500128 }
129 else {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500130 NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB");
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600131 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500132 }
akmhoque53353462014-04-22 08:43:45 -0500133 }
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500134 // Add the reference to this NPT to the RTPE.
135 rtpePtr->namePrefixTableEntries.emplace(
136 std::make_pair(npte->getNamePrefix(), std::weak_ptr<NamePrefixTableEntry>(npte)));
akmhoque53353462014-04-22 08:43:45 -0500137}
138
139void
akmhoque31d1d4b2014-05-05 22:08:14 -0500140NamePrefixTable::removeEntry(const ndn::Name& name, const ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500141{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500142 NLSR_LOG_DEBUG("Removing origin: " << destRouter << " from " << name);
Vince Lehmancae33b62015-06-05 09:21:30 -0500143
Nick Gordonb50e51b2016-07-22 16:05:57 -0500144 // Fetch an iterator to the appropriate pair object in the pool.
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500145 RoutingTableEntryPool::iterator rtpeItr = m_rtpool.find(destRouter);
Vince Lehmancae33b62015-06-05 09:21:30 -0500146
Nick Gordonb50e51b2016-07-22 16:05:57 -0500147 // Simple error checking to prevent any unusual behavior in the case
148 // that we try to remove an entry that isn't there.
149 if (rtpeItr == m_rtpool.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500150 NLSR_LOG_DEBUG("No entry for origin: " << destRouter
Nick Gordonb50e51b2016-07-22 16:05:57 -0500151 << " found, so it cannot be removed from prefix: "
152 << name);
153 return;
154 }
155 std::shared_ptr<RoutingTablePoolEntry> rtpePtr = rtpeItr->second;
156
157 // Ensure that the entry exists
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500158 NptEntryList::iterator nameItr =
159 std::find_if(m_table.begin(), m_table.end(),
160 [&] (const std::shared_ptr<NamePrefixTableEntry>& entry) {
161 return entry->getNamePrefix() == name;
162 });
Nick Gordonb50e51b2016-07-22 16:05:57 -0500163 if (nameItr != m_table.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500164 NLSR_LOG_TRACE("Removing origin: " << rtpePtr->getDestination()
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500165 << " from prefix: " << **nameItr);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500166
167 // Rather than iterating through the whole list periodically, just
168 // delete them here if they have no references.
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500169 if ((*nameItr)->removeRoutingTableEntry(rtpePtr) == 0) {
Nick Gordonb50e51b2016-07-22 16:05:57 -0500170 deleteRtpeFromPool(rtpePtr);
171 }
172
173 // If the prefix is a router prefix and it does not have any other
174 // routing table entries, the Adjacency/Coordinate LSA associated
175 // with that origin router has been removed from the LSDB and so
176 // the router prefix should be removed from the Name Prefix Table.
177 //
178 // If the prefix is an advertised name prefix: If another router
179 // advertises this name prefix, the RteList should have another
180 // entry for that router; the next hops should be recalculated
181 // and installed in the FIB.
182 //
183 // If no other router advertises this name prefix, the RteList
184 // should be empty and the prefix can be removed from the Name
185 // Prefix Table. Once a new Name LSA advertises this prefix, a
186 // new entry for the prefix will be created.
187 //
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500188 if ((*nameItr)->getRteListSize() == 0) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500189 NLSR_LOG_TRACE(**nameItr << " has no routing table entries;"
Nick Gordonb50e51b2016-07-22 16:05:57 -0500190 << " removing from table and FIB");
191 m_table.erase(nameItr);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600192 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500193 }
194 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500195 NLSR_LOG_TRACE(**nameItr << " has other routing table entries;"
Nick Gordonb50e51b2016-07-22 16:05:57 -0500196 << " updating FIB with next hops");
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500197 (*nameItr)->generateNhlfromRteList();
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600198 m_fib.update(name, (*nameItr)->getNexthopList());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500199 }
akmhoque53353462014-04-22 08:43:45 -0500200 }
akmhoque157b0a42014-05-13 00:26:37 -0500201 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500202 NLSR_LOG_DEBUG("Attempted to remove origin: " << rtpePtr->getDestination()
Ashlesh Gawande90173ad2017-08-09 15:19:50 -0500203 << " from non-existent prefix: " << name);
akmhoque53353462014-04-22 08:43:45 -0500204 }
205}
206
207void
Nick Gordonb7b58392017-08-17 16:29:21 -0500208NamePrefixTable::updateWithNewRoute(const std::list<RoutingTableEntry>& entries)
akmhoque53353462014-04-22 08:43:45 -0500209{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500210 NLSR_LOG_DEBUG("Updating table with newly calculated routes");
Vince Lehmancae33b62015-06-05 09:21:30 -0500211
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500212 // Iterate over each pool entry we have
213 for (auto&& poolEntryPair : m_rtpool) {
214 auto&& poolEntry = poolEntryPair.second;
Nick Gordonb7b58392017-08-17 16:29:21 -0500215 auto sourceEntry = std::find_if(entries.begin(), entries.end(),
216 [&poolEntry] (const RoutingTableEntry& entry) {
217 return poolEntry->getDestination() == entry.getDestination();
218 });
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500219 // If this pool entry has a corresponding entry in the routing table now
Nick Gordonb7b58392017-08-17 16:29:21 -0500220 if (sourceEntry != entries.end()
221 && poolEntry->getNexthopList() != sourceEntry->getNexthopList()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500222 NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " has changed next-hops.");
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500223 poolEntry->setNexthopList(sourceEntry->getNexthopList());
224 for (const auto& nameEntry : poolEntry->namePrefixTableEntries) {
225 auto nameEntryFullPtr = nameEntry.second.lock();
226 addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination());
227 }
228 }
Nick Gordonb7b58392017-08-17 16:29:21 -0500229 else if (sourceEntry == entries.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500230 NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " now has no next-hops.");
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700231 poolEntry->getNexthopList().clear();
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500232 for (const auto& nameEntry : poolEntry->namePrefixTableEntries) {
233 auto nameEntryFullPtr = nameEntry.second.lock();
234 addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination());
235 }
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500236 }
237 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500238 NLSR_LOG_TRACE("No change in routing entry:" << poolEntry->getDestination()
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500239 << ", no action necessary.");
akmhoque53353462014-04-22 08:43:45 -0500240 }
241 }
242}
243
Nick Gordonb50e51b2016-07-22 16:05:57 -0500244 // Inserts the routing table pool entry into the NPT's RTE storage
245 // pool. This cannot fail, so the pool is guaranteed to contain the
246 // item after this occurs.
247std::shared_ptr<RoutingTablePoolEntry>
248NamePrefixTable::addRtpeToPool(RoutingTablePoolEntry& rtpe)
249{
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500250 RoutingTableEntryPool::iterator poolItr =
Nick Gordonb50e51b2016-07-22 16:05:57 -0500251 m_rtpool.insert(std::make_pair(rtpe.getDestination(),
252 std::make_shared<RoutingTablePoolEntry>
253 (rtpe)))
254 .first;
Nick Gordonb50e51b2016-07-22 16:05:57 -0500255 return poolItr->second;
256}
257
258 // Removes the routing table pool entry from the storage pool. The
259 // postconditions of this function are guaranteed to include that
260 // the storage pool does not contain such an item. Additionally,
261 // this function cannot fail, but nonetheless debug information is
262 // given in the case that this function is called with an entry that
263 // isn't in the pool.
264void
265NamePrefixTable::deleteRtpeFromPool(std::shared_ptr<RoutingTablePoolEntry> rtpePtr)
266{
267 if (m_rtpool.erase(rtpePtr->getDestination()) != 1) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500268 NLSR_LOG_DEBUG("Attempted to delete non-existent origin: "
Nick Gordonb50e51b2016-07-22 16:05:57 -0500269 << rtpePtr->getDestination()
270 << " from NPT routing table entry storage pool.");
271 }
272}
273
akmhoque53353462014-04-22 08:43:45 -0500274void
akmhoque674b0b12014-05-20 14:33:28 -0500275NamePrefixTable::writeLog()
276{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500277 NLSR_LOG_DEBUG(*this);
akmhoque674b0b12014-05-20 14:33:28 -0500278}
279
Vince Lehmancae33b62015-06-05 09:21:30 -0500280std::ostream&
281operator<<(std::ostream& os, const NamePrefixTable& table)
282{
283 os << "----------------NPT----------------------\n";
284
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500285 for (const auto& entryPtr : table) {
286 os << *entryPtr << std::endl;
Vince Lehmancae33b62015-06-05 09:21:30 -0500287 }
288
289 return os;
290}
291
292} // namespace nlsr