akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Muktadir R Chowdhury | 800833b | 2016-07-29 13:43:59 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2016, 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/>. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [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 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 34 | INIT_LOGGER("NamePrefixTable"); |
| 35 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 36 | static bool |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 37 | npteCompare(NamePrefixTableEntry& npte, const ndn::Name& name) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 38 | { |
| 39 | return npte.getNamePrefix() == name; |
| 40 | } |
| 41 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 42 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 43 | NamePrefixTable::addEntry(const ndn::Name& name, RoutingTableEntry& rte) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 44 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 45 | NptEntryList::iterator it = std::find_if(m_table.begin(), |
| 46 | m_table.end(), |
| 47 | bind(&npteCompare, _1, name)); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 48 | if (it == m_table.end()) { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 49 | _LOG_TRACE("Adding origin: " << rte.getDestination() << " to new name prefix: " << name); |
| 50 | |
| 51 | NamePrefixTableEntry entry(name); |
| 52 | |
| 53 | entry.addRoutingTableEntry(rte); |
| 54 | |
| 55 | entry.generateNhlfromRteList(); |
| 56 | entry.getNexthopList().sort(); |
| 57 | |
| 58 | m_table.push_back(entry); |
| 59 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 60 | if (rte.getNexthopList().getSize() > 0) { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 61 | _LOG_TRACE("Updating FIB with next hops for " << entry); |
| 62 | m_nlsr.getFib().update(name, entry.getNexthopList()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 63 | } |
| 64 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 65 | else { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 66 | _LOG_TRACE("Adding origin: " << rte.getDestination() << " to existing prefix: " << *it); |
| 67 | |
| 68 | it->addRoutingTableEntry(rte); |
| 69 | |
| 70 | it->generateNhlfromRteList(); |
| 71 | it->getNexthopList().sort(); |
| 72 | |
| 73 | if (it->getNexthopList().getSize() > 0) { |
| 74 | _LOG_TRACE("Updating FIB with next hops for " << *it); |
| 75 | m_nlsr.getFib().update(name, it->getNexthopList()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 76 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 77 | else { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 78 | // The routing table may recalculate and add a routing table entry with no next hops to |
| 79 | // replace an existing routing table entry. In this case, the name prefix is no longer |
| 80 | // reachable through a next hop and should be removed from the FIB. But, the prefix |
| 81 | // should remain in the Name Prefix Table as a future routing table calculation may |
| 82 | // add next hops. |
| 83 | _LOG_TRACE(*it << " has no next hops; removing from FIB"); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 84 | m_nlsr.getFib().remove(name); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 90 | NamePrefixTable::removeEntry(const ndn::Name& name, RoutingTableEntry& rte) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 91 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 92 | NptEntryList::iterator it = std::find_if(m_table.begin(), |
| 93 | m_table.end(), |
| 94 | bind(&npteCompare, _1, name)); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 95 | if (it != m_table.end()) { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 96 | _LOG_TRACE("Removing origin: " << rte.getDestination() << " from prefix: " << *it); |
| 97 | |
Vince Lehman | 9630fbf | 2015-05-05 12:33:44 -0500 | [diff] [blame] | 98 | it->removeRoutingTableEntry(rte); |
| 99 | |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 100 | // If the prefix is a router prefix and it does not have any other routing table entries, |
| 101 | // the Adjacency/Coordinate LSA associated with that origin router has been removed from |
| 102 | // the LSDB and so the router prefix should be removed from the Name Prefix Table. |
| 103 | // |
| 104 | // If the prefix is an advertised name prefix: |
| 105 | // If another router advertises this name prefix, the RteList should have another entry |
| 106 | // for that router; the next hops should be recalculated and installed in the FIB. |
| 107 | // |
| 108 | // If no other router advertises this name prefix, the RteList should be empty and the |
| 109 | // prefix can be removed from the Name Prefix Table. Once a new Name LSA advertises this |
| 110 | // prefix, a new entry for the prefix will be created. |
| 111 | // |
| 112 | if (it->getRteListSize() == 0) { |
| 113 | _LOG_TRACE(*it << " has no routing table entries; removing from table and FIB"); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 114 | m_table.erase(it); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 115 | m_nlsr.getFib().remove(name); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 116 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 117 | else { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 118 | _LOG_TRACE(*it << " has other routing table entries; updating FIB with next hops"); |
| 119 | it->generateNhlfromRteList(); |
| 120 | it->getNexthopList().sort(); |
| 121 | |
| 122 | m_nlsr.getFib().update(name, it->getNexthopList()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 127 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 128 | NamePrefixTable::addEntry(const ndn::Name& name, const ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 129 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 130 | _LOG_DEBUG("Adding origin: " << destRouter << " to " << name); |
| 131 | |
| 132 | RoutingTableEntry* rteCheck = m_nlsr.getRoutingTable().findRoutingTableEntry(destRouter); |
| 133 | |
| 134 | if (rteCheck != nullptr) { |
| 135 | addEntry(name, *rteCheck); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 136 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 137 | else { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 138 | RoutingTableEntry rte(destRouter); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 139 | addEntry(name, rte); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | |
| 143 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 144 | NamePrefixTable::removeEntry(const ndn::Name& name, const ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 145 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 146 | _LOG_DEBUG("Removing origin: " << destRouter << " from " << name); |
| 147 | |
| 148 | RoutingTableEntry* rteCheck = m_nlsr.getRoutingTable().findRoutingTableEntry(destRouter); |
| 149 | |
| 150 | if (rteCheck != nullptr) { |
| 151 | removeEntry(name, *rteCheck); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 152 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 153 | else { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 154 | RoutingTableEntry rte(destRouter); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 155 | removeEntry(name, rte); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
| 159 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 160 | NamePrefixTable::updateWithNewRoute() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 161 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 162 | _LOG_DEBUG("Updating table with newly calculated routes"); |
| 163 | |
| 164 | // Update each name prefix entry in the Name Prefix Table with newly calculated next hops |
| 165 | for (const NamePrefixTableEntry& prefixEntry : m_table) { |
| 166 | for (const RoutingTableEntry& routingEntry : prefixEntry.getRteList()) { |
| 167 | _LOG_TRACE("Updating next hops to origin: " << routingEntry.getDestination() |
| 168 | << " for prefix: " << prefixEntry); |
| 169 | |
akmhoque | b6450b1 | 2014-04-24 00:01:03 -0500 | [diff] [blame] | 170 | RoutingTableEntry* rteCheck = |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 171 | m_nlsr.getRoutingTable().findRoutingTableEntry(routingEntry.getDestination()); |
| 172 | |
| 173 | if (rteCheck != nullptr) { |
| 174 | addEntry(prefixEntry.getNamePrefix(), *rteCheck); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 175 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 176 | else { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 177 | RoutingTableEntry rte(routingEntry.getDestination()); |
| 178 | addEntry(prefixEntry.getNamePrefix(), rte); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | void |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 185 | NamePrefixTable::writeLog() |
| 186 | { |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 187 | _LOG_DEBUG(*this); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 188 | } |
| 189 | |
Vince Lehman | cae33b6 | 2015-06-05 09:21:30 -0500 | [diff] [blame] | 190 | std::ostream& |
| 191 | operator<<(std::ostream& os, const NamePrefixTable& table) |
| 192 | { |
| 193 | os << "----------------NPT----------------------\n"; |
| 194 | |
| 195 | for (const NamePrefixTableEntry& entry : table) { |
| 196 | os << entry << std::endl; |
| 197 | } |
| 198 | |
| 199 | return os; |
| 200 | } |
| 201 | |
| 202 | } // namespace nlsr |