blob: 9ef3c758f901af42ff4733f697c16bc7fd359e9f [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi330136a2016-03-10 04:53:08 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shifaf3eb02015-02-16 10:50:36 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shiaf6569a2014-06-14 00:01:34 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
26#include "forwarder.hpp"
Junxiao Shifef73e42016-03-29 14:15:05 -070027#include "pit-algorithm.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070029#include "core/random.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070030#include "strategy.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>
Junxiao Shiaf6569a2014-06-14 00:01:34 -070033#include <boost/random/uniform_int_distribution.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080034
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080035namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080036
Junxiao Shi8c8d2182014-01-30 22:33:00 -070037NFD_LOG_INIT("Forwarder");
38
Junxiao Shic041ca32014-02-25 20:01:15 -070039Forwarder::Forwarder()
Junxiao Shi9685cc52016-08-29 12:47:05 +000040 : m_unsolicitedDataPolicy(new fw::DefaultUnsolicitedDataPolicy())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000041 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060042 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080043 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070044 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080045{
Junxiao Shif3c07812014-03-11 21:48:49 -070046 fw::installStrategies(*this);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000047
48 m_faceTable.afterAdd.connect([this] (Face& face) {
49 face.afterReceiveInterest.connect(
50 [this, &face] (const Interest& interest) {
51 this->startProcessInterest(face, interest);
52 });
53 face.afterReceiveData.connect(
54 [this, &face] (const Data& data) {
55 this->startProcessData(face, data);
56 });
57 face.afterReceiveNack.connect(
58 [this, &face] (const lp::Nack& nack) {
59 this->startProcessNack(face, nack);
60 });
61 });
62
63 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000064 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000065 });
Alexander Afanasyev33b72772014-01-26 23:22:58 -080066}
67
Junxiao Shidcffdaa2016-07-26 02:23:56 +000068Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060069
Junxiao Shi0355e9f2015-09-02 07:24:53 -070070void
71Forwarder::startProcessInterest(Face& face, const Interest& interest)
72{
73 // check fields used by forwarding are well-formed
74 try {
75 if (interest.hasLink()) {
76 interest.getLink();
77 }
78 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070079 catch (const tlv::Error&) {
Junxiao Shi0355e9f2015-09-02 07:24:53 -070080 NFD_LOG_DEBUG("startProcessInterest face=" << face.getId() <<
81 " interest=" << interest.getName() << " malformed");
82 // It's safe to call interest.getName() because Name has been fully parsed
83 return;
84 }
85
86 this->onIncomingInterest(face, interest);
87}
88
89void
90Forwarder::startProcessData(Face& face, const Data& data)
91{
92 // check fields used by forwarding are well-formed
93 // (none needed)
94
95 this->onIncomingData(face, data);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060096}
97
Alexander Afanasyev33b72772014-01-26 23:22:58 -080098void
Junxiao Shi5e5e4452015-09-24 16:56:52 -070099Forwarder::startProcessNack(Face& face, const lp::Nack& nack)
100{
101 // check fields used by forwarding are well-formed
102 try {
103 if (nack.getInterest().hasLink()) {
104 nack.getInterest().getLink();
105 }
106 }
107 catch (const tlv::Error&) {
108 NFD_LOG_DEBUG("startProcessNack face=" << face.getId() <<
109 " nack=" << nack.getInterest().getName() <<
110 "~" << nack.getReason() << " malformed");
111 return;
112 }
113
114 this->onIncomingNack(face, nack);
115}
116
117void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700118Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
119{
120 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700121 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
122 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000123 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700124 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -0700125
Junxiao Shi88884492014-02-15 15:57:43 -0700126 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700127 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700128 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700129 if (isViolatingLocalhost) {
130 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
131 " interest=" << interest.getName() << " violates /localhost");
132 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700133 return;
134 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700135
Junxiao Shi330136a2016-03-10 04:53:08 -0700136 // detect duplicate Nonce with Dead Nonce List
137 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
138 if (hasDuplicateNonceInDnl) {
139 // goto Interest loop pipeline
140 this->onInterestLoop(inFace, interest);
141 return;
142 }
143
Junxiao Shid3c792f2014-01-30 00:46:13 -0700144 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700145 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700146
Junxiao Shi330136a2016-03-10 04:53:08 -0700147 // detect duplicate Nonce in PIT entry
Junxiao Shifef73e42016-03-29 14:15:05 -0700148 bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) !=
149 fw::DUPLICATE_NONCE_NONE;
Junxiao Shi330136a2016-03-10 04:53:08 -0700150 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700151 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700152 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700153 return;
154 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700155
Junxiao Shid3c792f2014-01-30 00:46:13 -0700156 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000157 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700158
Junxiao Shif3c07812014-03-11 21:48:49 -0700159 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700160 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600161 m_cs.find(interest,
162 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
163 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700164 }
mzhang4eab72492015-02-25 11:16:09 -0600165 else {
166 this->onContentStoreMiss(inFace, pitEntry, interest);
167 }
168}
Junxiao Shic041ca32014-02-25 20:01:15 -0700169
mzhang4eab72492015-02-25 11:16:09 -0600170void
Junxiao Shi330136a2016-03-10 04:53:08 -0700171Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700172{
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700173 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700174 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700175 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
176 " interest=" << interest.getName() <<
177 " drop");
178 return;
179 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700180
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700181 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
182 " interest=" << interest.getName() <<
183 " send-Nack-duplicate");
184
185 // send Nack with reason=DUPLICATE
186 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
187 lp::Nack nack(interest);
188 nack.setReason(lp::NackReason::DUPLICATE);
189 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700190}
191
192void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000193Forwarder::onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600194 const Interest& interest)
195{
196 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
197
Junxiao Shi4846f372016-04-05 13:39:30 -0700198 // insert in-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000199 pitEntry->insertOrUpdateInRecord(const_cast<Face&>(inFace), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700200
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700201 // set PIT unsatisfy timer
202 this->setUnsatisfyTimer(pitEntry);
203
Junxiao Shie342e8d2016-09-18 16:48:00 +0000204 // has NextHopFaceId?
205 shared_ptr<lp::NextHopFaceIdTag> nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
206 if (nextHopTag != nullptr) {
207 // chosen NextHop face exists?
208 Face* nextHopFace = m_faceTable.get(*nextHopTag);
209 if (nextHopFace != nullptr) {
210 // go to outgoing Interest pipeline
211 this->onOutgoingInterest(pitEntry, *nextHopFace);
212 }
213 return;
214 }
215
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000216 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000217 this->dispatchToStrategy(*pitEntry,
218 [&] (fw::Strategy& strategy) { strategy.afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700219}
220
221void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000222Forwarder::onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
223 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600224{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500225 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
mzhang4eab72492015-02-25 11:16:09 -0600226
Junxiao Shicde37ad2015-12-24 01:02:05 -0700227 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600228 // XXX should we lookup PIT for other Interests that also match csMatch?
229
230 // set PIT straggler timer
231 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
232
233 // goto outgoing Data pipeline
234 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
235}
236
Junxiao Shid3c792f2014-01-30 00:46:13 -0700237void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000238Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700239 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700240{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700241 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700242 NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName());
243 return;
244 }
Junxiao Shif3c07812014-03-11 21:48:49 -0700245 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
246 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700247
Junxiao Shi57f0f312014-03-16 11:52:20 -0700248 // scope control
Junxiao Shifef73e42016-03-29 14:15:05 -0700249 if (fw::violatesScope(*pitEntry, outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700250 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700251 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700252 return;
253 }
254
Junxiao Shid3c792f2014-01-30 00:46:13 -0700255 // pick Interest
Junxiao Shi891f47b2016-06-20 00:02:11 +0000256 // The outgoing Interest picked is the last incoming Interest that does not come from outFace.
257 // If all in-records come from outFace, it's fine to pick that.
258 // This happens when there's only one in-record that comes from outFace.
259 // The legit use is for vehicular network; otherwise, strategy shouldn't send to the sole inFace.
Junxiao Shi4846f372016-04-05 13:39:30 -0700260 pit::InRecordCollection::iterator pickedInRecord = std::max_element(
Junxiao Shi891f47b2016-06-20 00:02:11 +0000261 pitEntry->in_begin(), pitEntry->in_end(),
262 [&outFace] (const pit::InRecord& a, const pit::InRecord& b) {
Junxiao Shi9cff7792016-08-01 21:45:11 +0000263 bool isOutFaceA = &a.getFace() == &outFace;
264 bool isOutFaceB = &b.getFace() == &outFace;
Junxiao Shi891f47b2016-06-20 00:02:11 +0000265 return (isOutFaceA > isOutFaceB) ||
266 (isOutFaceA == isOutFaceB && a.getLastRenewed() < b.getLastRenewed());
267 });
Junxiao Shi4846f372016-04-05 13:39:30 -0700268 BOOST_ASSERT(pickedInRecord != pitEntry->in_end());
269 auto interest = const_pointer_cast<Interest>(pickedInRecord->getInterest().shared_from_this());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700270
271 if (wantNewNonce) {
272 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700273 static boost::random::uniform_int_distribution<uint32_t> dist;
274 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700275 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700276
Junxiao Shi4846f372016-04-05 13:39:30 -0700277 // insert out-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000278 pitEntry->insertOrUpdateOutRecord(outFace, *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700279
Junxiao Shid3c792f2014-01-30 00:46:13 -0700280 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700281 outFace.sendInterest(*interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700282 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700283}
284
285void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000286Forwarder::onInterestReject(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700287{
Junxiao Shifef73e42016-03-29 14:15:05 -0700288 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700289 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
290 " cannot reject forwarded Interest");
291 return;
292 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700293 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700294
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700295 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000296 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700297
Junxiao Shid3c792f2014-01-30 00:46:13 -0700298 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700299 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700300}
301
302void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000303Forwarder::onInterestUnsatisfied(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700304{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700305 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
306
Junxiao Shid3c792f2014-01-30 00:46:13 -0700307 // invoke PIT unsatisfied callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000308 this->dispatchToStrategy(*pitEntry,
309 [&] (fw::Strategy& strategy) { strategy.beforeExpirePendingInterest(pitEntry); });
Junxiao Shic041ca32014-02-25 20:01:15 -0700310
Junxiao Shia110f262014-10-12 12:35:20 -0700311 // goto Interest Finalize pipeline
312 this->onInterestFinalize(pitEntry, false);
313}
314
315void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000316Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
317 time::milliseconds dataFreshnessPeriod)
Junxiao Shia110f262014-10-12 12:35:20 -0700318{
319 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
320 (isSatisfied ? " satisfied" : " unsatisfied"));
321
322 // Dead Nonce List insert if necessary
323 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
324
Junxiao Shif3c07812014-03-11 21:48:49 -0700325 // PIT delete
Junxiao Shib9420cf2016-08-13 04:38:52 +0000326 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000327 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700328}
329
330void
331Forwarder::onIncomingData(Face& inFace, const Data& data)
332{
333 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700334 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000335 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700336 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700337
Junxiao Shi88884492014-02-15 15:57:43 -0700338 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700339 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700340 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700341 if (isViolatingLocalhost) {
342 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
343 " data=" << data.getName() << " violates /localhost");
344 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700345 return;
346 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700347
Junxiao Shid3c792f2014-01-30 00:46:13 -0700348 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700349 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
350 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700351 // goto Data unsolicited pipeline
352 this->onDataUnsolicited(inFace, data);
353 return;
354 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700355
Junxiao Shid3c792f2014-01-30 00:46:13 -0700356 // CS insert
357 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700358
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700359 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700360 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700361 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700362 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700363 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700364
Junxiao Shid3c792f2014-01-30 00:46:13 -0700365 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000366 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700367
Junxiao Shid3c792f2014-01-30 00:46:13 -0700368 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700369 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
370 if (inRecord.getExpiry() > now) {
Junxiao Shi9cff7792016-08-01 21:45:11 +0000371 pendingDownstreams.insert(&inRecord.getFace());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700372 }
373 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700374
Junxiao Shid938a6b2014-05-11 23:40:29 -0700375 // invoke PIT satisfy callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000376 this->dispatchToStrategy(*pitEntry,
377 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700378
Junxiao Shi4846f372016-04-05 13:39:30 -0700379 // Dead Nonce List insert if necessary (for out-record of inFace)
Junxiao Shia110f262014-10-12 12:35:20 -0700380 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
381
Junxiao Shid3c792f2014-01-30 00:46:13 -0700382 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700383 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700384 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700385
Junxiao Shid3c792f2014-01-30 00:46:13 -0700386 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700387 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700388 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700389
Junxiao Shid3c792f2014-01-30 00:46:13 -0700390 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700391 for (Face* pendingDownstream : pendingDownstreams) {
392 if (pendingDownstream == &inFace) {
Junxiao Shida006f52014-05-16 11:18:00 -0700393 continue;
394 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700395 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700396 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700397 }
398}
399
400void
401Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
402{
403 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000404 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
405 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700406 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700407 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700408 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700409
Junxiao Shif3c07812014-03-11 21:48:49 -0700410 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
411 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000412 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700413}
414
415void
416Forwarder::onOutgoingData(const Data& data, Face& outFace)
417{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700418 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700419 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
420 return;
421 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700422 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
423
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700424 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700425 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700426 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700427 if (isViolatingLocalhost) {
428 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
429 " data=" << data.getName() << " violates /localhost");
430 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700431 return;
432 }
433
Junxiao Shif3c07812014-03-11 21:48:49 -0700434 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700435
Junxiao Shid3c792f2014-01-30 00:46:13 -0700436 // send Data
437 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700438 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700439}
440
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700441void
442Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
443{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000444 // receive Nack
445 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700446 ++m_counters.nInNacks;
447
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700448 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700449 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700450 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
451 " nack=" << nack.getInterest().getName() <<
452 "~" << nack.getReason() << " face-is-multi-access");
453 return;
454 }
455
456 // PIT match
457 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
458 // if no PIT entry found, drop
459 if (pitEntry == nullptr) {
460 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
461 " nack=" << nack.getInterest().getName() <<
462 "~" << nack.getReason() << " no-PIT-entry");
463 return;
464 }
465
466 // has out-record?
467 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
468 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700469 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700470 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
471 " nack=" << nack.getInterest().getName() <<
472 "~" << nack.getReason() << " no-out-record");
473 return;
474 }
475
476 // if out-record has different Nonce, drop
477 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
478 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
479 " nack=" << nack.getInterest().getName() <<
480 "~" << nack.getReason() << " wrong-Nonce " <<
481 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
482 return;
483 }
484
485 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
486 " nack=" << nack.getInterest().getName() <<
487 "~" << nack.getReason() << " OK");
488
489 // record Nack on out-record
490 outRecord->setIncomingNack(nack);
491
492 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000493 this->dispatchToStrategy(*pitEntry,
494 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700495}
496
497void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000498Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700499 const lp::NackHeader& nack)
500{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700501 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700502 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
503 " nack=" << pitEntry->getInterest().getName() <<
504 "~" << nack.getReason() << " no-in-record");
505 return;
506 }
507
508 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700509 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700510
511 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700512 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700513 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
514 " nack=" << pitEntry->getInterest().getName() <<
515 "~" << nack.getReason() << " no-in-record");
516 return;
517 }
518
519 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700520 if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700521 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
522 " nack=" << pitEntry->getInterest().getName() <<
523 "~" << nack.getReason() << " face-is-multi-access");
524 return;
525 }
526
527 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
528 " nack=" << pitEntry->getInterest().getName() <<
529 "~" << nack.getReason() << " OK");
530
531 // create Nack packet with the Interest from in-record
532 lp::Nack nackPkt(inRecord->getInterest());
533 nackPkt.setHeader(nack);
534
535 // erase in-record
536 pitEntry->deleteInRecord(outFace);
537
538 // send Nack on face
539 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700540 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700541}
542
Junxiao Shid3c792f2014-01-30 00:46:13 -0700543static inline bool
544compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
545{
546 return a.getExpiry() < b.getExpiry();
547}
548
549void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000550Forwarder::setUnsatisfyTimer(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700551{
Junxiao Shi4846f372016-04-05 13:39:30 -0700552 pit::InRecordCollection::iterator lastExpiring =
553 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700554
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700555 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700556 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
557 if (lastExpiryFromNow <= time::seconds::zero()) {
558 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700559 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700560
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700561 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700562 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700563 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
564}
565
566void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000567Forwarder::setStragglerTimer(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
568 time::milliseconds dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700569{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700570 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700571
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700572 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700573 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700574 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700575}
576
577void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000578Forwarder::cancelUnsatisfyAndStragglerTimer(pit::Entry& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700579{
Junxiao Shib9420cf2016-08-13 04:38:52 +0000580 scheduler::cancel(pitEntry.m_unsatisfyTimer);
581 scheduler::cancel(pitEntry.m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700582}
583
Junxiao Shia110f262014-10-12 12:35:20 -0700584static inline void
585insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
586 const pit::OutRecord& outRecord)
587{
588 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
589}
590
591void
592Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
Junxiao Shib9420cf2016-08-13 04:38:52 +0000593 time::milliseconds dataFreshnessPeriod, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700594{
595 // need Dead Nonce List insert?
596 bool needDnl = false;
597 if (isSatisfied) {
598 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
599 // Data never becomes stale if it doesn't have FreshnessPeriod field
600 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
601 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
602 }
603 else {
604 needDnl = true;
605 }
606
607 if (!needDnl) {
608 return;
609 }
610
611 // Dead Nonce List insert
612 if (upstream == 0) {
613 // insert all outgoing Nonces
614 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
615 std::for_each(outRecords.begin(), outRecords.end(),
616 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
617 }
618 else {
619 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700620 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700621 if (outRecord != pitEntry.getOutRecords().end()) {
622 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
623 }
624 }
625}
626
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800627} // namespace nfd