blob: 4c60129bca633b1a0b87b0dcf204bddebd056070 [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 Liang39465c22018-11-12 19:43:04 -07003 * Copyright (c) 2014-2019, 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"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040031#include "common/global.hpp"
32#include "common/logger.hpp"
Junxiao Shi02b73f52016-07-28 01:48:27 +000033#include "table/cleanup.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040034
Junxiao Shicbc8e942016-09-06 03:17:45 +000035#include <ndn-cxx/lp/tags.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080036
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080037namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080038
Davide Pesaventoa3148082018-04-12 18:21:54 -040039NFD_LOG_INIT(Forwarder);
Junxiao Shi8c8d2182014-01-30 22:33:00 -070040
Junxiao Shic34d1672016-12-09 15:57:59 +000041static Name
42getDefaultStrategyName()
43{
Junxiao Shi037f4ab2016-12-13 04:27:06 +000044 return fw::BestRouteStrategy2::getStrategyName();
Junxiao Shic34d1672016-12-09 15:57:59 +000045}
46
Junxiao Shic041ca32014-02-25 20:01:15 -070047Forwarder::Forwarder()
Davide Pesavento3dade002019-03-19 11:29:56 -060048 : m_unsolicitedDataPolicy(make_unique<fw::DefaultUnsolicitedDataPolicy>())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000049 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060050 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080051 , m_measurements(m_nameTree)
Junxiao Shic34d1672016-12-09 15:57:59 +000052 , m_strategyChoice(*this)
Alexander Afanasyev33b72772014-01-26 23:22:58 -080053{
Junxiao Shidcffdaa2016-07-26 02:23:56 +000054 m_faceTable.afterAdd.connect([this] (Face& face) {
55 face.afterReceiveInterest.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000056 [this, &face] (const Interest& interest, const EndpointId& endpointId) {
57 this->startProcessInterest(FaceEndpoint(face, endpointId), interest);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000058 });
59 face.afterReceiveData.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000060 [this, &face] (const Data& data, const EndpointId& endpointId) {
61 this->startProcessData(FaceEndpoint(face, endpointId), data);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000062 });
63 face.afterReceiveNack.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000064 [this, &face] (const lp::Nack& nack, const EndpointId& endpointId) {
65 this->startProcessNack(FaceEndpoint(face, endpointId), nack);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000066 });
Eric Newberry41aba102017-11-01 16:42:13 -070067 face.onDroppedInterest.connect(
68 [this, &face] (const Interest& interest) {
ashiqopuc7079482019-02-20 05:34:37 +000069 this->onDroppedInterest(FaceEndpoint(face, 0), interest);
Eric Newberry41aba102017-11-01 16:42:13 -070070 });
Junxiao Shidcffdaa2016-07-26 02:23:56 +000071 });
72
73 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000074 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000075 });
Junxiao Shic34d1672016-12-09 15:57:59 +000076
77 m_strategyChoice.setDefaultStrategy(getDefaultStrategyName());
Alexander Afanasyev33b72772014-01-26 23:22:58 -080078}
79
Junxiao Shidcffdaa2016-07-26 02:23:56 +000080Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060081
Junxiao Shi0355e9f2015-09-02 07:24:53 -070082void
ashiqopuc7079482019-02-20 05:34:37 +000083Forwarder::onIncomingInterest(const FaceEndpoint& ingress, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -070084{
85 // receive Interest
ashiqopuc7079482019-02-20 05:34:37 +000086 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress << " interest=" << interest.getName());
87 interest.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.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
ashiqopuc7079482019-02-20 05:34:37 +000091 bool isViolatingLocalhost = ingress.face.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) {
ashiqopuc7079482019-02-20 05:34:37 +000094 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress
95 << " interest=" << interest.getName() << " violates /localhost");
Junxiao Shif3c07812014-03-11 21:48:49 -070096 // (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
ashiqopuc7079482019-02-20 05:34:37 +0000104 this->onInterestLoop(ingress, interest);
Junxiao Shi330136a2016-03-10 04:53:08 -0700105 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())) {
ashiqopuc7079482019-02-20 05:34:37 +0000111 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress
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
ashiqopuc7079482019-02-20 05:34:37 +0000120 int dnw = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), ingress.face);
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000121 bool hasDuplicateNonceInPit = dnw != fw::DUPLICATE_NONCE_NONE;
ashiqopuc7079482019-02-20 05:34:37 +0000122 if (ingress.face.getLinkType() == ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000123 // 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
ashiqopuc7079482019-02-20 05:34:37 +0000128 this->onInterestLoop(ingress, 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,
ashiqopuc7079482019-02-20 05:34:37 +0000135 bind(&Forwarder::onContentStoreHit, this, ingress, pitEntry, _1, _2),
136 bind(&Forwarder::onContentStoreMiss, this, ingress, pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700137 }
mzhang4eab72492015-02-25 11:16:09 -0600138 else {
ashiqopuc7079482019-02-20 05:34:37 +0000139 this->onContentStoreMiss(ingress, pitEntry, interest);
mzhang4eab72492015-02-25 11:16:09 -0600140 }
141}
Junxiao Shic041ca32014-02-25 20:01:15 -0700142
mzhang4eab72492015-02-25 11:16:09 -0600143void
ashiqopuc7079482019-02-20 05:34:37 +0000144Forwarder::onInterestLoop(const FaceEndpoint& ingress, 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
ashiqopuc7079482019-02-20 05:34:37 +0000147 if (ingress.face.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
148 NFD_LOG_DEBUG("onInterestLoop in=" << ingress
149 << " interest=" << interest.getName() << " drop");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700150 return;
151 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700152
ashiqopuc7079482019-02-20 05:34:37 +0000153 NFD_LOG_DEBUG("onInterestLoop in=" << ingress << " interest=" << interest.getName()
154 << " send-Nack-duplicate");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700155
156 // send Nack with reason=DUPLICATE
157 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
158 lp::Nack nack(interest);
159 nack.setReason(lp::NackReason::DUPLICATE);
ashiqopu075bb7d2019-03-10 01:38:21 +0000160 ingress.face.sendNack(nack, ingress.endpoint);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700161}
162
163void
ashiqopuc7079482019-02-20 05:34:37 +0000164Forwarder::onContentStoreMiss(const FaceEndpoint& ingress,
165 const shared_ptr<pit::Entry>& pitEntry, const Interest& interest)
mzhang4eab72492015-02-25 11:16:09 -0600166{
167 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000168 ++m_counters.nCsMisses;
mzhang4eab72492015-02-25 11:16:09 -0600169
Davide Pesaventob31206e2019-04-20 22:34:12 -0400170 // FIXME Strategies are not prepared to handle non-zero EndpointIds, so always insert
Md Ashiqur Rahman115ea632019-07-06 02:34:31 +0000171 // the in-record and dispatch to strategy with EndpointId=0 for now. Eventually,
172 // this pipeline will need to be refactored so that strategies can control the
173 // in-record insertion.
174
175 // insert in-record
Davide Pesaventob31206e2019-04-20 22:34:12 -0400176 pitEntry->insertOrUpdateInRecord(ingress.face, 0, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700177
Teng Liang7003e0b2018-03-03 16:03:30 -0700178 // set PIT expiry timer to the time that the last PIT in-record expires
Davide Pesaventob31206e2019-04-20 22:34:12 -0400179 auto lastExpiring = std::max_element(pitEntry->in_begin(), pitEntry->in_end(),
180 [] (const auto& a, const auto& b) {
181 return a.getExpiry() < b.getExpiry();
182 });
Teng Liang7003e0b2018-03-03 16:03:30 -0700183 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?
Davide Pesaventob31206e2019-04-20 22:34:12 -0400187 auto nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
Junxiao Shie342e8d2016-09-18 16:48:00 +0000188 if (nextHopTag != nullptr) {
189 // chosen NextHop face exists?
190 Face* nextHopFace = m_faceTable.get(*nextHopTag);
191 if (nextHopFace != nullptr) {
Davide Pesaventob31206e2019-04-20 22:34:12 -0400192 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName()
193 << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000194 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000195 // scope control is unnecessary, because privileged app explicitly wants to forward
ashiqopuc7079482019-02-20 05:34:37 +0000196 this->onOutgoingInterest(pitEntry, FaceEndpoint(*nextHopFace, 0), interest);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000197 }
198 return;
199 }
200
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000201 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000202 this->dispatchToStrategy(*pitEntry,
Md Ashiqur Rahman115ea632019-07-06 02:34:31 +0000203 [&] (fw::Strategy& strategy) {
204 strategy.afterReceiveInterest(FaceEndpoint(ingress.face, 0), interest, pitEntry);
205 });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700206}
207
208void
ashiqopuc7079482019-02-20 05:34:37 +0000209Forwarder::onContentStoreHit(const FaceEndpoint& ingress, const shared_ptr<pit::Entry>& pitEntry,
Junxiao Shib9420cf2016-08-13 04:38:52 +0000210 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600211{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500212 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000213 ++m_counters.nCsHits;
mzhang4eab72492015-02-25 11:16:09 -0600214
Junxiao Shicde37ad2015-12-24 01:02:05 -0700215 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
Davide Pesaventob31206e2019-04-20 22:34:12 -0400216 // FIXME Should we lookup PIT for other Interests that also match the data?
mzhang4eab72492015-02-25 11:16:09 -0600217
Teng Liang6f09ab62018-03-01 20:04:08 -0700218 pitEntry->isSatisfied = true;
219 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
220
Teng Liang85a36632018-03-21 05:59:34 -0700221 // set PIT expiry timer to now
222 this->setExpiryTimer(pitEntry, 0_ms);
mzhang4eab72492015-02-25 11:16:09 -0600223
Teng Liang85a36632018-03-21 05:59:34 -0700224 // dispatch to strategy: after Content Store hit
225 this->dispatchToStrategy(*pitEntry,
ashiqopuc7079482019-02-20 05:34:37 +0000226 [&] (fw::Strategy& strategy) { strategy.afterContentStoreHit(pitEntry, ingress, data); });
mzhang4eab72492015-02-25 11:16:09 -0600227}
228
Junxiao Shid3c792f2014-01-30 00:46:13 -0700229void
ashiqopuc7079482019-02-20 05:34:37 +0000230Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry,
231 const FaceEndpoint& egress, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700232{
ashiqopuc7079482019-02-20 05:34:37 +0000233 NFD_LOG_DEBUG("onOutgoingInterest out=" << egress << " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700234
Junxiao Shi4846f372016-04-05 13:39:30 -0700235 // insert out-record
ashiqopuc7079482019-02-20 05:34:37 +0000236 pitEntry->insertOrUpdateOutRecord(egress.face, egress.endpoint, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700237
Junxiao Shid3c792f2014-01-30 00:46:13 -0700238 // send Interest
ashiqopu075bb7d2019-03-10 01:38:21 +0000239 egress.face.sendInterest(interest, egress.endpoint);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700240 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700241}
242
243void
Teng Liang6f09ab62018-03-01 20:04:08 -0700244Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shia110f262014-10-12 12:35:20 -0700245{
ashiqopuc7079482019-02-20 05:34:37 +0000246 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName()
247 << (pitEntry->isSatisfied ? " satisfied" : " unsatisfied"));
Junxiao Shia110f262014-10-12 12:35:20 -0700248
249 // Dead Nonce List insert if necessary
Davide Pesavento3dade002019-03-19 11:29:56 -0600250 this->insertDeadNonceList(*pitEntry, nullptr);
Junxiao Shia110f262014-10-12 12:35:20 -0700251
Ju Pan6eb1ac92018-10-26 16:26:15 +0000252 // Increment satisfied/unsatisfied Interests counter
253 if (pitEntry->isSatisfied) {
254 ++m_counters.nSatisfiedInterests;
255 }
256 else {
257 ++m_counters.nUnsatisfiedInterests;
258 }
259
Junxiao Shif3c07812014-03-11 21:48:49 -0700260 // PIT delete
Davide Pesavento3dade002019-03-19 11:29:56 -0600261 pitEntry->expiryTimer.cancel();
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000262 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700263}
264
265void
ashiqopuc7079482019-02-20 05:34:37 +0000266Forwarder::onIncomingData(const FaceEndpoint& ingress, const Data& data)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700267{
268 // receive Data
ashiqopuc7079482019-02-20 05:34:37 +0000269 NFD_LOG_DEBUG("onIncomingData in=" << ingress << " data=" << data.getName());
270 data.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700271 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700272
Junxiao Shi88884492014-02-15 15:57:43 -0700273 // /localhost scope control
ashiqopuc7079482019-02-20 05:34:37 +0000274 bool isViolatingLocalhost = ingress.face.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700275 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700276 if (isViolatingLocalhost) {
ashiqopuc7079482019-02-20 05:34:37 +0000277 NFD_LOG_DEBUG("onIncomingData in=" << ingress << " data=" << data.getName() << " violates /localhost");
Junxiao Shif3c07812014-03-11 21:48:49 -0700278 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700279 return;
280 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700281
Junxiao Shid3c792f2014-01-30 00:46:13 -0700282 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700283 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
Teng Liang43bb2312018-03-26 04:16:42 -0700284 if (pitMatches.size() == 0) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700285 // goto Data unsolicited pipeline
ashiqopuc7079482019-02-20 05:34:37 +0000286 this->onDataUnsolicited(ingress, data);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700287 return;
288 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700289
Junxiao Shid3c792f2014-01-30 00:46:13 -0700290 // CS insert
291 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700292
Teng Liang43bb2312018-03-26 04:16:42 -0700293 // when only one PIT entry is matched, trigger strategy: after receive Data
294 if (pitMatches.size() == 1) {
295 auto& pitEntry = pitMatches.front();
Junxiao Shic041ca32014-02-25 20:01:15 -0700296
Teng Liang43bb2312018-03-26 04:16:42 -0700297 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700298
Teng Liang7003e0b2018-03-03 16:03:30 -0700299 // set PIT expiry timer to now
300 this->setExpiryTimer(pitEntry, 0_ms);
301
Teng Liang43bb2312018-03-26 04:16:42 -0700302 // trigger strategy: after receive Data
Junxiao Shib9420cf2016-08-13 04:38:52 +0000303 this->dispatchToStrategy(*pitEntry,
ashiqopuc7079482019-02-20 05:34:37 +0000304 [&] (fw::Strategy& strategy) { strategy.afterReceiveData(pitEntry, ingress, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700305
Teng Liang43bb2312018-03-26 04:16:42 -0700306 // mark PIT satisfied
Teng Liang6f09ab62018-03-01 20:04:08 -0700307 pitEntry->isSatisfied = true;
308 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
309
Junxiao Shi4846f372016-04-05 13:39:30 -0700310 // Dead Nonce List insert if necessary (for out-record of inFace)
ashiqopuc7079482019-02-20 05:34:37 +0000311 this->insertDeadNonceList(*pitEntry, &ingress.face);
Junxiao Shia110f262014-10-12 12:35:20 -0700312
Teng Liang43bb2312018-03-26 04:16:42 -0700313 // delete PIT entry's out-record
ashiqopuc7079482019-02-20 05:34:37 +0000314 pitEntry->deleteOutRecord(ingress.face, ingress.endpoint);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700315 }
Teng Liang43bb2312018-03-26 04:16:42 -0700316 // when more than one PIT entry is matched, trigger strategy: before satisfy Interest,
317 // and send Data to all matched out faces
318 else {
ashiqopuc7079482019-02-20 05:34:37 +0000319 std::set<std::pair<Face*, EndpointId>> pendingDownstreams;
Teng Liang43bb2312018-03-26 04:16:42 -0700320 auto now = time::steady_clock::now();
Junxiao Shic041ca32014-02-25 20:01:15 -0700321
Davide Pesaventob31206e2019-04-20 22:34:12 -0400322 for (const auto& pitEntry : pitMatches) {
Teng Liang43bb2312018-03-26 04:16:42 -0700323 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
324
325 // remember pending downstreams
326 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
327 if (inRecord.getExpiry() > now) {
ashiqopuc7079482019-02-20 05:34:37 +0000328 pendingDownstreams.emplace(&inRecord.getFace(), inRecord.getEndpointId());
Teng Liang43bb2312018-03-26 04:16:42 -0700329 }
330 }
331
332 // set PIT expiry timer to now
333 this->setExpiryTimer(pitEntry, 0_ms);
334
335 // invoke PIT satisfy callback
336 this->dispatchToStrategy(*pitEntry,
ashiqopuc7079482019-02-20 05:34:37 +0000337 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, ingress, data); });
Teng Liang43bb2312018-03-26 04:16:42 -0700338
339 // mark PIT satisfied
340 pitEntry->isSatisfied = true;
341 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
342
343 // Dead Nonce List insert if necessary (for out-record of inFace)
ashiqopuc7079482019-02-20 05:34:37 +0000344 this->insertDeadNonceList(*pitEntry, &ingress.face);
Teng Liang43bb2312018-03-26 04:16:42 -0700345
346 // clear PIT entry's in and out records
347 pitEntry->clearInRecords();
ashiqopuc7079482019-02-20 05:34:37 +0000348 pitEntry->deleteOutRecord(ingress.face, ingress.endpoint);
Junxiao Shida006f52014-05-16 11:18:00 -0700349 }
Teng Liang43bb2312018-03-26 04:16:42 -0700350
351 // foreach pending downstream
ashiqopuc7079482019-02-20 05:34:37 +0000352 for (const auto& pendingDownstream : pendingDownstreams) {
353 if (pendingDownstream.first->getId() == ingress.face.getId() &&
354 pendingDownstream.second == ingress.endpoint &&
355 pendingDownstream.first->getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
Teng Liang43bb2312018-03-26 04:16:42 -0700356 continue;
357 }
358 // goto outgoing Data pipeline
ashiqopuc7079482019-02-20 05:34:37 +0000359 this->onOutgoingData(data, FaceEndpoint(*pendingDownstream.first, pendingDownstream.second));
Teng Liang43bb2312018-03-26 04:16:42 -0700360 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700361 }
362}
363
364void
ashiqopuc7079482019-02-20 05:34:37 +0000365Forwarder::onDataUnsolicited(const FaceEndpoint& ingress, const Data& data)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700366{
367 // accept to cache?
ashiqopuc7079482019-02-20 05:34:37 +0000368 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(ingress.face, data);
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000369 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700370 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700371 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700372 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700373
ashiqopuc7079482019-02-20 05:34:37 +0000374 NFD_LOG_DEBUG("onDataUnsolicited in=" << ingress << " data=" << data.getName() << " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700375}
376
377void
ashiqopu075bb7d2019-03-10 01:38:21 +0000378Forwarder::onOutgoingData(const Data& data, const FaceEndpoint& egress)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700379{
ashiqopuc7079482019-02-20 05:34:37 +0000380 if (egress.face.getId() == face::INVALID_FACEID) {
381 NFD_LOG_WARN("onOutgoingData out=(invalid) data=" << data.getName());
Junxiao Shi223271b2014-07-03 22:06:13 -0700382 return;
383 }
ashiqopuc7079482019-02-20 05:34:37 +0000384 NFD_LOG_DEBUG("onOutgoingData out=" << egress << " data=" << data.getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700385
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700386 // /localhost scope control
ashiqopuc7079482019-02-20 05:34:37 +0000387 bool isViolatingLocalhost = egress.face.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700388 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700389 if (isViolatingLocalhost) {
ashiqopuc7079482019-02-20 05:34:37 +0000390 NFD_LOG_DEBUG("onOutgoingData out=" << egress << " data=" << data.getName() << " violates /localhost");
Junxiao Shif3c07812014-03-11 21:48:49 -0700391 // (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
ashiqopu075bb7d2019-03-10 01:38:21 +0000398 egress.face.sendData(data, egress.endpoint);
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
ashiqopuc7079482019-02-20 05:34:37 +0000403Forwarder::onIncomingNack(const FaceEndpoint& ingress, const lp::Nack& nack)
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700404{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000405 // receive Nack
ashiqopuc7079482019-02-20 05:34:37 +0000406 nack.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.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
ashiqopuc7079482019-02-20 05:34:37 +0000410 if (ingress.face.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Davide Pesaventob31206e2019-04-20 22:34:12 -0400411 NFD_LOG_DEBUG("onIncomingNack in=" << ingress
412 << " nack=" << nack.getInterest().getName() << "~" << nack.getReason()
413 << " link-type=" << ingress.face.getLinkType());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700414 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) {
ashiqopuc7079482019-02-20 05:34:37 +0000421 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
422 << "~" << nack.getReason() << " no-PIT-entry");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700423 return;
424 }
425
426 // has out-record?
Davide Pesaventob31206e2019-04-20 22:34:12 -0400427 auto outRecord = pitEntry->getOutRecord(ingress.face, ingress.endpoint);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700428 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700429 if (outRecord == pitEntry->out_end()) {
ashiqopuc7079482019-02-20 05:34:37 +0000430 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
431 << "~" << nack.getReason() << " no-out-record");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700432 return;
433 }
434
435 // if out-record has different Nonce, drop
436 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
ashiqopuc7079482019-02-20 05:34:37 +0000437 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
438 << "~" << nack.getReason() << " wrong-Nonce " << nack.getInterest().getNonce()
439 << "!=" << outRecord->getLastNonce());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700440 return;
441 }
442
ashiqopuc7079482019-02-20 05:34:37 +0000443 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
444 << "~" << nack.getReason() << " OK");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700445
446 // record Nack on out-record
447 outRecord->setIncomingNack(nack);
448
Teng Liang7003e0b2018-03-03 16:03:30 -0700449 // set PIT expiry timer to now when all out-record receive Nack
450 if (!fw::hasPendingOutRecords(*pitEntry)) {
451 this->setExpiryTimer(pitEntry, 0_ms);
452 }
453
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700454 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000455 this->dispatchToStrategy(*pitEntry,
ashiqopuc7079482019-02-20 05:34:37 +0000456 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(ingress, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700457}
458
459void
ashiqopuc7079482019-02-20 05:34:37 +0000460Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry,
461 const FaceEndpoint& egress, const lp::NackHeader& nack)
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700462{
ashiqopuc7079482019-02-20 05:34:37 +0000463 if (egress.face.getId() == face::INVALID_FACEID) {
464 NFD_LOG_WARN("onOutgoingNack out=(invalid)"
Davide Pesaventob31206e2019-04-20 22:34:12 -0400465 << " nack=" << pitEntry->getInterest().getName() << "~" << nack.getReason());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700466 return;
467 }
468
469 // has in-record?
Davide Pesaventob31206e2019-04-20 22:34:12 -0400470 auto inRecord = pitEntry->getInRecord(egress.face, egress.endpoint);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700471
472 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700473 if (inRecord == pitEntry->in_end()) {
ashiqopuc7079482019-02-20 05:34:37 +0000474 NFD_LOG_DEBUG("onOutgoingNack out=" << egress
475 << " nack=" << pitEntry->getInterest().getName()
476 << "~" << nack.getReason() << " no-in-record");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700477 return;
478 }
479
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700480 // if multi-access or ad hoc face, drop
ashiqopuc7079482019-02-20 05:34:37 +0000481 if (egress.face.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
482 NFD_LOG_DEBUG("onOutgoingNack out=" << egress
Davide Pesaventob31206e2019-04-20 22:34:12 -0400483 << " nack=" << pitEntry->getInterest().getName() << "~" << nack.getReason()
484 << " link-type=" << egress.face.getLinkType());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700485 return;
486 }
487
ashiqopuc7079482019-02-20 05:34:37 +0000488 NFD_LOG_DEBUG("onOutgoingNack out=" << egress
489 << " nack=" << pitEntry->getInterest().getName()
490 << "~" << nack.getReason() << " OK");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700491
492 // create Nack packet with the Interest from in-record
493 lp::Nack nackPkt(inRecord->getInterest());
494 nackPkt.setHeader(nack);
495
496 // erase in-record
ashiqopuc7079482019-02-20 05:34:37 +0000497 pitEntry->deleteInRecord(egress.face, egress.endpoint);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700498
499 // send Nack on face
ashiqopu075bb7d2019-03-10 01:38:21 +0000500 egress.face.sendNack(nackPkt, egress.endpoint);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700501 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700502}
503
Eric Newberry41aba102017-11-01 16:42:13 -0700504void
ashiqopuc7079482019-02-20 05:34:37 +0000505Forwarder::onDroppedInterest(const FaceEndpoint& egress, const Interest& interest)
Eric Newberry41aba102017-11-01 16:42:13 -0700506{
ashiqopuc7079482019-02-20 05:34:37 +0000507 m_strategyChoice.findEffectiveStrategy(interest.getName()).onDroppedInterest(egress, interest);
Eric Newberry41aba102017-11-01 16:42:13 -0700508}
509
Junxiao Shid3c792f2014-01-30 00:46:13 -0700510void
Teng Liang7003e0b2018-03-03 16:03:30 -0700511Forwarder::setExpiryTimer(const shared_ptr<pit::Entry>& pitEntry, time::milliseconds duration)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700512{
Teng Liang39465c22018-11-12 19:43:04 -0700513 BOOST_ASSERT(pitEntry);
Teng Liang7003e0b2018-03-03 16:03:30 -0700514 BOOST_ASSERT(duration >= 0_ms);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700515
Davide Pesavento3dade002019-03-19 11:29:56 -0600516 pitEntry->expiryTimer.cancel();
517 pitEntry->expiryTimer = getScheduler().schedule(duration, [=] { onInterestFinalize(pitEntry); });
Junxiao Shia110f262014-10-12 12:35:20 -0700518}
519
520void
Teng Liang6f09ab62018-03-01 20:04:08 -0700521Forwarder::insertDeadNonceList(pit::Entry& pitEntry, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700522{
523 // need Dead Nonce List insert?
Eric Newberryf4056d02017-05-26 17:31:53 +0000524 bool needDnl = true;
Teng Liang6f09ab62018-03-01 20:04:08 -0700525 if (pitEntry.isSatisfied) {
526 BOOST_ASSERT(pitEntry.dataFreshnessPeriod >= 0_ms);
Junxiao Shia110f262014-10-12 12:35:20 -0700527 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
Teng Liang6f09ab62018-03-01 20:04:08 -0700528 pitEntry.dataFreshnessPeriod < m_deadNonceList.getLifetime();
Junxiao Shia110f262014-10-12 12:35:20 -0700529 }
530
531 if (!needDnl) {
532 return;
533 }
534
535 // Dead Nonce List insert
Teng Liangf995f382017-04-04 22:09:39 +0000536 if (upstream == nullptr) {
Junxiao Shia110f262014-10-12 12:35:20 -0700537 // insert all outgoing Nonces
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400538 const auto& outRecords = pitEntry.getOutRecords();
539 std::for_each(outRecords.begin(), outRecords.end(), [&] (const auto& outRecord) {
540 m_deadNonceList.add(pitEntry.getName(), outRecord.getLastNonce());
541 });
Junxiao Shia110f262014-10-12 12:35:20 -0700542 }
543 else {
544 // insert outgoing Nonce of a specific face
ashiqopud3ae85d2019-02-17 02:29:55 +0000545 auto outRecord = pitEntry.getOutRecord(*upstream, 0);
Junxiao Shia110f262014-10-12 12:35:20 -0700546 if (outRecord != pitEntry.getOutRecords().end()) {
547 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
548 }
549 }
550}
551
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800552} // namespace nfd