blob: 1bb2ebedc82ce1183ec394dea9e78c41a5dc467b [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi330136a2016-03-10 04:53:08 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shifaf3eb02015-02-16 10:50:36 -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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -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/>.
Junxiao Shiaf6569a2014-06-14 00:01:34 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
26#include "forwarder.hpp"
Junxiao Shifef73e42016-03-29 14:15:05 -070027#include "pit-algorithm.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070029#include "core/random.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070030#include "strategy.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070031#include <boost/random/uniform_int_distribution.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080032
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080033namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080034
Junxiao Shi8c8d2182014-01-30 22:33:00 -070035NFD_LOG_INIT("Forwarder");
36
Junxiao Shif3c07812014-03-11 21:48:49 -070037using fw::Strategy;
38
Junxiao Shic041ca32014-02-25 20:01:15 -070039Forwarder::Forwarder()
Junxiao Shidcffdaa2016-07-26 02:23:56 +000040 : m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060041 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080042 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070043 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080044{
Junxiao Shif3c07812014-03-11 21:48:49 -070045 fw::installStrategies(*this);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000046
47 m_faceTable.afterAdd.connect([this] (Face& face) {
48 face.afterReceiveInterest.connect(
49 [this, &face] (const Interest& interest) {
50 this->startProcessInterest(face, interest);
51 });
52 face.afterReceiveData.connect(
53 [this, &face] (const Data& data) {
54 this->startProcessData(face, data);
55 });
56 face.afterReceiveNack.connect(
57 [this, &face] (const lp::Nack& nack) {
58 this->startProcessNack(face, nack);
59 });
60 });
61
62 m_faceTable.beforeRemove.connect([this] (Face& face) {
63 m_fib.removeNextHopFromAllEntries(face);
64 });
Alexander Afanasyev33b72772014-01-26 23:22:58 -080065}
66
Junxiao Shidcffdaa2016-07-26 02:23:56 +000067Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060068
Junxiao Shi0355e9f2015-09-02 07:24:53 -070069void
70Forwarder::startProcessInterest(Face& face, const Interest& interest)
71{
72 // check fields used by forwarding are well-formed
73 try {
74 if (interest.hasLink()) {
75 interest.getLink();
76 }
77 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070078 catch (const tlv::Error&) {
Junxiao Shi0355e9f2015-09-02 07:24:53 -070079 NFD_LOG_DEBUG("startProcessInterest face=" << face.getId() <<
80 " interest=" << interest.getName() << " malformed");
81 // It's safe to call interest.getName() because Name has been fully parsed
82 return;
83 }
84
85 this->onIncomingInterest(face, interest);
86}
87
88void
89Forwarder::startProcessData(Face& face, const Data& data)
90{
91 // check fields used by forwarding are well-formed
92 // (none needed)
93
94 this->onIncomingData(face, data);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060095}
96
Alexander Afanasyev33b72772014-01-26 23:22:58 -080097void
Junxiao Shi5e5e4452015-09-24 16:56:52 -070098Forwarder::startProcessNack(Face& face, const lp::Nack& nack)
99{
100 // check fields used by forwarding are well-formed
101 try {
102 if (nack.getInterest().hasLink()) {
103 nack.getInterest().getLink();
104 }
105 }
106 catch (const tlv::Error&) {
107 NFD_LOG_DEBUG("startProcessNack face=" << face.getId() <<
108 " nack=" << nack.getInterest().getName() <<
109 "~" << nack.getReason() << " malformed");
110 return;
111 }
112
113 this->onIncomingNack(face, nack);
114}
115
116void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700117Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
118{
119 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700120 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
121 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000122 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700123 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -0700124
Junxiao Shi88884492014-02-15 15:57:43 -0700125 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700126 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700127 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700128 if (isViolatingLocalhost) {
129 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
130 " interest=" << interest.getName() << " violates /localhost");
131 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700132 return;
133 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700134
Junxiao Shi330136a2016-03-10 04:53:08 -0700135 // detect duplicate Nonce with Dead Nonce List
136 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
137 if (hasDuplicateNonceInDnl) {
138 // goto Interest loop pipeline
139 this->onInterestLoop(inFace, interest);
140 return;
141 }
142
Junxiao Shid3c792f2014-01-30 00:46:13 -0700143 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700144 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700145
Junxiao Shi330136a2016-03-10 04:53:08 -0700146 // detect duplicate Nonce in PIT entry
Junxiao Shifef73e42016-03-29 14:15:05 -0700147 bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) !=
148 fw::DUPLICATE_NONCE_NONE;
Junxiao Shi330136a2016-03-10 04:53:08 -0700149 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700150 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700151 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700152 return;
153 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700154
Junxiao Shid3c792f2014-01-30 00:46:13 -0700155 // cancel unsatisfy & straggler timer
156 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700157
Junxiao Shif3c07812014-03-11 21:48:49 -0700158 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700159 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600160 m_cs.find(interest,
161 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
162 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700163 }
mzhang4eab72492015-02-25 11:16:09 -0600164 else {
165 this->onContentStoreMiss(inFace, pitEntry, interest);
166 }
167}
Junxiao Shic041ca32014-02-25 20:01:15 -0700168
mzhang4eab72492015-02-25 11:16:09 -0600169void
Junxiao Shi330136a2016-03-10 04:53:08 -0700170Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700171{
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700172 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700173 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700174 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
175 " interest=" << interest.getName() <<
176 " drop");
177 return;
178 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700179
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700180 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
181 " interest=" << interest.getName() <<
182 " send-Nack-duplicate");
183
184 // send Nack with reason=DUPLICATE
185 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
186 lp::Nack nack(interest);
187 nack.setReason(lp::NackReason::DUPLICATE);
188 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700189}
190
191void
mzhang4eab72492015-02-25 11:16:09 -0600192Forwarder::onContentStoreMiss(const Face& inFace,
193 shared_ptr<pit::Entry> pitEntry,
194 const Interest& interest)
195{
196 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
197
198 shared_ptr<Face> face = const_pointer_cast<Face>(inFace.shared_from_this());
Junxiao Shi4846f372016-04-05 13:39:30 -0700199 // insert in-record
mzhang4eab72492015-02-25 11:16:09 -0600200 pitEntry->insertOrUpdateInRecord(face, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700201
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700202 // set PIT unsatisfy timer
203 this->setUnsatisfyTimer(pitEntry);
204
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000205 // dispatch to strategy: after incoming Interest
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000206 this->dispatchToStrategy(pitEntry,
Junxiao Shi8d843142016-07-11 22:42:42 +0000207 [&] (fw::Strategy* strategy) { strategy->afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700208}
209
210void
mzhang4eab72492015-02-25 11:16:09 -0600211Forwarder::onContentStoreHit(const Face& inFace,
212 shared_ptr<pit::Entry> pitEntry,
213 const Interest& interest,
214 const Data& data)
215{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500216 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
mzhang4eab72492015-02-25 11:16:09 -0600217
Junxiao Shicde37ad2015-12-24 01:02:05 -0700218 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600219 // XXX should we lookup PIT for other Interests that also match csMatch?
220
221 // set PIT straggler timer
222 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
223
224 // goto outgoing Data pipeline
225 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
226}
227
Junxiao Shid3c792f2014-01-30 00:46:13 -0700228void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700229Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
230 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700231{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700232 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700233 NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName());
234 return;
235 }
Junxiao Shif3c07812014-03-11 21:48:49 -0700236 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
237 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700238
Junxiao Shi57f0f312014-03-16 11:52:20 -0700239 // scope control
Junxiao Shifef73e42016-03-29 14:15:05 -0700240 if (fw::violatesScope(*pitEntry, outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700241 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700242 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700243 return;
244 }
245
Junxiao Shid3c792f2014-01-30 00:46:13 -0700246 // pick Interest
Junxiao Shi891f47b2016-06-20 00:02:11 +0000247 // The outgoing Interest picked is the last incoming Interest that does not come from outFace.
248 // If all in-records come from outFace, it's fine to pick that.
249 // This happens when there's only one in-record that comes from outFace.
250 // The legit use is for vehicular network; otherwise, strategy shouldn't send to the sole inFace.
Junxiao Shi4846f372016-04-05 13:39:30 -0700251 pit::InRecordCollection::iterator pickedInRecord = std::max_element(
Junxiao Shi891f47b2016-06-20 00:02:11 +0000252 pitEntry->in_begin(), pitEntry->in_end(),
253 [&outFace] (const pit::InRecord& a, const pit::InRecord& b) {
254 bool isOutFaceA = a.getFace().get() == &outFace;
255 bool isOutFaceB = b.getFace().get() == &outFace;
256 return (isOutFaceA > isOutFaceB) ||
257 (isOutFaceA == isOutFaceB && a.getLastRenewed() < b.getLastRenewed());
258 });
Junxiao Shi4846f372016-04-05 13:39:30 -0700259 BOOST_ASSERT(pickedInRecord != pitEntry->in_end());
260 auto interest = const_pointer_cast<Interest>(pickedInRecord->getInterest().shared_from_this());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700261
262 if (wantNewNonce) {
263 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700264 static boost::random::uniform_int_distribution<uint32_t> dist;
265 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700266 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700267
Junxiao Shi4846f372016-04-05 13:39:30 -0700268 // insert out-record
Junxiao Shid938a6b2014-05-11 23:40:29 -0700269 pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700270
Junxiao Shid3c792f2014-01-30 00:46:13 -0700271 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700272 outFace.sendInterest(*interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700273 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700274}
275
276void
Junxiao Shi09498f02014-02-26 19:41:08 -0700277Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278{
Junxiao Shifef73e42016-03-29 14:15:05 -0700279 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700280 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
281 " cannot reject forwarded Interest");
282 return;
283 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700284 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700285
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700286 // cancel unsatisfy & straggler timer
287 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
288
Junxiao Shid3c792f2014-01-30 00:46:13 -0700289 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700290 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700291}
292
293void
294Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry)
295{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700296 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
297
Junxiao Shid3c792f2014-01-30 00:46:13 -0700298 // invoke PIT unsatisfied callback
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000299 this->dispatchToStrategy(pitEntry,
300 [&] (fw::Strategy* strategy) { strategy->beforeExpirePendingInterest(pitEntry); });
Junxiao Shic041ca32014-02-25 20:01:15 -0700301
Junxiao Shia110f262014-10-12 12:35:20 -0700302 // goto Interest Finalize pipeline
303 this->onInterestFinalize(pitEntry, false);
304}
305
306void
307Forwarder::onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
308 const time::milliseconds& dataFreshnessPeriod)
309{
310 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
311 (isSatisfied ? " satisfied" : " unsatisfied"));
312
313 // Dead Nonce List insert if necessary
314 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
315
Junxiao Shif3c07812014-03-11 21:48:49 -0700316 // PIT delete
Junxiao Shid938a6b2014-05-11 23:40:29 -0700317 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600318 m_pit.erase(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700319}
320
321void
322Forwarder::onIncomingData(Face& inFace, const Data& data)
323{
324 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700325 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000326 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700327 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700328
Junxiao Shi88884492014-02-15 15:57:43 -0700329 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700330 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700331 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700332 if (isViolatingLocalhost) {
333 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
334 " data=" << data.getName() << " violates /localhost");
335 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700336 return;
337 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700338
Junxiao Shid3c792f2014-01-30 00:46:13 -0700339 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700340 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
341 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700342 // goto Data unsolicited pipeline
343 this->onDataUnsolicited(inFace, data);
344 return;
345 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700346
Junxiao Shid3c792f2014-01-30 00:46:13 -0700347 // CS insert
348 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700349
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700350 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700351 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700352 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700353 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700354 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700355
Junxiao Shid3c792f2014-01-30 00:46:13 -0700356 // cancel unsatisfy & straggler timer
357 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700358
Junxiao Shid3c792f2014-01-30 00:46:13 -0700359 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700360 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
361 if (inRecord.getExpiry() > now) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700362 pendingDownstreams.insert(inRecord.getFace().get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700363 }
364 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700365
Junxiao Shid938a6b2014-05-11 23:40:29 -0700366 // invoke PIT satisfy callback
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000367 this->dispatchToStrategy(pitEntry,
368 [&] (fw::Strategy* strategy) { strategy->beforeSatisfyInterest(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700369
Junxiao Shi4846f372016-04-05 13:39:30 -0700370 // Dead Nonce List insert if necessary (for out-record of inFace)
Junxiao Shia110f262014-10-12 12:35:20 -0700371 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
372
Junxiao Shid3c792f2014-01-30 00:46:13 -0700373 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700374 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700375 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700376
Junxiao Shid3c792f2014-01-30 00:46:13 -0700377 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700378 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700379 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700380
Junxiao Shid3c792f2014-01-30 00:46:13 -0700381 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700382 for (Face* pendingDownstream : pendingDownstreams) {
383 if (pendingDownstream == &inFace) {
Junxiao Shida006f52014-05-16 11:18:00 -0700384 continue;
385 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700386 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700387 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700388 }
389}
390
391void
392Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
393{
394 // accept to cache?
Junxiao Shicde37ad2015-12-24 01:02:05 -0700395 bool acceptToCache = inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700396 if (acceptToCache) {
397 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700398 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700399 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700400
Junxiao Shif3c07812014-03-11 21:48:49 -0700401 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
402 " data=" << data.getName() <<
403 (acceptToCache ? " cached" : " not cached"));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700404}
405
406void
407Forwarder::onOutgoingData(const Data& data, Face& outFace)
408{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700409 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700410 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
411 return;
412 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700413 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
414
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700415 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700416 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700417 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700418 if (isViolatingLocalhost) {
419 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
420 " data=" << data.getName() << " violates /localhost");
421 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700422 return;
423 }
424
Junxiao Shif3c07812014-03-11 21:48:49 -0700425 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700426
Junxiao Shid3c792f2014-01-30 00:46:13 -0700427 // send Data
428 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700429 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700430}
431
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700432void
433Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
434{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000435 // receive Nack
436 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700437 ++m_counters.nInNacks;
438
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700439 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700440 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700441 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
442 " nack=" << nack.getInterest().getName() <<
443 "~" << nack.getReason() << " face-is-multi-access");
444 return;
445 }
446
447 // PIT match
448 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
449 // if no PIT entry found, drop
450 if (pitEntry == nullptr) {
451 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
452 " nack=" << nack.getInterest().getName() <<
453 "~" << nack.getReason() << " no-PIT-entry");
454 return;
455 }
456
457 // has out-record?
458 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
459 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700460 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700461 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
462 " nack=" << nack.getInterest().getName() <<
463 "~" << nack.getReason() << " no-out-record");
464 return;
465 }
466
467 // if out-record has different Nonce, drop
468 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
469 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
470 " nack=" << nack.getInterest().getName() <<
471 "~" << nack.getReason() << " wrong-Nonce " <<
472 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
473 return;
474 }
475
476 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
477 " nack=" << nack.getInterest().getName() <<
478 "~" << nack.getReason() << " OK");
479
480 // record Nack on out-record
481 outRecord->setIncomingNack(nack);
482
483 // trigger strategy: after receive NACK
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000484 this->dispatchToStrategy(pitEntry,
Junxiao Shi8d843142016-07-11 22:42:42 +0000485 [&] (fw::Strategy* strategy) { strategy->afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700486}
487
488void
489Forwarder::onOutgoingNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace,
490 const lp::NackHeader& nack)
491{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700492 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700493 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
494 " nack=" << pitEntry->getInterest().getName() <<
495 "~" << nack.getReason() << " no-in-record");
496 return;
497 }
498
499 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700500 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700501
502 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700503 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700504 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
505 " nack=" << pitEntry->getInterest().getName() <<
506 "~" << nack.getReason() << " no-in-record");
507 return;
508 }
509
510 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700511 if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700512 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
513 " nack=" << pitEntry->getInterest().getName() <<
514 "~" << nack.getReason() << " face-is-multi-access");
515 return;
516 }
517
518 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
519 " nack=" << pitEntry->getInterest().getName() <<
520 "~" << nack.getReason() << " OK");
521
522 // create Nack packet with the Interest from in-record
523 lp::Nack nackPkt(inRecord->getInterest());
524 nackPkt.setHeader(nack);
525
526 // erase in-record
527 pitEntry->deleteInRecord(outFace);
528
529 // send Nack on face
530 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700531 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700532}
533
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000534const fib::Entry&
535Forwarder::lookupFib(const pit::Entry& pitEntry) const
536{
537 const Interest& interest = pitEntry.getInterest();
538 // has Link object?
539 if (!interest.hasLink()) {
540 // FIB lookup with Interest name
Junxiao Shia6de4292016-07-12 02:08:10 +0000541 const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(pitEntry);
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000542 NFD_LOG_TRACE("lookupFib noLinkObject found=" << fibEntry.getPrefix());
543 return fibEntry;
544 }
545
546 const Link& link = interest.getLink();
547
548 // in producer region?
549 if (m_networkRegionTable.isInProducerRegion(link)) {
550 // FIB lookup with Interest name
Junxiao Shia6de4292016-07-12 02:08:10 +0000551 const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(pitEntry);
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000552 NFD_LOG_TRACE("lookupFib inProducerRegion found=" << fibEntry.getPrefix());
553 return fibEntry;
554 }
555
556 // has SelectedDelegation?
557 if (interest.hasSelectedDelegation()) {
558 // FIB lookup with SelectedDelegation
559 Name selectedDelegation = interest.getSelectedDelegation();
Junxiao Shia6de4292016-07-12 02:08:10 +0000560 const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(selectedDelegation);
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000561 NFD_LOG_TRACE("lookupFib hasSelectedDelegation=" << selectedDelegation << " found=" << fibEntry.getPrefix());
562 return fibEntry;
563 }
564
565 // FIB lookup with first delegation Name
Junxiao Shia6de4292016-07-12 02:08:10 +0000566 const fib::Entry& fibEntry0 = m_fib.findLongestPrefixMatch(link.getDelegations().begin()->second);
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000567 // in default-free zone?
568 bool isDefaultFreeZone = !(fibEntry0.getPrefix().size() == 0 && fibEntry0.hasNextHops());
569 if (!isDefaultFreeZone) {
570 NFD_LOG_TRACE("onContentStoreMiss inConsumerRegion found=" << fibEntry0.getPrefix());
571 return fibEntry0;
572 }
573
574 // choose and set SelectedDelegation
575 for (const std::pair<uint32_t, Name>& delegation : link.getDelegations()) {
576 const Name& delegationName = delegation.second;
Junxiao Shia6de4292016-07-12 02:08:10 +0000577 const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(delegationName);
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000578 if (fibEntry.hasNextHops()) {
579 /// \todo Don't modify in-record Interests.
580 /// Set SelectedDelegation in outgoing Interest pipeline.
581 std::for_each(pitEntry.in_begin(), pitEntry.in_end(),
582 [&delegationName] (const pit::InRecord& inR) {
583 const_cast<Interest&>(inR.getInterest()).setSelectedDelegation(delegationName);
584 });
585 NFD_LOG_TRACE("onContentStoreMiss enterDefaultFreeZone"
586 << " setSelectedDelegation=" << delegationName);
587 return fibEntry;
588 }
589 }
590 BOOST_ASSERT(false);
591 return fibEntry0;
592}
593
Junxiao Shid3c792f2014-01-30 00:46:13 -0700594static inline bool
595compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
596{
597 return a.getExpiry() < b.getExpiry();
598}
599
600void
601Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry)
602{
Junxiao Shi4846f372016-04-05 13:39:30 -0700603 pit::InRecordCollection::iterator lastExpiring =
604 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700605
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700606 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700607 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
608 if (lastExpiryFromNow <= time::seconds::zero()) {
609 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700610 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700611
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700612 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700613 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700614 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
615}
616
617void
Junxiao Shia110f262014-10-12 12:35:20 -0700618Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
619 const time::milliseconds& dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700620{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700621 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700622
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700623 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700624 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700625 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700626}
627
628void
629Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry)
630{
Junxiao Shic041ca32014-02-25 20:01:15 -0700631 scheduler::cancel(pitEntry->m_unsatisfyTimer);
632 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700633}
634
Junxiao Shia110f262014-10-12 12:35:20 -0700635static inline void
636insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
637 const pit::OutRecord& outRecord)
638{
639 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
640}
641
642void
643Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
644 const time::milliseconds& dataFreshnessPeriod,
645 Face* upstream)
646{
647 // need Dead Nonce List insert?
648 bool needDnl = false;
649 if (isSatisfied) {
650 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
651 // Data never becomes stale if it doesn't have FreshnessPeriod field
652 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
653 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
654 }
655 else {
656 needDnl = true;
657 }
658
659 if (!needDnl) {
660 return;
661 }
662
663 // Dead Nonce List insert
664 if (upstream == 0) {
665 // insert all outgoing Nonces
666 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
667 std::for_each(outRecords.begin(), outRecords.end(),
668 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
669 }
670 else {
671 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700672 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700673 if (outRecord != pitEntry.getOutRecords().end()) {
674 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
675 }
676 }
677}
678
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800679} // namespace nfd