blob: d55da5afd24358a5271d77054a98c86296203af7 [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shifc2e13d2017-07-25 02:08:48 +00002/*
Teng Liang63086442018-02-25 20:39:42 -07003 * Copyright (c) 2014-2018, 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"
Davide Pesaventoa3148082018-04-12 18:21:54 -040027
Junxiao Shi00dc9142016-11-21 14:23:12 +000028#include "algorithm.hpp"
Junxiao Shic34d1672016-12-09 15:57:59 +000029#include "best-route-strategy2.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070030#include "strategy.hpp"
Junxiao Shic34d1672016-12-09 15:57:59 +000031#include "core/logger.hpp"
Junxiao Shi02b73f52016-07-28 01:48:27 +000032#include "table/cleanup.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040033
Junxiao Shicbc8e942016-09-06 03:17:45 +000034#include <ndn-cxx/lp/tags.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080035
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080036namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080037
Davide Pesaventoa3148082018-04-12 18:21:54 -040038NFD_LOG_INIT(Forwarder);
Junxiao Shi8c8d2182014-01-30 22:33:00 -070039
Junxiao Shic34d1672016-12-09 15:57:59 +000040static Name
41getDefaultStrategyName()
42{
Junxiao Shi037f4ab2016-12-13 04:27:06 +000043 return fw::BestRouteStrategy2::getStrategyName();
Junxiao Shic34d1672016-12-09 15:57:59 +000044}
45
Junxiao Shic041ca32014-02-25 20:01:15 -070046Forwarder::Forwarder()
Junxiao Shi9685cc52016-08-29 12:47:05 +000047 : m_unsolicitedDataPolicy(new fw::DefaultUnsolicitedDataPolicy())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000048 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060049 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080050 , m_measurements(m_nameTree)
Junxiao Shic34d1672016-12-09 15:57:59 +000051 , m_strategyChoice(*this)
Alexander Afanasyev33b72772014-01-26 23:22:58 -080052{
Junxiao Shidcffdaa2016-07-26 02:23:56 +000053 m_faceTable.afterAdd.connect([this] (Face& face) {
54 face.afterReceiveInterest.connect(
55 [this, &face] (const Interest& interest) {
56 this->startProcessInterest(face, interest);
57 });
58 face.afterReceiveData.connect(
59 [this, &face] (const Data& data) {
60 this->startProcessData(face, data);
61 });
62 face.afterReceiveNack.connect(
63 [this, &face] (const lp::Nack& nack) {
64 this->startProcessNack(face, nack);
65 });
Eric Newberry41aba102017-11-01 16:42:13 -070066 face.onDroppedInterest.connect(
67 [this, &face] (const Interest& interest) {
68 this->onDroppedInterest(face, interest);
69 });
Junxiao Shidcffdaa2016-07-26 02:23:56 +000070 });
71
72 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000073 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000074 });
Junxiao Shic34d1672016-12-09 15:57:59 +000075
76 m_strategyChoice.setDefaultStrategy(getDefaultStrategyName());
Alexander Afanasyev33b72772014-01-26 23:22:58 -080077}
78
Junxiao Shidcffdaa2016-07-26 02:23:56 +000079Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060080
Junxiao Shi0355e9f2015-09-02 07:24:53 -070081void
Junxiao Shid3c792f2014-01-30 00:46:13 -070082Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
83{
84 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -070085 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
86 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +000087 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -070088 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -070089
Junxiao Shi88884492014-02-15 15:57:43 -070090 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -070091 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -070092 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -070093 if (isViolatingLocalhost) {
94 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
95 " interest=" << interest.getName() << " violates /localhost");
96 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -070097 return;
98 }
Junxiao Shic041ca32014-02-25 20:01:15 -070099
Junxiao Shi330136a2016-03-10 04:53:08 -0700100 // detect duplicate Nonce with Dead Nonce List
101 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
102 if (hasDuplicateNonceInDnl) {
103 // goto Interest loop pipeline
104 this->onInterestLoop(inFace, interest);
105 return;
106 }
107
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000108 // strip forwarding hint if Interest has reached producer region
109 if (!interest.getForwardingHint().empty() &&
110 m_networkRegionTable.isInProducerRegion(interest.getForwardingHint())) {
Junxiao Shif9858fd2017-02-01 16:22:44 +0000111 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
112 " interest=" << interest.getName() << " reaching-producer-region");
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000113 const_cast<Interest&>(interest).setForwardingHint({});
Junxiao Shif9858fd2017-02-01 16:22:44 +0000114 }
115
Junxiao Shid3c792f2014-01-30 00:46:13 -0700116 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700117 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700118
Junxiao Shi330136a2016-03-10 04:53:08 -0700119 // detect duplicate Nonce in PIT entry
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000120 int dnw = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace);
121 bool hasDuplicateNonceInPit = dnw != fw::DUPLICATE_NONCE_NONE;
122 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
123 // for p2p face: duplicate Nonce from same incoming face is not loop
124 hasDuplicateNonceInPit = hasDuplicateNonceInPit && !(dnw & fw::DUPLICATE_NONCE_IN_SAME);
125 }
Junxiao Shi330136a2016-03-10 04:53:08 -0700126 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700127 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700128 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700129 return;
130 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700131
Junxiao Shif3c07812014-03-11 21:48:49 -0700132 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700133 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600134 m_cs.find(interest,
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400135 bind(&Forwarder::onContentStoreHit, this, std::ref(inFace), pitEntry, _1, _2),
136 bind(&Forwarder::onContentStoreMiss, this, std::ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700137 }
mzhang4eab72492015-02-25 11:16:09 -0600138 else {
139 this->onContentStoreMiss(inFace, pitEntry, interest);
140 }
141}
Junxiao Shic041ca32014-02-25 20:01:15 -0700142
mzhang4eab72492015-02-25 11:16:09 -0600143void
Junxiao Shi330136a2016-03-10 04:53:08 -0700144Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700145{
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700146 // if multi-access or ad hoc face, drop
147 if (inFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700148 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
149 " interest=" << interest.getName() <<
150 " drop");
151 return;
152 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700153
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700154 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
155 " interest=" << interest.getName() <<
156 " send-Nack-duplicate");
157
158 // send Nack with reason=DUPLICATE
159 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
160 lp::Nack nack(interest);
161 nack.setReason(lp::NackReason::DUPLICATE);
162 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700163}
164
Teng Liang7003e0b2018-03-03 16:03:30 -0700165static inline bool
166compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
167{
168 return a.getExpiry() < b.getExpiry();
169}
170
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700171void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000172Forwarder::onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600173 const Interest& interest)
174{
175 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000176 ++m_counters.nCsMisses;
mzhang4eab72492015-02-25 11:16:09 -0600177
Junxiao Shi4846f372016-04-05 13:39:30 -0700178 // insert in-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000179 pitEntry->insertOrUpdateInRecord(const_cast<Face&>(inFace), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700180
Teng Liang7003e0b2018-03-03 16:03:30 -0700181 // set PIT expiry timer to the time that the last PIT in-record expires
182 auto lastExpiring = std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
183 auto lastExpiryFromNow = lastExpiring->getExpiry() - time::steady_clock::now();
184 this->setExpiryTimer(pitEntry, time::duration_cast<time::milliseconds>(lastExpiryFromNow));
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700185
Junxiao Shie342e8d2016-09-18 16:48:00 +0000186 // has NextHopFaceId?
187 shared_ptr<lp::NextHopFaceIdTag> nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
188 if (nextHopTag != nullptr) {
189 // chosen NextHop face exists?
190 Face* nextHopFace = m_faceTable.get(*nextHopTag);
191 if (nextHopFace != nullptr) {
Junxiao Shic5f651f2016-11-17 22:58:12 +0000192 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName() << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000193 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000194 // scope control is unnecessary, because privileged app explicitly wants to forward
195 this->onOutgoingInterest(pitEntry, *nextHopFace, interest);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000196 }
197 return;
198 }
199
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000200 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000201 this->dispatchToStrategy(*pitEntry,
202 [&] (fw::Strategy& strategy) { strategy.afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700203}
204
205void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000206Forwarder::onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
207 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600208{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500209 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000210 ++m_counters.nCsHits;
mzhang4eab72492015-02-25 11:16:09 -0600211
Junxiao Shicde37ad2015-12-24 01:02:05 -0700212 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600213 // XXX should we lookup PIT for other Interests that also match csMatch?
214
Teng Liang6f09ab62018-03-01 20:04:08 -0700215 pitEntry->isSatisfied = true;
216 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
217
Teng Liang85a36632018-03-21 05:59:34 -0700218 // set PIT expiry timer to now
219 this->setExpiryTimer(pitEntry, 0_ms);
mzhang4eab72492015-02-25 11:16:09 -0600220
Teng Liang85a36632018-03-21 05:59:34 -0700221 // dispatch to strategy: after Content Store hit
222 this->dispatchToStrategy(*pitEntry,
223 [&] (fw::Strategy& strategy) { strategy.afterContentStoreHit(pitEntry, inFace, data); });
mzhang4eab72492015-02-25 11:16:09 -0600224}
225
Junxiao Shid3c792f2014-01-30 00:46:13 -0700226void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000227Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700228{
Junxiao Shif3c07812014-03-11 21:48:49 -0700229 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
230 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700231
Junxiao Shi4846f372016-04-05 13:39:30 -0700232 // insert out-record
Junxiao Shic5f651f2016-11-17 22:58:12 +0000233 pitEntry->insertOrUpdateOutRecord(outFace, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700234
Junxiao Shid3c792f2014-01-30 00:46:13 -0700235 // send Interest
Junxiao Shic5f651f2016-11-17 22:58:12 +0000236 outFace.sendInterest(interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700237 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700238}
239
240void
Teng Liang6f09ab62018-03-01 20:04:08 -0700241Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shia110f262014-10-12 12:35:20 -0700242{
243 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
Teng Liang6f09ab62018-03-01 20:04:08 -0700244 (pitEntry->isSatisfied ? " satisfied" : " unsatisfied"));
Junxiao Shia110f262014-10-12 12:35:20 -0700245
246 // Dead Nonce List insert if necessary
Teng Liang6f09ab62018-03-01 20:04:08 -0700247 this->insertDeadNonceList(*pitEntry, 0);
Junxiao Shia110f262014-10-12 12:35:20 -0700248
Ju Pan6eb1ac92018-10-26 16:26:15 +0000249 // Increment satisfied/unsatisfied Interests counter
250 if (pitEntry->isSatisfied) {
251 ++m_counters.nSatisfiedInterests;
252 }
253 else {
254 ++m_counters.nUnsatisfiedInterests;
255 }
256
Junxiao Shif3c07812014-03-11 21:48:49 -0700257 // PIT delete
Teng Liang7003e0b2018-03-03 16:03:30 -0700258 scheduler::cancel(pitEntry->expiryTimer);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000259 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700260}
261
262void
263Forwarder::onIncomingData(Face& inFace, const Data& data)
264{
265 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700266 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000267 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700268 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700269
Junxiao Shi88884492014-02-15 15:57:43 -0700270 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700271 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700272 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700273 if (isViolatingLocalhost) {
274 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
275 " data=" << data.getName() << " violates /localhost");
276 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700277 return;
278 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700279
Junxiao Shid3c792f2014-01-30 00:46:13 -0700280 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700281 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
Teng Liang43bb2312018-03-26 04:16:42 -0700282 if (pitMatches.size() == 0) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700283 // goto Data unsolicited pipeline
284 this->onDataUnsolicited(inFace, data);
285 return;
286 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700287
Junxiao Shid3c792f2014-01-30 00:46:13 -0700288 // CS insert
289 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700290
Teng Liang43bb2312018-03-26 04:16:42 -0700291 // when only one PIT entry is matched, trigger strategy: after receive Data
292 if (pitMatches.size() == 1) {
293 auto& pitEntry = pitMatches.front();
Junxiao Shic041ca32014-02-25 20:01:15 -0700294
Teng Liang43bb2312018-03-26 04:16:42 -0700295 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700296
Teng Liang7003e0b2018-03-03 16:03:30 -0700297 // set PIT expiry timer to now
298 this->setExpiryTimer(pitEntry, 0_ms);
299
Teng Liang43bb2312018-03-26 04:16:42 -0700300 // trigger strategy: after receive Data
Junxiao Shib9420cf2016-08-13 04:38:52 +0000301 this->dispatchToStrategy(*pitEntry,
Teng Liang43bb2312018-03-26 04:16:42 -0700302 [&] (fw::Strategy& strategy) { strategy.afterReceiveData(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700303
Teng Liang43bb2312018-03-26 04:16:42 -0700304 // mark PIT satisfied
Teng Liang6f09ab62018-03-01 20:04:08 -0700305 pitEntry->isSatisfied = true;
306 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
307
Junxiao Shi4846f372016-04-05 13:39:30 -0700308 // Dead Nonce List insert if necessary (for out-record of inFace)
Teng Liang6f09ab62018-03-01 20:04:08 -0700309 this->insertDeadNonceList(*pitEntry, &inFace);
Junxiao Shia110f262014-10-12 12:35:20 -0700310
Teng Liang43bb2312018-03-26 04:16:42 -0700311 // delete PIT entry's out-record
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700312 pitEntry->deleteOutRecord(inFace);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700313 }
Teng Liang43bb2312018-03-26 04:16:42 -0700314 // when more than one PIT entry is matched, trigger strategy: before satisfy Interest,
315 // and send Data to all matched out faces
316 else {
317 std::set<Face*> pendingDownstreams;
318 auto now = time::steady_clock::now();
Junxiao Shic041ca32014-02-25 20:01:15 -0700319
Teng Liang43bb2312018-03-26 04:16:42 -0700320 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
321 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
322
323 // remember pending downstreams
324 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
325 if (inRecord.getExpiry() > now) {
326 pendingDownstreams.insert(&inRecord.getFace());
327 }
328 }
329
330 // set PIT expiry timer to now
331 this->setExpiryTimer(pitEntry, 0_ms);
332
333 // invoke PIT satisfy callback
334 this->dispatchToStrategy(*pitEntry,
335 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
336
337 // mark PIT satisfied
338 pitEntry->isSatisfied = true;
339 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
340
341 // Dead Nonce List insert if necessary (for out-record of inFace)
342 this->insertDeadNonceList(*pitEntry, &inFace);
343
344 // clear PIT entry's in and out records
345 pitEntry->clearInRecords();
346 pitEntry->deleteOutRecord(inFace);
Junxiao Shida006f52014-05-16 11:18:00 -0700347 }
Teng Liang43bb2312018-03-26 04:16:42 -0700348
349 // foreach pending downstream
350 for (Face* pendingDownstream : pendingDownstreams) {
351 if (pendingDownstream->getId() == inFace.getId() &&
352 pendingDownstream->getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
353 continue;
354 }
355 // goto outgoing Data pipeline
356 this->onOutgoingData(data, *pendingDownstream);
357 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700358 }
359}
360
361void
362Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
363{
364 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000365 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
366 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700367 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700368 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700369 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700370
Junxiao Shif3c07812014-03-11 21:48:49 -0700371 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
372 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000373 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700374}
375
376void
377Forwarder::onOutgoingData(const Data& data, Face& outFace)
378{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700379 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700380 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
381 return;
382 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700383 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
384
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700385 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700386 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700387 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700388 if (isViolatingLocalhost) {
389 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
390 " data=" << data.getName() << " violates /localhost");
391 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700392 return;
393 }
394
Junxiao Shif3c07812014-03-11 21:48:49 -0700395 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700396
Junxiao Shid3c792f2014-01-30 00:46:13 -0700397 // send Data
398 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700399 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700400}
401
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700402void
403Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
404{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000405 // receive Nack
406 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700407 ++m_counters.nInNacks;
408
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700409 // if multi-access or ad hoc face, drop
410 if (inFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700411 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
412 " nack=" << nack.getInterest().getName() <<
413 "~" << nack.getReason() << " face-is-multi-access");
414 return;
415 }
416
417 // PIT match
418 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
419 // if no PIT entry found, drop
420 if (pitEntry == nullptr) {
421 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
422 " nack=" << nack.getInterest().getName() <<
423 "~" << nack.getReason() << " no-PIT-entry");
424 return;
425 }
426
427 // has out-record?
428 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
429 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700430 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700431 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
432 " nack=" << nack.getInterest().getName() <<
433 "~" << nack.getReason() << " no-out-record");
434 return;
435 }
436
437 // if out-record has different Nonce, drop
438 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
439 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
440 " nack=" << nack.getInterest().getName() <<
441 "~" << nack.getReason() << " wrong-Nonce " <<
442 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
443 return;
444 }
445
446 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
447 " nack=" << nack.getInterest().getName() <<
448 "~" << nack.getReason() << " OK");
449
450 // record Nack on out-record
451 outRecord->setIncomingNack(nack);
452
Teng Liang7003e0b2018-03-03 16:03:30 -0700453 // set PIT expiry timer to now when all out-record receive Nack
454 if (!fw::hasPendingOutRecords(*pitEntry)) {
455 this->setExpiryTimer(pitEntry, 0_ms);
456 }
457
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700458 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000459 this->dispatchToStrategy(*pitEntry,
460 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700461}
462
463void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000464Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700465 const lp::NackHeader& nack)
466{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700467 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700468 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
469 " nack=" << pitEntry->getInterest().getName() <<
470 "~" << nack.getReason() << " no-in-record");
471 return;
472 }
473
474 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700475 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700476
477 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700478 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700479 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
480 " nack=" << pitEntry->getInterest().getName() <<
481 "~" << nack.getReason() << " no-in-record");
482 return;
483 }
484
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700485 // if multi-access or ad hoc face, drop
486 if (outFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700487 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
488 " nack=" << pitEntry->getInterest().getName() <<
489 "~" << nack.getReason() << " face-is-multi-access");
490 return;
491 }
492
493 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
494 " nack=" << pitEntry->getInterest().getName() <<
495 "~" << nack.getReason() << " OK");
496
497 // create Nack packet with the Interest from in-record
498 lp::Nack nackPkt(inRecord->getInterest());
499 nackPkt.setHeader(nack);
500
501 // erase in-record
502 pitEntry->deleteInRecord(outFace);
503
504 // send Nack on face
505 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700506 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700507}
508
Eric Newberry41aba102017-11-01 16:42:13 -0700509void
510Forwarder::onDroppedInterest(Face& outFace, const Interest& interest)
511{
512 m_strategyChoice.findEffectiveStrategy(interest.getName()).onDroppedInterest(outFace, interest);
513}
514
Junxiao Shid3c792f2014-01-30 00:46:13 -0700515void
Teng Liang7003e0b2018-03-03 16:03:30 -0700516Forwarder::setExpiryTimer(const shared_ptr<pit::Entry>& pitEntry, time::milliseconds duration)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700517{
Teng Liang7003e0b2018-03-03 16:03:30 -0700518 BOOST_ASSERT(duration >= 0_ms);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700519
Teng Liang7003e0b2018-03-03 16:03:30 -0700520 scheduler::cancel(pitEntry->expiryTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700521
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400522 pitEntry->expiryTimer = scheduler::schedule(duration, [=] { onInterestFinalize(pitEntry); });
Junxiao Shia110f262014-10-12 12:35:20 -0700523}
524
525void
Teng Liang6f09ab62018-03-01 20:04:08 -0700526Forwarder::insertDeadNonceList(pit::Entry& pitEntry, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700527{
528 // need Dead Nonce List insert?
Eric Newberryf4056d02017-05-26 17:31:53 +0000529 bool needDnl = true;
Teng Liang6f09ab62018-03-01 20:04:08 -0700530 if (pitEntry.isSatisfied) {
531 BOOST_ASSERT(pitEntry.dataFreshnessPeriod >= 0_ms);
Junxiao Shia110f262014-10-12 12:35:20 -0700532 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
Teng Liang6f09ab62018-03-01 20:04:08 -0700533 pitEntry.dataFreshnessPeriod < m_deadNonceList.getLifetime();
Junxiao Shia110f262014-10-12 12:35:20 -0700534 }
535
536 if (!needDnl) {
537 return;
538 }
539
540 // Dead Nonce List insert
Teng Liangf995f382017-04-04 22:09:39 +0000541 if (upstream == nullptr) {
Junxiao Shia110f262014-10-12 12:35:20 -0700542 // insert all outgoing Nonces
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400543 const auto& outRecords = pitEntry.getOutRecords();
544 std::for_each(outRecords.begin(), outRecords.end(), [&] (const auto& outRecord) {
545 m_deadNonceList.add(pitEntry.getName(), outRecord.getLastNonce());
546 });
Junxiao Shia110f262014-10-12 12:35:20 -0700547 }
548 else {
549 // insert outgoing Nonce of a specific face
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400550 auto outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700551 if (outRecord != pitEntry.getOutRecords().end()) {
552 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
553 }
554 }
555}
556
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800557} // namespace nfd