blob: 8c0bb550f8003df3db7c4df06df5801530ff94fc [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"
Junxiao Shi00dc9142016-11-21 14:23:12 +000027#include "algorithm.hpp"
Junxiao Shic34d1672016-12-09 15:57:59 +000028#include "best-route-strategy2.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070029#include "strategy.hpp"
Junxiao Shic34d1672016-12-09 15:57:59 +000030#include "core/logger.hpp"
Junxiao Shi02b73f52016-07-28 01:48:27 +000031#include "table/cleanup.hpp"
Junxiao Shicbc8e942016-09-06 03:17:45 +000032#include <ndn-cxx/lp/tags.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080033
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080034namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080035
Junxiao Shi8c8d2182014-01-30 22:33:00 -070036NFD_LOG_INIT("Forwarder");
37
Junxiao Shic34d1672016-12-09 15:57:59 +000038static Name
39getDefaultStrategyName()
40{
Junxiao Shi037f4ab2016-12-13 04:27:06 +000041 return fw::BestRouteStrategy2::getStrategyName();
Junxiao Shic34d1672016-12-09 15:57:59 +000042}
43
Junxiao Shic041ca32014-02-25 20:01:15 -070044Forwarder::Forwarder()
Junxiao Shi9685cc52016-08-29 12:47:05 +000045 : m_unsolicitedDataPolicy(new fw::DefaultUnsolicitedDataPolicy())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000046 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060047 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080048 , m_measurements(m_nameTree)
Junxiao Shic34d1672016-12-09 15:57:59 +000049 , m_strategyChoice(*this)
Alexander Afanasyev33b72772014-01-26 23:22:58 -080050{
Junxiao Shidcffdaa2016-07-26 02:23:56 +000051 m_faceTable.afterAdd.connect([this] (Face& face) {
52 face.afterReceiveInterest.connect(
53 [this, &face] (const Interest& interest) {
54 this->startProcessInterest(face, interest);
55 });
56 face.afterReceiveData.connect(
57 [this, &face] (const Data& data) {
58 this->startProcessData(face, data);
59 });
60 face.afterReceiveNack.connect(
61 [this, &face] (const lp::Nack& nack) {
62 this->startProcessNack(face, nack);
63 });
Eric Newberry41aba102017-11-01 16:42:13 -070064 face.onDroppedInterest.connect(
65 [this, &face] (const Interest& interest) {
66 this->onDroppedInterest(face, interest);
67 });
Junxiao Shidcffdaa2016-07-26 02:23:56 +000068 });
69
70 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000071 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000072 });
Junxiao Shic34d1672016-12-09 15:57:59 +000073
74 m_strategyChoice.setDefaultStrategy(getDefaultStrategyName());
Alexander Afanasyev33b72772014-01-26 23:22:58 -080075}
76
Junxiao Shidcffdaa2016-07-26 02:23:56 +000077Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060078
Junxiao Shi0355e9f2015-09-02 07:24:53 -070079void
Junxiao Shid3c792f2014-01-30 00:46:13 -070080Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
81{
82 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -070083 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
84 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +000085 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -070086 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -070087
Junxiao Shi88884492014-02-15 15:57:43 -070088 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -070089 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -070090 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -070091 if (isViolatingLocalhost) {
92 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
93 " interest=" << interest.getName() << " violates /localhost");
94 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -070095 return;
96 }
Junxiao Shic041ca32014-02-25 20:01:15 -070097
Junxiao Shi330136a2016-03-10 04:53:08 -070098 // detect duplicate Nonce with Dead Nonce List
99 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
100 if (hasDuplicateNonceInDnl) {
101 // goto Interest loop pipeline
102 this->onInterestLoop(inFace, interest);
103 return;
104 }
105
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000106 // strip forwarding hint if Interest has reached producer region
107 if (!interest.getForwardingHint().empty() &&
108 m_networkRegionTable.isInProducerRegion(interest.getForwardingHint())) {
Junxiao Shif9858fd2017-02-01 16:22:44 +0000109 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
110 " interest=" << interest.getName() << " reaching-producer-region");
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000111 const_cast<Interest&>(interest).setForwardingHint({});
Junxiao Shif9858fd2017-02-01 16:22:44 +0000112 }
113
Junxiao Shid3c792f2014-01-30 00:46:13 -0700114 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700115 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700116
Junxiao Shi330136a2016-03-10 04:53:08 -0700117 // detect duplicate Nonce in PIT entry
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000118 int dnw = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace);
119 bool hasDuplicateNonceInPit = dnw != fw::DUPLICATE_NONCE_NONE;
120 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
121 // for p2p face: duplicate Nonce from same incoming face is not loop
122 hasDuplicateNonceInPit = hasDuplicateNonceInPit && !(dnw & fw::DUPLICATE_NONCE_IN_SAME);
123 }
Junxiao Shi330136a2016-03-10 04:53:08 -0700124 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700125 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700126 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700127 return;
128 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700129
Junxiao Shid3c792f2014-01-30 00:46:13 -0700130 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000131 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700132
Junxiao Shif3c07812014-03-11 21:48:49 -0700133 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700134 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600135 m_cs.find(interest,
136 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
137 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700138 }
mzhang4eab72492015-02-25 11:16:09 -0600139 else {
140 this->onContentStoreMiss(inFace, pitEntry, interest);
141 }
142}
Junxiao Shic041ca32014-02-25 20:01:15 -0700143
mzhang4eab72492015-02-25 11:16:09 -0600144void
Junxiao Shi330136a2016-03-10 04:53:08 -0700145Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700146{
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700147 // if multi-access or ad hoc face, drop
148 if (inFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700149 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
150 " interest=" << interest.getName() <<
151 " drop");
152 return;
153 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700154
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700155 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
156 " interest=" << interest.getName() <<
157 " send-Nack-duplicate");
158
159 // send Nack with reason=DUPLICATE
160 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
161 lp::Nack nack(interest);
162 nack.setReason(lp::NackReason::DUPLICATE);
163 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700164}
165
166void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000167Forwarder::onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600168 const Interest& interest)
169{
170 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000171 ++m_counters.nCsMisses;
mzhang4eab72492015-02-25 11:16:09 -0600172
Junxiao Shi4846f372016-04-05 13:39:30 -0700173 // insert in-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000174 pitEntry->insertOrUpdateInRecord(const_cast<Face&>(inFace), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700175
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700176 // set PIT unsatisfy timer
177 this->setUnsatisfyTimer(pitEntry);
178
Junxiao Shie342e8d2016-09-18 16:48:00 +0000179 // has NextHopFaceId?
180 shared_ptr<lp::NextHopFaceIdTag> nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
181 if (nextHopTag != nullptr) {
182 // chosen NextHop face exists?
183 Face* nextHopFace = m_faceTable.get(*nextHopTag);
184 if (nextHopFace != nullptr) {
Junxiao Shic5f651f2016-11-17 22:58:12 +0000185 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName() << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000186 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000187 // scope control is unnecessary, because privileged app explicitly wants to forward
188 this->onOutgoingInterest(pitEntry, *nextHopFace, interest);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000189 }
190 return;
191 }
192
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000193 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000194 this->dispatchToStrategy(*pitEntry,
195 [&] (fw::Strategy& strategy) { strategy.afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700196}
197
198void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000199Forwarder::onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
200 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600201{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500202 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000203 ++m_counters.nCsHits;
mzhang4eab72492015-02-25 11:16:09 -0600204
Junxiao Shicde37ad2015-12-24 01:02:05 -0700205 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600206 // XXX should we lookup PIT for other Interests that also match csMatch?
207
Teng Liang6f09ab62018-03-01 20:04:08 -0700208 pitEntry->isSatisfied = true;
209 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
210
mzhang4eab72492015-02-25 11:16:09 -0600211 // set PIT straggler timer
Teng Liang6f09ab62018-03-01 20:04:08 -0700212 this->setStragglerTimer(pitEntry);
mzhang4eab72492015-02-25 11:16:09 -0600213
214 // goto outgoing Data pipeline
215 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
216}
217
Junxiao Shid3c792f2014-01-30 00:46:13 -0700218void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000219Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700220{
Junxiao Shif3c07812014-03-11 21:48:49 -0700221 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
222 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700223
Junxiao Shi4846f372016-04-05 13:39:30 -0700224 // insert out-record
Junxiao Shic5f651f2016-11-17 22:58:12 +0000225 pitEntry->insertOrUpdateOutRecord(outFace, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700226
Junxiao Shid3c792f2014-01-30 00:46:13 -0700227 // send Interest
Junxiao Shic5f651f2016-11-17 22:58:12 +0000228 outFace.sendInterest(interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700229 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700230}
231
232void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000233Forwarder::onInterestReject(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700234{
Junxiao Shifef73e42016-03-29 14:15:05 -0700235 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700236 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
237 " cannot reject forwarded Interest");
238 return;
239 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700240 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700241
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700242 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000243 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700244
Junxiao Shid3c792f2014-01-30 00:46:13 -0700245 // set PIT straggler timer
Teng Liang6f09ab62018-03-01 20:04:08 -0700246 this->setStragglerTimer(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700247}
248
249void
Teng Liang6f09ab62018-03-01 20:04:08 -0700250Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shia110f262014-10-12 12:35:20 -0700251{
252 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
Teng Liang6f09ab62018-03-01 20:04:08 -0700253 (pitEntry->isSatisfied ? " satisfied" : " unsatisfied"));
Junxiao Shia110f262014-10-12 12:35:20 -0700254
255 // Dead Nonce List insert if necessary
Teng Liang6f09ab62018-03-01 20:04:08 -0700256 this->insertDeadNonceList(*pitEntry, 0);
Junxiao Shia110f262014-10-12 12:35:20 -0700257
Junxiao Shif3c07812014-03-11 21:48:49 -0700258 // PIT delete
Junxiao Shib9420cf2016-08-13 04:38:52 +0000259 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000260 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700261}
262
263void
264Forwarder::onIncomingData(Face& inFace, const Data& data)
265{
266 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700267 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000268 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700269 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700270
Junxiao Shi88884492014-02-15 15:57:43 -0700271 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700272 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700273 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700274 if (isViolatingLocalhost) {
275 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
276 " data=" << data.getName() << " violates /localhost");
277 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700278 return;
279 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700280
Junxiao Shid3c792f2014-01-30 00:46:13 -0700281 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700282 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
283 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700284 // goto Data unsolicited pipeline
285 this->onDataUnsolicited(inFace, data);
286 return;
287 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700288
Junxiao Shid3c792f2014-01-30 00:46:13 -0700289 // CS insert
290 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700291
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700292 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700293 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700294 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700295 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700296 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700297
Junxiao Shid3c792f2014-01-30 00:46:13 -0700298 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000299 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700300
Junxiao Shid3c792f2014-01-30 00:46:13 -0700301 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700302 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
303 if (inRecord.getExpiry() > now) {
Junxiao Shi9cff7792016-08-01 21:45:11 +0000304 pendingDownstreams.insert(&inRecord.getFace());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700305 }
306 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700307
Junxiao Shid938a6b2014-05-11 23:40:29 -0700308 // invoke PIT satisfy callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000309 this->dispatchToStrategy(*pitEntry,
310 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700311
Teng Liang6f09ab62018-03-01 20:04:08 -0700312 pitEntry->isSatisfied = true;
313 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
314
Junxiao Shi4846f372016-04-05 13:39:30 -0700315 // Dead Nonce List insert if necessary (for out-record of inFace)
Teng Liang6f09ab62018-03-01 20:04:08 -0700316 this->insertDeadNonceList(*pitEntry, &inFace);
Junxiao Shia110f262014-10-12 12:35:20 -0700317
Junxiao Shid3c792f2014-01-30 00:46:13 -0700318 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700319 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700320 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700321
Junxiao Shid3c792f2014-01-30 00:46:13 -0700322 // set PIT straggler timer
Teng Liang6f09ab62018-03-01 20:04:08 -0700323 this->setStragglerTimer(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700324 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700325
Junxiao Shid3c792f2014-01-30 00:46:13 -0700326 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700327 for (Face* pendingDownstream : pendingDownstreams) {
Teng Liangf995f382017-04-04 22:09:39 +0000328 if (pendingDownstream->getId() == inFace.getId() &&
329 pendingDownstream->getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
Junxiao Shida006f52014-05-16 11:18:00 -0700330 continue;
331 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700332 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700333 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700334 }
335}
336
337void
338Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
339{
340 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000341 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
342 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700343 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700344 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700345 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700346
Junxiao Shif3c07812014-03-11 21:48:49 -0700347 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
348 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000349 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700350}
351
352void
353Forwarder::onOutgoingData(const Data& data, Face& outFace)
354{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700355 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700356 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
357 return;
358 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700359 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
360
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700361 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700362 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700363 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700364 if (isViolatingLocalhost) {
365 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
366 " data=" << data.getName() << " violates /localhost");
367 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700368 return;
369 }
370
Junxiao Shif3c07812014-03-11 21:48:49 -0700371 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700372
Junxiao Shid3c792f2014-01-30 00:46:13 -0700373 // send Data
374 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700375 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700376}
377
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700378void
379Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
380{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000381 // receive Nack
382 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700383 ++m_counters.nInNacks;
384
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700385 // if multi-access or ad hoc face, drop
386 if (inFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700387 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
388 " nack=" << nack.getInterest().getName() <<
389 "~" << nack.getReason() << " face-is-multi-access");
390 return;
391 }
392
393 // PIT match
394 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
395 // if no PIT entry found, drop
396 if (pitEntry == nullptr) {
397 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
398 " nack=" << nack.getInterest().getName() <<
399 "~" << nack.getReason() << " no-PIT-entry");
400 return;
401 }
402
403 // has out-record?
404 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
405 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700406 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700407 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
408 " nack=" << nack.getInterest().getName() <<
409 "~" << nack.getReason() << " no-out-record");
410 return;
411 }
412
413 // if out-record has different Nonce, drop
414 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
415 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
416 " nack=" << nack.getInterest().getName() <<
417 "~" << nack.getReason() << " wrong-Nonce " <<
418 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
419 return;
420 }
421
422 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
423 " nack=" << nack.getInterest().getName() <<
424 "~" << nack.getReason() << " OK");
425
426 // record Nack on out-record
427 outRecord->setIncomingNack(nack);
428
429 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000430 this->dispatchToStrategy(*pitEntry,
431 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700432}
433
434void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000435Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700436 const lp::NackHeader& nack)
437{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700438 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700439 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
440 " nack=" << pitEntry->getInterest().getName() <<
441 "~" << nack.getReason() << " no-in-record");
442 return;
443 }
444
445 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700446 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700447
448 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700449 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700450 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
451 " nack=" << pitEntry->getInterest().getName() <<
452 "~" << nack.getReason() << " no-in-record");
453 return;
454 }
455
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700456 // if multi-access or ad hoc face, drop
457 if (outFace.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700458 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
459 " nack=" << pitEntry->getInterest().getName() <<
460 "~" << nack.getReason() << " face-is-multi-access");
461 return;
462 }
463
464 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
465 " nack=" << pitEntry->getInterest().getName() <<
466 "~" << nack.getReason() << " OK");
467
468 // create Nack packet with the Interest from in-record
469 lp::Nack nackPkt(inRecord->getInterest());
470 nackPkt.setHeader(nack);
471
472 // erase in-record
473 pitEntry->deleteInRecord(outFace);
474
475 // send Nack on face
476 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700477 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700478}
479
Eric Newberry41aba102017-11-01 16:42:13 -0700480void
481Forwarder::onDroppedInterest(Face& outFace, const Interest& interest)
482{
483 m_strategyChoice.findEffectiveStrategy(interest.getName()).onDroppedInterest(outFace, interest);
484}
485
Junxiao Shid3c792f2014-01-30 00:46:13 -0700486static inline bool
487compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
488{
489 return a.getExpiry() < b.getExpiry();
490}
491
492void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000493Forwarder::setUnsatisfyTimer(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700494{
Junxiao Shi4846f372016-04-05 13:39:30 -0700495 pit::InRecordCollection::iterator lastExpiring =
496 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700497
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700498 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700499 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
500 if (lastExpiryFromNow <= time::seconds::zero()) {
501 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700502 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700503
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700504 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700505 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Teng Liang6f09ab62018-03-01 20:04:08 -0700506 bind(&Forwarder::onInterestFinalize, this, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700507}
508
509void
Teng Liang6f09ab62018-03-01 20:04:08 -0700510Forwarder::setStragglerTimer(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700511{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700512 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700513
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700514 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700515 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Teng Liang6f09ab62018-03-01 20:04:08 -0700516 bind(&Forwarder::onInterestFinalize, this, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700517}
518
519void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000520Forwarder::cancelUnsatisfyAndStragglerTimer(pit::Entry& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700521{
Junxiao Shib9420cf2016-08-13 04:38:52 +0000522 scheduler::cancel(pitEntry.m_unsatisfyTimer);
523 scheduler::cancel(pitEntry.m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700524}
525
Junxiao Shia110f262014-10-12 12:35:20 -0700526static inline void
527insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
528 const pit::OutRecord& outRecord)
529{
530 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
531}
532
533void
Teng Liang6f09ab62018-03-01 20:04:08 -0700534Forwarder::insertDeadNonceList(pit::Entry& pitEntry, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700535{
536 // need Dead Nonce List insert?
Eric Newberryf4056d02017-05-26 17:31:53 +0000537 bool needDnl = true;
Teng Liang6f09ab62018-03-01 20:04:08 -0700538 if (pitEntry.isSatisfied) {
539 BOOST_ASSERT(pitEntry.dataFreshnessPeriod >= 0_ms);
Junxiao Shia110f262014-10-12 12:35:20 -0700540 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
Teng Liang6f09ab62018-03-01 20:04:08 -0700541 pitEntry.dataFreshnessPeriod < m_deadNonceList.getLifetime();
Junxiao Shia110f262014-10-12 12:35:20 -0700542 }
543
544 if (!needDnl) {
545 return;
546 }
547
548 // Dead Nonce List insert
Teng Liangf995f382017-04-04 22:09:39 +0000549 if (upstream == nullptr) {
Junxiao Shia110f262014-10-12 12:35:20 -0700550 // insert all outgoing Nonces
551 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
552 std::for_each(outRecords.begin(), outRecords.end(),
553 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
554 }
555 else {
556 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700557 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700558 if (outRecord != pitEntry.getOutRecords().end()) {
559 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
560 }
561 }
562}
563
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800564} // namespace nfd