Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 UCLA |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 3898e1b | 2013-07-27 12:03:17 -0700 | [diff] [blame] | 21 | #if __clang__ |
| 22 | #pragma clang diagnostic push |
| 23 | #pragma clang diagnostic ignored "-Wunused-variable" |
| 24 | #pragma clang diagnostic ignored "-Wunneeded-internal-declaration" |
| 25 | #endif |
| 26 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 27 | #include "ndn-global-routing-helper.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 28 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 29 | #include "model/ndn-l3-protocol.hpp" |
| 30 | #include "helper/ndn-fib-helper.hpp" |
| 31 | #include "model/ndn-net-device-face.hpp" |
| 32 | #include "model/ndn-global-router.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 33 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 34 | #include "daemon/table/fib.hpp" |
| 35 | #include "daemon/fw/forwarder.hpp" |
| 36 | #include "daemon/table/fib-entry.hpp" |
| 37 | #include "daemon/table/fib-nexthop.hpp" |
| 38 | |
| 39 | #include "ns3/object.h" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 40 | #include "ns3/node.h" |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 41 | #include "ns3/node-container.h" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 42 | #include "ns3/net-device.h" |
| 43 | #include "ns3/channel.h" |
| 44 | #include "ns3/log.h" |
| 45 | #include "ns3/assert.h" |
| 46 | #include "ns3/names.h" |
| 47 | #include "ns3/node-list.h" |
| 48 | #include "ns3/channel-list.h" |
Alexander Afanasyev | f5c0774 | 2012-10-31 13:13:05 -0700 | [diff] [blame] | 49 | #include "ns3/object-factory.h" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 50 | |
| 51 | #include <boost/lexical_cast.hpp> |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 52 | #include <boost/foreach.hpp> |
Alexander Afanasyev | a5abcd9 | 2012-04-17 13:34:43 -0700 | [diff] [blame] | 53 | #include <boost/concept/assert.hpp> |
Alexander Afanasyev | a5abcd9 | 2012-04-17 13:34:43 -0700 | [diff] [blame] | 54 | #include <boost/graph/dijkstra_shortest_paths.hpp> |
| 55 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 56 | #include "boost-graph-ndn-global-routing-helper.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 57 | |
Alexander Afanasyev | 7353251 | 2012-11-27 00:42:35 -0800 | [diff] [blame] | 58 | #include <math.h> |
| 59 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 60 | NS_LOG_COMPONENT_DEFINE("ndn.GlobalRoutingHelper"); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 61 | |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 62 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 63 | namespace ndn { |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 64 | |
| 65 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 66 | GlobalRoutingHelper::Install(Ptr<Node> node) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 67 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 68 | NS_LOG_LOGIC("Node: " << node->GetId()); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 69 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 70 | Ptr<L3Protocol> ndn = node->GetObject<L3Protocol>(); |
| 71 | NS_ASSERT_MSG(ndn != 0, "Cannot install GlobalRoutingHelper before Ndn is installed on a node"); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 72 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 73 | Ptr<GlobalRouter> gr = node->GetObject<GlobalRouter>(); |
| 74 | if (gr != 0) { |
| 75 | NS_LOG_DEBUG("GlobalRouter is already installed: " << gr); |
| 76 | return; // already installed |
| 77 | } |
| 78 | |
| 79 | gr = CreateObject<GlobalRouter>(); |
| 80 | node->AggregateObject(gr); |
| 81 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 82 | for (auto& i : ndn->getForwarder()->getFaceTable()) { |
| 83 | shared_ptr<NetDeviceFace> face = std::dynamic_pointer_cast<NetDeviceFace>(i); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 84 | if (face == 0) { |
| 85 | NS_LOG_DEBUG("Skipping non-netdevice face"); |
| 86 | continue; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 87 | } |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 88 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 89 | Ptr<NetDevice> nd = face->GetNetDevice(); |
| 90 | if (nd == 0) { |
| 91 | NS_LOG_DEBUG("Not a NetDevice associated with NetDeviceFace"); |
| 92 | continue; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 93 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 94 | |
| 95 | Ptr<Channel> ch = nd->GetChannel(); |
| 96 | |
| 97 | if (ch == 0) { |
| 98 | NS_LOG_DEBUG("Channel is not associated with NetDevice"); |
| 99 | continue; |
| 100 | } |
| 101 | |
| 102 | if (ch->GetNDevices() == 2) // e.g., point-to-point channel |
| 103 | { |
| 104 | for (uint32_t deviceId = 0; deviceId < ch->GetNDevices(); deviceId++) { |
| 105 | Ptr<NetDevice> otherSide = ch->GetDevice(deviceId); |
| 106 | if (nd == otherSide) |
| 107 | continue; |
| 108 | |
| 109 | Ptr<Node> otherNode = otherSide->GetNode(); |
| 110 | NS_ASSERT(otherNode != 0); |
| 111 | |
| 112 | Ptr<GlobalRouter> otherGr = otherNode->GetObject<GlobalRouter>(); |
| 113 | if (otherGr == 0) { |
| 114 | Install(otherNode); |
| 115 | } |
| 116 | otherGr = otherNode->GetObject<GlobalRouter>(); |
| 117 | NS_ASSERT(otherGr != 0); |
| 118 | gr->AddIncidency(face, otherGr); |
| 119 | } |
| 120 | } |
| 121 | else { |
| 122 | Ptr<GlobalRouter> grChannel = ch->GetObject<GlobalRouter>(); |
| 123 | if (grChannel == 0) { |
| 124 | Install(ch); |
| 125 | } |
| 126 | grChannel = ch->GetObject<GlobalRouter>(); |
| 127 | |
| 128 | gr->AddIncidency(face, grChannel); |
| 129 | } |
| 130 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 134 | GlobalRoutingHelper::Install(Ptr<Channel> channel) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 135 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 136 | NS_LOG_LOGIC("Channel: " << channel->GetId()); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 137 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 138 | Ptr<GlobalRouter> gr = channel->GetObject<GlobalRouter>(); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 139 | if (gr != 0) |
| 140 | return; |
| 141 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 142 | gr = CreateObject<GlobalRouter>(); |
| 143 | channel->AggregateObject(gr); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 144 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 145 | for (uint32_t deviceId = 0; deviceId < channel->GetNDevices(); deviceId++) { |
| 146 | Ptr<NetDevice> dev = channel->GetDevice(deviceId); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 147 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 148 | Ptr<Node> node = dev->GetNode(); |
| 149 | NS_ASSERT(node != 0); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 150 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 151 | Ptr<GlobalRouter> grOther = node->GetObject<GlobalRouter>(); |
| 152 | if (grOther == 0) { |
| 153 | Install(node); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 154 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 155 | grOther = node->GetObject<GlobalRouter>(); |
| 156 | NS_ASSERT(grOther != 0); |
| 157 | |
| 158 | gr->AddIncidency(0, grOther); |
| 159 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 163 | GlobalRoutingHelper::Install(const NodeContainer& nodes) |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 164 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 165 | for (NodeContainer::Iterator node = nodes.Begin(); node != nodes.End(); node++) { |
| 166 | Install(*node); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void |
| 171 | GlobalRoutingHelper::InstallAll() |
| 172 | { |
| 173 | Install(NodeContainer::GetGlobal()); |
| 174 | } |
| 175 | |
| 176 | void |
| 177 | GlobalRoutingHelper::AddOrigin(const std::string& prefix, Ptr<Node> node) |
| 178 | { |
| 179 | Ptr<GlobalRouter> gr = node->GetObject<GlobalRouter>(); |
| 180 | NS_ASSERT_MSG(gr != 0, "GlobalRouter is not installed on the node"); |
| 181 | |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 182 | auto name = make_shared<Name>(prefix); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 183 | gr->AddLocalPrefix(name); |
| 184 | } |
| 185 | |
| 186 | void |
| 187 | GlobalRoutingHelper::AddOrigins(const std::string& prefix, const NodeContainer& nodes) |
| 188 | { |
| 189 | for (NodeContainer::Iterator node = nodes.Begin(); node != nodes.End(); node++) { |
| 190 | AddOrigin(prefix, *node); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | void |
| 195 | GlobalRoutingHelper::AddOrigin(const std::string& prefix, const std::string& nodeName) |
| 196 | { |
| 197 | Ptr<Node> node = Names::Find<Node>(nodeName); |
| 198 | NS_ASSERT_MSG(node != 0, nodeName << "is not a Node"); |
| 199 | |
| 200 | AddOrigin(prefix, node); |
| 201 | } |
| 202 | |
| 203 | void |
| 204 | GlobalRoutingHelper::AddOriginsForAll() |
| 205 | { |
| 206 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 207 | Ptr<GlobalRouter> gr = (*node)->GetObject<GlobalRouter>(); |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 208 | std::string name = Names::FindName(*node); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 209 | |
| 210 | if (gr != 0 && !name.empty()) { |
| 211 | AddOrigin("/" + name, *node); |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 212 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 213 | } |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 217 | GlobalRoutingHelper::CalculateRoutes(bool invalidatedRoutes /* = true*/) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 218 | { |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 219 | /** |
| 220 | * Implementation of route calculation is heavily based on Boost Graph Library |
| 221 | * See http://www.boost.org/doc/libs/1_49_0/libs/graph/doc/table_of_contents.html for more details |
| 222 | */ |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 223 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 224 | BOOST_CONCEPT_ASSERT((boost::VertexListGraphConcept<boost::NdnGlobalRouterGraph>)); |
| 225 | BOOST_CONCEPT_ASSERT((boost::IncidenceGraphConcept<boost::NdnGlobalRouterGraph>)); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 226 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 227 | boost::NdnGlobalRouterGraph graph; |
Zongyi Zhao | c837263 | 2014-04-28 15:36:49 -0700 | [diff] [blame] | 228 | // typedef graph_traits < NdnGlobalRouterGraph >::vertex_descriptor vertex_descriptor; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 229 | |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 230 | // For now we doing Dijkstra for every node. Can be replaced with Bellman-Ford or Floyd-Warshall. |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 231 | // Other algorithms should be faster, but they need additional EdgeListGraph concept provided by |
| 232 | // the graph, which |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 233 | // is not obviously how implement in an efficient manner |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 234 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 235 | Ptr<GlobalRouter> source = (*node)->GetObject<GlobalRouter>(); |
| 236 | if (source == 0) { |
| 237 | NS_LOG_DEBUG("Node " << (*node)->GetId() << " does not export GlobalRouter interface"); |
| 238 | continue; |
| 239 | } |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 240 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 241 | boost::DistancesMap distances; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 242 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 243 | dijkstra_shortest_paths(graph, source, |
| 244 | // predecessor_map (boost::ref(predecessors)) |
| 245 | // . |
| 246 | distance_map(boost::ref(distances)) |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 247 | .distance_inf(boost::WeightInf) |
| 248 | .distance_zero(boost::WeightZero) |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 249 | .distance_compare(boost::WeightCompare()) |
| 250 | .distance_combine(boost::WeightCombine())); |
| 251 | |
| 252 | // NS_LOG_DEBUG (predecessors.size () << ", " << distances.size ()); |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 253 | |
| 254 | Ptr<L3Protocol> L3protocol = (*node)->GetObject<L3Protocol>(); |
| 255 | shared_ptr<nfd::Forwarder> forwarder = L3protocol->getForwarder(); |
| 256 | |
| 257 | if (invalidatedRoutes) { |
| 258 | std::vector<::nfd::fib::NextHop> NextHopList; |
| 259 | for (nfd::Fib::const_iterator fibIt = forwarder->getFib().begin(); |
| 260 | fibIt != forwarder->getFib().end();) { |
| 261 | NextHopList.clear(); |
| 262 | NextHopList = fibIt->getNextHops(); |
| 263 | ++fibIt; |
| 264 | for (int i = 0; i < NextHopList.size(); i++) { |
| 265 | NextHopList[i].setCost(std::numeric_limits<uint64_t>::max()); |
| 266 | } |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 267 | } |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 268 | } |
| 269 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 270 | NS_LOG_DEBUG("Reachability from Node: " << source->GetObject<Node>()->GetId()); |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 271 | for (const auto& dist : distances) { |
| 272 | if (dist.first == source) |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 273 | continue; |
| 274 | else { |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 275 | // cout << " Node " << dist.first->GetObject<Node> ()->GetId (); |
| 276 | if (std::get<0>(dist.second) == 0) { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 277 | // cout << " is unreachable" << endl; |
| 278 | } |
| 279 | else { |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 280 | for (const auto& prefix : dist.first->GetLocalPrefixes()) { |
| 281 | NS_LOG_DEBUG(" prefix " << prefix << " reachable via face " << *std::get<0>(dist.second) |
| 282 | << " with distance " << std::get<1>(dist.second) << " with delay " |
| 283 | << std::get<2>(dist.second)); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 284 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 285 | FibHelper::AddRoute(*node, *prefix, std::get<0>(dist.second), |
| 286 | std::get<1>(dist.second)); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 287 | } |
| 288 | } |
| 289 | } |
| 290 | } |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | void |
| 295 | GlobalRoutingHelper::CalculateAllPossibleRoutes(bool invalidatedRoutes /* = true*/) |
| 296 | { |
| 297 | /** |
| 298 | * Implementation of route calculation is heavily based on Boost Graph Library |
| 299 | * See http://www.boost.org/doc/libs/1_49_0/libs/graph/doc/table_of_contents.html for more details |
| 300 | */ |
| 301 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 302 | BOOST_CONCEPT_ASSERT((boost::VertexListGraphConcept<boost::NdnGlobalRouterGraph>)); |
| 303 | BOOST_CONCEPT_ASSERT((boost::IncidenceGraphConcept<boost::NdnGlobalRouterGraph>)); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 304 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 305 | boost::NdnGlobalRouterGraph graph; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 306 | // typedef graph_traits < NdnGlobalRouterGraph >::vertex_descriptor vertex_descriptor; |
| 307 | |
| 308 | // For now we doing Dijkstra for every node. Can be replaced with Bellman-Ford or Floyd-Warshall. |
| 309 | // Other algorithms should be faster, but they need additional EdgeListGraph concept provided by |
| 310 | // the graph, which |
| 311 | // is not obviously how implement in an efficient manner |
| 312 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 313 | Ptr<GlobalRouter> source = (*node)->GetObject<GlobalRouter>(); |
| 314 | if (source == 0) { |
| 315 | NS_LOG_DEBUG("Node " << (*node)->GetId() << " does not export GlobalRouter interface"); |
| 316 | continue; |
| 317 | } |
| 318 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 319 | Ptr<L3Protocol> L3protocol = (*node)->GetObject<L3Protocol>(); |
| 320 | shared_ptr<nfd::Forwarder> forwarder = L3protocol->getForwarder(); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 321 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 322 | if (invalidatedRoutes) { |
| 323 | std::vector<::nfd::fib::NextHop> NextHopList; |
| 324 | for (nfd::Fib::const_iterator fibIt = forwarder->getFib().begin(); |
| 325 | fibIt != forwarder->getFib().end();) { |
| 326 | NextHopList.clear(); |
| 327 | NextHopList = fibIt->getNextHops(); |
| 328 | ++fibIt; |
| 329 | for (int i = 0; i < NextHopList.size(); i++) { |
| 330 | NextHopList[i].setCost(std::numeric_limits<uint64_t>::max()); |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 335 | NS_LOG_DEBUG("Reachability from Node: " << source->GetObject<Node>()->GetId() << " (" |
| 336 | << Names::FindName(source->GetObject<Node>()) << ")"); |
| 337 | |
| 338 | Ptr<L3Protocol> l3 = source->GetObject<L3Protocol>(); |
| 339 | NS_ASSERT(l3 != 0); |
| 340 | |
| 341 | // remember interface statuses |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 342 | int faceNumber = 0; |
| 343 | std::vector<uint16_t> originalMetric(uint32_t(l3->getForwarder()->getFaceTable().size())); |
| 344 | for (auto& i : l3->getForwarder()->getFaceTable()) { |
| 345 | faceNumber++; |
| 346 | shared_ptr<Face> nfdFace = std::dynamic_pointer_cast<Face>(i); |
| 347 | originalMetric[uint32_t(faceNumber)] = nfdFace->getMetric(); |
| 348 | nfdFace->setMetric(std::numeric_limits<uint16_t>::max() - 1); |
| 349 | // value std::numeric_limits<uint16_t>::max () MUST NOT be used (reserved) |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 350 | } |
| 351 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 352 | faceNumber = 0; |
| 353 | for (auto& k : l3->getForwarder()->getFaceTable()) { |
| 354 | faceNumber++; |
| 355 | shared_ptr<NetDeviceFace> face = std::dynamic_pointer_cast<NetDeviceFace>(k); |
| 356 | if (face == 0) { |
| 357 | NS_LOG_DEBUG("Skipping non-netdevice face"); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 358 | continue; |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 359 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 360 | |
| 361 | // enabling only faceId |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 362 | face->setMetric(originalMetric[uint32_t(faceNumber)]); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 363 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 364 | boost::DistancesMap distances; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 365 | |
| 366 | NS_LOG_DEBUG("-----------"); |
| 367 | |
| 368 | dijkstra_shortest_paths(graph, source, |
| 369 | // predecessor_map (boost::ref(predecessors)) |
| 370 | // . |
| 371 | distance_map(boost::ref(distances)) |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 372 | .distance_inf(boost::WeightInf) |
| 373 | .distance_zero(boost::WeightZero) |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 374 | .distance_compare(boost::WeightCompare()) |
| 375 | .distance_combine(boost::WeightCombine())); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 376 | |
Alexander Afanasyev | a5abcd9 | 2012-04-17 13:34:43 -0700 | [diff] [blame] | 377 | // NS_LOG_DEBUG (predecessors.size () << ", " << distances.size ()); |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 378 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 379 | for (const auto& dist : distances) { |
| 380 | if (dist.first == source) |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 381 | continue; |
| 382 | else { |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 383 | // cout << " Node " << dist.first->GetObject<Node> ()->GetId (); |
| 384 | if (std::get<0>(dist.second) == 0) { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 385 | // cout << " is unreachable" << endl; |
| 386 | } |
| 387 | else { |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 388 | for (const auto& prefix : dist.first->GetLocalPrefixes()) { |
| 389 | NS_LOG_DEBUG(" prefix " << *prefix << " reachable via face " |
| 390 | << *std::get<0>(dist.second) |
| 391 | << " with distance " << std::get<1>(dist.second) |
| 392 | << " with delay " << std::get<2>(dist.second)); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 393 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 394 | if (std::get<0>(dist.second)->getMetric() == std::numeric_limits<uint16_t>::max() - 1) |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 395 | continue; |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 396 | |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 397 | FibHelper::AddRoute(*node, *prefix, std::get<0>(dist.second), |
| 398 | std::get<1>(dist.second)); |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 399 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 400 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 401 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 402 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 403 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 404 | // disabling the face again |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 405 | face->setMetric(std::numeric_limits<uint16_t>::max() - 1); |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 406 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 407 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 408 | // recover original interface statuses |
Spyridon Mastorakis | 60f4b99 | 2014-11-07 15:51:38 -0800 | [diff] [blame] | 409 | faceNumber = 0; |
| 410 | for (auto& i : l3->getForwarder()->getFaceTable()) { |
| 411 | faceNumber++; |
| 412 | shared_ptr<Face> face = std::dynamic_pointer_cast<Face>(i); |
| 413 | face->setMetric(originalMetric[faceNumber]); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 414 | } |
| 415 | } |
| 416 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 417 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 418 | } // namespace ndn |
| 419 | } // namespace ns3 |