blob: 5cb10def7321b14a82d95034110c5d4a7956e3e9 [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 Shi00dc9142016-11-21 14:23:12 +000027#include "algorithm.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070029#include "strategy.hpp"
Junxiao Shi02b73f52016-07-28 01:48:27 +000030#include "table/cleanup.hpp"
Junxiao Shicbc8e942016-09-06 03:17:45 +000031#include <ndn-cxx/lp/tags.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 Shic041ca32014-02-25 20:01:15 -070037Forwarder::Forwarder()
Junxiao Shi9685cc52016-08-29 12:47:05 +000038 : m_unsolicitedDataPolicy(new fw::DefaultUnsolicitedDataPolicy())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000039 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060040 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080041 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070042 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080043{
Junxiao Shif3c07812014-03-11 21:48:49 -070044 fw::installStrategies(*this);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000045
46 m_faceTable.afterAdd.connect([this] (Face& face) {
47 face.afterReceiveInterest.connect(
48 [this, &face] (const Interest& interest) {
49 this->startProcessInterest(face, interest);
50 });
51 face.afterReceiveData.connect(
52 [this, &face] (const Data& data) {
53 this->startProcessData(face, data);
54 });
55 face.afterReceiveNack.connect(
56 [this, &face] (const lp::Nack& nack) {
57 this->startProcessNack(face, nack);
58 });
59 });
60
61 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000062 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000063 });
Alexander Afanasyev33b72772014-01-26 23:22:58 -080064}
65
Junxiao Shidcffdaa2016-07-26 02:23:56 +000066Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060067
Junxiao Shi0355e9f2015-09-02 07:24:53 -070068void
69Forwarder::startProcessInterest(Face& face, const Interest& interest)
70{
71 // check fields used by forwarding are well-formed
72 try {
73 if (interest.hasLink()) {
74 interest.getLink();
75 }
76 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070077 catch (const tlv::Error&) {
Junxiao Shi0355e9f2015-09-02 07:24:53 -070078 NFD_LOG_DEBUG("startProcessInterest face=" << face.getId() <<
79 " interest=" << interest.getName() << " malformed");
80 // It's safe to call interest.getName() because Name has been fully parsed
81 return;
82 }
83
84 this->onIncomingInterest(face, interest);
85}
86
87void
88Forwarder::startProcessData(Face& face, const Data& data)
89{
90 // check fields used by forwarding are well-formed
91 // (none needed)
92
93 this->onIncomingData(face, data);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060094}
95
Alexander Afanasyev33b72772014-01-26 23:22:58 -080096void
Junxiao Shi5e5e4452015-09-24 16:56:52 -070097Forwarder::startProcessNack(Face& face, const lp::Nack& nack)
98{
99 // check fields used by forwarding are well-formed
100 try {
101 if (nack.getInterest().hasLink()) {
102 nack.getInterest().getLink();
103 }
104 }
105 catch (const tlv::Error&) {
106 NFD_LOG_DEBUG("startProcessNack face=" << face.getId() <<
107 " nack=" << nack.getInterest().getName() <<
108 "~" << nack.getReason() << " malformed");
109 return;
110 }
111
112 this->onIncomingNack(face, nack);
113}
114
115void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700116Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
117{
118 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700119 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
120 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000121 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700122 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -0700123
Junxiao Shi88884492014-02-15 15:57:43 -0700124 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700125 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700126 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700127 if (isViolatingLocalhost) {
128 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
129 " interest=" << interest.getName() << " violates /localhost");
130 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700131 return;
132 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700133
Junxiao Shi330136a2016-03-10 04:53:08 -0700134 // detect duplicate Nonce with Dead Nonce List
135 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
136 if (hasDuplicateNonceInDnl) {
137 // goto Interest loop pipeline
138 this->onInterestLoop(inFace, interest);
139 return;
140 }
141
Junxiao Shid3c792f2014-01-30 00:46:13 -0700142 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700143 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700144
Junxiao Shi330136a2016-03-10 04:53:08 -0700145 // detect duplicate Nonce in PIT entry
Junxiao Shifef73e42016-03-29 14:15:05 -0700146 bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) !=
147 fw::DUPLICATE_NONCE_NONE;
Junxiao Shi330136a2016-03-10 04:53:08 -0700148 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700149 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700150 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700151 return;
152 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700153
Junxiao Shid3c792f2014-01-30 00:46:13 -0700154 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000155 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700156
Spyridon Mastorakisd2b262a2014-12-05 22:43:34 -0800157 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
158 bool isPending = inRecords.begin() != inRecords.end();
159 if (!isPending) {
160 if (m_csFromNdnSim == nullptr) {
161 m_cs.find(interest,
162 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
163 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
164 }
165 else {
166 shared_ptr<Data> match = m_csFromNdnSim->Lookup(interest.shared_from_this());
167 if (match != nullptr) {
168 this->onContentStoreHit(inFace, pitEntry, interest, *match);
169 }
170 else {
171 this->onContentStoreMiss(inFace, pitEntry, interest);
172 }
173 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700174 }
mzhang4eab72492015-02-25 11:16:09 -0600175 else {
176 this->onContentStoreMiss(inFace, pitEntry, interest);
177 }
178}
Junxiao Shic041ca32014-02-25 20:01:15 -0700179
mzhang4eab72492015-02-25 11:16:09 -0600180void
Junxiao Shi330136a2016-03-10 04:53:08 -0700181Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700182{
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700183 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700184 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700185 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
186 " interest=" << interest.getName() <<
187 " drop");
188 return;
189 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700190
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700191 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
192 " interest=" << interest.getName() <<
193 " send-Nack-duplicate");
194
195 // send Nack with reason=DUPLICATE
196 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
197 lp::Nack nack(interest);
198 nack.setReason(lp::NackReason::DUPLICATE);
199 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700200}
201
202void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000203Forwarder::onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600204 const Interest& interest)
205{
206 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
207
Junxiao Shi4846f372016-04-05 13:39:30 -0700208 // insert in-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000209 pitEntry->insertOrUpdateInRecord(const_cast<Face&>(inFace), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700210
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700211 // set PIT unsatisfy timer
212 this->setUnsatisfyTimer(pitEntry);
213
Junxiao Shie342e8d2016-09-18 16:48:00 +0000214 // has NextHopFaceId?
215 shared_ptr<lp::NextHopFaceIdTag> nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
216 if (nextHopTag != nullptr) {
217 // chosen NextHop face exists?
218 Face* nextHopFace = m_faceTable.get(*nextHopTag);
219 if (nextHopFace != nullptr) {
Junxiao Shic5f651f2016-11-17 22:58:12 +0000220 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName() << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000221 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000222 // scope control is unnecessary, because privileged app explicitly wants to forward
223 this->onOutgoingInterest(pitEntry, *nextHopFace, interest);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000224 }
225 return;
226 }
227
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000228 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000229 this->dispatchToStrategy(*pitEntry,
230 [&] (fw::Strategy& strategy) { strategy.afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700231}
232
233void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000234Forwarder::onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
235 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600236{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500237 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
mzhang4eab72492015-02-25 11:16:09 -0600238
Junxiao Shicde37ad2015-12-24 01:02:05 -0700239 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600240 // XXX should we lookup PIT for other Interests that also match csMatch?
241
242 // set PIT straggler timer
243 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
244
245 // goto outgoing Data pipeline
246 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
247}
248
Junxiao Shid3c792f2014-01-30 00:46:13 -0700249void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000250Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700251{
Junxiao Shif3c07812014-03-11 21:48:49 -0700252 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
253 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700254
Junxiao Shi4846f372016-04-05 13:39:30 -0700255 // insert out-record
Junxiao Shic5f651f2016-11-17 22:58:12 +0000256 pitEntry->insertOrUpdateOutRecord(outFace, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700257
Junxiao Shid3c792f2014-01-30 00:46:13 -0700258 // send Interest
Junxiao Shic5f651f2016-11-17 22:58:12 +0000259 outFace.sendInterest(interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700260 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700261}
262
263void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000264Forwarder::onInterestReject(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700265{
Junxiao Shifef73e42016-03-29 14:15:05 -0700266 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700267 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
268 " cannot reject forwarded Interest");
269 return;
270 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700271 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700272
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700273 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000274 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700275
Junxiao Shid3c792f2014-01-30 00:46:13 -0700276 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700277 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278}
279
280void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000281Forwarder::onInterestUnsatisfied(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700282{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700283 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
284
Junxiao Shid3c792f2014-01-30 00:46:13 -0700285 // invoke PIT unsatisfied callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000286 this->dispatchToStrategy(*pitEntry,
287 [&] (fw::Strategy& strategy) { strategy.beforeExpirePendingInterest(pitEntry); });
Junxiao Shic041ca32014-02-25 20:01:15 -0700288
Junxiao Shia110f262014-10-12 12:35:20 -0700289 // goto Interest Finalize pipeline
290 this->onInterestFinalize(pitEntry, false);
291}
292
293void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000294Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
295 time::milliseconds dataFreshnessPeriod)
Junxiao Shia110f262014-10-12 12:35:20 -0700296{
297 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
298 (isSatisfied ? " satisfied" : " unsatisfied"));
299
300 // Dead Nonce List insert if necessary
301 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
302
Junxiao Shif3c07812014-03-11 21:48:49 -0700303 // PIT delete
Junxiao Shib9420cf2016-08-13 04:38:52 +0000304 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000305 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700306}
307
308void
309Forwarder::onIncomingData(Face& inFace, const Data& data)
310{
311 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700312 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000313 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700314 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700315
Junxiao Shi88884492014-02-15 15:57:43 -0700316 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700317 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700318 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700319 if (isViolatingLocalhost) {
320 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
321 " data=" << data.getName() << " violates /localhost");
322 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700323 return;
324 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700325
Junxiao Shid3c792f2014-01-30 00:46:13 -0700326 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700327 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
328 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700329 // goto Data unsolicited pipeline
330 this->onDataUnsolicited(inFace, data);
331 return;
332 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700333
Junxiao Shid3c792f2014-01-30 00:46:13 -0700334 // CS insert
Spyridon Mastorakisd2b262a2014-12-05 22:43:34 -0800335 if (m_csFromNdnSim == nullptr)
336 m_cs.insert(data);
337 else
338 m_csFromNdnSim->Add(data.shared_from_this());
Junxiao Shic041ca32014-02-25 20:01:15 -0700339
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700340 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700341 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700342 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700343 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700344 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700345
Junxiao Shid3c792f2014-01-30 00:46:13 -0700346 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000347 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700348
Junxiao Shid3c792f2014-01-30 00:46:13 -0700349 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700350 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
351 if (inRecord.getExpiry() > now) {
Junxiao Shi9cff7792016-08-01 21:45:11 +0000352 pendingDownstreams.insert(&inRecord.getFace());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700353 }
354 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700355
Junxiao Shid938a6b2014-05-11 23:40:29 -0700356 // invoke PIT satisfy callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000357 this->dispatchToStrategy(*pitEntry,
358 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700359
Junxiao Shi4846f372016-04-05 13:39:30 -0700360 // Dead Nonce List insert if necessary (for out-record of inFace)
Junxiao Shia110f262014-10-12 12:35:20 -0700361 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
362
Junxiao Shid3c792f2014-01-30 00:46:13 -0700363 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700364 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700365 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700366
Junxiao Shid3c792f2014-01-30 00:46:13 -0700367 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700368 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700369 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700370
Junxiao Shid3c792f2014-01-30 00:46:13 -0700371 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700372 for (Face* pendingDownstream : pendingDownstreams) {
373 if (pendingDownstream == &inFace) {
Junxiao Shida006f52014-05-16 11:18:00 -0700374 continue;
375 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700376 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700377 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700378 }
379}
380
381void
382Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
383{
384 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000385 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
386 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700387 // CS insert
Spyridon Mastorakisd2b262a2014-12-05 22:43:34 -0800388 if (m_csFromNdnSim == nullptr)
389 m_cs.insert(data, true);
390 else
391 m_csFromNdnSim->Add(data.shared_from_this());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700392 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700393
Junxiao Shif3c07812014-03-11 21:48:49 -0700394 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
395 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000396 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700397}
398
399void
400Forwarder::onOutgoingData(const Data& data, Face& outFace)
401{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700402 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700403 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
404 return;
405 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700406 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
407
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700408 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700409 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700410 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700411 if (isViolatingLocalhost) {
412 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
413 " data=" << data.getName() << " violates /localhost");
414 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700415 return;
416 }
417
Junxiao Shif3c07812014-03-11 21:48:49 -0700418 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700419
Junxiao Shid3c792f2014-01-30 00:46:13 -0700420 // send Data
421 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700422 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700423}
424
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700425void
426Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
427{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000428 // receive Nack
429 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700430 ++m_counters.nInNacks;
431
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700432 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700433 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700434 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
435 " nack=" << nack.getInterest().getName() <<
436 "~" << nack.getReason() << " face-is-multi-access");
437 return;
438 }
439
440 // PIT match
441 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
442 // if no PIT entry found, drop
443 if (pitEntry == nullptr) {
444 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
445 " nack=" << nack.getInterest().getName() <<
446 "~" << nack.getReason() << " no-PIT-entry");
447 return;
448 }
449
450 // has out-record?
451 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
452 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700453 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700454 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
455 " nack=" << nack.getInterest().getName() <<
456 "~" << nack.getReason() << " no-out-record");
457 return;
458 }
459
460 // if out-record has different Nonce, drop
461 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
462 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
463 " nack=" << nack.getInterest().getName() <<
464 "~" << nack.getReason() << " wrong-Nonce " <<
465 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
466 return;
467 }
468
469 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
470 " nack=" << nack.getInterest().getName() <<
471 "~" << nack.getReason() << " OK");
472
473 // record Nack on out-record
474 outRecord->setIncomingNack(nack);
475
476 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000477 this->dispatchToStrategy(*pitEntry,
478 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700479}
480
481void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000482Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700483 const lp::NackHeader& nack)
484{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700485 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700486 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
487 " nack=" << pitEntry->getInterest().getName() <<
488 "~" << nack.getReason() << " no-in-record");
489 return;
490 }
491
492 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700493 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700494
495 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700496 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700497 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
498 " nack=" << pitEntry->getInterest().getName() <<
499 "~" << nack.getReason() << " no-in-record");
500 return;
501 }
502
503 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700504 if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700505 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
506 " nack=" << pitEntry->getInterest().getName() <<
507 "~" << nack.getReason() << " face-is-multi-access");
508 return;
509 }
510
511 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
512 " nack=" << pitEntry->getInterest().getName() <<
513 "~" << nack.getReason() << " OK");
514
515 // create Nack packet with the Interest from in-record
516 lp::Nack nackPkt(inRecord->getInterest());
517 nackPkt.setHeader(nack);
518
519 // erase in-record
520 pitEntry->deleteInRecord(outFace);
521
522 // send Nack on face
523 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700524 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700525}
526
Junxiao Shid3c792f2014-01-30 00:46:13 -0700527static inline bool
528compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
529{
530 return a.getExpiry() < b.getExpiry();
531}
532
533void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000534Forwarder::setUnsatisfyTimer(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700535{
Junxiao Shi4846f372016-04-05 13:39:30 -0700536 pit::InRecordCollection::iterator lastExpiring =
537 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700538
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700539 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700540 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
541 if (lastExpiryFromNow <= time::seconds::zero()) {
542 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700543 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700544
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700545 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700546 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700547 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
548}
549
550void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000551Forwarder::setStragglerTimer(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
552 time::milliseconds dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700553{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700554 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700555
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700556 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700557 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700558 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700559}
560
561void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000562Forwarder::cancelUnsatisfyAndStragglerTimer(pit::Entry& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700563{
Junxiao Shib9420cf2016-08-13 04:38:52 +0000564 scheduler::cancel(pitEntry.m_unsatisfyTimer);
565 scheduler::cancel(pitEntry.m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700566}
567
Junxiao Shia110f262014-10-12 12:35:20 -0700568static inline void
569insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
570 const pit::OutRecord& outRecord)
571{
572 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
573}
574
575void
576Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
Junxiao Shib9420cf2016-08-13 04:38:52 +0000577 time::milliseconds dataFreshnessPeriod, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700578{
579 // need Dead Nonce List insert?
580 bool needDnl = false;
581 if (isSatisfied) {
582 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
583 // Data never becomes stale if it doesn't have FreshnessPeriod field
584 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
585 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
586 }
587 else {
588 needDnl = true;
589 }
590
591 if (!needDnl) {
592 return;
593 }
594
595 // Dead Nonce List insert
596 if (upstream == 0) {
597 // insert all outgoing Nonces
598 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
599 std::for_each(outRecords.begin(), outRecords.end(),
600 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
601 }
602 else {
603 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700604 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700605 if (outRecord != pitEntry.getOutRecords().end()) {
606 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
607 }
608 }
609}
610
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800611} // namespace nfd