blob: 7482cf461dd71e8cb8d7a50bb2c296ea02491690 [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 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{
41 return fw::BestRouteStrategy2::STRATEGY_NAME;
42}
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 });
64 });
65
66 m_faceTable.beforeRemove.connect([this] (Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000067 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000068 });
Junxiao Shic34d1672016-12-09 15:57:59 +000069
70 m_strategyChoice.setDefaultStrategy(getDefaultStrategyName());
71 m_strategyChoice.installFromRegistry();
Alexander Afanasyev33b72772014-01-26 23:22:58 -080072}
73
Junxiao Shidcffdaa2016-07-26 02:23:56 +000074Forwarder::~Forwarder() = default;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060075
Junxiao Shi0355e9f2015-09-02 07:24:53 -070076void
77Forwarder::startProcessInterest(Face& face, const Interest& interest)
78{
79 // check fields used by forwarding are well-formed
80 try {
81 if (interest.hasLink()) {
82 interest.getLink();
83 }
84 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070085 catch (const tlv::Error&) {
Junxiao Shi0355e9f2015-09-02 07:24:53 -070086 NFD_LOG_DEBUG("startProcessInterest face=" << face.getId() <<
87 " interest=" << interest.getName() << " malformed");
88 // It's safe to call interest.getName() because Name has been fully parsed
89 return;
90 }
91
92 this->onIncomingInterest(face, interest);
93}
94
95void
96Forwarder::startProcessData(Face& face, const Data& data)
97{
98 // check fields used by forwarding are well-formed
99 // (none needed)
100
101 this->onIncomingData(face, data);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600102}
103
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800104void
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700105Forwarder::startProcessNack(Face& face, const lp::Nack& nack)
106{
107 // check fields used by forwarding are well-formed
108 try {
109 if (nack.getInterest().hasLink()) {
110 nack.getInterest().getLink();
111 }
112 }
113 catch (const tlv::Error&) {
114 NFD_LOG_DEBUG("startProcessNack face=" << face.getId() <<
115 " nack=" << nack.getInterest().getName() <<
116 "~" << nack.getReason() << " malformed");
117 return;
118 }
119
120 this->onIncomingNack(face, nack);
121}
122
123void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700124Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
125{
126 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700127 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
128 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000129 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700130 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -0700131
Junxiao Shi88884492014-02-15 15:57:43 -0700132 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700133 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700134 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700135 if (isViolatingLocalhost) {
136 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
137 " interest=" << interest.getName() << " violates /localhost");
138 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700139 return;
140 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700141
Junxiao Shi330136a2016-03-10 04:53:08 -0700142 // detect duplicate Nonce with Dead Nonce List
143 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
144 if (hasDuplicateNonceInDnl) {
145 // goto Interest loop pipeline
146 this->onInterestLoop(inFace, interest);
147 return;
148 }
149
Junxiao Shid3c792f2014-01-30 00:46:13 -0700150 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700151 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700152
Junxiao Shi330136a2016-03-10 04:53:08 -0700153 // detect duplicate Nonce in PIT entry
Junxiao Shifef73e42016-03-29 14:15:05 -0700154 bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) !=
155 fw::DUPLICATE_NONCE_NONE;
Junxiao Shi330136a2016-03-10 04:53:08 -0700156 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700157 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700158 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700159 return;
160 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700161
Junxiao Shid3c792f2014-01-30 00:46:13 -0700162 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000163 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700164
Junxiao Shif3c07812014-03-11 21:48:49 -0700165 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700166 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600167 m_cs.find(interest,
168 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
169 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700170 }
mzhang4eab72492015-02-25 11:16:09 -0600171 else {
172 this->onContentStoreMiss(inFace, pitEntry, interest);
173 }
174}
Junxiao Shic041ca32014-02-25 20:01:15 -0700175
mzhang4eab72492015-02-25 11:16:09 -0600176void
Junxiao Shi330136a2016-03-10 04:53:08 -0700177Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700178{
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700179 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700180 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700181 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
182 " interest=" << interest.getName() <<
183 " drop");
184 return;
185 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700186
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700187 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
188 " interest=" << interest.getName() <<
189 " send-Nack-duplicate");
190
191 // send Nack with reason=DUPLICATE
192 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
193 lp::Nack nack(interest);
194 nack.setReason(lp::NackReason::DUPLICATE);
195 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700196}
197
198void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000199Forwarder::onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600200 const Interest& interest)
201{
202 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
203
Junxiao Shi4846f372016-04-05 13:39:30 -0700204 // insert in-record
Junxiao Shi9cff7792016-08-01 21:45:11 +0000205 pitEntry->insertOrUpdateInRecord(const_cast<Face&>(inFace), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700206
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700207 // set PIT unsatisfy timer
208 this->setUnsatisfyTimer(pitEntry);
209
Junxiao Shie342e8d2016-09-18 16:48:00 +0000210 // has NextHopFaceId?
211 shared_ptr<lp::NextHopFaceIdTag> nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
212 if (nextHopTag != nullptr) {
213 // chosen NextHop face exists?
214 Face* nextHopFace = m_faceTable.get(*nextHopTag);
215 if (nextHopFace != nullptr) {
Junxiao Shic5f651f2016-11-17 22:58:12 +0000216 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName() << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000217 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000218 // scope control is unnecessary, because privileged app explicitly wants to forward
219 this->onOutgoingInterest(pitEntry, *nextHopFace, interest);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000220 }
221 return;
222 }
223
Junxiao Shi05cc50a2016-07-11 22:38:21 +0000224 // dispatch to strategy: after incoming Interest
Junxiao Shib9420cf2016-08-13 04:38:52 +0000225 this->dispatchToStrategy(*pitEntry,
226 [&] (fw::Strategy& strategy) { strategy.afterReceiveInterest(inFace, interest, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700227}
228
229void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000230Forwarder::onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
231 const Interest& interest, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600232{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500233 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
mzhang4eab72492015-02-25 11:16:09 -0600234
Junxiao Shicde37ad2015-12-24 01:02:05 -0700235 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600236 // XXX should we lookup PIT for other Interests that also match csMatch?
237
238 // set PIT straggler timer
239 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
240
241 // goto outgoing Data pipeline
242 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
243}
244
Junxiao Shid3c792f2014-01-30 00:46:13 -0700245void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000246Forwarder::onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, const Interest& interest)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700247{
Junxiao Shif3c07812014-03-11 21:48:49 -0700248 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
249 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700250
Junxiao Shi4846f372016-04-05 13:39:30 -0700251 // insert out-record
Junxiao Shic5f651f2016-11-17 22:58:12 +0000252 pitEntry->insertOrUpdateOutRecord(outFace, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700253
Junxiao Shid3c792f2014-01-30 00:46:13 -0700254 // send Interest
Junxiao Shic5f651f2016-11-17 22:58:12 +0000255 outFace.sendInterest(interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700256 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700257}
258
259void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000260Forwarder::onInterestReject(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700261{
Junxiao Shifef73e42016-03-29 14:15:05 -0700262 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700263 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
264 " cannot reject forwarded Interest");
265 return;
266 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700267 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700268
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700269 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000270 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700271
Junxiao Shid3c792f2014-01-30 00:46:13 -0700272 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700273 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700274}
275
276void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000277Forwarder::onInterestUnsatisfied(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700279 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
280
Junxiao Shid3c792f2014-01-30 00:46:13 -0700281 // invoke PIT unsatisfied callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000282 this->dispatchToStrategy(*pitEntry,
283 [&] (fw::Strategy& strategy) { strategy.beforeExpirePendingInterest(pitEntry); });
Junxiao Shic041ca32014-02-25 20:01:15 -0700284
Junxiao Shia110f262014-10-12 12:35:20 -0700285 // goto Interest Finalize pipeline
286 this->onInterestFinalize(pitEntry, false);
287}
288
289void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000290Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
291 time::milliseconds dataFreshnessPeriod)
Junxiao Shia110f262014-10-12 12:35:20 -0700292{
293 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
294 (isSatisfied ? " satisfied" : " unsatisfied"));
295
296 // Dead Nonce List insert if necessary
297 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
298
Junxiao Shif3c07812014-03-11 21:48:49 -0700299 // PIT delete
Junxiao Shib9420cf2016-08-13 04:38:52 +0000300 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000301 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700302}
303
304void
305Forwarder::onIncomingData(Face& inFace, const Data& data)
306{
307 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700308 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000309 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700310 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700311
Junxiao Shi88884492014-02-15 15:57:43 -0700312 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700313 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700314 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700315 if (isViolatingLocalhost) {
316 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
317 " data=" << data.getName() << " violates /localhost");
318 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700319 return;
320 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700321
Junxiao Shid3c792f2014-01-30 00:46:13 -0700322 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700323 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
324 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700325 // goto Data unsolicited pipeline
326 this->onDataUnsolicited(inFace, data);
327 return;
328 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700329
Junxiao Shid3c792f2014-01-30 00:46:13 -0700330 // CS insert
331 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700332
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700333 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700334 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700335 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700336 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700337 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700338
Junxiao Shid3c792f2014-01-30 00:46:13 -0700339 // cancel unsatisfy & straggler timer
Junxiao Shib9420cf2016-08-13 04:38:52 +0000340 this->cancelUnsatisfyAndStragglerTimer(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700341
Junxiao Shid3c792f2014-01-30 00:46:13 -0700342 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700343 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
344 if (inRecord.getExpiry() > now) {
Junxiao Shi9cff7792016-08-01 21:45:11 +0000345 pendingDownstreams.insert(&inRecord.getFace());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700346 }
347 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700348
Junxiao Shid938a6b2014-05-11 23:40:29 -0700349 // invoke PIT satisfy callback
Junxiao Shib9420cf2016-08-13 04:38:52 +0000350 this->dispatchToStrategy(*pitEntry,
351 [&] (fw::Strategy& strategy) { strategy.beforeSatisfyInterest(pitEntry, inFace, data); });
Junxiao Shid938a6b2014-05-11 23:40:29 -0700352
Junxiao Shi4846f372016-04-05 13:39:30 -0700353 // Dead Nonce List insert if necessary (for out-record of inFace)
Junxiao Shia110f262014-10-12 12:35:20 -0700354 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
355
Junxiao Shid3c792f2014-01-30 00:46:13 -0700356 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700357 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700358 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700359
Junxiao Shid3c792f2014-01-30 00:46:13 -0700360 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700361 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700362 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700363
Junxiao Shid3c792f2014-01-30 00:46:13 -0700364 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700365 for (Face* pendingDownstream : pendingDownstreams) {
366 if (pendingDownstream == &inFace) {
Junxiao Shida006f52014-05-16 11:18:00 -0700367 continue;
368 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700369 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700370 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700371 }
372}
373
374void
375Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
376{
377 // accept to cache?
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000378 fw::UnsolicitedDataDecision decision = m_unsolicitedDataPolicy->decide(inFace, data);
379 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700380 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700381 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700382 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700383
Junxiao Shif3c07812014-03-11 21:48:49 -0700384 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
385 " data=" << data.getName() <<
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000386 " decision=" << decision);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700387}
388
389void
390Forwarder::onOutgoingData(const Data& data, Face& outFace)
391{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700392 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700393 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
394 return;
395 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700396 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
397
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700398 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700399 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700400 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700401 if (isViolatingLocalhost) {
402 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
403 " data=" << data.getName() << " violates /localhost");
404 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700405 return;
406 }
407
Junxiao Shif3c07812014-03-11 21:48:49 -0700408 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700409
Junxiao Shid3c792f2014-01-30 00:46:13 -0700410 // send Data
411 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700412 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700413}
414
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700415void
416Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
417{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000418 // receive Nack
419 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700420 ++m_counters.nInNacks;
421
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700422 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700423 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700424 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
425 " nack=" << nack.getInterest().getName() <<
426 "~" << nack.getReason() << " face-is-multi-access");
427 return;
428 }
429
430 // PIT match
431 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
432 // if no PIT entry found, drop
433 if (pitEntry == nullptr) {
434 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
435 " nack=" << nack.getInterest().getName() <<
436 "~" << nack.getReason() << " no-PIT-entry");
437 return;
438 }
439
440 // has out-record?
441 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
442 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700443 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700444 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
445 " nack=" << nack.getInterest().getName() <<
446 "~" << nack.getReason() << " no-out-record");
447 return;
448 }
449
450 // if out-record has different Nonce, drop
451 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
452 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
453 " nack=" << nack.getInterest().getName() <<
454 "~" << nack.getReason() << " wrong-Nonce " <<
455 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
456 return;
457 }
458
459 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
460 " nack=" << nack.getInterest().getName() <<
461 "~" << nack.getReason() << " OK");
462
463 // record Nack on out-record
464 outRecord->setIncomingNack(nack);
465
466 // trigger strategy: after receive NACK
Junxiao Shib9420cf2016-08-13 04:38:52 +0000467 this->dispatchToStrategy(*pitEntry,
468 [&] (fw::Strategy& strategy) { strategy.afterReceiveNack(inFace, nack, pitEntry); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700469}
470
471void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000472Forwarder::onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700473 const lp::NackHeader& nack)
474{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700475 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700476 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
477 " nack=" << pitEntry->getInterest().getName() <<
478 "~" << nack.getReason() << " no-in-record");
479 return;
480 }
481
482 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700483 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700484
485 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700486 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700487 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
488 " nack=" << pitEntry->getInterest().getName() <<
489 "~" << nack.getReason() << " no-in-record");
490 return;
491 }
492
493 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700494 if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700495 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
496 " nack=" << pitEntry->getInterest().getName() <<
497 "~" << nack.getReason() << " face-is-multi-access");
498 return;
499 }
500
501 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
502 " nack=" << pitEntry->getInterest().getName() <<
503 "~" << nack.getReason() << " OK");
504
505 // create Nack packet with the Interest from in-record
506 lp::Nack nackPkt(inRecord->getInterest());
507 nackPkt.setHeader(nack);
508
509 // erase in-record
510 pitEntry->deleteInRecord(outFace);
511
512 // send Nack on face
513 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700514 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700515}
516
Junxiao Shid3c792f2014-01-30 00:46:13 -0700517static inline bool
518compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
519{
520 return a.getExpiry() < b.getExpiry();
521}
522
523void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000524Forwarder::setUnsatisfyTimer(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700525{
Junxiao Shi4846f372016-04-05 13:39:30 -0700526 pit::InRecordCollection::iterator lastExpiring =
527 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700528
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700529 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700530 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
531 if (lastExpiryFromNow <= time::seconds::zero()) {
532 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700533 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700534
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700535 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700536 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700537 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
538}
539
540void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000541Forwarder::setStragglerTimer(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
542 time::milliseconds dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700543{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700544 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700545
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700546 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700547 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700548 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700549}
550
551void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000552Forwarder::cancelUnsatisfyAndStragglerTimer(pit::Entry& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700553{
Junxiao Shib9420cf2016-08-13 04:38:52 +0000554 scheduler::cancel(pitEntry.m_unsatisfyTimer);
555 scheduler::cancel(pitEntry.m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700556}
557
Junxiao Shia110f262014-10-12 12:35:20 -0700558static inline void
559insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
560 const pit::OutRecord& outRecord)
561{
562 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
563}
564
565void
566Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
Junxiao Shib9420cf2016-08-13 04:38:52 +0000567 time::milliseconds dataFreshnessPeriod, Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700568{
569 // need Dead Nonce List insert?
570 bool needDnl = false;
571 if (isSatisfied) {
572 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
573 // Data never becomes stale if it doesn't have FreshnessPeriod field
574 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
575 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
576 }
577 else {
578 needDnl = true;
579 }
580
581 if (!needDnl) {
582 return;
583 }
584
585 // Dead Nonce List insert
586 if (upstream == 0) {
587 // insert all outgoing Nonces
588 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
589 std::for_each(outRecords.begin(), outRecords.end(),
590 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
591 }
592 else {
593 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700594 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700595 if (outRecord != pitEntry.getOutRecords().end()) {
596 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
597 }
598 }
599}
600
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800601} // namespace nfd