blob: bb41fbaddaab58dbfd9e55d16155d63f4e5eb65a [file] [log] [blame]
Junxiao Shi80ee7cb2014-12-14 10:53:05 -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 Shi80ee7cb2014-12-14 10:53:05 -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.
10 *
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 "access-strategy.hpp"
Junxiao Shifef73e42016-03-29 14:15:05 -070027#include "pit-algorithm.hpp"
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070028#include "core/logger.hpp"
29
30namespace nfd {
31namespace fw {
32
33NFD_LOG_INIT("AccessStrategy");
34
35const Name AccessStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/access/%FD%01");
Junxiao Shifaf3eb02015-02-16 10:50:36 -070036NFD_REGISTER_STRATEGY(AccessStrategy);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070037
38AccessStrategy::AccessStrategy(Forwarder& forwarder, const Name& name)
39 : Strategy(forwarder, name)
40 , m_removeFaceInfoConn(this->beforeRemoveFace.connect(
41 bind(&AccessStrategy::removeFaceInfo, this, _1)))
42{
43}
44
45AccessStrategy::~AccessStrategy()
46{
47}
48
49void
50AccessStrategy::afterReceiveInterest(const Face& inFace,
51 const Interest& interest,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070052 shared_ptr<pit::Entry> pitEntry)
53{
Junxiao Shia788e252015-01-28 17:06:25 -070054 RetxSuppression::Result suppressResult = m_retxSuppression.decide(inFace, interest, *pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070055 switch (suppressResult) {
Junxiao Shia788e252015-01-28 17:06:25 -070056 case RetxSuppression::NEW:
Junxiao Shi8d843142016-07-11 22:42:42 +000057 this->afterReceiveNewInterest(inFace, interest, pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070058 break;
Junxiao Shia788e252015-01-28 17:06:25 -070059 case RetxSuppression::FORWARD:
Junxiao Shi8d843142016-07-11 22:42:42 +000060 this->afterReceiveRetxInterest(inFace, interest, pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070061 break;
Junxiao Shia788e252015-01-28 17:06:25 -070062 case RetxSuppression::SUPPRESS:
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070063 NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << " retx-suppress");
64 break;
65 default:
66 BOOST_ASSERT(false);
67 break;
68 }
69}
70
71void
72AccessStrategy::afterReceiveNewInterest(const Face& inFace,
73 const Interest& interest,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070074 shared_ptr<pit::Entry> pitEntry)
75{
Junxiao Shi8d843142016-07-11 22:42:42 +000076 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070077 Name miName;
78 shared_ptr<MtInfo> mi;
79 std::tie(miName, mi) = this->findPrefixMeasurements(*pitEntry);
80
81 // has measurements for Interest Name?
82 if (mi != nullptr) {
83 NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() <<
84 " new-interest mi=" << miName);
85
86 // send to last working nexthop
87 bool isSentToLastNexthop = this->sendToLastNexthop(inFace, pitEntry, *mi, fibEntry);
88
89 if (isSentToLastNexthop) {
90 return;
91 }
92 }
93 else {
94 NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() <<
95 " new-interest no-mi");
96 }
97
98 // no measurements, or last working nexthop unavailable
99
Junxiao Shi965d3a42015-06-01 06:55:23 -0700100 // multicast to all nexthops except incoming face
101 this->multicast(pitEntry, fibEntry, {inFace.getId()});
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700102}
103
104void
105AccessStrategy::afterReceiveRetxInterest(const Face& inFace,
106 const Interest& interest,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700107 shared_ptr<pit::Entry> pitEntry)
108{
Junxiao Shi8d843142016-07-11 22:42:42 +0000109 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700110 NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << " retx-forward");
Junxiao Shi965d3a42015-06-01 06:55:23 -0700111 this->multicast(pitEntry, fibEntry, {inFace.getId()});
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700112}
113
114bool
115AccessStrategy::sendToLastNexthop(const Face& inFace, shared_ptr<pit::Entry> pitEntry, MtInfo& mi,
Junxiao Shi8d843142016-07-11 22:42:42 +0000116 const fib::Entry& fibEntry)
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700117{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700118 if (mi.lastNexthop == face::INVALID_FACEID) {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700119 NFD_LOG_DEBUG(pitEntry->getInterest() << " no-last-nexthop");
120 return false;
121 }
122
123 if (mi.lastNexthop == inFace.getId()) {
124 NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-is-downstream");
125 return false;
126 }
127
Junxiao Shi5b43f9a2016-07-19 13:15:56 +0000128 Face* face = this->getFace(mi.lastNexthop);
Junxiao Shia6de4292016-07-12 02:08:10 +0000129 if (face == nullptr || !fibEntry.hasNextHop(*face)) {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700130 NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-gone");
131 return false;
132 }
133
Junxiao Shifef73e42016-03-29 14:15:05 -0700134 if (violatesScope(*pitEntry, *face)) {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700135 NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-violates-scope");
136 return false;
137 }
138
139 RttEstimator::Duration rto = mi.rtt.computeRto();
140 NFD_LOG_DEBUG(pitEntry->getInterest() << " interestTo " << mi.lastNexthop <<
141 " last-nexthop rto=" << time::duration_cast<time::microseconds>(rto).count());
142
Junxiao Shia6de4292016-07-12 02:08:10 +0000143 this->sendInterest(pitEntry, *face);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700144
145 // schedule RTO timeout
146 shared_ptr<PitInfo> pi = pitEntry->getOrCreateStrategyInfo<PitInfo>();
147 pi->rtoTimer = scheduler::schedule(rto,
148 bind(&AccessStrategy::afterRtoTimeout, this, weak_ptr<pit::Entry>(pitEntry),
Junxiao Shi8d843142016-07-11 22:42:42 +0000149 inFace.getId(), mi.lastNexthop));
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700150
151 return true;
152}
153
154void
Junxiao Shi8d843142016-07-11 22:42:42 +0000155AccessStrategy::afterRtoTimeout(weak_ptr<pit::Entry> pitWeak,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700156 FaceId inFace, FaceId firstOutFace)
157{
158 shared_ptr<pit::Entry> pitEntry = pitWeak.lock();
159 BOOST_ASSERT(pitEntry != nullptr);
160 // pitEntry can't become nullptr, because RTO timer should be cancelled upon pitEntry destruction
161
Junxiao Shi8d843142016-07-11 22:42:42 +0000162 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700163
164 NFD_LOG_DEBUG(pitEntry->getInterest() << " timeoutFrom " << firstOutFace <<
165 " multicast-except " << inFace << ',' << firstOutFace);
Junxiao Shi965d3a42015-06-01 06:55:23 -0700166 this->multicast(pitEntry, fibEntry, {inFace, firstOutFace});
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700167}
168
169void
Junxiao Shi8d843142016-07-11 22:42:42 +0000170AccessStrategy::multicast(shared_ptr<pit::Entry> pitEntry, const fib::Entry& fibEntry,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700171 std::unordered_set<FaceId> exceptFaces)
172{
Junxiao Shi8d843142016-07-11 22:42:42 +0000173 for (const fib::NextHop& nexthop : fibEntry.getNextHops()) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000174 Face& face = nexthop.getFace();
175 if (exceptFaces.count(face.getId()) > 0) {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700176 continue;
177 }
Junxiao Shia6de4292016-07-12 02:08:10 +0000178 NFD_LOG_DEBUG(pitEntry->getInterest() << " interestTo " << face.getId() <<
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700179 " multicast");
180 this->sendInterest(pitEntry, face);
181 }
182}
183
184void
185AccessStrategy::beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry,
186 const Face& inFace, const Data& data)
187{
188 shared_ptr<PitInfo> pi = pitEntry->getStrategyInfo<PitInfo>();
189 if (pi != nullptr) {
190 pi->rtoTimer.cancel();
191 }
192
Junxiao Shi4846f372016-04-05 13:39:30 -0700193 if (!pitEntry->hasInRecords()) { // already satisfied by another upstream
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700194 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
195 " not-fastest");
196 return;
197 }
198
Junxiao Shi4846f372016-04-05 13:39:30 -0700199 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
200 if (outRecord == pitEntry->out_end()) { // no out-record
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700201 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
202 " no-out-record");
203 return;
204 }
205
206 time::steady_clock::Duration rtt = time::steady_clock::now() - outRecord->getLastRenewed();
207 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
208 " rtt=" << time::duration_cast<time::microseconds>(rtt).count());
209 this->updateMeasurements(inFace, data, time::duration_cast<RttEstimator::Duration>(rtt));
210}
211
212void
213AccessStrategy::updateMeasurements(const Face& inFace, const Data& data,
214 const RttEstimator::Duration& rtt)
215{
216 FaceInfo& fi = m_fit[inFace.getId()];
217 fi.rtt.addMeasurement(rtt);
218
219 shared_ptr<MtInfo> mi = this->addPrefixMeasurements(data);
220 if (mi->lastNexthop != inFace.getId()) {
221 mi->lastNexthop = inFace.getId();
222 mi->rtt = fi.rtt;
223 }
224 else {
225 mi->rtt.addMeasurement(rtt);
226 }
227}
228
229AccessStrategy::MtInfo::MtInfo()
Junxiao Shicde37ad2015-12-24 01:02:05 -0700230 : lastNexthop(face::INVALID_FACEID)
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700231 , rtt(1, time::milliseconds(1), 0.1)
232{
233}
234
235std::tuple<Name, shared_ptr<AccessStrategy::MtInfo>>
236AccessStrategy::findPrefixMeasurements(const pit::Entry& pitEntry)
237{
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000238 measurements::Entry* me = this->getMeasurements().findLongestPrefixMatch(pitEntry);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700239 if (me == nullptr) {
240 return std::forward_as_tuple(Name(), nullptr);
241 }
242
243 shared_ptr<MtInfo> mi = me->getStrategyInfo<MtInfo>();
244 BOOST_ASSERT(mi != nullptr);
245 // XXX after runtime strategy change, it's possible that me exists but mi doesn't exist;
246 // this case needs another longest prefix match until mi is found
247 return std::forward_as_tuple(me->getName(), mi);
248}
249
250shared_ptr<AccessStrategy::MtInfo>
251AccessStrategy::addPrefixMeasurements(const Data& data)
252{
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000253 measurements::Entry* me = nullptr;
254 if (!data.getName().empty()) {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700255 me = this->getMeasurements().get(data.getName().getPrefix(-1));
256 }
257 if (me == nullptr) { // parent of Data Name is not in this strategy, or Data Name is empty
258 me = this->getMeasurements().get(data.getName());
259 // Data Name must be in this strategy
260 BOOST_ASSERT(me != nullptr);
261 }
262
Junxiao Shi7b0f4d12015-05-10 21:40:29 -0700263 static const time::nanoseconds ME_LIFETIME = time::seconds(8);
264 this->getMeasurements().extendLifetime(*me, ME_LIFETIME);
265
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700266 return me->getOrCreateStrategyInfo<MtInfo>();
267}
268
269AccessStrategy::FaceInfo::FaceInfo()
270 : rtt(1, time::milliseconds(1), 0.1)
271{
272}
273
274void
Junxiao Shiae04d342016-07-19 13:20:22 +0000275AccessStrategy::removeFaceInfo(const Face& face)
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700276{
Junxiao Shiae04d342016-07-19 13:20:22 +0000277 m_fit.erase(face.getId());
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700278}
279
280} // namespace fw
281} // namespace nfd