blob: 3c1f01aa1dfcea02b75d1a841359a0734ef619a3 [file] [log] [blame]
Junxiao Shi80ee7cb2014-12-14 10:53:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California,
4 * 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"
27#include "core/logger.hpp"
28
29namespace nfd {
30namespace fw {
31
32NFD_LOG_INIT("AccessStrategy");
33
34const Name AccessStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/access/%FD%01");
Junxiao Shifaf3eb02015-02-16 10:50:36 -070035NFD_REGISTER_STRATEGY(AccessStrategy);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070036
37AccessStrategy::AccessStrategy(Forwarder& forwarder, const Name& name)
38 : Strategy(forwarder, name)
39 , m_removeFaceInfoConn(this->beforeRemoveFace.connect(
40 bind(&AccessStrategy::removeFaceInfo, this, _1)))
41{
42}
43
44AccessStrategy::~AccessStrategy()
45{
46}
47
48void
49AccessStrategy::afterReceiveInterest(const Face& inFace,
50 const Interest& interest,
51 shared_ptr<fib::Entry> fibEntry,
52 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 Shi80ee7cb2014-12-14 10:53:05 -070057 this->afterReceiveNewInterest(inFace, interest, fibEntry, pitEntry);
58 break;
Junxiao Shia788e252015-01-28 17:06:25 -070059 case RetxSuppression::FORWARD:
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070060 this->afterReceiveRetxInterest(inFace, interest, fibEntry, pitEntry);
61 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,
74 shared_ptr<fib::Entry> fibEntry,
75 shared_ptr<pit::Entry> pitEntry)
76{
77 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
100 // multicast to all nexthops
101 this->multicast(pitEntry, fibEntry);
102}
103
104void
105AccessStrategy::afterReceiveRetxInterest(const Face& inFace,
106 const Interest& interest,
107 shared_ptr<fib::Entry> fibEntry,
108 shared_ptr<pit::Entry> pitEntry)
109{
110 NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << " retx-forward");
111 this->multicast(pitEntry, fibEntry, std::unordered_set<FaceId>{inFace.getId()});
112}
113
114bool
115AccessStrategy::sendToLastNexthop(const Face& inFace, shared_ptr<pit::Entry> pitEntry, MtInfo& mi,
116 shared_ptr<fib::Entry> fibEntry)
117{
118 if (mi.lastNexthop == INVALID_FACEID) {
119 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
128 shared_ptr<Face> face = this->getFace(mi.lastNexthop);
129 if (face == nullptr || !fibEntry->hasNextHop(face)) {
130 NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-gone");
131 return false;
132 }
133
134 if (pitEntry->violatesScope(*face)) {
135 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
143 this->sendInterest(pitEntry, face);
144
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),
149 weak_ptr<fib::Entry>(fibEntry), inFace.getId(), mi.lastNexthop));
150
151 return true;
152}
153
154void
155AccessStrategy::afterRtoTimeout(weak_ptr<pit::Entry> pitWeak, weak_ptr<fib::Entry> fibWeak,
156 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
162 shared_ptr<fib::Entry> fibEntry = fibWeak.lock();
163 if (fibEntry == nullptr) {
164 NFD_LOG_DEBUG(pitEntry->getInterest() << " timeoutFrom " << firstOutFace << " fib-gone");
165 return;
166 }
167
168 NFD_LOG_DEBUG(pitEntry->getInterest() << " timeoutFrom " << firstOutFace <<
169 " multicast-except " << inFace << ',' << firstOutFace);
170 this->multicast(pitEntry, fibEntry, std::unordered_set<FaceId>{inFace, firstOutFace});
171}
172
173void
174AccessStrategy::multicast(shared_ptr<pit::Entry> pitEntry, shared_ptr<fib::Entry> fibEntry,
175 std::unordered_set<FaceId> exceptFaces)
176{
177 for (const fib::NextHop& nexthop : fibEntry->getNextHops()) {
178 shared_ptr<Face> face = nexthop.getFace();
179 if (exceptFaces.count(face->getId()) > 0) {
180 continue;
181 }
182 NFD_LOG_DEBUG(pitEntry->getInterest() << " interestTo " << face->getId() <<
183 " multicast");
184 this->sendInterest(pitEntry, face);
185 }
186}
187
188void
189AccessStrategy::beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry,
190 const Face& inFace, const Data& data)
191{
192 shared_ptr<PitInfo> pi = pitEntry->getStrategyInfo<PitInfo>();
193 if (pi != nullptr) {
194 pi->rtoTimer.cancel();
195 }
196
197 if (pitEntry->getInRecords().empty()) { // already satisfied by another upstream
198 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
199 " not-fastest");
200 return;
201 }
202
203 pit::OutRecordCollection::const_iterator outRecord = pitEntry->getOutRecord(inFace);
204 if (outRecord == pitEntry->getOutRecords().end()) { // no OutRecord
205 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
206 " no-out-record");
207 return;
208 }
209
210 time::steady_clock::Duration rtt = time::steady_clock::now() - outRecord->getLastRenewed();
211 NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() <<
212 " rtt=" << time::duration_cast<time::microseconds>(rtt).count());
213 this->updateMeasurements(inFace, data, time::duration_cast<RttEstimator::Duration>(rtt));
214}
215
216void
217AccessStrategy::updateMeasurements(const Face& inFace, const Data& data,
218 const RttEstimator::Duration& rtt)
219{
220 FaceInfo& fi = m_fit[inFace.getId()];
221 fi.rtt.addMeasurement(rtt);
222
223 shared_ptr<MtInfo> mi = this->addPrefixMeasurements(data);
224 if (mi->lastNexthop != inFace.getId()) {
225 mi->lastNexthop = inFace.getId();
226 mi->rtt = fi.rtt;
227 }
228 else {
229 mi->rtt.addMeasurement(rtt);
230 }
231}
232
233AccessStrategy::MtInfo::MtInfo()
234 : lastNexthop(INVALID_FACEID)
235 , rtt(1, time::milliseconds(1), 0.1)
236{
237}
238
239std::tuple<Name, shared_ptr<AccessStrategy::MtInfo>>
240AccessStrategy::findPrefixMeasurements(const pit::Entry& pitEntry)
241{
242 shared_ptr<measurements::Entry> me = this->getMeasurements().findLongestPrefixMatch(pitEntry);
243 if (me == nullptr) {
244 return std::forward_as_tuple(Name(), nullptr);
245 }
246
247 shared_ptr<MtInfo> mi = me->getStrategyInfo<MtInfo>();
248 BOOST_ASSERT(mi != nullptr);
249 // XXX after runtime strategy change, it's possible that me exists but mi doesn't exist;
250 // this case needs another longest prefix match until mi is found
251 return std::forward_as_tuple(me->getName(), mi);
252}
253
254shared_ptr<AccessStrategy::MtInfo>
255AccessStrategy::addPrefixMeasurements(const Data& data)
256{
257 shared_ptr<measurements::Entry> me;
258 if (data.getName().size() >= 1) {
259 me = this->getMeasurements().get(data.getName().getPrefix(-1));
260 }
261 if (me == nullptr) { // parent of Data Name is not in this strategy, or Data Name is empty
262 me = this->getMeasurements().get(data.getName());
263 // Data Name must be in this strategy
264 BOOST_ASSERT(me != nullptr);
265 }
266
Junxiao Shi7b0f4d12015-05-10 21:40:29 -0700267 static const time::nanoseconds ME_LIFETIME = time::seconds(8);
268 this->getMeasurements().extendLifetime(*me, ME_LIFETIME);
269
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700270 return me->getOrCreateStrategyInfo<MtInfo>();
271}
272
273AccessStrategy::FaceInfo::FaceInfo()
274 : rtt(1, time::milliseconds(1), 0.1)
275{
276}
277
278void
279AccessStrategy::removeFaceInfo(shared_ptr<Face> face)
280{
281 m_fit.erase(face->getId());
282}
283
284} // namespace fw
285} // namespace nfd