blob: 16bf2df83e613747b739b164c2f757979b0bf707 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoaf7a2112019-03-19 14:55:20 -04002/*
Junxiao Shid6922b52024-01-14 19:50:34 +00003 * Copyright (c) 2014-2024, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070019 */
Davide Pesaventoa08dc3f2018-05-24 00:40:28 -040020
akmhoque53353462014-04-22 08:43:45 -050021#include "routing-table.hpp"
22#include "nlsr.hpp"
Junxiao Shi4eb4eae2024-02-14 12:36:57 +000023#include "name-map.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050024#include "conf-parameter.hpp"
akmhoque53353462014-04-22 08:43:45 -050025#include "routing-table-calculator.hpp"
26#include "routing-table-entry.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050027#include "logger.hpp"
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070028#include "tlv-nlsr.hpp"
akmhoque53353462014-04-22 08:43:45 -050029
30namespace nlsr {
31
dmcoomescf8d0ed2017-02-21 11:39:01 -060032INIT_LOGGER(route.RoutingTable);
akmhoque674b0b12014-05-20 14:33:28 -050033
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070034RoutingTable::RoutingTable(ndn::Scheduler& scheduler, Lsdb& lsdb, ConfParameter& confParam)
35 : m_scheduler(scheduler)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060036 , m_lsdb(lsdb)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060037 , m_routingCalcInterval{confParam.getRoutingCalcInterval()}
38 , m_isRoutingTableCalculating(false)
39 , m_isRouteCalculationScheduled(false)
40 , m_confParam(confParam)
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070041 , m_hyperbolicState(m_confParam.getHyperbolicState())
Nick Gordonb7b58392017-08-17 16:29:21 -050042{
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070043 m_afterLsdbModified = lsdb.onLsdbModified.connect(
44 [this] (std::shared_ptr<Lsa> lsa, LsdbUpdate updateType,
45 const auto& namesToAdd, const auto& namesToRemove) {
46 auto type = lsa->getType();
47 bool updateForOwnAdjacencyLsa = lsa->getOriginRouter() == m_confParam.getRouterPrefix() &&
48 type == Lsa::Type::ADJACENCY;
49 bool scheduleCalculation = false;
50
51 if (updateType == LsdbUpdate::REMOVED && updateForOwnAdjacencyLsa) {
52 // If own Adjacency LSA is removed then we have no ACTIVE neighbors.
53 // (Own Coordinate LSA is never removed. But routing table calculation is scheduled
54 // in HelloProtocol. The routing table calculator for HR takes into account
55 // the INACTIVE status of the link).
56 NLSR_LOG_DEBUG("No Adj LSA of router itself, routing table can not be calculated :(");
57 clearRoutingTable();
58 clearDryRoutingTable();
59 NLSR_LOG_DEBUG("Calling Update NPT With new Route");
60 afterRoutingChange(m_rTable);
61 NLSR_LOG_DEBUG(*this);
62 m_ownAdjLsaExist = false;
63 }
64
65 if (updateType == LsdbUpdate::INSTALLED && updateForOwnAdjacencyLsa) {
66 m_ownAdjLsaExist = true;
67 }
68
69 // Don;t do anything on removal, wait for HelloProtocol to confirm and then react
70 if (updateType == LsdbUpdate::INSTALLED || updateType == LsdbUpdate::UPDATED) {
71 if ((type == Lsa::Type::ADJACENCY && m_hyperbolicState != HYPERBOLIC_STATE_ON) ||
72 (type == Lsa::Type::COORDINATE && m_hyperbolicState != HYPERBOLIC_STATE_OFF)) {
73 scheduleCalculation = true;
74 }
75 }
76
77 if (scheduleCalculation) {
78 scheduleRoutingTableCalculation();
79 }
80 }
81 );
Nick Gordonb7b58392017-08-17 16:29:21 -050082}
83
akmhoque53353462014-04-22 08:43:45 -050084void
Ashlesh Gawande85998a12017-12-07 22:22:13 -060085RoutingTable::calculate()
akmhoque53353462014-04-22 08:43:45 -050086{
Ashlesh Gawande57a87172020-05-09 19:47:06 -070087 m_lsdb.writeLog();
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070088 NLSR_LOG_TRACE("Calculating routing table");
89
Ashlesh Gawande85998a12017-12-07 22:22:13 -060090 if (m_isRoutingTableCalculating == false) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -060091 m_isRoutingTableCalculating = true;
Nick Gordone8e03ac2016-07-07 14:24:38 -050092
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070093 if (m_hyperbolicState == HYPERBOLIC_STATE_OFF) {
94 calculateLsRoutingTable();
akmhoque53353462014-04-22 08:43:45 -050095 }
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070096 else if (m_hyperbolicState == HYPERBOLIC_STATE_DRY_RUN) {
97 calculateLsRoutingTable();
98 calculateHypRoutingTable(true);
akmhoque53353462014-04-22 08:43:45 -050099 }
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700100 else if (m_hyperbolicState == HYPERBOLIC_STATE_ON) {
101 calculateHypRoutingTable(false);
102 }
103
104 m_isRouteCalculationScheduled = false;
105 m_isRoutingTableCalculating = false;
akmhoque53353462014-04-22 08:43:45 -0500106 }
akmhoque157b0a42014-05-13 00:26:37 -0500107 else {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600108 scheduleRoutingTableCalculation();
akmhoque53353462014-04-22 08:43:45 -0500109 }
110}
111
akmhoque53353462014-04-22 08:43:45 -0500112void
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600113RoutingTable::calculateLsRoutingTable()
akmhoque53353462014-04-22 08:43:45 -0500114{
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700115 NLSR_LOG_TRACE("CalculateLsRoutingTable Called");
Vince Lehman9a709032014-09-13 16:28:07 -0500116
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700117 if (m_lsdb.getIsBuildAdjLsaScheduled()) {
118 NLSR_LOG_DEBUG("Adjacency build is scheduled, routing table can not be calculated :(");
119 return;
120 }
121
122 // We only check this in LS since we never remove our own Coordinate LSA,
123 // whereas we remove our own Adjacency LSA if we don't have any neighbors
124 if (!m_ownAdjLsaExist) {
125 return;
126 }
127
128 clearRoutingTable();
129
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700130 auto lsaRange = m_lsdb.getLsdbIterator<AdjLsa>();
Junxiao Shi4eb4eae2024-02-14 12:36:57 +0000131 auto map = NameMap::createFromAdjLsdb(lsaRange.first, lsaRange.second);
Junxiao Shid6922b52024-01-14 19:50:34 +0000132 NLSR_LOG_DEBUG(map);
Vince Lehman9a709032014-09-13 16:28:07 -0500133
Junxiao Shid6922b52024-01-14 19:50:34 +0000134 size_t nRouters = map.size();
Vince Lehman9a709032014-09-13 16:28:07 -0500135
136 LinkStateRoutingTableCalculator calculator(nRouters);
137
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700138 calculator.calculatePath(map, *this, m_confParam, m_lsdb);
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700139
140 NLSR_LOG_DEBUG("Calling Update NPT With new Route");
141 afterRoutingChange(m_rTable);
142 NLSR_LOG_DEBUG(*this);
akmhoque53353462014-04-22 08:43:45 -0500143}
144
145void
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600146RoutingTable::calculateHypRoutingTable(bool isDryRun)
akmhoque53353462014-04-22 08:43:45 -0500147{
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700148 if (isDryRun) {
149 clearDryRoutingTable();
150 }
151 else {
152 clearRoutingTable();
153 }
154
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700155 auto lsaRange = m_lsdb.getLsdbIterator<CoordinateLsa>();
Junxiao Shi4eb4eae2024-02-14 12:36:57 +0000156 auto map = NameMap::createFromCoordinateLsdb(lsaRange.first, lsaRange.second);
Junxiao Shid6922b52024-01-14 19:50:34 +0000157 NLSR_LOG_DEBUG(map);
Vince Lehman9a709032014-09-13 16:28:07 -0500158
Junxiao Shid6922b52024-01-14 19:50:34 +0000159 size_t nRouters = map.size();
Vince Lehman9a709032014-09-13 16:28:07 -0500160
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600161 HyperbolicRoutingCalculator calculator(nRouters, isDryRun, m_confParam.getRouterPrefix());
Vince Lehman9a709032014-09-13 16:28:07 -0500162
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600163 calculator.calculatePath(map, *this, m_lsdb, m_confParam.getAdjacencyList());
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700164
165 if (!isDryRun) {
166 NLSR_LOG_DEBUG("Calling Update NPT With new Route");
167 afterRoutingChange(m_rTable);
168 NLSR_LOG_DEBUG(*this);
169 }
akmhoque53353462014-04-22 08:43:45 -0500170}
171
172void
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600173RoutingTable::scheduleRoutingTableCalculation()
akmhoque53353462014-04-22 08:43:45 -0500174{
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400175 if (!m_isRouteCalculationScheduled) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500176 NLSR_LOG_DEBUG("Scheduling routing table calculation in " << m_routingCalcInterval);
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400177 m_scheduler.schedule(m_routingCalcInterval, [this] { calculate(); });
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600178 m_isRouteCalculationScheduled = true;
akmhoque53353462014-04-22 08:43:45 -0500179 }
180}
181
182static bool
akmhoque31d1d4b2014-05-05 22:08:14 -0500183routingTableEntryCompare(RoutingTableEntry& rte, ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500184{
185 return rte.getDestination() == destRouter;
186}
187
akmhoque53353462014-04-22 08:43:45 -0500188void
akmhoque31d1d4b2014-05-05 22:08:14 -0500189RoutingTable::addNextHop(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500190{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500191 NLSR_LOG_DEBUG("Adding " << nh << " for destination: " << destRouter);
Vince Lehman9a709032014-09-13 16:28:07 -0500192
akmhoqueb6450b12014-04-24 00:01:03 -0500193 RoutingTableEntry* rteChk = findRoutingTableEntry(destRouter);
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400194 if (rteChk == nullptr) {
akmhoque53353462014-04-22 08:43:45 -0500195 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500196 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500197 m_rTable.push_back(rte);
198 }
akmhoque157b0a42014-05-13 00:26:37 -0500199 else {
akmhoquefdbddb12014-05-02 18:35:19 -0500200 rteChk->getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500201 }
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700202 m_wire.reset();
akmhoque53353462014-04-22 08:43:45 -0500203}
204
akmhoqueb6450b12014-04-24 00:01:03 -0500205RoutingTableEntry*
akmhoque31d1d4b2014-05-05 22:08:14 -0500206RoutingTable::findRoutingTableEntry(const ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500207{
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400208 auto it = std::find_if(m_rTable.begin(), m_rTable.end(),
209 std::bind(&routingTableEntryCompare, _1, destRouter));
akmhoque157b0a42014-05-13 00:26:37 -0500210 if (it != m_rTable.end()) {
akmhoqueb6450b12014-04-24 00:01:03 -0500211 return &(*it);
akmhoque53353462014-04-22 08:43:45 -0500212 }
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400213 return nullptr;
akmhoque53353462014-04-22 08:43:45 -0500214}
215
216void
akmhoque31d1d4b2014-05-05 22:08:14 -0500217RoutingTable::addNextHopToDryTable(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500218{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500219 NLSR_LOG_DEBUG("Adding " << nh << " to dry table for destination: " << destRouter);
Vince Lehman9a709032014-09-13 16:28:07 -0500220
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400221 auto it = std::find_if(m_dryTable.begin(), m_dryTable.end(),
222 std::bind(&routingTableEntryCompare, _1, destRouter));
akmhoque157b0a42014-05-13 00:26:37 -0500223 if (it == m_dryTable.end()) {
akmhoque53353462014-04-22 08:43:45 -0500224 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500225 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500226 m_dryTable.push_back(rte);
227 }
akmhoque157b0a42014-05-13 00:26:37 -0500228 else {
Davide Pesaventoaf7a2112019-03-19 14:55:20 -0400229 it->getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500230 }
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700231 m_wire.reset();
akmhoque53353462014-04-22 08:43:45 -0500232}
233
234void
akmhoque53353462014-04-22 08:43:45 -0500235RoutingTable::clearRoutingTable()
236{
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700237 m_rTable.clear();
238 m_wire.reset();
akmhoque53353462014-04-22 08:43:45 -0500239}
240
241void
242RoutingTable::clearDryRoutingTable()
243{
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700244 m_dryTable.clear();
245 m_wire.reset();
akmhoque53353462014-04-22 08:43:45 -0500246}
247
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700248template<ndn::encoding::Tag TAG>
249size_t
250RoutingTableStatus::wireEncode(ndn::EncodingImpl<TAG>& block) const
251{
252 size_t totalLength = 0;
253
254 for (auto it = m_dryTable.rbegin(); it != m_dryTable.rend(); ++it) {
255 totalLength += it->wireEncode(block);
256 }
257
258 for (auto it = m_rTable.rbegin(); it != m_rTable.rend(); ++it) {
259 totalLength += it->wireEncode(block);
260 }
261
262 totalLength += block.prependVarNumber(totalLength);
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400263 totalLength += block.prependVarNumber(nlsr::tlv::RoutingTable);
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700264
265 return totalLength;
266}
267
268NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(RoutingTableStatus);
269
270const ndn::Block&
271RoutingTableStatus::wireEncode() const
272{
273 if (m_wire.hasWire()) {
274 return m_wire;
275 }
276
277 ndn::EncodingEstimator estimator;
278 size_t estimatedSize = wireEncode(estimator);
279
280 ndn::EncodingBuffer buffer(estimatedSize, 0);
281 wireEncode(buffer);
282
283 m_wire = buffer.block();
284
285 return m_wire;
286}
287
288void
289RoutingTableStatus::wireDecode(const ndn::Block& wire)
290{
291 m_rTable.clear();
292
293 m_wire = wire;
294
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400295 if (m_wire.type() != nlsr::tlv::RoutingTable) {
Davide Pesaventod90338d2021-01-07 17:50:05 -0500296 NDN_THROW(Error("RoutingTable", m_wire.type()));
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700297 }
298
299 m_wire.parse();
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700300 auto val = m_wire.elements_begin();
301
302 std::set<ndn::Name> destinations;
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400303 for (; val != m_wire.elements_end() && val->type() == nlsr::tlv::RoutingTableEntry; ++val) {
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700304 auto entry = RoutingTableEntry(*val);
305
306 if (destinations.emplace(entry.getDestination()).second) {
307 m_rTable.push_back(entry);
308 }
309 else {
310 // If destination already exists then this is the start of dry HR table
311 m_dryTable.push_back(entry);
312 }
313 }
314
315 if (val != m_wire.elements_end()) {
Davide Pesaventod90338d2021-01-07 17:50:05 -0500316 NDN_THROW(Error("Unrecognized TLV of type " + ndn::to_string(val->type()) + " in RoutingTable"));
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700317 }
318}
319
320std::ostream&
321operator<<(std::ostream& os, const RoutingTableStatus& rts)
322{
323 os << "Routing Table:\n";
324 for (const auto& rte : rts.getRoutingTableEntry()) {
325 os << rte;
326 }
327
328 if (!rts.getDryRoutingTableEntry().empty()) {
329 os << "Dry-Run Hyperbolic Routing Table:\n";
330 for (const auto& rte : rts.getDryRoutingTableEntry()) {
331 os << rte;
332 }
333 }
334 return os;
335}
336
Nick Gordonfad8e252016-08-11 14:21:38 -0500337} // namespace nlsr