blob: ef68175f8394b6aa8bddb4d417e5f919711ecf1f [file] [log] [blame]
Junxiao Shi986b8492014-08-20 12:07:14 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shifef73e42016-03-29 14:15:05 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shi192af1f2015-01-13 23:19:39 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Junxiao Shi986b8492014-08-20 12:07:14 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "best-route-strategy2.hpp"
Junxiao Shifef73e42016-03-29 14:15:05 -070027#include "pit-algorithm.hpp"
Junxiao Shi986b8492014-08-20 12:07:14 -070028#include "core/logger.hpp"
29
30namespace nfd {
31namespace fw {
32
33NFD_LOG_INIT("BestRouteStrategy2");
34
Junxiao Shi5e5e4452015-09-24 16:56:52 -070035const Name BestRouteStrategy2::STRATEGY_NAME("ndn:/localhost/nfd/strategy/best-route/%FD%04");
Junxiao Shifaf3eb02015-02-16 10:50:36 -070036NFD_REGISTER_STRATEGY(BestRouteStrategy2);
Junxiao Shi986b8492014-08-20 12:07:14 -070037
Junxiao Shi52e85402015-11-11 06:06:58 -070038const time::milliseconds BestRouteStrategy2::RETX_SUPPRESSION_INITIAL(10);
39const time::milliseconds BestRouteStrategy2::RETX_SUPPRESSION_MAX(250);
40
Junxiao Shi986b8492014-08-20 12:07:14 -070041BestRouteStrategy2::BestRouteStrategy2(Forwarder& forwarder, const Name& name)
42 : Strategy(forwarder, name)
Junxiao Shi52e85402015-11-11 06:06:58 -070043 , m_retxSuppression(RETX_SUPPRESSION_INITIAL,
44 RetxSuppressionExponential::DEFAULT_MULTIPLIER,
45 RETX_SUPPRESSION_MAX)
Junxiao Shi986b8492014-08-20 12:07:14 -070046{
47}
48
49/** \brief determines whether a NextHop is eligible
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -050050 * \param pitEntry PIT entry
51 * \param nexthop next hop
Junxiao Shi986b8492014-08-20 12:07:14 -070052 * \param currentDownstream incoming FaceId of current Interest
Junxiao Shi4846f372016-04-05 13:39:30 -070053 * \param wantUnused if true, NextHop must not have unexpired out-record
Junxiao Shi986b8492014-08-20 12:07:14 -070054 * \param now time::steady_clock::now(), ignored if !wantUnused
55 */
56static inline bool
57predicate_NextHop_eligible(const shared_ptr<pit::Entry>& pitEntry,
58 const fib::NextHop& nexthop, FaceId currentDownstream,
59 bool wantUnused = false,
60 time::steady_clock::TimePoint now = time::steady_clock::TimePoint::min())
61{
62 shared_ptr<Face> upstream = nexthop.getFace();
63
64 // upstream is current downstream
65 if (upstream->getId() == currentDownstream)
66 return false;
67
68 // forwarding would violate scope
Junxiao Shifef73e42016-03-29 14:15:05 -070069 if (violatesScope(*pitEntry, *upstream))
Junxiao Shi986b8492014-08-20 12:07:14 -070070 return false;
71
72 if (wantUnused) {
Junxiao Shi4846f372016-04-05 13:39:30 -070073 // NextHop must not have unexpired out-record
74 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(*upstream);
75 if (outRecord != pitEntry->out_end() && outRecord->getExpiry() > now) {
Junxiao Shi986b8492014-08-20 12:07:14 -070076 return false;
77 }
78 }
79
80 return true;
81}
82
Junxiao Shi4846f372016-04-05 13:39:30 -070083/** \brief pick an eligible NextHop with earliest out-record
84 * \note It is assumed that every nexthop has an out-record.
Junxiao Shi986b8492014-08-20 12:07:14 -070085 */
86static inline fib::NextHopList::const_iterator
87findEligibleNextHopWithEarliestOutRecord(const shared_ptr<pit::Entry>& pitEntry,
88 const fib::NextHopList& nexthops,
89 FaceId currentDownstream)
90{
91 fib::NextHopList::const_iterator found = nexthops.end();
92 time::steady_clock::TimePoint earliestRenewed = time::steady_clock::TimePoint::max();
93 for (fib::NextHopList::const_iterator it = nexthops.begin(); it != nexthops.end(); ++it) {
94 if (!predicate_NextHop_eligible(pitEntry, *it, currentDownstream))
95 continue;
Junxiao Shi4846f372016-04-05 13:39:30 -070096 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(*it->getFace());
97 BOOST_ASSERT(outRecord != pitEntry->out_end());
Junxiao Shi986b8492014-08-20 12:07:14 -070098 if (outRecord->getLastRenewed() < earliestRenewed) {
99 found = it;
100 earliestRenewed = outRecord->getLastRenewed();
101 }
102 }
103 return found;
104}
105
106void
107BestRouteStrategy2::afterReceiveInterest(const Face& inFace,
108 const Interest& interest,
Junxiao Shi986b8492014-08-20 12:07:14 -0700109 shared_ptr<pit::Entry> pitEntry)
110{
Junxiao Shi8d843142016-07-11 22:42:42 +0000111 RetxSuppression::Result suppression = m_retxSuppression.decide(inFace, interest, *pitEntry);
112 if (suppression == RetxSuppression::SUPPRESS) {
113 NFD_LOG_DEBUG(interest << " from=" << inFace.getId()
114 << " suppressed");
115 return;
116 }
117
118 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
119 const fib::NextHopList& nexthops = fibEntry.getNextHops();
Junxiao Shi986b8492014-08-20 12:07:14 -0700120 fib::NextHopList::const_iterator it = nexthops.end();
121
Junxiao Shia788e252015-01-28 17:06:25 -0700122 if (suppression == RetxSuppression::NEW) {
Junxiao Shi986b8492014-08-20 12:07:14 -0700123 // forward to nexthop with lowest cost except downstream
124 it = std::find_if(nexthops.begin(), nexthops.end(),
125 bind(&predicate_NextHop_eligible, pitEntry, _1, inFace.getId(),
126 false, time::steady_clock::TimePoint::min()));
127
128 if (it == nexthops.end()) {
129 NFD_LOG_DEBUG(interest << " from=" << inFace.getId() << " noNextHop");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700130
131 lp::NackHeader nackHeader;
132 nackHeader.setReason(lp::NackReason::NO_ROUTE);
133 this->sendNack(pitEntry, inFace, nackHeader);
134
Junxiao Shi986b8492014-08-20 12:07:14 -0700135 this->rejectPendingInterest(pitEntry);
136 return;
137 }
138
139 shared_ptr<Face> outFace = it->getFace();
140 this->sendInterest(pitEntry, outFace);
141 NFD_LOG_DEBUG(interest << " from=" << inFace.getId()
142 << " newPitEntry-to=" << outFace->getId());
143 return;
144 }
145
Junxiao Shi986b8492014-08-20 12:07:14 -0700146 // find an unused upstream with lowest cost except downstream
147 it = std::find_if(nexthops.begin(), nexthops.end(),
Junxiao Shi192af1f2015-01-13 23:19:39 -0700148 bind(&predicate_NextHop_eligible, pitEntry, _1, inFace.getId(),
149 true, time::steady_clock::now()));
Junxiao Shi986b8492014-08-20 12:07:14 -0700150 if (it != nexthops.end()) {
151 shared_ptr<Face> outFace = it->getFace();
152 this->sendInterest(pitEntry, outFace);
153 NFD_LOG_DEBUG(interest << " from=" << inFace.getId()
154 << " retransmit-unused-to=" << outFace->getId());
155 return;
156 }
157
158 // find an eligible upstream that is used earliest
159 it = findEligibleNextHopWithEarliestOutRecord(pitEntry, nexthops, inFace.getId());
160 if (it == nexthops.end()) {
161 NFD_LOG_DEBUG(interest << " from=" << inFace.getId() << " retransmitNoNextHop");
162 }
163 else {
164 shared_ptr<Face> outFace = it->getFace();
165 this->sendInterest(pitEntry, outFace);
166 NFD_LOG_DEBUG(interest << " from=" << inFace.getId()
167 << " retransmit-retry-to=" << outFace->getId());
168 }
169}
170
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700171/** \return less severe NackReason between x and y
172 *
173 * lp::NackReason::NONE is treated as most severe
174 */
175inline lp::NackReason
176compareLessSevere(lp::NackReason x, lp::NackReason y)
177{
178 if (x == lp::NackReason::NONE) {
179 return y;
180 }
181 if (y == lp::NackReason::NONE) {
182 return x;
183 }
184 return static_cast<lp::NackReason>(std::min(static_cast<int>(x), static_cast<int>(y)));
185}
186
187void
188BestRouteStrategy2::afterReceiveNack(const Face& inFace, const lp::Nack& nack,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700189 shared_ptr<pit::Entry> pitEntry)
190{
191 int nOutRecordsNotNacked = 0;
192 Face* lastFaceNotNacked = nullptr;
193 lp::NackReason leastSevereReason = lp::NackReason::NONE;
194 for (const pit::OutRecord& outR : pitEntry->getOutRecords()) {
195 const lp::NackHeader* inNack = outR.getIncomingNack();
196 if (inNack == nullptr) {
197 ++nOutRecordsNotNacked;
198 lastFaceNotNacked = outR.getFace().get();
199 continue;
200 }
201
202 leastSevereReason = compareLessSevere(leastSevereReason, inNack->getReason());
203 }
204
205 lp::NackHeader outNack;
206 outNack.setReason(leastSevereReason);
207
208 if (nOutRecordsNotNacked == 1) {
209 BOOST_ASSERT(lastFaceNotNacked != nullptr);
Junxiao Shi4846f372016-04-05 13:39:30 -0700210 pit::InRecordCollection::iterator inR = pitEntry->getInRecord(*lastFaceNotNacked);
211 if (inR != pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700212 // one out-record not Nacked, which is also a downstream
213 NFD_LOG_DEBUG(nack.getInterest() << " nack-from=" << inFace.getId() <<
214 " nack=" << nack.getReason() <<
215 " nack-to(bidirectional)=" << lastFaceNotNacked->getId() <<
216 " out-nack=" << outNack.getReason());
217 this->sendNack(pitEntry, *lastFaceNotNacked, outNack);
218 return;
219 }
220 }
221
222 if (nOutRecordsNotNacked > 0) {
223 NFD_LOG_DEBUG(nack.getInterest() << " nack-from=" << inFace.getId() <<
224 " nack=" << nack.getReason() <<
225 " waiting=" << nOutRecordsNotNacked);
226 // continue waiting
227 return;
228 }
229
230
231 NFD_LOG_DEBUG(nack.getInterest() << " nack-from=" << inFace.getId() <<
232 " nack=" << nack.getReason() <<
233 " nack-to=all out-nack=" << outNack.getReason());
234 this->sendNacks(pitEntry, outNack);
235}
236
Junxiao Shi986b8492014-08-20 12:07:14 -0700237} // namespace fw
238} // namespace nfd