blob: 43081eb32a83f4e9ba0211d7340e0d62097ef504 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05003 * Copyright (c) 2014-2016, The University of Memphis,
4 * 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/>.
19 *
20 * \author A K M Mahmudul Hoque <ahoque1@memphis.edu>
21 *
22 **/
akmhoque53353462014-04-22 08:43:45 -050023#include <iostream>
24#include <string>
25#include <list>
26
27#include "routing-table.hpp"
28#include "nlsr.hpp"
29#include "map.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050030#include "conf-parameter.hpp"
akmhoque53353462014-04-22 08:43:45 -050031#include "routing-table-calculator.hpp"
32#include "routing-table-entry.hpp"
akmhoquec8a10f72014-04-25 18:42:55 -050033#include "name-prefix-table.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050034#include "logger.hpp"
akmhoque53353462014-04-22 08:43:45 -050035
36namespace nlsr {
37
akmhoque674b0b12014-05-20 14:33:28 -050038INIT_LOGGER("RoutingTable");
39
akmhoque53353462014-04-22 08:43:45 -050040using namespace std;
41
42void
43RoutingTable::calculate(Nlsr& pnlsr)
44{
akmhoque2f423352014-06-03 11:49:35 -050045 pnlsr.getLsdb().writeCorLsdbLog();
46 pnlsr.getLsdb().writeNameLsdbLog();
47 pnlsr.getLsdb().writeAdjLsdbLog();
akmhoque674b0b12014-05-20 14:33:28 -050048 pnlsr.getNamePrefixTable().writeLog();
akmhoque157b0a42014-05-13 00:26:37 -050049 if (pnlsr.getIsRoutingTableCalculating() == false) {
50 //setting routing table calculation
51 pnlsr.setIsRoutingTableCalculating(true);
Nick Gordone8e03ac2016-07-07 14:24:38 -050052
53 bool isHrEnabled = pnlsr.getConfParameter().getHyperbolicState() != HYPERBOLIC_STATE_OFF;
54
55 if ((!isHrEnabled
56 &&
57 pnlsr.getLsdb()
58 .doesLsaExist(pnlsr.getConfParameter().getRouterPrefix().toUri()
59 + "/" + "adjacency", std::string("adjacency")))
60 ||
61 (isHrEnabled
62 &&
63 pnlsr.getLsdb()
64 .doesLsaExist(pnlsr.getConfParameter().getRouterPrefix().toUri()
65 + "/" + "coordinate", std::string("coordinate")))) {
akmhoque157b0a42014-05-13 00:26:37 -050066 if (pnlsr.getIsBuildAdjLsaSheduled() != 1) {
Vince Lehman50df6b72015-03-03 12:06:40 -060067 _LOG_TRACE("Clearing old routing table");
akmhoque53353462014-04-22 08:43:45 -050068 clearRoutingTable();
akmhoque157b0a42014-05-13 00:26:37 -050069 // for dry run options
70 clearDryRoutingTable();
Vince Lehman50df6b72015-03-03 12:06:40 -060071
72 _LOG_DEBUG("Calculating routing table");
73
akmhoque53353462014-04-22 08:43:45 -050074 // calculate Link State routing
akmhoque157b0a42014-05-13 00:26:37 -050075 if ((pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_OFF)
76 || (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_DRY_RUN)) {
akmhoque53353462014-04-22 08:43:45 -050077 calculateLsRoutingTable(pnlsr);
78 }
79 //calculate hyperbolic routing
akmhoque157b0a42014-05-13 00:26:37 -050080 if (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_ON) {
akmhoque53353462014-04-22 08:43:45 -050081 calculateHypRoutingTable(pnlsr);
82 }
83 //calculate dry hyperbolic routing
akmhoque157b0a42014-05-13 00:26:37 -050084 if (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_DRY_RUN) {
akmhoque53353462014-04-22 08:43:45 -050085 calculateHypDryRoutingTable(pnlsr);
86 }
87 //need to update NPT here
akmhoque2f423352014-06-03 11:49:35 -050088 _LOG_DEBUG("Calling Update NPT With new Route");
akmhoque31d1d4b2014-05-05 22:08:14 -050089 pnlsr.getNamePrefixTable().updateWithNewRoute();
akmhoquedcee9362014-08-05 22:58:01 -050090 writeLog(pnlsr.getConfParameter().getHyperbolicState());
akmhoque674b0b12014-05-20 14:33:28 -050091 pnlsr.getNamePrefixTable().writeLog();
92 pnlsr.getFib().writeLog();
akmhoque53353462014-04-22 08:43:45 -050093 }
akmhoque157b0a42014-05-13 00:26:37 -050094 else {
akmhoque674b0b12014-05-20 14:33:28 -050095 _LOG_DEBUG("Adjacency building is scheduled, so"
96 " routing table can not be calculated :(");
akmhoque53353462014-04-22 08:43:45 -050097 }
98 }
akmhoque157b0a42014-05-13 00:26:37 -050099 else {
akmhoque674b0b12014-05-20 14:33:28 -0500100 _LOG_DEBUG("No Adj LSA of router itself,"
101 " so Routing table can not be calculated :(");
akmhoque53353462014-04-22 08:43:45 -0500102 clearRoutingTable();
103 clearDryRoutingTable(); // for dry run options
104 // need to update NPT here
akmhoque2f423352014-06-03 11:49:35 -0500105 _LOG_DEBUG("Calling Update NPT With new Route");
akmhoque31d1d4b2014-05-05 22:08:14 -0500106 pnlsr.getNamePrefixTable().updateWithNewRoute();
akmhoquedcee9362014-08-05 22:58:01 -0500107 writeLog(pnlsr.getConfParameter().getHyperbolicState());
akmhoque674b0b12014-05-20 14:33:28 -0500108 pnlsr.getNamePrefixTable().writeLog();
109 pnlsr.getFib().writeLog();
akmhoque53353462014-04-22 08:43:45 -0500110 //debugging purpose end
111 }
akmhoque157b0a42014-05-13 00:26:37 -0500112 pnlsr.setIsRouteCalculationScheduled(false); //clear scheduled flag
113 pnlsr.setIsRoutingTableCalculating(false); //unsetting routing table calculation
akmhoque53353462014-04-22 08:43:45 -0500114 }
akmhoque157b0a42014-05-13 00:26:37 -0500115 else {
akmhoque53353462014-04-22 08:43:45 -0500116 scheduleRoutingTableCalculation(pnlsr);
117 }
118}
119
120
121void
Vince Lehman9a709032014-09-13 16:28:07 -0500122RoutingTable::calculateLsRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500123{
akmhoque2f423352014-06-03 11:49:35 -0500124 _LOG_DEBUG("RoutingTable::calculateLsRoutingTable Called");
Vince Lehman9a709032014-09-13 16:28:07 -0500125
126 Map map;
127 map.createFromAdjLsdb(nlsr);
128 map.writeLog();
129
130 size_t nRouters = map.getMapSize();
131
132 LinkStateRoutingTableCalculator calculator(nRouters);
133
134 calculator.calculatePath(map, ndn::ref(*this), nlsr);
akmhoque53353462014-04-22 08:43:45 -0500135}
136
137void
Vince Lehman9a709032014-09-13 16:28:07 -0500138RoutingTable::calculateHypRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500139{
Vince Lehman9a709032014-09-13 16:28:07 -0500140 Map map;
Nick Gordone8e03ac2016-07-07 14:24:38 -0500141 map.createFromCoordinateLsdb(nlsr);
Vince Lehman9a709032014-09-13 16:28:07 -0500142 map.writeLog();
143
144 size_t nRouters = map.getMapSize();
145
146 HyperbolicRoutingCalculator calculator(nRouters, false,
147 nlsr.getConfParameter().getRouterPrefix());
148
149 calculator.calculatePaths(map, ndn::ref(*this),
150 nlsr.getLsdb(), nlsr.getAdjacencyList());
akmhoque53353462014-04-22 08:43:45 -0500151}
152
153void
Vince Lehman9a709032014-09-13 16:28:07 -0500154RoutingTable::calculateHypDryRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500155{
Vince Lehman9a709032014-09-13 16:28:07 -0500156 Map map;
157 map.createFromAdjLsdb(nlsr);
158 map.writeLog();
159
160 size_t nRouters = map.getMapSize();
161
162 HyperbolicRoutingCalculator calculator(nRouters, true,
163 nlsr.getConfParameter().getRouterPrefix());
164
165 calculator.calculatePaths(map, ndn::ref(*this),
166 nlsr.getLsdb(), nlsr.getAdjacencyList());
akmhoque53353462014-04-22 08:43:45 -0500167}
168
169void
170RoutingTable::scheduleRoutingTableCalculation(Nlsr& pnlsr)
171{
akmhoque157b0a42014-05-13 00:26:37 -0500172 if (pnlsr.getIsRouteCalculationScheduled() != true) {
Vince Lehman50df6b72015-03-03 12:06:40 -0600173 _LOG_DEBUG("Scheduling routing table calculation in " << m_routingCalcInterval);
174
Vince Lehman7b616582014-10-17 16:25:39 -0500175 m_scheduler.scheduleEvent(m_routingCalcInterval,
Vince Lehman7c603292014-09-11 17:48:16 -0500176 ndn::bind(&RoutingTable::calculate, this, ndn::ref(pnlsr)));
177
akmhoque157b0a42014-05-13 00:26:37 -0500178 pnlsr.setIsRouteCalculationScheduled(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
188// function related to manipulation of routing table
189void
akmhoque31d1d4b2014-05-05 22:08:14 -0500190RoutingTable::addNextHop(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500191{
Vince Lehman9a709032014-09-13 16:28:07 -0500192 _LOG_DEBUG("Adding " << nh << " for destination: " << destRouter);
193
akmhoqueb6450b12014-04-24 00:01:03 -0500194 RoutingTableEntry* rteChk = findRoutingTableEntry(destRouter);
akmhoque157b0a42014-05-13 00:26:37 -0500195 if (rteChk == 0) {
akmhoque53353462014-04-22 08:43:45 -0500196 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500197 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500198 m_rTable.push_back(rte);
199 }
akmhoque157b0a42014-05-13 00:26:37 -0500200 else {
akmhoquefdbddb12014-05-02 18:35:19 -0500201 rteChk->getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500202 }
203}
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{
208 std::list<RoutingTableEntry>::iterator it = std::find_if(m_rTable.begin(),
209 m_rTable.end(),
akmhoque157b0a42014-05-13 00:26:37 -0500210 ndn::bind(&routingTableEntryCompare,
211 _1, destRouter));
212 if (it != m_rTable.end()) {
akmhoqueb6450b12014-04-24 00:01:03 -0500213 return &(*it);
akmhoque53353462014-04-22 08:43:45 -0500214 }
akmhoqueb6450b12014-04-24 00:01:03 -0500215 return 0;
akmhoque53353462014-04-22 08:43:45 -0500216}
217
218void
akmhoquedcee9362014-08-05 22:58:01 -0500219RoutingTable::writeLog(int hyperbolicState)
akmhoque674b0b12014-05-20 14:33:28 -0500220{
221 _LOG_DEBUG("---------------Routing Table------------------");
222 for (std::list<RoutingTableEntry>::iterator it = m_rTable.begin() ;
223 it != m_rTable.end(); ++it) {
224 _LOG_DEBUG("Destination: " << (*it).getDestination());
225 _LOG_DEBUG("Nexthops: ");
226 (*it).getNexthopList().writeLog();
227 }
akmhoquedcee9362014-08-05 22:58:01 -0500228
229 if (hyperbolicState == HYPERBOLIC_STATE_DRY_RUN) {
230 _LOG_DEBUG("--------Hyperbolic Routing Table(Dry)---------");
231 for (std::list<RoutingTableEntry>::iterator it = m_dryTable.begin() ;
232 it != m_dryTable.end(); ++it) {
233 _LOG_DEBUG("Destination: " << (*it).getDestination());
234 _LOG_DEBUG("Nexthops: ");
235 (*it).getNexthopList().writeLog();
236 }
237 }
akmhoque674b0b12014-05-20 14:33:28 -0500238}
239
akmhoque53353462014-04-22 08:43:45 -0500240//function related to manipulation of dry routing table
241void
akmhoque31d1d4b2014-05-05 22:08:14 -0500242RoutingTable::addNextHopToDryTable(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500243{
Vince Lehman9a709032014-09-13 16:28:07 -0500244 _LOG_DEBUG("Adding " << nh << " to dry table for destination: " << destRouter);
245
akmhoque53353462014-04-22 08:43:45 -0500246 std::list<RoutingTableEntry>::iterator it = std::find_if(m_dryTable.begin(),
247 m_dryTable.end(),
akmhoque157b0a42014-05-13 00:26:37 -0500248 ndn::bind(&routingTableEntryCompare,
249 _1, destRouter));
250 if (it == m_dryTable.end()) {
akmhoque53353462014-04-22 08:43:45 -0500251 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500252 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500253 m_dryTable.push_back(rte);
254 }
akmhoque157b0a42014-05-13 00:26:37 -0500255 else {
akmhoquefdbddb12014-05-02 18:35:19 -0500256 (*it).getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500257 }
258}
259
260void
akmhoque53353462014-04-22 08:43:45 -0500261RoutingTable::clearRoutingTable()
262{
akmhoque157b0a42014-05-13 00:26:37 -0500263 if (m_rTable.size() > 0) {
akmhoque53353462014-04-22 08:43:45 -0500264 m_rTable.clear();
265 }
266}
267
268void
269RoutingTable::clearDryRoutingTable()
270{
akmhoque157b0a42014-05-13 00:26:37 -0500271 if (m_dryTable.size() > 0) {
akmhoque53353462014-04-22 08:43:45 -0500272 m_dryTable.clear();
273 }
274}
275
276}//namespace nlsr
277