blob: 7e28db2ad6796146ebbc89bc26aca92ae56cc739 [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
Junxiao Shif3c07812014-03-11 21:48:49 -0700249 // PIT delete
Teng Liang7003e0b2018-03-03 16:03:30 -0700250 scheduler::cancel(pitEntry->expiryTimer);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000251 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700252}
253
254void
255Forwarder::onIncomingData(Face& inFace, const Data& data)
256{
257 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700258 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000259 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700260 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700261
Junxiao Shi88884492014-02-15 15:57:43 -0700262 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700263 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700264 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700265 if (isViolatingLocalhost) {
266 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
267 " data=" << data.getName() << " violates /localhost");
268 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700269 return;
270 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700271
Junxiao Shid3c792f2014-01-30 00:46:13 -0700272 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700273 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
Teng Liang43bb2312018-03-26 04:16:42 -0700274 if (pitMatches.size() == 0) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700275 // goto Data unsolicited pipeline
276 this->onDataUnsolicited(inFace, data);
277 return;
278 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700279
Junxiao Shid3c792f2014-01-30 00:46:13 -0700280 // CS insert
281 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700282
Teng Liang43bb2312018-03-26 04:16:42 -0700283 // when only one PIT entry is matched, trigger strategy: after receive Data
284 if (pitMatches.size() == 1) {
285 auto& pitEntry = pitMatches.front();
Junxiao Shic041ca32014-02-25 20:01:15 -0700286
Teng Liang43bb2312018-03-26 04:16:42 -0700287 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700288
Teng Liang7003e0b2018-03-03 16:03:30 -0700289 // set PIT expiry timer to now
290 this->setExpiryTimer(pitEntry, 0_ms);
291
Teng Liang43bb2312018-03-26 04:16:42 -0700292 // trigger strategy: after receive Data
Junxiao Shib9420cf2016-08-13 04:38:52 +0000293 this->dispatchToStrategy(*pitEntry,
Teng Liang43bb2312018-03-26 04:16:42 -0700294 [&] (fw::Strategy& strategy) { strategy.afterReceiveData(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700295
Teng Liang43bb2312018-03-26 04:16:42 -0700296 // mark PIT satisfied
Teng Liang6f09ab62018-03-01 20:04:08 -0700297 pitEntry->isSatisfied = true;
298 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
299
Junxiao Shi4846f372016-04-05 13:39:30 -0700300 // Dead Nonce List insert if necessary (for out-record of inFace)
Teng Liang6f09ab62018-03-01 20:04:08 -0700301 this->insertDeadNonceList(*pitEntry, &inFace);
Junxiao Shia110f262014-10-12 12:35:20 -0700302
Teng Liang43bb2312018-03-26 04:16:42 -0700303 // delete PIT entry's out-record
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700304 pitEntry->deleteOutRecord(inFace);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700305 }
Teng Liang43bb2312018-03-26 04:16:42 -0700306 // when more than one PIT entry is matched, trigger strategy: before satisfy Interest,
307 // and send Data to all matched out faces
308 else {
309 std::set<Face*> pendingDownstreams;
310 auto now = time::steady_clock::now();
Junxiao Shic041ca32014-02-25 20:01:15 -0700311
Teng Liang43bb2312018-03-26 04:16:42 -0700312 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
313 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
314
315 // remember pending downstreams
316 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
317 if (inRecord.getExpiry() > now) {
318 pendingDownstreams.insert(&inRecord.getFace());
319 }
320 }
321
322 // set PIT expiry timer to now
323 this->setExpiryTimer(pitEntry, 0_ms);
324
325 // invoke PIT satisfy callback
326 this->dispatchToStrategy(*pitEntry,
327 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
328
329 // mark PIT satisfied
330 pitEntry->isSatisfied = true;
331 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
332
333 // Dead Nonce List insert if necessary (for out-record of inFace)
334 this->insertDeadNonceList(*pitEntry, &inFace);
335
336 // clear PIT entry's in and out records
337 pitEntry->clearInRecords();
338 pitEntry->deleteOutRecord(inFace);
Junxiao Shida006f52014-05-16 11:18:00 -0700339 }
Teng Liang43bb2312018-03-26 04:16:42 -0700340
341 // foreach pending downstream
342 for (Face* pendingDownstream : pendingDownstreams) {
343 if (pendingDownstream->getId() == inFace.getId() &&
344 pendingDownstream->getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
345 continue;
346 }
347 // goto outgoing Data pipeline
348 this->onOutgoingData(data, *pendingDownstream);
349 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700350 }
351}
352
353void
354Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
355{
356 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000357 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
358 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700359 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700360 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700361 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700362
Junxiao Shif3c07812014-03-11 21:48:49 -0700363 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
364 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000365 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700366}
367
368void
369Forwarder::onOutgoingData(const Data& data, Face& outFace)
370{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700371 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700372 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
373 return;
374 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700375 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
376
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700377 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700378 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700379 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700380 if (isViolatingLocalhost) {
381 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
382 " data=" << data.getName() << " violates /localhost");
383 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700384 return;
385 }
386
Junxiao Shif3c07812014-03-11 21:48:49 -0700387 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700388
Junxiao Shid3c792f2014-01-30 00:46:13 -0700389 // send Data
390 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700391 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700392}
393
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700394void
395Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
396{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000397 // receive Nack
398 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700399 ++m_counters.nInNacks;
400
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700401 // if multi-access or ad hoc face, drop
402 if (inFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700403 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
404 " nack=" << nack.getInterest().getName() <<
405 "~" << nack.getReason() << " face-is-multi-access");
406 return;
407 }
408
409 // PIT match
410 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
411 // if no PIT entry found, drop
412 if (pitEntry == nullptr) {
413 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
414 " nack=" << nack.getInterest().getName() <<
415 "~" << nack.getReason() << " no-PIT-entry");
416 return;
417 }
418
419 // has out-record?
420 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
421 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700422 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700423 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
424 " nack=" << nack.getInterest().getName() <<
425 "~" << nack.getReason() << " no-out-record");
426 return;
427 }
428
429 // if out-record has different Nonce, drop
430 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
431 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
432 " nack=" << nack.getInterest().getName() <<
433 "~" << nack.getReason() << " wrong-Nonce " <<
434 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
435 return;
436 }
437
438 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
439 " nack=" << nack.getInterest().getName() <<
440 "~" << nack.getReason() << " OK");
441
442 // record Nack on out-record
443 outRecord->setIncomingNack(nack);
444
Teng Liang7003e0b2018-03-03 16:03:30 -0700445 // set PIT expiry timer to now when all out-record receive Nack
446 if (!fw::hasPendingOutRecords(*pitEntry)) {
447 this->setExpiryTimer(pitEntry, 0_ms);
448 }
449
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700450 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000451 this->dispatchToStrategy(*pitEntry,
452 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700453}
454
455void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000456Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700457 const lp::NackHeader& nack)
458{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700459 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700460 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
461 " nack=" << pitEntry->getInterest().getName() <<
462 "~" << nack.getReason() << " no-in-record");
463 return;
464 }
465
466 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700467 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700468
469 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700470 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700471 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
472 " nack=" << pitEntry->getInterest().getName() <<
473 "~" << nack.getReason() << " no-in-record");
474 return;
475 }
476
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700477 // if multi-access or ad hoc face, drop
478 if (outFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700479 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
480 " nack=" << pitEntry->getInterest().getName() <<
481 "~" << nack.getReason() << " face-is-multi-access");
482 return;
483 }
484
485 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
486 " nack=" << pitEntry->getInterest().getName() <<
487 "~" << nack.getReason() << " OK");
488
489 // create Nack packet with the Interest from in-record
490 lp::Nack nackPkt(inRecord->getInterest());
491 nackPkt.setHeader(nack);
492
493 // erase in-record
494 pitEntry->deleteInRecord(outFace);
495
496 // send Nack on face
497 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700498 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700499}
500
Eric Newberry41aba102017-11-01 16:42:13 -0700501void
502Forwarder::onDroppedInterest(Face& outFace, const Interest& interest)
503{
504 m_strategyChoice.findEffectiveStrategy(interest.getName()).onDroppedInterest(outFace, interest);
505}
506
Junxiao Shid3c792f2014-01-30 00:46:13 -0700507void
Teng Liang7003e0b2018-03-03 16:03:30 -0700508Forwarder::setExpiryTimer(const shared_ptr<pit::Entry>& pitEntry, time::milliseconds duration)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700509{
Teng Liang7003e0b2018-03-03 16:03:30 -0700510 BOOST_ASSERT(duration >= 0_ms);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700511
Teng Liang7003e0b2018-03-03 16:03:30 -0700512 scheduler::cancel(pitEntry->expiryTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700513
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400514 pitEntry->expiryTimer = scheduler::schedule(duration, [=] { onInterestFinalize(pitEntry); });
Junxiao Shia110f262014-10-12 12:35:20 -0700515}
516
517void
Teng Liang6f09ab62018-03-01 20:04:08 -0700518Forwarder::insertDeadNonceList(pit::Entry& pitEntry, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700519{
520 // need Dead Nonce List insert?
Eric Newberryf4056d02017-05-26 17:31:53 +0000521 bool needDnl = true;
Teng Liang6f09ab62018-03-01 20:04:08 -0700522 if (pitEntry.isSatisfied) {
523 BOOST_ASSERT(pitEntry.dataFreshnessPeriod >= 0_ms);
Junxiao Shia110f262014-10-12 12:35:20 -0700524 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
Teng Liang6f09ab62018-03-01 20:04:08 -0700525 pitEntry.dataFreshnessPeriod < m_deadNonceList.getLifetime();
Junxiao Shia110f262014-10-12 12:35:20 -0700526 }
527
528 if (!needDnl) {
529 return;
530 }
531
532 // Dead Nonce List insert
Teng Liangf995f382017-04-04 22:09:39 +0000533 if (upstream == nullptr) {
Junxiao Shia110f262014-10-12 12:35:20 -0700534 // insert all outgoing Nonces
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400535 const auto& outRecords = pitEntry.getOutRecords();
536 std::for_each(outRecords.begin(), outRecords.end(), [&] (const auto& outRecord) {
537 m_deadNonceList.add(pitEntry.getName(), outRecord.getLastNonce());
538 });
Junxiao Shia110f262014-10-12 12:35:20 -0700539 }
540 else {
541 // insert outgoing Nonce of a specific face
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400542 auto outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700543 if (outRecord != pitEntry.getOutRecords().end()) {
544 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
545 }
546 }
547}
548
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800549} // namespace nfd