author | Brian Swenson <bswenson3@gatech.edu> |
Tue, 22 Apr 2014 11:52:55 -0400 | |
changeset 10694 | 4af272d94cfd |
parent 10476 | 8abf67214c5d |
child 10968 | 2d29fee2b7b8 |
permissions | -rw-r--r-- |
1111 | 1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
2 |
/* |
|
1457
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
3 |
* Copyright 2007 University of Washington |
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
4 |
* Copyright (C) 1999, 2000 Kunihiro Ishiguro, Toshiaki Takada |
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
5 |
* |
1111 | 6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License version 2 as |
|
8 |
* published by the Free Software Foundation; |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
1457
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
18 |
* |
1505 | 19 |
* Authors: Tom Henderson (tomhend@u.washington.edu) |
1457
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
20 |
* |
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
21 |
* Kunihiro Ishigura, Toshiaki Takada (GNU Zebra) are attributed authors |
562a7017ed93
Copyrights/licenses for routing code
Tom Henderson <tomh@tomh.org>
parents:
1421
diff
changeset
|
22 |
* of the quagga 0.99.7/src/ospfd/ospf_spf.c code which was ported here |
1111 | 23 |
*/ |
24 |
||
25 |
#include <utility> |
|
26 |
#include <vector> |
|
27 |
#include <queue> |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
28 |
#include <algorithm> |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
29 |
#include <iostream> |
1111 | 30 |
#include "ns3/assert.h" |
31 |
#include "ns3/fatal-error.h" |
|
1505 | 32 |
#include "ns3/log.h" |
1111 | 33 |
#include "ns3/node-list.h" |
34 |
#include "ns3/ipv4.h" |
|
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
35 |
#include "ns3/ipv4-routing-protocol.h" |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
36 |
#include "ns3/ipv4-list-routing.h" |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
37 |
#include "ns3/mpi-interface.h" |
1111 | 38 |
#include "global-router-interface.h" |
39 |
#include "global-route-manager-impl.h" |
|
40 |
#include "candidate-queue.h" |
|
4527
7a1359808b0e
move global routing code into global routing directory
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4476
diff
changeset
|
41 |
#include "ipv4-global-routing.h" |
1111 | 42 |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
43 |
NS_LOG_COMPONENT_DEFINE ("GlobalRouteManagerImpl"); |
1111 | 44 |
|
45 |
namespace ns3 { |
|
46 |
||
10440
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
47 |
/** |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
48 |
* \brief Stream insertion operator. |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
49 |
* |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
50 |
* \param os the reference to the output stream |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
51 |
* \param exit the exit node |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
52 |
* \returns the reference to the output stream |
1e48ff9185f1
Bug 938 - missing Doxygen in ns-3 (internet model + helper)
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
9802
diff
changeset
|
53 |
*/ |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
54 |
std::ostream& |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
55 |
operator<< (std::ostream& os, const SPFVertex::NodeExit_t& exit) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
56 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
57 |
os << "(" << exit.first << " ," << exit.second << ")"; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
58 |
return os; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
59 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
60 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
61 |
std::ostream& |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
62 |
operator<< (std::ostream& os, const SPFVertex::ListOfSPFVertex_t& vs) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
63 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
64 |
typedef SPFVertex::ListOfSPFVertex_t::const_iterator CIter_t; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
65 |
os << "{"; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
66 |
for (CIter_t iter = vs.begin (); iter != vs.end ();) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
67 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
68 |
os << (*iter)->m_vertexId; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
69 |
if (++iter != vs.end ()) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
70 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
71 |
os << ", "; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
72 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
73 |
else |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
74 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
75 |
break; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
76 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
77 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
78 |
os << "}"; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
79 |
return os; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
80 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
81 |
|
1111 | 82 |
// --------------------------------------------------------------------------- |
83 |
// |
|
84 |
// SPFVertex Implementation |
|
85 |
// |
|
86 |
// --------------------------------------------------------------------------- |
|
87 |
||
88 |
SPFVertex::SPFVertex () : |
|
89 |
m_vertexType (VertexUnknown), |
|
90 |
m_vertexId ("255.255.255.255"), |
|
91 |
m_lsa (0), |
|
92 |
m_distanceFromRoot (SPF_INFINITY), |
|
93 |
m_rootOif (SPF_INFINITY), |
|
94 |
m_nextHop ("0.0.0.0"), |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
95 |
m_parents (), |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
96 |
m_children (), |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
97 |
m_vertexProcessed (false) |
1111 | 98 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
99 |
NS_LOG_FUNCTION (this); |
1111 | 100 |
} |
101 |
||
1278 | 102 |
SPFVertex::SPFVertex (GlobalRoutingLSA* lsa) : |
1111 | 103 |
m_vertexId (lsa->GetLinkStateId ()), |
104 |
m_lsa (lsa), |
|
105 |
m_distanceFromRoot (SPF_INFINITY), |
|
106 |
m_rootOif (SPF_INFINITY), |
|
107 |
m_nextHop ("0.0.0.0"), |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
108 |
m_parents (), |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
109 |
m_children (), |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
110 |
m_vertexProcessed (false) |
1111 | 111 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
112 |
NS_LOG_FUNCTION (this << lsa); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
113 |
|
1278 | 114 |
if (lsa->GetLSType () == GlobalRoutingLSA::RouterLSA) |
115 |
{ |
|
1505 | 116 |
NS_LOG_LOGIC ("Setting m_vertexType to VertexRouter"); |
1278 | 117 |
m_vertexType = SPFVertex::VertexRouter; |
118 |
} |
|
119 |
else if (lsa->GetLSType () == GlobalRoutingLSA::NetworkLSA) |
|
120 |
{ |
|
1505 | 121 |
NS_LOG_LOGIC ("Setting m_vertexType to VertexNetwork"); |
1278 | 122 |
m_vertexType = SPFVertex::VertexNetwork; |
123 |
} |
|
1111 | 124 |
} |
125 |
||
126 |
SPFVertex::~SPFVertex () |
|
127 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
128 |
NS_LOG_FUNCTION (this); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
129 |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
130 |
NS_LOG_LOGIC ("Children vertices - " << m_children); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
131 |
NS_LOG_LOGIC ("Parent verteices - " << m_parents); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
132 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
133 |
// find this node from all its parents and remove the entry of this node |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
134 |
// from all its parents |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
135 |
for (ListOfSPFVertex_t::iterator piter = m_parents.begin (); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
136 |
piter != m_parents.end (); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
137 |
piter++) |
1111 | 138 |
{ |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
139 |
// remove the current vertex from its parent's children list. Check |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
140 |
// if the size of the list is reduced, or the child<->parent relation |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
141 |
// is not bidirectional |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
142 |
uint32_t orgCount = (*piter)->m_children.size (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
143 |
(*piter)->m_children.remove (this); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
144 |
uint32_t newCount = (*piter)->m_children.size (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
145 |
if (orgCount > newCount) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
146 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
147 |
NS_ASSERT_MSG (orgCount > newCount, "Unable to find the current vertex from its parents --- impossible!"); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
148 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
149 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
150 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
151 |
// delete children |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
152 |
while (m_children.size () > 0) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
153 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
154 |
// pop out children one by one. Some children may disapper |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
155 |
// when deleting some other children in the list. As a result, |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
156 |
// it is necessary to use pop to walk through all children, instead |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
157 |
// of using iterator. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
158 |
// |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
159 |
// Note that m_children.pop_front () is not necessary as this |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
160 |
// p is removed from the children list when p is deleted |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
161 |
SPFVertex* p = m_children.front (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
162 |
// 'p' == 0, this child is already deleted by its other parent |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
163 |
if (p == 0) continue; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
164 |
NS_LOG_LOGIC ("Parent vertex-" << m_vertexId << " deleting its child vertex-" << p->GetVertexId ()); |
1111 | 165 |
delete p; |
166 |
p = 0; |
|
167 |
} |
|
168 |
m_children.clear (); |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
169 |
// delete parents |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
170 |
m_parents.clear (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
171 |
// delete root exit direction |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
172 |
m_ecmpRootExits.clear (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
173 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
174 |
NS_LOG_LOGIC ("Vertex-" << m_vertexId << " completed deleted"); |
1111 | 175 |
} |
176 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
177 |
void |
1111 | 178 |
SPFVertex::SetVertexType (SPFVertex::VertexType type) |
179 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
180 |
NS_LOG_FUNCTION (this << type); |
1111 | 181 |
m_vertexType = type; |
182 |
} |
|
183 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
184 |
SPFVertex::VertexType |
1111 | 185 |
SPFVertex::GetVertexType (void) const |
186 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
187 |
NS_LOG_FUNCTION (this); |
1111 | 188 |
return m_vertexType; |
189 |
} |
|
190 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
191 |
void |
1111 | 192 |
SPFVertex::SetVertexId (Ipv4Address id) |
193 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
194 |
NS_LOG_FUNCTION (this << id); |
1111 | 195 |
m_vertexId = id; |
196 |
} |
|
197 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
198 |
Ipv4Address |
1111 | 199 |
SPFVertex::GetVertexId (void) const |
200 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
201 |
NS_LOG_FUNCTION (this); |
1111 | 202 |
return m_vertexId; |
203 |
} |
|
204 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
205 |
void |
1278 | 206 |
SPFVertex::SetLSA (GlobalRoutingLSA* lsa) |
1111 | 207 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
208 |
NS_LOG_FUNCTION (this << lsa); |
1111 | 209 |
m_lsa = lsa; |
210 |
} |
|
211 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
212 |
GlobalRoutingLSA* |
1111 | 213 |
SPFVertex::GetLSA (void) const |
214 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
215 |
NS_LOG_FUNCTION (this); |
1111 | 216 |
return m_lsa; |
217 |
} |
|
218 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
219 |
void |
1111 | 220 |
SPFVertex::SetDistanceFromRoot (uint32_t distance) |
221 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
222 |
NS_LOG_FUNCTION (this << distance); |
1111 | 223 |
m_distanceFromRoot = distance; |
224 |
} |
|
225 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
226 |
uint32_t |
1111 | 227 |
SPFVertex::GetDistanceFromRoot (void) const |
228 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
229 |
NS_LOG_FUNCTION (this); |
1111 | 230 |
return m_distanceFromRoot; |
231 |
} |
|
232 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
233 |
void |
1111 | 234 |
SPFVertex::SetParent (SPFVertex* parent) |
235 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
236 |
NS_LOG_FUNCTION (this << parent); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
237 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
238 |
// always maintain only one parent when using setter/getter methods |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
239 |
m_parents.clear (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
240 |
m_parents.push_back (parent); |
1111 | 241 |
} |
242 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
243 |
SPFVertex* |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
244 |
SPFVertex::GetParent (uint32_t i) const |
1111 | 245 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
246 |
NS_LOG_FUNCTION (this << i); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
247 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
248 |
// If the index i is out-of-range, return 0 and do nothing |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
249 |
if (m_parents.size () <= i) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
250 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
251 |
NS_LOG_LOGIC ("Index to SPFVertex's parent is out-of-range."); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
252 |
return 0; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
253 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
254 |
ListOfSPFVertex_t::const_iterator iter = m_parents.begin (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
255 |
while (i-- > 0) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
256 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
257 |
iter++; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
258 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
259 |
return *iter; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
260 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
261 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
262 |
void |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
263 |
SPFVertex::MergeParent (const SPFVertex* v) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
264 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
265 |
NS_LOG_FUNCTION (this << v); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
266 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
267 |
NS_LOG_LOGIC ("Before merge, list of parents = " << m_parents); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
268 |
// combine the two lists first, and then remove any duplicated after |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
269 |
m_parents.insert (m_parents.end (), |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
270 |
v->m_parents.begin (), v->m_parents.end ()); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
271 |
// remove duplication |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
272 |
m_parents.sort (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
273 |
m_parents.unique (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
274 |
NS_LOG_LOGIC ("After merge, list of parents = " << m_parents); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
275 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
276 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
277 |
void |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
278 |
SPFVertex::SetRootExitDirection (Ipv4Address nextHop, int32_t id) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
279 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
280 |
NS_LOG_FUNCTION (this << nextHop << id); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
281 |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
282 |
// always maintain only one root's exit |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
283 |
m_ecmpRootExits.clear (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
284 |
m_ecmpRootExits.push_back (NodeExit_t (nextHop, id)); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
285 |
// update the following in order to be backward compatitable with |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
286 |
// GetNextHop and GetOutgoingInterface methods |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
287 |
m_nextHop = nextHop; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
288 |
m_rootOif = id; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
289 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
290 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
291 |
void |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
292 |
SPFVertex::SetRootExitDirection (SPFVertex::NodeExit_t exit) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
293 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
294 |
NS_LOG_FUNCTION (this << exit); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
295 |
SetRootExitDirection (exit.first, exit.second); |
1111 | 296 |
} |
297 |
||
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
298 |
SPFVertex::NodeExit_t |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
299 |
SPFVertex::GetRootExitDirection (uint32_t i) const |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
300 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
301 |
NS_LOG_FUNCTION (this << i); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
302 |
typedef ListOfNodeExit_t::const_iterator CIter_t; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
303 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
304 |
NS_ASSERT_MSG (i < m_ecmpRootExits.size (), "Index out-of-range when accessing SPFVertex::m_ecmpRootExits!"); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
305 |
CIter_t iter = m_ecmpRootExits.begin (); |
7252
c8200621e252
rerun check-style.py with uncrustify-0.58
Tom Henderson <tomh@tomh.org>
parents:
7176
diff
changeset
|
306 |
while (i-- > 0) { iter++; } |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
307 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
308 |
return *iter; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
309 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
310 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
311 |
SPFVertex::NodeExit_t |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
312 |
SPFVertex::GetRootExitDirection () const |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
313 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
314 |
NS_LOG_FUNCTION (this); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
315 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
316 |
NS_ASSERT_MSG (m_ecmpRootExits.size () <= 1, "Assumed there is at most one exit from the root to this vertex"); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
317 |
return GetRootExitDirection (0); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
318 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
319 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
320 |
void |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
321 |
SPFVertex::MergeRootExitDirections (const SPFVertex* vertex) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
322 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
323 |
NS_LOG_FUNCTION (this << vertex); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
324 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
325 |
// obtain the external list of exit directions |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
326 |
// |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
327 |
// Append the external list into 'this' and remove duplication afterward |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
328 |
const ListOfNodeExit_t& extList = vertex->m_ecmpRootExits; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
329 |
m_ecmpRootExits.insert (m_ecmpRootExits.end (), |
7256
b04ba6772f8c
rerun check-style.py at default level to enforce space after function name
Tom Henderson <tomh@tomh.org>
parents:
7252
diff
changeset
|
330 |
extList.begin (), extList.end ()); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
331 |
m_ecmpRootExits.sort (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
332 |
m_ecmpRootExits.unique (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
333 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
334 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
335 |
void |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
336 |
SPFVertex::InheritAllRootExitDirections (const SPFVertex* vertex) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
337 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
338 |
NS_LOG_FUNCTION (this << vertex); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
339 |
|
6273
8d70de29d514
spell check, mostly in comments.
Andrey Mazo <mazo@iitp.ru>
parents:
6113
diff
changeset
|
340 |
// discard all exit direction currently associated with this vertex, |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
341 |
// and copy all the exit directions from the given vertex |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
342 |
if (m_ecmpRootExits.size () > 0) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
343 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
344 |
NS_LOG_WARN ("x root exit directions in this vertex are going to be discarded"); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
345 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
346 |
m_ecmpRootExits.clear (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
347 |
m_ecmpRootExits.insert (m_ecmpRootExits.end (), |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
348 |
vertex->m_ecmpRootExits.begin (), vertex->m_ecmpRootExits.end ()); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
349 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
350 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
351 |
uint32_t |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
352 |
SPFVertex::GetNRootExitDirections () const |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
353 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
354 |
NS_LOG_FUNCTION (this); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
355 |
return m_ecmpRootExits.size (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
356 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
357 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
358 |
uint32_t |
1111 | 359 |
SPFVertex::GetNChildren (void) const |
360 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
361 |
NS_LOG_FUNCTION (this); |
1111 | 362 |
return m_children.size (); |
363 |
} |
|
364 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
365 |
SPFVertex* |
1111 | 366 |
SPFVertex::GetChild (uint32_t n) const |
367 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
368 |
NS_LOG_FUNCTION (this << n); |
1111 | 369 |
uint32_t j = 0; |
370 |
||
371 |
for ( ListOfSPFVertex_t::const_iterator i = m_children.begin (); |
|
372 |
i != m_children.end (); |
|
373 |
i++, j++) |
|
374 |
{ |
|
375 |
if (j == n) |
|
376 |
{ |
|
377 |
return *i; |
|
378 |
} |
|
379 |
} |
|
3947
756887a9bbea
disallow routing on bridge devices with IP address, fix wifi-wired-bridging
Craig Dowell <craigdo@ee.washington.edu>
parents:
3946
diff
changeset
|
380 |
NS_ASSERT_MSG (false, "Index <n> out of range."); |
1111 | 381 |
return 0; |
382 |
} |
|
383 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
384 |
uint32_t |
1111 | 385 |
SPFVertex::AddChild (SPFVertex* child) |
386 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
387 |
NS_LOG_FUNCTION (this << child); |
1111 | 388 |
m_children.push_back (child); |
389 |
return m_children.size (); |
|
390 |
} |
|
391 |
||
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
392 |
void |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
393 |
SPFVertex::SetVertexProcessed (bool value) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
394 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
395 |
NS_LOG_FUNCTION (this << value); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
396 |
m_vertexProcessed = value; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
397 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
398 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
399 |
bool |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
400 |
SPFVertex::IsVertexProcessed (void) const |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
401 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
402 |
NS_LOG_FUNCTION (this); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
403 |
return m_vertexProcessed; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
404 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
405 |
|
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
406 |
void |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
407 |
SPFVertex::ClearVertexProcessed (void) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
408 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
409 |
NS_LOG_FUNCTION (this); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
410 |
for (uint32_t i = 0; i < this->GetNChildren (); i++) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
411 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
412 |
this->GetChild (i)->ClearVertexProcessed (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
413 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
414 |
this->SetVertexProcessed (false); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
415 |
} |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
416 |
|
1111 | 417 |
// --------------------------------------------------------------------------- |
418 |
// |
|
419 |
// GlobalRouteManagerLSDB Implementation |
|
420 |
// |
|
421 |
// --------------------------------------------------------------------------- |
|
422 |
||
423 |
GlobalRouteManagerLSDB::GlobalRouteManagerLSDB () |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
424 |
: |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
425 |
m_database (), |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
426 |
m_extdatabase () |
1111 | 427 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
428 |
NS_LOG_FUNCTION (this); |
1111 | 429 |
} |
430 |
||
431 |
GlobalRouteManagerLSDB::~GlobalRouteManagerLSDB () |
|
432 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
433 |
NS_LOG_FUNCTION (this); |
1111 | 434 |
LSDBMap_t::iterator i; |
435 |
for (i= m_database.begin (); i!= m_database.end (); i++) |
|
436 |
{ |
|
1505 | 437 |
NS_LOG_LOGIC ("free LSA"); |
1278 | 438 |
GlobalRoutingLSA* temp = i->second; |
1111 | 439 |
delete temp; |
440 |
} |
|
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
441 |
for (uint32_t j = 0; j < m_extdatabase.size (); j++) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
442 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
443 |
NS_LOG_LOGIC ("free ASexternalLSA"); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
444 |
GlobalRoutingLSA* temp = m_extdatabase.at (j); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
445 |
delete temp; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
446 |
} |
1505 | 447 |
NS_LOG_LOGIC ("clear map"); |
1111 | 448 |
m_database.clear (); |
449 |
} |
|
450 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
451 |
void |
1111 | 452 |
GlobalRouteManagerLSDB::Initialize () |
453 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
454 |
NS_LOG_FUNCTION (this); |
1111 | 455 |
LSDBMap_t::iterator i; |
456 |
for (i= m_database.begin (); i!= m_database.end (); i++) |
|
457 |
{ |
|
1278 | 458 |
GlobalRoutingLSA* temp = i->second; |
459 |
temp->SetStatus (GlobalRoutingLSA::LSA_SPF_NOT_EXPLORED); |
|
1111 | 460 |
} |
461 |
} |
|
462 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
463 |
void |
1278 | 464 |
GlobalRouteManagerLSDB::Insert (Ipv4Address addr, GlobalRoutingLSA* lsa) |
1111 | 465 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
466 |
NS_LOG_FUNCTION (this << addr << lsa); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
467 |
if (lsa->GetLSType () == GlobalRoutingLSA::ASExternalLSAs) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
468 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
469 |
m_extdatabase.push_back (lsa); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
470 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
471 |
else |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
472 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
473 |
m_database.insert (LSDBPair_t (addr, lsa)); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
474 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
475 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
476 |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
477 |
GlobalRoutingLSA* |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
478 |
GlobalRouteManagerLSDB::GetExtLSA (uint32_t index) const |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
479 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
480 |
NS_LOG_FUNCTION (this << index); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
481 |
return m_extdatabase.at (index); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
482 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
483 |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
484 |
uint32_t |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
485 |
GlobalRouteManagerLSDB::GetNumExtLSAs () const |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
486 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
487 |
NS_LOG_FUNCTION (this); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
488 |
return m_extdatabase.size (); |
1111 | 489 |
} |
490 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
491 |
GlobalRoutingLSA* |
1111 | 492 |
GlobalRouteManagerLSDB::GetLSA (Ipv4Address addr) const |
493 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
494 |
NS_LOG_FUNCTION (this << addr); |
1111 | 495 |
// |
496 |
// Look up an LSA by its address. |
|
497 |
// |
|
498 |
LSDBMap_t::const_iterator i; |
|
499 |
for (i= m_database.begin (); i!= m_database.end (); i++) |
|
500 |
{ |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
501 |
if (i->first == addr) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
502 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
503 |
return i->second; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
504 |
} |
1111 | 505 |
} |
506 |
return 0; |
|
507 |
} |
|
508 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
509 |
GlobalRoutingLSA* |
1278 | 510 |
GlobalRouteManagerLSDB::GetLSAByLinkData (Ipv4Address addr) const |
511 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
512 |
NS_LOG_FUNCTION (this << addr); |
1278 | 513 |
// |
514 |
// Look up an LSA by its address. |
|
515 |
// |
|
516 |
LSDBMap_t::const_iterator i; |
|
517 |
for (i= m_database.begin (); i!= m_database.end (); i++) |
|
518 |
{ |
|
519 |
GlobalRoutingLSA* temp = i->second; |
|
520 |
// Iterate among temp's Link Records |
|
521 |
for (uint32_t j = 0; j < temp->GetNLinkRecords (); j++) |
|
522 |
{ |
|
523 |
GlobalRoutingLinkRecord *lr = temp->GetLinkRecord (j); |
|
524 |
if ( lr->GetLinkType () == GlobalRoutingLinkRecord::TransitNetwork && |
|
525 |
lr->GetLinkData () == addr) |
|
526 |
{ |
|
527 |
return temp; |
|
528 |
} |
|
529 |
} |
|
530 |
} |
|
531 |
return 0; |
|
532 |
} |
|
533 |
||
1111 | 534 |
// --------------------------------------------------------------------------- |
535 |
// |
|
536 |
// GlobalRouteManagerImpl Implementation |
|
537 |
// |
|
538 |
// --------------------------------------------------------------------------- |
|
539 |
||
540 |
GlobalRouteManagerImpl::GlobalRouteManagerImpl () |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
541 |
: |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
542 |
m_spfroot (0) |
1111 | 543 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
544 |
NS_LOG_FUNCTION (this); |
1111 | 545 |
m_lsdb = new GlobalRouteManagerLSDB (); |
546 |
} |
|
547 |
||
548 |
GlobalRouteManagerImpl::~GlobalRouteManagerImpl () |
|
549 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
550 |
NS_LOG_FUNCTION (this); |
1111 | 551 |
if (m_lsdb) |
552 |
{ |
|
553 |
delete m_lsdb; |
|
554 |
} |
|
555 |
} |
|
556 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
557 |
void |
1111 | 558 |
GlobalRouteManagerImpl::DebugUseLsdb (GlobalRouteManagerLSDB* lsdb) |
559 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
560 |
NS_LOG_FUNCTION (this << lsdb); |
1111 | 561 |
if (m_lsdb) |
562 |
{ |
|
563 |
delete m_lsdb; |
|
564 |
} |
|
565 |
m_lsdb = lsdb; |
|
566 |
} |
|
567 |
||
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
568 |
void |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
569 |
GlobalRouteManagerImpl::DeleteGlobalRoutes () |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
570 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
571 |
NS_LOG_FUNCTION (this); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
572 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
573 |
for (NodeList::Iterator i = NodeList::Begin (); i != listEnd; i++) |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
574 |
{ |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
575 |
Ptr<Node> node = *i; |
4616
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
576 |
Ptr<GlobalRouter> router = node->GetObject<GlobalRouter> (); |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
577 |
if (router == 0) |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
578 |
{ |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
579 |
continue; |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
580 |
} |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
581 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
582 |
uint32_t j = 0; |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
583 |
uint32_t nRoutes = gr->GetNRoutes (); |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
584 |
NS_LOG_LOGIC ("Deleting " << gr->GetNRoutes ()<< " routes from node " << node->GetId ()); |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
585 |
// Each time we delete route 0, the route index shifts downward |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
586 |
// We can delete all routes if we delete the route numbered 0 |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
587 |
// nRoutes times |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
588 |
for (j = 0; j < nRoutes; j++) |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
589 |
{ |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
590 |
NS_LOG_LOGIC ("Deleting global route " << j << " from node " << node->GetId ()); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
591 |
gr->RemoveRoute (0); |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
592 |
} |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
593 |
NS_LOG_LOGIC ("Deleted " << j << " global routes from node "<< node->GetId ()); |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
594 |
} |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
595 |
if (m_lsdb) |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
596 |
{ |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
597 |
NS_LOG_LOGIC ("Deleting LSDB, creating new one"); |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
598 |
delete m_lsdb; |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
599 |
m_lsdb = new GlobalRouteManagerLSDB (); |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
600 |
} |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
601 |
} |
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
602 |
|
1111 | 603 |
// |
604 |
// In order to build the routing database, we need to walk the list of nodes |
|
605 |
// in the system and look for those that support the GlobalRouter interface. |
|
606 |
// These routers will export a number of Link State Advertisements (LSAs) |
|
607 |
// that describe the links and networks that are "adjacent" (i.e., that are |
|
608 |
// on the other side of a point-to-point link). We take these LSAs and put |
|
609 |
// add them to the Link State DataBase (LSDB) from which the routes will |
|
610 |
// ultimately be computed. |
|
611 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
612 |
void |
1111 | 613 |
GlobalRouteManagerImpl::BuildGlobalRoutingDatabase () |
614 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
615 |
NS_LOG_FUNCTION (this); |
1111 | 616 |
// |
3939
206f627bd5af
factor DiscoverLSAs into understandable modules
Craig Dowell <craigdo@ee.washington.edu>
parents:
3937
diff
changeset
|
617 |
// Walk the list of nodes looking for the GlobalRouter Interface. Nodes with |
206f627bd5af
factor DiscoverLSAs into understandable modules
Craig Dowell <craigdo@ee.washington.edu>
parents:
3937
diff
changeset
|
618 |
// global router interfaces are, not too surprisingly, our routers. |
1111 | 619 |
// |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
620 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
621 |
for (NodeList::Iterator i = NodeList::Begin (); i != listEnd; i++) |
1111 | 622 |
{ |
623 |
Ptr<Node> node = *i; |
|
624 |
||
3939
206f627bd5af
factor DiscoverLSAs into understandable modules
Craig Dowell <craigdo@ee.washington.edu>
parents:
3937
diff
changeset
|
625 |
Ptr<GlobalRouter> rtr = node->GetObject<GlobalRouter> (); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
626 |
// |
1111 | 627 |
// Ignore nodes that aren't participating in routing. |
628 |
// |
|
629 |
if (!rtr) |
|
630 |
{ |
|
631 |
continue; |
|
632 |
} |
|
633 |
// |
|
634 |
// You must call DiscoverLSAs () before trying to use any routing info or to |
|
635 |
// update LSAs. DiscoverLSAs () drives the process of discovering routes in |
|
636 |
// the GlobalRouter. Afterward, you may use GetNumLSAs (), which is a very |
|
637 |
// computationally inexpensive call. If you call GetNumLSAs () before calling |
|
638 |
// DiscoverLSAs () will get zero as the number since no routes have been |
|
639 |
// found. |
|
640 |
// |
|
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
641 |
Ptr<Ipv4GlobalRouting> grouting = rtr->GetRoutingProtocol (); |
1111 | 642 |
uint32_t numLSAs = rtr->DiscoverLSAs (); |
1505 | 643 |
NS_LOG_LOGIC ("Found " << numLSAs << " LSAs"); |
1111 | 644 |
|
645 |
for (uint32_t j = 0; j < numLSAs; ++j) |
|
646 |
{ |
|
1278 | 647 |
GlobalRoutingLSA* lsa = new GlobalRoutingLSA (); |
1111 | 648 |
// |
649 |
// This is the call to actually fetch a Link State Advertisement from the |
|
650 |
// router. |
|
651 |
// |
|
652 |
rtr->GetLSA (j, *lsa); |
|
1505 | 653 |
NS_LOG_LOGIC (*lsa); |
1111 | 654 |
// |
655 |
// Write the newly discovered link state advertisement to the database. |
|
656 |
// |
|
657 |
m_lsdb->Insert (lsa->GetLinkStateId (), lsa); |
|
658 |
} |
|
659 |
} |
|
660 |
} |
|
661 |
||
662 |
// |
|
663 |
// For each node that is a global router (which is determined by the presence |
|
664 |
// of an aggregated GlobalRouter interface), run the Dijkstra SPF calculation |
|
665 |
// on the database rooted at that router, and populate the node forwarding |
|
666 |
// tables. |
|
667 |
// |
|
668 |
// This function parallels RFC2328, Section 16.1.1, and quagga ospfd |
|
669 |
// |
|
670 |
// This calculation yields the set of intra-area routes associated |
|
671 |
// with an area (called hereafter Area A). A router calculates the |
|
672 |
// shortest-path tree using itself as the root. The formation |
|
673 |
// of the shortest path tree is done here in two stages. In the |
|
674 |
// first stage, only links between routers and transit networks are |
|
675 |
// considered. Using the Dijkstra algorithm, a tree is formed from |
|
676 |
// this subset of the link state database. In the second stage, |
|
677 |
// leaves are added to the tree by considering the links to stub |
|
678 |
// networks. |
|
679 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
680 |
// The area's link state database is represented as a directed graph. |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
681 |
// The graph's vertices are routers, transit networks and stub networks. |
1111 | 682 |
// |
683 |
// The first stage of the procedure (i.e., the Dijkstra algorithm) |
|
684 |
// can now be summarized as follows. At each iteration of the |
|
685 |
// algorithm, there is a list of candidate vertices. Paths from |
|
686 |
// the root to these vertices have been found, but not necessarily |
|
687 |
// the shortest ones. However, the paths to the candidate vertex |
|
688 |
// that is closest to the root are guaranteed to be shortest; this |
|
689 |
// vertex is added to the shortest-path tree, removed from the |
|
690 |
// candidate list, and its adjacent vertices are examined for |
|
691 |
// possible addition to/modification of the candidate list. The |
|
692 |
// algorithm then iterates again. It terminates when the candidate |
|
693 |
// list becomes empty. |
|
694 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
695 |
void |
1111 | 696 |
GlobalRouteManagerImpl::InitializeRoutes () |
697 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
698 |
NS_LOG_FUNCTION (this); |
1111 | 699 |
// |
700 |
// Walk the list of nodes in the system. |
|
701 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
702 |
NS_LOG_INFO ("About to start SPF calculation"); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
703 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
704 |
for (NodeList::Iterator i = NodeList::Begin (); i != listEnd; i++) |
1111 | 705 |
{ |
706 |
Ptr<Node> node = *i; |
|
707 |
// |
|
708 |
// Look for the GlobalRouter interface that indicates that the node is |
|
709 |
// participating in routing. |
|
710 |
// |
|
711 |
Ptr<GlobalRouter> rtr = |
|
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
712 |
node->GetObject<GlobalRouter> (); |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
713 |
|
10476 | 714 |
uint32_t systemId = MpiInterface::GetSystemId (); |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
715 |
// Ignore nodes that are not assigned to our systemId (distributed sim) |
10476 | 716 |
if (node->GetSystemId () != systemId) |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
717 |
{ |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
718 |
continue; |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
5935
diff
changeset
|
719 |
} |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
720 |
|
1111 | 721 |
// |
722 |
// if the node has a global router interface, then run the global routing |
|
723 |
// algorithms. |
|
724 |
// |
|
725 |
if (rtr && rtr->GetNumLSAs () ) |
|
726 |
{ |
|
727 |
SPFCalculate (rtr->GetRouterId ()); |
|
728 |
} |
|
729 |
} |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
730 |
NS_LOG_INFO ("Finished SPF calculation"); |
1111 | 731 |
} |
732 |
||
733 |
// |
|
734 |
// This method is derived from quagga ospf_spf_next (). See RFC2328 Section |
|
735 |
// 16.1 (2) for further details. |
|
736 |
// |
|
737 |
// We're passed a parameter <v> that is a vertex which is already in the SPF |
|
738 |
// tree. A vertex represents a router node. We also get a reference to the |
|
739 |
// SPF candidate queue, which is a priority queue containing the shortest paths |
|
740 |
// to the networks we know about. |
|
741 |
// |
|
742 |
// We examine the links in v's LSA and update the list of candidates with any |
|
743 |
// vertices not already on the list. If a lower-cost path is found to a |
|
744 |
// vertex already on the candidate list, store the new (lower) cost. |
|
745 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
746 |
void |
1111 | 747 |
GlobalRouteManagerImpl::SPFNext (SPFVertex* v, CandidateQueue& candidate) |
748 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
749 |
NS_LOG_FUNCTION (this << v << &candidate); |
1505 | 750 |
|
1111 | 751 |
SPFVertex* w = 0; |
1278 | 752 |
GlobalRoutingLSA* w_lsa = 0; |
753 |
GlobalRoutingLinkRecord *l = 0; |
|
1111 | 754 |
uint32_t distance = 0; |
1278 | 755 |
uint32_t numRecordsInVertex = 0; |
1505 | 756 |
// |
1278 | 757 |
// V points to a Router-LSA or Network-LSA |
758 |
// Loop over the links in router LSA or attached routers in Network LSA |
|
1505 | 759 |
// |
1278 | 760 |
if (v->GetVertexType () == SPFVertex::VertexRouter) |
1111 | 761 |
{ |
1278 | 762 |
numRecordsInVertex = v->GetLSA ()->GetNLinkRecords (); |
763 |
} |
|
764 |
if (v->GetVertexType () == SPFVertex::VertexNetwork) |
|
765 |
{ |
|
766 |
numRecordsInVertex = v->GetLSA ()->GetNAttachedRouters (); |
|
767 |
} |
|
768 |
||
769 |
for (uint32_t i = 0; i < numRecordsInVertex; i++) |
|
770 |
{ |
|
771 |
// Get w_lsa: In case of V is Router-LSA |
|
772 |
if (v->GetVertexType () == SPFVertex::VertexRouter) |
|
1111 | 773 |
{ |
1776
0d5be0c3d229
Add support for non-unit-cost metrics for Ipv4Interfaces (for use in routing); add example script simple-alternate-routing.cc
Tom Henderson <tomh@tomh.org>
parents:
1505
diff
changeset
|
774 |
NS_LOG_LOGIC ("Examining link " << i << " of " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
775 |
v->GetVertexId () << "'s " << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
776 |
v->GetLSA ()->GetNLinkRecords () << " link records"); |
1111 | 777 |
// |
778 |
// (a) If this is a link to a stub network, examine the next link in V's LSA. |
|
779 |
// Links to stub networks will be considered in the second stage of the |
|
780 |
// shortest path calculation. |
|
781 |
// |
|
1278 | 782 |
l = v->GetLSA ()->GetLinkRecord (i); |
9784
740a983ed25b
[Coverity] Unchecked dynamic_cast (FORWARD_NULL)
Peter D. Barnes, Jr. <barnes26@llnl.gov>
parents:
7256
diff
changeset
|
783 |
NS_ASSERT (l != 0); |
1278 | 784 |
if (l->GetLinkType () == GlobalRoutingLinkRecord::StubNetwork) |
785 |
{ |
|
1505 | 786 |
NS_LOG_LOGIC ("Found a Stub record to " << l->GetLinkId ()); |
1278 | 787 |
continue; |
788 |
} |
|
1111 | 789 |
// |
790 |
// (b) Otherwise, W is a transit vertex (router or transit network). Look up |
|
791 |
// the vertex W's LSA (router-LSA or network-LSA) in Area A's link state |
|
792 |
// database. |
|
793 |
// |
|
1278 | 794 |
if (l->GetLinkType () == GlobalRoutingLinkRecord::PointToPoint) |
795 |
{ |
|
1111 | 796 |
// |
797 |
// Lookup the link state advertisement of the new link -- we call it <w> in |
|
798 |
// the link state database. |
|
799 |
// |
|
1278 | 800 |
w_lsa = m_lsdb->GetLSA (l->GetLinkId ()); |
801 |
NS_ASSERT (w_lsa); |
|
1505 | 802 |
NS_LOG_LOGIC ("Found a P2P record from " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
803 |
v->GetVertexId () << " to " << w_lsa->GetLinkStateId ()); |
1278 | 804 |
} |
805 |
else if (l->GetLinkType () == |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
806 |
GlobalRoutingLinkRecord::TransitNetwork) |
1278 | 807 |
{ |
808 |
w_lsa = m_lsdb->GetLSA (l->GetLinkId ()); |
|
809 |
NS_ASSERT (w_lsa); |
|
1505 | 810 |
NS_LOG_LOGIC ("Found a Transit record from " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
811 |
v->GetVertexId () << " to " << w_lsa->GetLinkStateId ()); |
1278 | 812 |
} |
813 |
else |
|
814 |
{ |
|
815 |
NS_ASSERT_MSG (0, "illegal Link Type"); |
|
816 |
} |
|
817 |
} |
|
818 |
// Get w_lsa: In case of V is Network-LSA |
|
819 |
if (v->GetVertexType () == SPFVertex::VertexNetwork) |
|
820 |
{ |
|
821 |
w_lsa = m_lsdb->GetLSAByLinkData |
|
7252
c8200621e252
rerun check-style.py with uncrustify-0.58
Tom Henderson <tomh@tomh.org>
parents:
7176
diff
changeset
|
822 |
(v->GetLSA ()->GetAttachedRouter (i)); |
1278 | 823 |
if (!w_lsa) |
824 |
{ |
|
825 |
continue; |
|
826 |
} |
|
1505 | 827 |
NS_LOG_LOGIC ("Found a Network LSA from " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
828 |
v->GetVertexId () << " to " << w_lsa->GetLinkStateId ()); |
1278 | 829 |
} |
830 |
||
831 |
// Note: w_lsa at this point may be either RouterLSA or NetworkLSA |
|
1111 | 832 |
// |
833 |
// (c) If vertex W is already on the shortest-path tree, examine the next |
|
834 |
// link in the LSA. |
|
835 |
// |
|
836 |
// If the link is to a router that is already in the shortest path first tree |
|
837 |
// then we have it covered -- ignore it. |
|
838 |
// |
|
1278 | 839 |
if (w_lsa->GetStatus () == GlobalRoutingLSA::LSA_SPF_IN_SPFTREE) |
840 |
{ |
|
1505 | 841 |
NS_LOG_LOGIC ("Skipping -> LSA "<< |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
842 |
w_lsa->GetLinkStateId () << " already in SPF tree"); |
1278 | 843 |
continue; |
844 |
} |
|
1111 | 845 |
// |
846 |
// (d) Calculate the link state cost D of the resulting path from the root to |
|
847 |
// vertex W. D is equal to the sum of the link state cost of the (already |
|
848 |
// calculated) shortest path to vertex V and the advertised cost of the link |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
849 |
// between vertices V and W. |
1111 | 850 |
// |
1278 | 851 |
if (v->GetLSA ()->GetLSType () == GlobalRoutingLSA::RouterLSA) |
852 |
{ |
|
9793
bd8de25954e4
[Coverity] Explicit null dereferenced (FORWARD_NULL)
Peter D. Barnes, Jr. <barnes26@llnl.gov>
parents:
9784
diff
changeset
|
853 |
NS_ASSERT (l != 0); |
1278 | 854 |
distance = v->GetDistanceFromRoot () + l->GetMetric (); |
855 |
} |
|
856 |
else |
|
857 |
{ |
|
858 |
distance = v->GetDistanceFromRoot (); |
|
859 |
} |
|
1111 | 860 |
|
1505 | 861 |
NS_LOG_LOGIC ("Considering w_lsa " << w_lsa->GetLinkStateId ()); |
1278 | 862 |
|
863 |
// Is there already vertex w in candidate list? |
|
864 |
if (w_lsa->GetStatus () == GlobalRoutingLSA::LSA_SPF_NOT_EXPLORED) |
|
865 |
{ |
|
866 |
// Calculate nexthop to w |
|
1111 | 867 |
// We need to figure out how to actually get to the new router represented |
868 |
// by <w>. This will (among other things) find the next hop address to send |
|
869 |
// packets destined for this network to, and also find the outbound interface |
|
870 |
// used to forward the packets. |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
871 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
872 |
// prepare vertex w |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
873 |
w = new SPFVertex (w_lsa); |
1278 | 874 |
if (SPFNexthopCalculation (v, w, l, distance)) |
875 |
{ |
|
876 |
w_lsa->SetStatus (GlobalRoutingLSA::LSA_SPF_CANDIDATE); |
|
1111 | 877 |
// |
878 |
// Push this new vertex onto the priority queue (ordered by distance from the |
|
879 |
// root node). |
|
880 |
// |
|
1278 | 881 |
candidate.Push (w); |
1505 | 882 |
NS_LOG_LOGIC ("Pushing " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
883 |
w->GetVertexId () << ", parent vertexId: " << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
884 |
v->GetVertexId () << ", distance: " << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
885 |
w->GetDistanceFromRoot ()); |
1278 | 886 |
} |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
887 |
else |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
888 |
NS_ASSERT_MSG (0, "SPFNexthopCalculation never " |
7252
c8200621e252
rerun check-style.py with uncrustify-0.58
Tom Henderson <tomh@tomh.org>
parents:
7176
diff
changeset
|
889 |
<< "return false, but it does now!"); |
1278 | 890 |
} |
891 |
else if (w_lsa->GetStatus () == GlobalRoutingLSA::LSA_SPF_CANDIDATE) |
|
892 |
{ |
|
1111 | 893 |
// |
894 |
// We have already considered the link represented by <w>. What wse have to |
|
895 |
// do now is to decide if this new router represents a route with a shorter |
|
896 |
// distance metric. |
|
897 |
// |
|
898 |
// So, locate the vertex in the candidate queue and take a look at the |
|
899 |
// distance. |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
900 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
901 |
/* (quagga-0.98.6) W is already on the candidate list; call it cw. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
902 |
* Compare the previously calculated cost (cw->distance) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
903 |
* with the cost we just determined (w->distance) to see |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
904 |
* if we've found a shorter path. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
905 |
*/ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
906 |
SPFVertex* cw; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
907 |
cw = candidate.Find (w_lsa->GetLinkStateId ()); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
908 |
if (cw->GetDistanceFromRoot () < distance) |
1278 | 909 |
{ |
1111 | 910 |
// |
911 |
// This is not a shorter path, so don't do anything. |
|
912 |
// |
|
1278 | 913 |
continue; |
914 |
} |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
915 |
else if (cw->GetDistanceFromRoot () == distance) |
1278 | 916 |
{ |
1111 | 917 |
// |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
918 |
// This path is one with an equal cost. |
1111 | 919 |
// |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
920 |
NS_LOG_LOGIC ("Equal cost multiple paths found."); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
921 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
922 |
// At this point, there are two instances 'w' and 'cw' of the |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
923 |
// same vertex, the vertex that is currently being considered |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
924 |
// for adding into the shortest path tree. 'w' is the instance |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
925 |
// as seen from the root via vertex 'v', and 'cw' is the instance |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
926 |
// as seen from the root via some other vertices other than 'v'. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
927 |
// These two instances are being merged in the following code. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
928 |
// In particular, the parent nodes, the next hops, and the root's |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
929 |
// output interfaces of the two instances are being merged. |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
930 |
// |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
931 |
// Note that this is functionally equivalent to calling |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
932 |
// ospf_nexthop_merge (cw->nexthop, w->nexthop) in quagga-0.98.6 |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
933 |
// (ospf_spf.c::859), although the detail implementation |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
934 |
// is very different from quagga (blame ns3::GlobalRouteManagerImpl) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
935 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
936 |
// prepare vertex w |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
937 |
w = new SPFVertex (w_lsa); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
938 |
SPFNexthopCalculation (v, w, l, distance); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
939 |
cw->MergeRootExitDirections (w); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
940 |
cw->MergeParent (w); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
941 |
// SPFVertexAddParent (w) is necessary as the destructor of |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
942 |
// SPFVertex checks if the vertex and its parent is linked |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
943 |
// bidirectionally |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
944 |
SPFVertexAddParent (w); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
945 |
delete w; |
1278 | 946 |
} |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
947 |
else // cw->GetDistanceFromRoot () > w->GetDistanceFromRoot () |
1278 | 948 |
{ |
1111 | 949 |
// |
950 |
// this path represents a new, lower-cost path to <w> (the vertex we found in |
|
951 |
// the current link record of the link state advertisement of the current root |
|
952 |
// (vertex <v>) |
|
953 |
// |
|
954 |
// N.B. the nexthop_calculation is conditional, if it finds a valid nexthop |
|
955 |
// it will call spf_add_parents, which will flush the old parents |
|
956 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
957 |
if (SPFNexthopCalculation (v, cw, l, distance)) |
1278 | 958 |
{ |
1111 | 959 |
// |
960 |
// If we've changed the cost to get to the vertex represented by <w>, we |
|
961 |
// must reorder the priority queue keyed to that cost. |
|
962 |
// |
|
1278 | 963 |
candidate.Reorder (); |
964 |
} |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
965 |
} // new lower cost path found |
1278 | 966 |
} // end W is already on the candidate list |
967 |
} // end loop over the links in V's LSA |
|
1111 | 968 |
} |
969 |
||
970 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
971 |
// This method is derived from quagga ospf_nexthop_calculation() 16.1.1. |
1111 | 972 |
// |
1278 | 973 |
// Calculate nexthop from root through V (parent) to vertex W (destination) |
974 |
// with given distance from root->W. |
|
975 |
// |
|
976 |
// As appropriate, set w's parent, distance, and nexthop information |
|
1111 | 977 |
// |
978 |
// For now, this is greatly simplified from the quagga code |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
979 |
// |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
980 |
int |
1111 | 981 |
GlobalRouteManagerImpl::SPFNexthopCalculation ( |
982 |
SPFVertex* v, |
|
983 |
SPFVertex* w, |
|
1278 | 984 |
GlobalRoutingLinkRecord* l, |
1111 | 985 |
uint32_t distance) |
986 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
987 |
NS_LOG_FUNCTION (this << v << w << l << distance); |
1505 | 988 |
// |
1278 | 989 |
// If w is a NetworkVertex, l should be null |
990 |
/* |
|
991 |
if (w->GetVertexType () == SPFVertex::VertexNetwork && l) |
|
992 |
{ |
|
3947
756887a9bbea
disallow routing on bridge devices with IP address, fix wifi-wired-bridging
Craig Dowell <craigdo@ee.washington.edu>
parents:
3946
diff
changeset
|
993 |
NS_ASSERT_MSG (0, "Error: SPFNexthopCalculation parameter problem"); |
1278 | 994 |
} |
995 |
*/ |
|
996 |
||
1111 | 997 |
// |
998 |
// The vertex m_spfroot is a distinguished vertex representing the node at |
|
999 |
// the root of the calculations. That is, it is the node for which we are |
|
1000 |
// calculating the routes. |
|
1001 |
// |
|
1002 |
// There are two distinct cases for calculating the next hop information. |
|
1003 |
// First, if we're considering a hop from the root to an "adjacent" network |
|
1004 |
// (one that is on the other side of a point-to-point link connected to the |
|
1005 |
// root), then we need to store the information needed to forward down that |
|
1006 |
// link. The second case is if the network is not directly adjacent. In that |
|
1007 |
// case we need to use the forwarding information from the vertex on the path |
|
1008 |
// to the destination that is directly adjacent [node 1] in both cases of the |
|
1009 |
// diagram below. |
|
1010 |
// |
|
1011 |
// (1) [root] -> [point-to-point] -> [node 1] |
|
1012 |
// (2) [root] -> [point-to-point] -> [node 1] -> [point-to-point] -> [node 2] |
|
1013 |
// |
|
1014 |
// We call the propagation of next hop information down vertices of a path |
|
1015 |
// "inheriting" the next hop information. |
|
1016 |
// |
|
1017 |
// The point-to-point link information is only useful in this calculation when |
|
1018 |
// we are examining the root node. |
|
1019 |
// |
|
1020 |
if (v == m_spfroot) |
|
1021 |
{ |
|
1022 |
// |
|
1023 |
// In this case <v> is the root node, which means it is the starting point |
|
1024 |
// for the packets forwarded by that node. This also means that the next hop |
|
1025 |
// address of packets headed for some arbitrary off-network destination must |
|
1026 |
// be the destination at the other end of one of the links off of the root |
|
1027 |
// node if this root node is a router. We then need to see if this node <w> |
|
1028 |
// is a router. |
|
1029 |
// |
|
1030 |
if (w->GetVertexType () == SPFVertex::VertexRouter) |
|
1031 |
{ |
|
1032 |
// |
|
1033 |
// In the case of point-to-point links, the link data field (m_linkData) of a |
|
1034 |
// Global Router Link Record contains the local IP address. If we look at the |
|
1035 |
// link record describing the link from the perspecive of <w> (the remote |
|
1036 |
// node from the viewpoint of <v>) back to the root node, we can discover the |
|
1037 |
// IP address of the router to which <v> is adjacent. This is a distinguished |
|
1038 |
// address -- the next hop address to get from <v> to <w> and all networks |
|
1039 |
// accessed through that path. |
|
1040 |
// |
|
1041 |
// SPFGetNextLink () is a little odd. used in this way it is just going to |
|
1042 |
// return the link record describing the link from <w> to <v>. Think of it as |
|
1043 |
// SPFGetLink. |
|
1044 |
// |
|
3947
756887a9bbea
disallow routing on bridge devices with IP address, fix wifi-wired-bridging
Craig Dowell <craigdo@ee.washington.edu>
parents:
3946
diff
changeset
|
1045 |
NS_ASSERT (l); |
1278 | 1046 |
GlobalRoutingLinkRecord *linkRemote = 0; |
1111 | 1047 |
linkRemote = SPFGetNextLink (w, v, linkRemote); |
1048 |
// |
|
1049 |
// At this point, <l> is the Global Router Link Record describing the point- |
|
1050 |
// to point link from <v> to <w> from the perspective of <v>; and <linkRemote> |
|
1051 |
// is the Global Router Link Record describing that same link from the |
|
1052 |
// perspective of <w> (back to <v>). Now we can just copy the next hop |
|
1053 |
// address from the m_linkData member variable. |
|
1054 |
// |
|
1055 |
// The next hop member variable we put in <w> has the sense "in order to get |
|
1056 |
// from the root node to the host represented by vertex <w>, you have to send |
|
1057 |
// the packet to the next hop address specified in w->m_nextHop. |
|
1058 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1059 |
Ipv4Address nextHop = linkRemote->GetLinkData (); |
1111 | 1060 |
// |
1061 |
// Now find the outgoing interface corresponding to the point to point link |
|
1062 |
// from the perspective of <v> -- remember that <l> is the link "from" |
|
1063 |
// <v> "to" <w>. |
|
1064 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1065 |
uint32_t outIf = FindOutgoingInterfaceId (l->GetLinkData ()); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1066 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1067 |
w->SetRootExitDirection (nextHop, outIf); |
1776
0d5be0c3d229
Add support for non-unit-cost metrics for Ipv4Interfaces (for use in routing); add example script simple-alternate-routing.cc
Tom Henderson <tomh@tomh.org>
parents:
1505
diff
changeset
|
1068 |
w->SetDistanceFromRoot (distance); |
0d5be0c3d229
Add support for non-unit-cost metrics for Ipv4Interfaces (for use in routing); add example script simple-alternate-routing.cc
Tom Henderson <tomh@tomh.org>
parents:
1505
diff
changeset
|
1069 |
w->SetParent (v); |
1505 | 1070 |
NS_LOG_LOGIC ("Next hop from " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1071 |
v->GetVertexId () << " to " << w->GetVertexId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1072 |
" goes through next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1073 |
" via outgoing interface " << outIf << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1074 |
" with distance " << distance); |
1278 | 1075 |
} // end W is a router vertes |
1076 |
else |
|
1077 |
{ |
|
1078 |
NS_ASSERT (w->GetVertexType () == SPFVertex::VertexNetwork); |
|
1079 |
// W is a directly connected network; no next hop is required |
|
1080 |
GlobalRoutingLSA* w_lsa = w->GetLSA (); |
|
1081 |
NS_ASSERT (w_lsa->GetLSType () == GlobalRoutingLSA::NetworkLSA); |
|
1082 |
// Find outgoing interface ID for this network |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1083 |
uint32_t outIf = FindOutgoingInterfaceId (w_lsa->GetLinkStateId (), |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1084 |
w_lsa->GetNetworkLSANetworkMask () ); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1085 |
// Set the next hop to 0.0.0.0 meaning "not exist" |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1086 |
Ipv4Address nextHop = Ipv4Address::GetZero (); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1087 |
w->SetRootExitDirection (nextHop, outIf); |
1278 | 1088 |
w->SetDistanceFromRoot (distance); |
1089 |
w->SetParent (v); |
|
1505 | 1090 |
NS_LOG_LOGIC ("Next hop from " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1091 |
v->GetVertexId () << " to network " << w->GetVertexId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1092 |
" via outgoing interface " << outIf << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1093 |
" with distance " << distance); |
1278 | 1094 |
return 1; |
1095 |
} |
|
1096 |
} // end v is the root |
|
1097 |
else if (v->GetVertexType () == SPFVertex::VertexNetwork) |
|
1098 |
{ |
|
1099 |
// See if any of v's parents are the root |
|
1100 |
if (v->GetParent () == m_spfroot) |
|
1101 |
{ |
|
1102 |
// 16.1.1 para 5. ...the parent vertex is a network that |
|
1103 |
// directly connects the calculating router to the destination |
|
1104 |
// router. The list of next hops is then determined by |
|
1105 |
// examining the destination's router-LSA... |
|
1106 |
NS_ASSERT (w->GetVertexType () == SPFVertex::VertexRouter); |
|
1107 |
GlobalRoutingLinkRecord *linkRemote = 0; |
|
1108 |
while ((linkRemote = SPFGetNextLink (w, v, linkRemote))) |
|
1109 |
{ |
|
1110 |
/* ...For each link in the router-LSA that points back to the |
|
1111 |
* parent network, the link's Link Data field provides the IP |
|
1112 |
* address of a next hop router. The outgoing interface to |
|
1113 |
* use can then be derived from the next hop IP address (or |
|
1114 |
* it can be inherited from the parent network). |
|
1115 |
*/ |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1116 |
Ipv4Address nextHop = linkRemote->GetLinkData (); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1117 |
uint32_t outIf = v->GetRootExitDirection ().second; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1118 |
w->SetRootExitDirection (nextHop, outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1119 |
NS_LOG_LOGIC ("Next hop from " << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1120 |
v->GetVertexId () << " to " << w->GetVertexId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1121 |
" goes through next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1122 |
" via outgoing interface " << outIf); |
1278 | 1123 |
} |
1124 |
} |
|
1125 |
else |
|
1126 |
{ |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1127 |
w->SetRootExitDirection (v->GetRootExitDirection ()); |
1111 | 1128 |
} |
1129 |
} |
|
1130 |
else |
|
1131 |
{ |
|
1132 |
// |
|
1133 |
// If we're calculating the next hop information from a node (v) that is |
|
1134 |
// *not* the root, then we need to "inherit" the information needed to |
|
1135 |
// forward the packet from the vertex closer to the root. That is, we'll |
|
1136 |
// still send packets to the next hop address of the router adjacent to the |
|
1137 |
// root on the path toward <w>. |
|
1138 |
// |
|
1139 |
// Above, when we were considering the root node, we calculated the next hop |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1140 |
// address and outgoing interface required to get off of the root network. |
1111 | 1141 |
// At this point, we are further away from the root network along one of the |
1142 |
// (shortest) paths. So the next hop and outoing interface remain the same |
|
1143 |
// (are inherited). |
|
1144 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1145 |
w->InheritAllRootExitDirections (v); |
1111 | 1146 |
} |
1147 |
// |
|
1148 |
// In all cases, we need valid values for the distance metric and a parent. |
|
1149 |
// |
|
1150 |
w->SetDistanceFromRoot (distance); |
|
1151 |
w->SetParent (v); |
|
1152 |
||
1153 |
return 1; |
|
1154 |
} |
|
1155 |
||
1156 |
// |
|
1157 |
// This method is derived from quagga ospf_get_next_link () |
|
1158 |
// |
|
1159 |
// First search the Global Router Link Records of vertex <v> for one |
|
1160 |
// representing a point-to point link to vertex <w>. |
|
1161 |
// |
|
1162 |
// What is done depends on prev_link. Contrary to appearances, prev_link just |
|
1163 |
// acts as a flag here. If prev_link is NULL, we return the first Global |
|
1164 |
// Router Link Record we find that describes a point-to-point link from <v> |
|
1165 |
// to <w>. If prev_link is not NULL, we return a Global Router Link Record |
|
1166 |
// representing a possible *second* link from <v> to <w>. |
|
1167 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1168 |
GlobalRoutingLinkRecord* |
1111 | 1169 |
GlobalRouteManagerImpl::SPFGetNextLink ( |
1170 |
SPFVertex* v, |
|
1171 |
SPFVertex* w, |
|
1278 | 1172 |
GlobalRoutingLinkRecord* prev_link) |
1111 | 1173 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1174 |
NS_LOG_FUNCTION (this << v << w << prev_link); |
1111 | 1175 |
|
1176 |
bool skip = true; |
|
1278 | 1177 |
bool found_prev_link = false; |
1178 |
GlobalRoutingLinkRecord* l; |
|
1111 | 1179 |
// |
1180 |
// If prev_link is 0, we are really looking for the first link, not the next |
|
1181 |
// link. |
|
1182 |
// |
|
1183 |
if (prev_link == 0) |
|
1184 |
{ |
|
1185 |
skip = false; |
|
1278 | 1186 |
found_prev_link = true; |
1111 | 1187 |
} |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1188 |
// |
1111 | 1189 |
// Iterate through the Global Router Link Records advertised by the vertex |
1190 |
// <v> looking for records representing the point-to-point links off of this |
|
1191 |
// vertex. |
|
1192 |
// |
|
1193 |
for (uint32_t i = 0; i < v->GetLSA ()->GetNLinkRecords (); ++i) |
|
1194 |
{ |
|
1195 |
l = v->GetLSA ()->GetLinkRecord (i); |
|
1196 |
// |
|
1197 |
// The link ID of a link record representing a point-to-point link is set to |
|
1198 |
// the router ID of the neighboring router -- the router to which the link |
|
1199 |
// connects from the perspective of <v> in this case. The vertex ID is also |
|
1200 |
// set to the router ID (using the link state advertisement of a router node). |
|
1201 |
// We're just checking to see if the link <l> is actually the link from <v> to |
|
1202 |
// <w>. |
|
1203 |
// |
|
1278 | 1204 |
if (l->GetLinkId () == w->GetVertexId ()) |
1205 |
{ |
|
1206 |
if (!found_prev_link) |
|
1207 |
{ |
|
1505 | 1208 |
NS_LOG_LOGIC ("Skipping links before prev_link found"); |
1278 | 1209 |
found_prev_link = true; |
1210 |
continue; |
|
1211 |
} |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1212 |
|
1505 | 1213 |
NS_LOG_LOGIC ("Found matching link l: linkId = " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1214 |
l->GetLinkId () << " linkData = " << l->GetLinkData ()); |
1111 | 1215 |
// |
1216 |
// If skip is false, don't (not too surprisingly) skip the link found -- it's |
|
1217 |
// the one we're interested in. That's either because we didn't pass in a |
|
1218 |
// previous link, and we're interested in the first one, or because we've |
|
1219 |
// skipped a previous link and moved forward to the next (which is then the |
|
1220 |
// one we want). |
|
1221 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1222 |
if (skip == false) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1223 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1224 |
NS_LOG_LOGIC ("Returning the found link"); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1225 |
return l; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1226 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1227 |
else |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1228 |
{ |
1111 | 1229 |
// |
1230 |
// Skip is true and we've found a link from <v> to <w>. We want the next one. |
|
1231 |
// Setting skip to false gets us the next point-to-point global router link |
|
1232 |
// record in the LSA from <v>. |
|
1233 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1234 |
NS_LOG_LOGIC ("Skipping the found link"); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1235 |
skip = false; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1236 |
continue; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1237 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1238 |
} |
1111 | 1239 |
} |
1240 |
return 0; |
|
1241 |
} |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1242 |
|
1111 | 1243 |
// |
1244 |
// Used for unit tests. |
|
1245 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1246 |
void |
1111 | 1247 |
GlobalRouteManagerImpl::DebugSPFCalculate (Ipv4Address root) |
1248 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1249 |
NS_LOG_FUNCTION (this << root); |
1111 | 1250 |
SPFCalculate (root); |
1251 |
} |
|
1252 |
||
4628
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1253 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1254 |
// Used to test if a node is a stub, from an OSPF sense. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1255 |
// If there is only one link of type 1 or 2, then a default route |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1256 |
// can safely be added to the next-hop router and SPF does not need |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1257 |
// to be run |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1258 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1259 |
bool |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1260 |
GlobalRouteManagerImpl::CheckForStubNode (Ipv4Address root) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1261 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1262 |
NS_LOG_FUNCTION (this << root); |
4628
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1263 |
GlobalRoutingLSA *rlsa = m_lsdb->GetLSA (root); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1264 |
Ipv4Address myRouterId = rlsa->GetLinkStateId (); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1265 |
int transits = 0; |
4630 | 1266 |
GlobalRoutingLinkRecord *transitLink = 0; |
4628
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1267 |
for (uint32_t i = 0; i < rlsa->GetNLinkRecords (); i++) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1268 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1269 |
GlobalRoutingLinkRecord *l = rlsa->GetLinkRecord (i); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1270 |
if (l->GetLinkType () == GlobalRoutingLinkRecord::TransitNetwork) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1271 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1272 |
transits++; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1273 |
transitLink = l; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1274 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1275 |
else if (l->GetLinkType () == GlobalRoutingLinkRecord::PointToPoint) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1276 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1277 |
transits++; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1278 |
transitLink = l; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1279 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1280 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1281 |
if (transits == 0) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1282 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1283 |
// This router is not connected to any router. Probably, global |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1284 |
// routing should not be called for this node, but we can just raise |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1285 |
// a warning here and return true. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1286 |
NS_LOG_WARN ("all nodes should have at least one transit link:" << root ); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1287 |
return true; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1288 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1289 |
if (transits == 1) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1290 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1291 |
if (transitLink->GetLinkType () == GlobalRoutingLinkRecord::TransitNetwork) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1292 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1293 |
// Install default route to next hop router |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1294 |
// What is the next hop? We need to check all neighbors on the link. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1295 |
// If there is a single router that has two transit links, then |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1296 |
// that is the default next hop. If there are more than one |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1297 |
// routers on link with multiple transit links, return false. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1298 |
// Not yet implemented, so simply return false |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1299 |
NS_LOG_LOGIC ("TBD: Would have inserted default for transit"); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1300 |
return false; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1301 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1302 |
else if (transitLink->GetLinkType () == GlobalRoutingLinkRecord::PointToPoint) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1303 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1304 |
// Install default route to next hop |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1305 |
// The link record LinkID is the router ID of the peer. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1306 |
// The Link Data is the local IP interface address |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1307 |
GlobalRoutingLSA *w_lsa = m_lsdb->GetLSA (transitLink->GetLinkId ()); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1308 |
uint32_t nLinkRecords = w_lsa->GetNLinkRecords (); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1309 |
for (uint32_t j = 0; j < nLinkRecords; ++j) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1310 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1311 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1312 |
// We are only concerned about point-to-point links |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1313 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1314 |
GlobalRoutingLinkRecord *lr = w_lsa->GetLinkRecord (j); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1315 |
if (lr->GetLinkType () != GlobalRoutingLinkRecord::PointToPoint) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1316 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1317 |
continue; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1318 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1319 |
// Find the link record that corresponds to our routerId |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1320 |
if (lr->GetLinkId () == myRouterId) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1321 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1322 |
// Next hop is stored in the LinkID field of lr |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1323 |
Ptr<GlobalRouter> router = rlsa->GetNode ()->GetObject<GlobalRouter> (); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1324 |
NS_ASSERT (router); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1325 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1326 |
NS_ASSERT (gr); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1327 |
gr->AddNetworkRouteTo (Ipv4Address ("0.0.0.0"), Ipv4Mask ("0.0.0.0"), lr->GetLinkData (), |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1328 |
FindOutgoingInterfaceId (transitLink->GetLinkData ())); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1329 |
NS_LOG_LOGIC ("Inserting default route for node " << myRouterId << " to next hop " << |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1330 |
lr->GetLinkData () << " via interface " << |
7256
b04ba6772f8c
rerun check-style.py at default level to enforce space after function name
Tom Henderson <tomh@tomh.org>
parents:
7252
diff
changeset
|
1331 |
FindOutgoingInterfaceId (transitLink->GetLinkData ())); |
4628
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1332 |
return true; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1333 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1334 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1335 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1336 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1337 |
return false; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1338 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1339 |
|
1111 | 1340 |
// quagga ospf_spf_calculate |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1341 |
void |
1111 | 1342 |
GlobalRouteManagerImpl::SPFCalculate (Ipv4Address root) |
1343 |
{ |
|
2983
e3a416fe9dd5
NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2258
diff
changeset
|
1344 |
NS_LOG_FUNCTION (this << root); |
1111 | 1345 |
|
1346 |
SPFVertex *v; |
|
1347 |
// |
|
1348 |
// Initialize the Link State Database. |
|
1349 |
// |
|
1350 |
m_lsdb->Initialize (); |
|
1351 |
// |
|
1352 |
// The candidate queue is a priority queue of SPFVertex objects, with the top |
|
1353 |
// of the queue being the closest vertex in terms of distance from the root |
|
1354 |
// of the tree. Initially, this queue is empty. |
|
1355 |
// |
|
1356 |
CandidateQueue candidate; |
|
3947
756887a9bbea
disallow routing on bridge devices with IP address, fix wifi-wired-bridging
Craig Dowell <craigdo@ee.washington.edu>
parents:
3946
diff
changeset
|
1357 |
NS_ASSERT (candidate.Size () == 0); |
1111 | 1358 |
// |
1359 |
// Initialize the shortest-path tree to only contain the router doing the |
|
1360 |
// calculation. Each router (and corresponding network) is a vertex in the |
|
1361 |
// shortest path first (SPF) tree. |
|
1362 |
// |
|
1363 |
v = new SPFVertex (m_lsdb->GetLSA (root)); |
|
1364 |
// |
|
1365 |
// This vertex is the root of the SPF tree and it is distance 0 from the root. |
|
1366 |
// We also mark this vertex as being in the SPF tree. |
|
1367 |
// |
|
1368 |
m_spfroot= v; |
|
1369 |
v->SetDistanceFromRoot (0); |
|
1278 | 1370 |
v->GetLSA ()->SetStatus (GlobalRoutingLSA::LSA_SPF_IN_SPFTREE); |
1776
0d5be0c3d229
Add support for non-unit-cost metrics for Ipv4Interfaces (for use in routing); add example script simple-alternate-routing.cc
Tom Henderson <tomh@tomh.org>
parents:
1505
diff
changeset
|
1371 |
NS_LOG_LOGIC ("Starting SPFCalculate for node " << root); |
1111 | 1372 |
|
4628
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1373 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1374 |
// Optimize SPF calculation, for ns-3. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1375 |
// We do not need to calculate SPF for every node in the network if this |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1376 |
// node has only one interface through which another router can be |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1377 |
// reached. Instead, short-circuit this computation and just install |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1378 |
// a default route in the CheckForStubNode() method. |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1379 |
// |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1380 |
if (NodeList::GetNNodes () > 0 && CheckForStubNode (root)) |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1381 |
{ |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1382 |
NS_LOG_LOGIC ("SPFCalculate truncated for stub node " << root); |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1383 |
delete m_spfroot; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1384 |
return; |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1385 |
} |
a5a8c44e4240
bug 521. Ipv4 global routing inefficient. Updated Tom's patch
Craig Dowell <craigdo@ee.washington.edu>
parents:
4616
diff
changeset
|
1386 |
|
1111 | 1387 |
for (;;) |
1388 |
{ |
|
1389 |
// |
|
1390 |
// The operations we need to do are given in the OSPF RFC which we reference |
|
1391 |
// as we go along. |
|
1392 |
// |
|
1393 |
// RFC2328 16.1. (2). |
|
1394 |
// |
|
1395 |
// We examine the Global Router Link Records in the Link State |
|
1396 |
// Advertisements of the current vertex. If there are any point-to-point |
|
1397 |
// links to unexplored adjacent vertices we add them to the tree and update |
|
1398 |
// the distance and next hop information on how to get there. We also add |
|
1399 |
// the new vertices to the candidate queue (the priority queue ordered by |
|
1400 |
// shortest path). If the new vertices represent shorter paths, we use them |
|
1401 |
// and update the path cost. |
|
1402 |
// |
|
1403 |
SPFNext (v, candidate); |
|
1404 |
// |
|
1405 |
// RFC2328 16.1. (3). |
|
1406 |
// |
|
1407 |
// If at this step the candidate list is empty, the shortest-path tree (of |
|
1408 |
// transit vertices) has been completely built and this stage of the |
|
1409 |
// procedure terminates. |
|
1410 |
// |
|
1411 |
if (candidate.Size () == 0) |
|
1412 |
{ |
|
1413 |
break; |
|
1414 |
} |
|
1415 |
// |
|
1416 |
// Choose the vertex belonging to the candidate list that is closest to the |
|
1417 |
// root, and add it to the shortest-path tree (removing it from the candidate |
|
1418 |
// list in the process). |
|
1419 |
// |
|
1420 |
// Recall that in the previous step, we created SPFVertex structures for each |
|
1421 |
// of the routers found in the Global Router Link Records and added tehm to |
|
1422 |
// the candidate list. |
|
1423 |
// |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1424 |
NS_LOG_LOGIC (candidate); |
1111 | 1425 |
v = candidate.Pop (); |
1505 | 1426 |
NS_LOG_LOGIC ("Popped vertex " << v->GetVertexId ()); |
1111 | 1427 |
// |
1428 |
// Update the status field of the vertex to indicate that it is in the SPF |
|
1429 |
// tree. |
|
1430 |
// |
|
1278 | 1431 |
v->GetLSA ()->SetStatus (GlobalRoutingLSA::LSA_SPF_IN_SPFTREE); |
1111 | 1432 |
// |
1433 |
// The current vertex has a parent pointer. By calling this rather oddly |
|
1434 |
// named method (blame quagga) we add the current vertex to the list of |
|
1435 |
// children of that parent vertex. In the next hop calculation called during |
|
1436 |
// SPFNext, the parent pointer was set but the vertex has been orphaned up |
|
1437 |
// to now. |
|
1438 |
// |
|
1439 |
SPFVertexAddParent (v); |
|
1440 |
// |
|
1441 |
// Note that when there is a choice of vertices closest to the root, network |
|
1442 |
// vertices must be chosen before router vertices in order to necessarily |
|
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1443 |
// find all equal-cost paths. |
1111 | 1444 |
// |
1445 |
// RFC2328 16.1. (4). |
|
1446 |
// |
|
1447 |
// This is the method that actually adds the routes. It'll walk the list |
|
1448 |
// of nodes in the system, looking for the node corresponding to the router |
|
1449 |
// ID of the root of the tree -- that is the router we're building the routes |
|
1450 |
// for. It looks for the Ipv4 interface of that node and remembers it. So |
|
1451 |
// we are only actually adding routes to that one node at the root of the SPF |
|
1452 |
// tree. |
|
1453 |
// |
|
1454 |
// We're going to pop of a pointer to every vertex in the tree except the |
|
1455 |
// root in order of distance from the root. For each of the vertices, we call |
|
1456 |
// SPFIntraAddRouter (). Down in SPFIntraAddRouter, we look at all of the |
|
1457 |
// point-to-point Global Router Link Records (the links to nodes adjacent to |
|
1458 |
// the node represented by the vertex). We add a route to the IP address |
|
1459 |
// specified by the m_linkData field of each of those link records. This will |
|
1460 |
// be the *local* IP address associated with the interface attached to the |
|
1461 |
// link. We use the outbound interface and next hop information present in |
|
1462 |
// the vertex <v> which have possibly been inherited from the root. |
|
1463 |
// |
|
1464 |
// To summarize, we're going to look at the node represented by <v> and loop |
|
1465 |
// through its point-to-point links, adding a *host* route to the local IP |
|
1466 |
// address (at the <v> side) for each of those links. |
|
1467 |
// |
|
1278 | 1468 |
if (v->GetVertexType () == SPFVertex::VertexRouter) |
1469 |
{ |
|
1470 |
SPFIntraAddRouter (v); |
|
1471 |
} |
|
1472 |
else if (v->GetVertexType () == SPFVertex::VertexNetwork) |
|
1473 |
{ |
|
1474 |
SPFIntraAddTransit (v); |
|
1475 |
} |
|
1476 |
else |
|
1477 |
{ |
|
3947
756887a9bbea
disallow routing on bridge devices with IP address, fix wifi-wired-bridging
Craig Dowell <craigdo@ee.washington.edu>
parents:
3946
diff
changeset
|
1478 |
NS_ASSERT_MSG (0, "illegal SPFVertex type"); |
1278 | 1479 |
} |
1111 | 1480 |
// |
1481 |
// RFC2328 16.1. (5). |
|
1482 |
// |
|
1483 |
// Iterate the algorithm by returning to Step 2 until there are no more |
|
1484 |
// candidate vertices. |
|
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1485 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1486 |
} // end for loop |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1487 |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1488 |
// Second stage of SPF calculation procedure |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1489 |
SPFProcessStubs (m_spfroot); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1490 |
for (uint32_t i = 0; i < m_lsdb->GetNumExtLSAs (); i++) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1491 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1492 |
m_spfroot->ClearVertexProcessed (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1493 |
GlobalRoutingLSA *extlsa = m_lsdb->GetExtLSA (i); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1494 |
NS_LOG_LOGIC ("Processing External LSA with id " << extlsa->GetLinkStateId ()); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1495 |
ProcessASExternals (m_spfroot, extlsa); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1496 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1497 |
|
1111 | 1498 |
// |
1499 |
// We're all done setting the routing information for the node at the root of |
|
1500 |
// the SPF tree. Delete all of the vertices and corresponding resources. Go |
|
1501 |
// possibly do it again for the next router. |
|
1502 |
// |
|
1503 |
delete m_spfroot; |
|
1504 |
m_spfroot = 0; |
|
1505 |
} |
|
1506 |
||
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1507 |
void |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1508 |
GlobalRouteManagerImpl::ProcessASExternals (SPFVertex* v, GlobalRoutingLSA* extlsa) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1509 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1510 |
NS_LOG_FUNCTION (this << v << extlsa); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1511 |
NS_LOG_LOGIC ("Processing external for destination " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1512 |
extlsa->GetLinkStateId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1513 |
", for router " << v->GetVertexId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1514 |
", advertised by " << extlsa->GetAdvertisingRouter ()); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1515 |
if (v->GetVertexType () == SPFVertex::VertexRouter) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1516 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1517 |
GlobalRoutingLSA *rlsa = v->GetLSA (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1518 |
NS_LOG_LOGIC ("Processing router LSA with id " << rlsa->GetLinkStateId ()); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1519 |
if ((rlsa->GetLinkStateId ()) == (extlsa->GetAdvertisingRouter ())) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1520 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1521 |
NS_LOG_LOGIC ("Found advertising router to destination"); |
7256
b04ba6772f8c
rerun check-style.py at default level to enforce space after function name
Tom Henderson <tomh@tomh.org>
parents:
7252
diff
changeset
|
1522 |
SPFAddASExternal (extlsa,v); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1523 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1524 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1525 |
for (uint32_t i = 0; i < v->GetNChildren (); i++) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1526 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1527 |
if (!v->GetChild (i)->IsVertexProcessed ()) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1528 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1529 |
NS_LOG_LOGIC ("Vertex's child " << i << " not yet processed, processing..."); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1530 |
ProcessASExternals (v->GetChild (i), extlsa); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1531 |
v->GetChild (i)->SetVertexProcessed (true); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1532 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1533 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1534 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1535 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1536 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1537 |
// Adding external routes to routing table - modeled after |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1538 |
// SPFAddIntraAddStub() |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1539 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1540 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1541 |
void |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1542 |
GlobalRouteManagerImpl::SPFAddASExternal (GlobalRoutingLSA *extlsa, SPFVertex *v) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1543 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1544 |
NS_LOG_FUNCTION (this << extlsa << v); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1545 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1546 |
NS_ASSERT_MSG (m_spfroot, "GlobalRouteManagerImpl::SPFAddASExternal (): Root pointer not set"); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1547 |
// Two cases to consider: We are advertising the external ourselves |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1548 |
// => No need to add anything |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1549 |
// OR find best path to the advertising router |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1550 |
if (v->GetVertexId () == m_spfroot->GetVertexId ()) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1551 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1552 |
NS_LOG_LOGIC ("External is on local host: " |
7252
c8200621e252
rerun check-style.py with uncrustify-0.58
Tom Henderson <tomh@tomh.org>
parents:
7176
diff
changeset
|
1553 |
<< v->GetVertexId () << "; returning"); |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1554 |
return; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1555 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1556 |
NS_LOG_LOGIC ("External is on remote host: " |
7252
c8200621e252
rerun check-style.py with uncrustify-0.58
Tom Henderson <tomh@tomh.org>
parents:
7176
diff
changeset
|
1557 |
<< extlsa->GetAdvertisingRouter () << "; installing"); |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1558 |
|
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1559 |
Ipv4Address routerId = m_spfroot->GetVertexId (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1560 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1561 |
NS_LOG_LOGIC ("Vertex ID = " << routerId); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1562 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1563 |
// We need to walk the list of nodes looking for the one that has the router |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1564 |
// ID corresponding to the root vertex. This is the one we're going to write |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1565 |
// the routing information to. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1566 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1567 |
NodeList::Iterator i = NodeList::Begin (); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1568 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1569 |
for (; i != listEnd; i++) |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1570 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1571 |
Ptr<Node> node = *i; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1572 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1573 |
// The router ID is accessible through the GlobalRouter interface, so we need |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1574 |
// to QI for that interface. If there's no GlobalRouter interface, the node |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1575 |
// in question cannot be the router we want, so we continue. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1576 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1577 |
Ptr<GlobalRouter> rtr = node->GetObject<GlobalRouter> (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1578 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1579 |
if (rtr == 0) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1580 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1581 |
NS_LOG_LOGIC ("No GlobalRouter interface on node " << node->GetId ()); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1582 |
continue; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1583 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1584 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1585 |
// If the router ID of the current node is equal to the router ID of the |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1586 |
// root of the SPF tree, then this node is the one for which we need to |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1587 |
// write the routing tables. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1588 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1589 |
NS_LOG_LOGIC ("Considering router " << rtr->GetRouterId ()); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1590 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1591 |
if (rtr->GetRouterId () == routerId) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1592 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1593 |
NS_LOG_LOGIC ("Setting routes for node " << node->GetId ()); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1594 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1595 |
// Routing information is updated using the Ipv4 interface. We need to QI |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1596 |
// for that interface. If the node is acting as an IP version 4 router, it |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1597 |
// should absolutely have an Ipv4 interface. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1598 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1599 |
Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1600 |
NS_ASSERT_MSG (ipv4, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1601 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1602 |
"QI for <Ipv4> interface failed"); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1603 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1604 |
// Get the Global Router Link State Advertisement from the vertex we're |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1605 |
// adding the routes to. The LSA will have a number of attached Global Router |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1606 |
// Link Records corresponding to links off of that vertex / node. We're going |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1607 |
// to be interested in the records corresponding to point-to-point links. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1608 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1609 |
NS_ASSERT_MSG (v->GetLSA (), |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1610 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1611 |
"Expected valid LSA in SPFVertex* v"); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1612 |
Ipv4Mask tempmask = extlsa->GetNetworkLSANetworkMask (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1613 |
Ipv4Address tempip = extlsa->GetLinkStateId (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1614 |
tempip = tempip.CombineMask (tempmask); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1615 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1616 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1617 |
// Here's why we did all of that work. We're going to add a host route to the |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1618 |
// host address found in the m_linkData field of the point-to-point link |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1619 |
// record. In the case of a point-to-point link, this is the local IP address |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1620 |
// of the node connected to the link. Each of these point-to-point links |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1621 |
// will correspond to a local interface that has an IP address to which |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1622 |
// the node at the root of the SPF tree can send packets. The vertex <v> |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1623 |
// (corresponding to the node that has these links and interfaces) has |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1624 |
// an m_nextHop address precalculated for us that is the address to which the |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1625 |
// root node should send packets to be forwarded to these IP addresses. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1626 |
// Similarly, the vertex <v> has an m_rootOif (outbound interface index) to |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1627 |
// which the packets should be send for forwarding. |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1628 |
// |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1629 |
Ptr<GlobalRouter> router = node->GetObject<GlobalRouter> (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1630 |
if (router == 0) |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1631 |
{ |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1632 |
continue; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1633 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1634 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1635 |
NS_ASSERT (gr); |
5934
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1636 |
// walk through all next-hop-IPs and out-going-interfaces for reaching |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1637 |
// the stub network gateway 'v' from the root node |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1638 |
for (uint32_t i = 0; i < v->GetNRootExitDirections (); i++) |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1639 |
{ |
5934
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1640 |
SPFVertex::NodeExit_t exit = v->GetRootExitDirection (i); |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1641 |
Ipv4Address nextHop = exit.first; |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1642 |
int32_t outIf = exit.second; |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1643 |
if (outIf >= 0) |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1644 |
{ |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1645 |
gr->AddASExternalRouteTo (tempip, tempmask, nextHop, outIf); |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1646 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1647 |
" add external network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1648 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1649 |
" via interface " << outIf); |
5934
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1650 |
} |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1651 |
else |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1652 |
{ |
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1653 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1654 |
" NOT able to add network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1655 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1656 |
" since outgoing interface id is negative"); |
5934
71a3dd5e7a08
[bug 789] Globalrouting externalroutes to use the new GetRootExitDirections()
Antti Mäkelä <zarhan@cc.hut.fi>
parents:
5858
diff
changeset
|
1657 |
} |
4745
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1658 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1659 |
return; |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1660 |
} // if |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1661 |
} // for |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1662 |
} |
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1663 |
|
a0e27af57c8d
Allow injection of routes to Ipv4GlobalRouting
Antti Makela <zarhan@cc.hut.fi>
parents:
4630
diff
changeset
|
1664 |
|
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1665 |
// Processing logic from RFC 2328, page 166 and quagga ospf_spf_process_stubs () |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1666 |
// stub link records will exist for point-to-point interfaces and for |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1667 |
// broadcast interfaces for which no neighboring router can be found |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1668 |
void |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1669 |
GlobalRouteManagerImpl::SPFProcessStubs (SPFVertex* v) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1670 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1671 |
NS_LOG_FUNCTION (this << v); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1672 |
NS_LOG_LOGIC ("Processing stubs for " << v->GetVertexId ()); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1673 |
if (v->GetVertexType () == SPFVertex::VertexRouter) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1674 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1675 |
GlobalRoutingLSA *rlsa = v->GetLSA (); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1676 |
NS_LOG_LOGIC ("Processing router LSA with id " << rlsa->GetLinkStateId ()); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1677 |
for (uint32_t i = 0; i < rlsa->GetNLinkRecords (); i++) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1678 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1679 |
NS_LOG_LOGIC ("Examining link " << i << " of " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1680 |
v->GetVertexId () << "'s " << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1681 |
v->GetLSA ()->GetNLinkRecords () << " link records"); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1682 |
GlobalRoutingLinkRecord *l = v->GetLSA ()->GetLinkRecord (i); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1683 |
if (l->GetLinkType () == GlobalRoutingLinkRecord::StubNetwork) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1684 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1685 |
NS_LOG_LOGIC ("Found a Stub record to " << l->GetLinkId ()); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1686 |
SPFIntraAddStub (l, v); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1687 |
continue; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1688 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1689 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1690 |
} |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1691 |
for (uint32_t i = 0; i < v->GetNChildren (); i++) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1692 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1693 |
if (!v->GetChild (i)->IsVertexProcessed ()) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1694 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1695 |
SPFProcessStubs (v->GetChild (i)); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1696 |
v->GetChild (i)->SetVertexProcessed (true); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1697 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1698 |
} |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1699 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1700 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1701 |
// RFC2328 16.1. second stage. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1702 |
void |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1703 |
GlobalRouteManagerImpl::SPFIntraAddStub (GlobalRoutingLinkRecord *l, SPFVertex* v) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1704 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1705 |
NS_LOG_FUNCTION (this << l << v); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1706 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1707 |
NS_ASSERT_MSG (m_spfroot, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1708 |
"GlobalRouteManagerImpl::SPFIntraAddStub (): Root pointer not set"); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1709 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1710 |
// XXX simplifed logic for the moment. There are two cases to consider: |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1711 |
// 1) the stub network is on this router; do nothing for now |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1712 |
// (already handled above) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1713 |
// 2) the stub network is on a remote router, so I should use the |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1714 |
// same next hop that I use to get to vertex v |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1715 |
if (v->GetVertexId () == m_spfroot->GetVertexId ()) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1716 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1717 |
NS_LOG_LOGIC ("Stub is on local host: " << v->GetVertexId () << "; returning"); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1718 |
return; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1719 |
} |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1720 |
NS_LOG_LOGIC ("Stub is on remote host: " << v->GetVertexId () << "; installing"); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1721 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1722 |
// The root of the Shortest Path First tree is the router to which we are |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1723 |
// going to write the actual routing table entries. The vertex corresponding |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1724 |
// to this router has a vertex ID which is the router ID of that node. We're |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1725 |
// going to use this ID to discover which node it is that we're actually going |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1726 |
// to update. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1727 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1728 |
Ipv4Address routerId = m_spfroot->GetVertexId (); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1729 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1730 |
NS_LOG_LOGIC ("Vertex ID = " << routerId); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1731 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1732 |
// We need to walk the list of nodes looking for the one that has the router |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1733 |
// ID corresponding to the root vertex. This is the one we're going to write |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1734 |
// the routing information to. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1735 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1736 |
NodeList::Iterator i = NodeList::Begin (); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1737 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1738 |
for (; i != listEnd; i++) |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1739 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1740 |
Ptr<Node> node = *i; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1741 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1742 |
// The router ID is accessible through the GlobalRouter interface, so we need |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1743 |
// to QI for that interface. If there's no GlobalRouter interface, the node |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1744 |
// in question cannot be the router we want, so we continue. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1745 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1746 |
Ptr<GlobalRouter> rtr = |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1747 |
node->GetObject<GlobalRouter> (); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1748 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1749 |
if (rtr == 0) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1750 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1751 |
NS_LOG_LOGIC ("No GlobalRouter interface on node " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1752 |
node->GetId ()); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1753 |
continue; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1754 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1755 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1756 |
// If the router ID of the current node is equal to the router ID of the |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1757 |
// root of the SPF tree, then this node is the one for which we need to |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1758 |
// write the routing tables. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1759 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1760 |
NS_LOG_LOGIC ("Considering router " << rtr->GetRouterId ()); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1761 |
|
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1762 |
if (rtr->GetRouterId () == routerId) |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1763 |
{ |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1764 |
NS_LOG_LOGIC ("Setting routes for node " << node->GetId ()); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1765 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1766 |
// Routing information is updated using the Ipv4 interface. We need to QI |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1767 |
// for that interface. If the node is acting as an IP version 4 router, it |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1768 |
// should absolutely have an Ipv4 interface. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1769 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1770 |
Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> (); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1771 |
NS_ASSERT_MSG (ipv4, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1772 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1773 |
"QI for <Ipv4> interface failed"); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1774 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1775 |
// Get the Global Router Link State Advertisement from the vertex we're |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1776 |
// adding the routes to. The LSA will have a number of attached Global Router |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1777 |
// Link Records corresponding to links off of that vertex / node. We're going |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1778 |
// to be interested in the records corresponding to point-to-point links. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1779 |
// |
3969 | 1780 |
NS_ASSERT_MSG (v->GetLSA (), |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1781 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1782 |
"Expected valid LSA in SPFVertex* v"); |
6297
d58f84b6191b
bug in global routing stub computation
Tom Henderson <tomh@tomh.org>
parents:
6273
diff
changeset
|
1783 |
Ipv4Mask tempmask (l->GetLinkData ().Get ()); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1784 |
Ipv4Address tempip = l->GetLinkId (); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1785 |
tempip = tempip.CombineMask (tempmask); |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1786 |
// |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1787 |
// Here's why we did all of that work. We're going to add a host route to the |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1788 |
// host address found in the m_linkData field of the point-to-point link |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1789 |
// record. In the case of a point-to-point link, this is the local IP address |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1790 |
// of the node connected to the link. Each of these point-to-point links |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1791 |
// will correspond to a local interface that has an IP address to which |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1792 |
// the node at the root of the SPF tree can send packets. The vertex <v> |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1793 |
// (corresponding to the node that has these links and interfaces) has |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1794 |
// an m_nextHop address precalculated for us that is the address to which the |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1795 |
// root node should send packets to be forwarded to these IP addresses. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1796 |
// Similarly, the vertex <v> has an m_rootOif (outbound interface index) to |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1797 |
// which the packets should be send for forwarding. |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1798 |
// |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1799 |
|
4616
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1800 |
Ptr<GlobalRouter> router = node->GetObject<GlobalRouter> (); |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1801 |
if (router == 0) |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1802 |
{ |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1803 |
continue; |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1804 |
} |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
1805 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1806 |
NS_ASSERT (gr); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1807 |
// walk through all next-hop-IPs and out-going-interfaces for reaching |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1808 |
// the stub network gateway 'v' from the root node |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1809 |
for (uint32_t i = 0; i < v->GetNRootExitDirections (); i++) |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1810 |
{ |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1811 |
SPFVertex::NodeExit_t exit = v->GetRootExitDirection (i); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1812 |
Ipv4Address nextHop = exit.first; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1813 |
int32_t outIf = exit.second; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1814 |
if (outIf >= 0) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1815 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1816 |
gr->AddNetworkRouteTo (tempip, tempmask, nextHop, outIf); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1817 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1818 |
" add network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1819 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1820 |
" via interface " << outIf); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1821 |
} |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1822 |
else |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1823 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1824 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1825 |
" NOT able to add network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1826 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1827 |
" since outgoing interface id is negative"); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
1828 |
} |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1829 |
} |
3960
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1830 |
return; |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1831 |
} // if |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1832 |
} // for |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1833 |
} |
34908804c029
Add processing logic for stub links in global routing code
Tom Henderson <tomh@tomh.org>
parents:
3959
diff
changeset
|
1834 |
|
1111 | 1835 |
// |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1836 |
// Return the interface number corresponding to a given IP address and mask |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1837 |
// This is a wrapper around GetInterfaceForPrefix(), but we first |
1316
f357c6a2bb37
Provide two new Ipv4 convenience functions: GetIfIndexByIpv4Address() and GetIpv4RouteToDestination (), and align global routing code to use the first function
Tom Henderson <tomh@tomh.org>
parents:
1302
diff
changeset
|
1838 |
// have to find the right node pointer to pass to that function. |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1839 |
// If no such interface is found, return -1 (note: unit test framework |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1840 |
// for routing assumes -1 to be a legal return value) |
1278 | 1841 |
// |
4476 | 1842 |
int32_t |
4297
d8501bae8be1
Fix a previous regexp substitution that went too far
Tom Henderson <tomh@tomh.org>
parents:
3969
diff
changeset
|
1843 |
GlobalRouteManagerImpl::FindOutgoingInterfaceId (Ipv4Address a, Ipv4Mask amask) |
1278 | 1844 |
{ |
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1845 |
NS_LOG_FUNCTION (this << a << amask); |
1278 | 1846 |
// |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1847 |
// We have an IP address <a> and a vertex ID of the root of the SPF tree. |
1278 | 1848 |
// The question is what interface index does this address correspond to. |
1849 |
// The answer is a little complicated since we have to find a pointer to |
|
1850 |
// the node corresponding to the vertex ID, find the Ipv4 interface on that |
|
1851 |
// node in order to iterate the interfaces and find the one corresponding to |
|
1852 |
// the address in question. |
|
1853 |
// |
|
1854 |
Ipv4Address routerId = m_spfroot->GetVertexId (); |
|
1855 |
// |
|
1856 |
// Walk the list of nodes in the system looking for the one corresponding to |
|
1857 |
// the node at the root of the SPF tree. This is the node for which we are |
|
1858 |
// building the routing table. |
|
1859 |
// |
|
1302
7dd6ea991e80
use more NodeList::Iterator types
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1301
diff
changeset
|
1860 |
NodeList::Iterator i = NodeList::Begin (); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1861 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1862 |
for (; i != listEnd; i++) |
1278 | 1863 |
{ |
1864 |
Ptr<Node> node = *i; |
|
1865 |
||
1866 |
Ptr<GlobalRouter> rtr = |
|
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
1867 |
node->GetObject<GlobalRouter> (); |
1278 | 1868 |
// |
1869 |
// If the node doesn't have a GlobalRouter interface it can't be the one |
|
1870 |
// we're interested in. |
|
1871 |
// |
|
1872 |
if (rtr == 0) |
|
1873 |
{ |
|
1874 |
continue; |
|
1875 |
} |
|
1876 |
||
1877 |
if (rtr->GetRouterId () == routerId) |
|
1878 |
{ |
|
1879 |
// |
|
1880 |
// This is the node we're building the routing table for. We're going to need |
|
1881 |
// the Ipv4 interface to look for the ipv4 interface index. Since this node |
|
1882 |
// is participating in routing IP version 4 packets, it certainly must have |
|
1883 |
// an Ipv4 interface. |
|
1884 |
// |
|
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
1885 |
Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> (); |
1278 | 1886 |
NS_ASSERT_MSG (ipv4, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1887 |
"GlobalRouteManagerImpl::FindOutgoingInterfaceId (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1888 |
"GetObject for <Ipv4> interface failed"); |
1278 | 1889 |
// |
1890 |
// Look through the interfaces on this node for one that has the IP address |
|
1891 |
// we're looking for. If we find one, return the corresponding interface |
|
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1892 |
// index, or -1 if not found. |
1278 | 1893 |
// |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1894 |
int32_t interface = ipv4->GetInterfaceForPrefix (a, amask); |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1895 |
|
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1896 |
#if 0 |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1897 |
if (interface < 0) |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1898 |
{ |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1899 |
NS_FATAL_ERROR ("GlobalRouteManagerImpl::FindOutgoingInterfaceId(): " |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1900 |
"Expected an interface associated with address a:" << a); |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1901 |
} |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1902 |
#endif |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1903 |
return interface; |
1278 | 1904 |
} |
1905 |
} |
|
1906 |
// |
|
1907 |
// Couldn't find it. |
|
1908 |
// |
|
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1909 |
NS_LOG_LOGIC ("FindOutgoingInterfaceId():Can't find root node " << routerId); |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1910 |
return -1; |
1278 | 1911 |
} |
1912 |
||
1913 |
// |
|
1111 | 1914 |
// This method is derived from quagga ospf_intra_add_router () |
1915 |
// |
|
1916 |
// This is where we are actually going to add the host routes to the routing |
|
1917 |
// tables of the individual nodes. |
|
1918 |
// |
|
1919 |
// The vertex passed as a parameter has just been added to the SPF tree. |
|
1920 |
// This vertex must have a valid m_root_oid, corresponding to the outgoing |
|
1921 |
// interface on the root router of the tree that is the first hop on the path |
|
1922 |
// to the vertex. The vertex must also have a next hop address, corresponding |
|
1923 |
// to the next hop on the path to the vertex. The vertex has an m_lsa field |
|
1924 |
// that has some number of link records. For each point to point link record, |
|
1925 |
// the m_linkData is the local IP address of the link. This corresponds to |
|
1926 |
// a destination IP address, reachable from the root, to which we add a host |
|
1927 |
// route. |
|
1928 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1929 |
void |
1111 | 1930 |
GlobalRouteManagerImpl::SPFIntraAddRouter (SPFVertex* v) |
1931 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
1932 |
NS_LOG_FUNCTION (this << v); |
1111 | 1933 |
|
1934 |
NS_ASSERT_MSG (m_spfroot, |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1935 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): Root pointer not set"); |
1111 | 1936 |
// |
1937 |
// The root of the Shortest Path First tree is the router to which we are |
|
1938 |
// going to write the actual routing table entries. The vertex corresponding |
|
1939 |
// to this router has a vertex ID which is the router ID of that node. We're |
|
1940 |
// going to use this ID to discover which node it is that we're actually going |
|
1941 |
// to update. |
|
1942 |
// |
|
1943 |
Ipv4Address routerId = m_spfroot->GetVertexId (); |
|
1944 |
||
1505 | 1945 |
NS_LOG_LOGIC ("Vertex ID = " << routerId); |
1111 | 1946 |
// |
1947 |
// We need to walk the list of nodes looking for the one that has the router |
|
1948 |
// ID corresponding to the root vertex. This is the one we're going to write |
|
1949 |
// the routing information to. |
|
1950 |
// |
|
1302
7dd6ea991e80
use more NodeList::Iterator types
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1301
diff
changeset
|
1951 |
NodeList::Iterator i = NodeList::Begin (); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1952 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
1953 |
for (; i != listEnd; i++) |
1111 | 1954 |
{ |
1955 |
Ptr<Node> node = *i; |
|
1956 |
// |
|
1957 |
// The router ID is accessible through the GlobalRouter interface, so we need |
|
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1958 |
// to GetObject for that interface. If there's no GlobalRouter interface, |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1959 |
// the node in question cannot be the router we want, so we continue. |
1111 | 1960 |
// |
1961 |
Ptr<GlobalRouter> rtr = |
|
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
1962 |
node->GetObject<GlobalRouter> (); |
1111 | 1963 |
|
1964 |
if (rtr == 0) |
|
1965 |
{ |
|
1505 | 1966 |
NS_LOG_LOGIC ("No GlobalRouter interface on node " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1967 |
node->GetId ()); |
1111 | 1968 |
continue; |
1969 |
} |
|
1970 |
// |
|
1971 |
// If the router ID of the current node is equal to the router ID of the |
|
1972 |
// root of the SPF tree, then this node is the one for which we need to |
|
1973 |
// write the routing tables. |
|
1974 |
// |
|
1505 | 1975 |
NS_LOG_LOGIC ("Considering router " << rtr->GetRouterId ()); |
1111 | 1976 |
|
1977 |
if (rtr->GetRouterId () == routerId) |
|
1978 |
{ |
|
1505 | 1979 |
NS_LOG_LOGIC ("Setting routes for node " << node->GetId ()); |
1111 | 1980 |
// |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1981 |
// Routing information is updated using the Ipv4 interface. We need to |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1982 |
// GetObject for that interface. If the node is acting as an IP version 4 |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
1983 |
// router, it should absolutely have an Ipv4 interface. |
1111 | 1984 |
// |
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
1985 |
Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> (); |
1111 | 1986 |
NS_ASSERT_MSG (ipv4, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1987 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1988 |
"GetObject for <Ipv4> interface failed"); |
1111 | 1989 |
// |
1990 |
// Get the Global Router Link State Advertisement from the vertex we're |
|
1991 |
// adding the routes to. The LSA will have a number of attached Global Router |
|
1992 |
// Link Records corresponding to links off of that vertex / node. We're going |
|
1993 |
// to be interested in the records corresponding to point-to-point links. |
|
1994 |
// |
|
1278 | 1995 |
GlobalRoutingLSA *lsa = v->GetLSA (); |
1111 | 1996 |
NS_ASSERT_MSG (lsa, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1997 |
"GlobalRouteManagerImpl::SPFIntraAddRouter (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
1998 |
"Expected valid LSA in SPFVertex* v"); |
1111 | 1999 |
|
2000 |
uint32_t nLinkRecords = lsa->GetNLinkRecords (); |
|
2001 |
// |
|
2002 |
// Iterate through the link records on the vertex to which we're going to add |
|
2003 |
// routes. To make sure we're being clear, we're going to add routing table |
|
2004 |
// entries to the tables on the node corresping to the root of the SPF tree. |
|
2005 |
// These entries will have routes to the IP addresses we find from looking at |
|
2006 |
// the local side of the point-to-point links found on the node described by |
|
2007 |
// the vertex <v>. |
|
2008 |
// |
|
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
2009 |
NS_LOG_LOGIC (" Node " << node->GetId () << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2010 |
" found " << nLinkRecords << " link records in LSA " << lsa << "with LinkStateId "<< lsa->GetLinkStateId ()); |
3091 | 2011 |
for (uint32_t j = 0; j < nLinkRecords; ++j) |
1111 | 2012 |
{ |
2013 |
// |
|
2014 |
// We are only concerned about point-to-point links |
|
2015 |
// |
|
1278 | 2016 |
GlobalRoutingLinkRecord *lr = lsa->GetLinkRecord (j); |
2017 |
if (lr->GetLinkType () != GlobalRoutingLinkRecord::PointToPoint) |
|
1111 | 2018 |
{ |
2019 |
continue; |
|
2020 |
} |
|
2021 |
// |
|
2022 |
// Here's why we did all of that work. We're going to add a host route to the |
|
2023 |
// host address found in the m_linkData field of the point-to-point link |
|
2024 |
// record. In the case of a point-to-point link, this is the local IP address |
|
2025 |
// of the node connected to the link. Each of these point-to-point links |
|
2026 |
// will correspond to a local interface that has an IP address to which |
|
2027 |
// the node at the root of the SPF tree can send packets. The vertex <v> |
|
2028 |
// (corresponding to the node that has these links and interfaces) has |
|
2029 |
// an m_nextHop address precalculated for us that is the address to which the |
|
2030 |
// root node should send packets to be forwarded to these IP addresses. |
|
2031 |
// Similarly, the vertex <v> has an m_rootOif (outbound interface index) to |
|
2032 |
// which the packets should be send for forwarding. |
|
2033 |
// |
|
4616
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2034 |
Ptr<GlobalRouter> router = node->GetObject<GlobalRouter> (); |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2035 |
if (router == 0) |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2036 |
{ |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2037 |
continue; |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2038 |
} |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2039 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
2040 |
NS_ASSERT (gr); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2041 |
// walk through all available exit directions due to ECMP, |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2042 |
// and add host route for each of the exit direction toward |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2043 |
// the vertex 'v' |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2044 |
for (uint32_t i = 0; i < v->GetNRootExitDirections (); i++) |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2045 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2046 |
SPFVertex::NodeExit_t exit = v->GetRootExitDirection (i); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2047 |
Ipv4Address nextHop = exit.first; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2048 |
int32_t outIf = exit.second; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2049 |
if (outIf >= 0) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2050 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2051 |
gr->AddHostRouteTo (lr->GetLinkData (), nextHop, |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2052 |
outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2053 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2054 |
" adding host route to " << lr->GetLinkData () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2055 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2056 |
" and outgoing interface " << outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2057 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2058 |
else |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2059 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2060 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2061 |
" NOT able to add host route to " << lr->GetLinkData () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2062 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2063 |
" since outgoing interface id is negative " << outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2064 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2065 |
} // for all routes from the root the vertex 'v' |
1111 | 2066 |
} |
2067 |
// |
|
2068 |
// Done adding the routes for the selected node. |
|
2069 |
// |
|
2070 |
return; |
|
2071 |
} |
|
2072 |
} |
|
2073 |
} |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2074 |
void |
1278 | 2075 |
GlobalRouteManagerImpl::SPFIntraAddTransit (SPFVertex* v) |
2076 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
2077 |
NS_LOG_FUNCTION (this << v); |
1278 | 2078 |
|
2079 |
NS_ASSERT_MSG (m_spfroot, |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2080 |
"GlobalRouteManagerImpl::SPFIntraAddTransit (): Root pointer not set"); |
1278 | 2081 |
// |
2082 |
// The root of the Shortest Path First tree is the router to which we are |
|
2083 |
// going to write the actual routing table entries. The vertex corresponding |
|
2084 |
// to this router has a vertex ID which is the router ID of that node. We're |
|
2085 |
// going to use this ID to discover which node it is that we're actually going |
|
2086 |
// to update. |
|
2087 |
// |
|
2088 |
Ipv4Address routerId = m_spfroot->GetVertexId (); |
|
2089 |
||
1505 | 2090 |
NS_LOG_LOGIC ("Vertex ID = " << routerId); |
1278 | 2091 |
// |
2092 |
// We need to walk the list of nodes looking for the one that has the router |
|
2093 |
// ID corresponding to the root vertex. This is the one we're going to write |
|
2094 |
// the routing information to. |
|
2095 |
// |
|
1302
7dd6ea991e80
use more NodeList::Iterator types
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1301
diff
changeset
|
2096 |
NodeList::Iterator i = NodeList::Begin (); |
4758
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
2097 |
NodeList::Iterator listEnd = NodeList::End (); |
0f9bcd407aff
Don't recompute NodeList::End () at every loop in GlobalRouteManagerImpl
Guillaume Seguin <guillaume.seguin@sophia.inria.fr>
parents:
4745
diff
changeset
|
2098 |
for (; i != listEnd; i++) |
1278 | 2099 |
{ |
2100 |
Ptr<Node> node = *i; |
|
2101 |
// |
|
2102 |
// The router ID is accessible through the GlobalRouter interface, so we need |
|
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2103 |
// to GetObject for that interface. If there's no GlobalRouter interface, |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2104 |
// the node in question cannot be the router we want, so we continue. |
1278 | 2105 |
// |
2106 |
Ptr<GlobalRouter> rtr = |
|
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
2107 |
node->GetObject<GlobalRouter> (); |
1278 | 2108 |
|
2109 |
if (rtr == 0) |
|
2110 |
{ |
|
1505 | 2111 |
NS_LOG_LOGIC ("No GlobalRouter interface on node " << |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2112 |
node->GetId ()); |
1278 | 2113 |
continue; |
2114 |
} |
|
2115 |
// |
|
2116 |
// If the router ID of the current node is equal to the router ID of the |
|
2117 |
// root of the SPF tree, then this node is the one for which we need to |
|
2118 |
// write the routing tables. |
|
2119 |
// |
|
1505 | 2120 |
NS_LOG_LOGIC ("Considering router " << rtr->GetRouterId ()); |
1278 | 2121 |
|
2122 |
if (rtr->GetRouterId () == routerId) |
|
2123 |
{ |
|
1505 | 2124 |
NS_LOG_LOGIC ("setting routes for node " << node->GetId ()); |
1278 | 2125 |
// |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2126 |
// Routing information is updated using the Ipv4 interface. We need to |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2127 |
// GetObject for that interface. If the node is acting as an IP version 4 |
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2128 |
// router, it should absolutely have an Ipv4 interface. |
1278 | 2129 |
// |
2257
71a58e70c671
QueryInterface -> GetObject
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2250
diff
changeset
|
2130 |
Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> (); |
1278 | 2131 |
NS_ASSERT_MSG (ipv4, |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2132 |
"GlobalRouteManagerImpl::SPFIntraAddTransit (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2133 |
"GetObject for <Ipv4> interface failed"); |
1278 | 2134 |
// |
2135 |
// Get the Global Router Link State Advertisement from the vertex we're |
|
2136 |
// adding the routes to. The LSA will have a number of attached Global Router |
|
2137 |
// Link Records corresponding to links off of that vertex / node. We're going |
|
2138 |
// to be interested in the records corresponding to point-to-point links. |
|
2139 |
// |
|
2140 |
GlobalRoutingLSA *lsa = v->GetLSA (); |
|
2141 |
NS_ASSERT_MSG (lsa, |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2142 |
"GlobalRouteManagerImpl::SPFIntraAddTransit (): " |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2143 |
"Expected valid LSA in SPFVertex* v"); |
1279
03ab1b7ad2d0
fix optimized build; remove old comment
Tom Henderson <tomh@tomh.org>
parents:
1278
diff
changeset
|
2144 |
Ipv4Mask tempmask = lsa->GetNetworkLSANetworkMask (); |
03ab1b7ad2d0
fix optimized build; remove old comment
Tom Henderson <tomh@tomh.org>
parents:
1278
diff
changeset
|
2145 |
Ipv4Address tempip = lsa->GetLinkStateId (); |
1278 | 2146 |
tempip = tempip.CombineMask (tempmask); |
4616
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2147 |
Ptr<GlobalRouter> router = node->GetObject<GlobalRouter> (); |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2148 |
if (router == 0) |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2149 |
{ |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2150 |
continue; |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2151 |
} |
a84f60b6cd12
bug 600: lower the default routing priority of Ipv4GlobalRouting; move to helper
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4560
diff
changeset
|
2152 |
Ptr<Ipv4GlobalRouting> gr = router->GetRoutingProtocol (); |
3959
ec65107df095
Segregate Ipv4GlobalRouting from Ipv4StaticRouting; add API for deleting and recomputing global routes
Tom Henderson <tomh@tomh.org>
parents:
3947
diff
changeset
|
2153 |
NS_ASSERT (gr); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2154 |
// walk through all available exit directions due to ECMP, |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2155 |
// and add host route for each of the exit direction toward |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2156 |
// the vertex 'v' |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2157 |
for (uint32_t i = 0; i < v->GetNRootExitDirections (); i++) |
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2158 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2159 |
SPFVertex::NodeExit_t exit = v->GetRootExitDirection (i); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2160 |
Ipv4Address nextHop = exit.first; |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2161 |
int32_t outIf = exit.second; |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2162 |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2163 |
if (outIf >= 0) |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2164 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2165 |
gr->AddNetworkRouteTo (tempip, tempmask, nextHop, outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2166 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2167 |
" add network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2168 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2169 |
" via interface " << outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2170 |
} |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2171 |
else |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2172 |
{ |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2173 |
NS_LOG_LOGIC ("(Route " << i << ") Node " << node->GetId () << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2174 |
" NOT able to add network route to " << tempip << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2175 |
" using next hop " << nextHop << |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2176 |
" since outgoing interface id is negative " << outIf); |
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2177 |
} |
4472
e20a31541404
src/ and utils/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4372
diff
changeset
|
2178 |
} |
1278 | 2179 |
} |
2180 |
} |
|
2181 |
} |
|
1111 | 2182 |
|
2183 |
// Derived from quagga ospf_vertex_add_parents () |
|
2184 |
// |
|
2185 |
// This is a somewhat oddly named method (blame quagga). Although you might |
|
2186 |
// expect it to add a parent *to* something, it actually adds a vertex |
|
2187 |
// to the list of children *in* each of its parents. |
|
2188 |
// |
|
2189 |
// Given a pointer to a vertex, it links back to the vertex's parent that it |
|
2190 |
// already has set and adds itself to that vertex's list of children. |
|
2191 |
// |
|
7176
9f2663992e99
internet coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents:
6967
diff
changeset
|
2192 |
void |
1111 | 2193 |
GlobalRouteManagerImpl::SPFVertexAddParent (SPFVertex* v) |
2194 |
{ |
|
9704
1db7690f8e8f
Partially clean up function logging of internet module.
Kristijan Lenković <k.lenkovic@me.com>
parents:
7256
diff
changeset
|
2195 |
NS_LOG_FUNCTION (this << v); |
5858
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2196 |
|
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2197 |
for (uint32_t i=0;;) |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2198 |
{ |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2199 |
SPFVertex* parent; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2200 |
// check if all parents of vertex v |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2201 |
if ((parent = v->GetParent (i++)) == 0) break; |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2202 |
parent->AddChild (v); |
afb51c7f34c2
bug 667: Add equal-cost multipath routing (ECMP) to IPv4 global routing
Wilson Thong <wilsonwk@ee.cityu.edu.hk>
parents:
5324
diff
changeset
|
2203 |
} |
1111 | 2204 |
} |
2205 |
||
2206 |
} // namespace ns3 |
|
2207 |
||
2208 |