blob: 3578bb71d0f37020ff86a4f9c9ca2c8b6092b582 [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 Shiaf6569a2014-06-14 00:01:34 -070031#include <boost/random/uniform_int_distribution.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080032
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080033namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080034
Junxiao Shi8c8d2182014-01-30 22:33:00 -070035NFD_LOG_INIT("Forwarder");
36
Junxiao Shif3c07812014-03-11 21:48:49 -070037using fw::Strategy;
38
Junxiao Shic041ca32014-02-25 20:01:15 -070039Forwarder::Forwarder()
Junxiao Shia4f2be82014-03-02 22:56:41 -070040 : m_faceTable(*this)
HangZhangad4afd12014-03-01 11:03:08 +080041 , 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);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080047}
48
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060049Forwarder::~Forwarder()
50{
Junxiao Shi0355e9f2015-09-02 07:24:53 -070051}
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060052
Junxiao Shi0355e9f2015-09-02 07:24:53 -070053void
54Forwarder::startProcessInterest(Face& face, const Interest& interest)
55{
56 // check fields used by forwarding are well-formed
57 try {
58 if (interest.hasLink()) {
59 interest.getLink();
60 }
61 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070062 catch (const tlv::Error&) {
Junxiao Shi0355e9f2015-09-02 07:24:53 -070063 NFD_LOG_DEBUG("startProcessInterest face=" << face.getId() <<
64 " interest=" << interest.getName() << " malformed");
65 // It's safe to call interest.getName() because Name has been fully parsed
66 return;
67 }
68
69 this->onIncomingInterest(face, interest);
70}
71
72void
73Forwarder::startProcessData(Face& face, const Data& data)
74{
75 // check fields used by forwarding are well-formed
76 // (none needed)
77
78 this->onIncomingData(face, data);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060079}
80
Alexander Afanasyev33b72772014-01-26 23:22:58 -080081void
Junxiao Shi5e5e4452015-09-24 16:56:52 -070082Forwarder::startProcessNack(Face& face, const lp::Nack& nack)
83{
84 // check fields used by forwarding are well-formed
85 try {
86 if (nack.getInterest().hasLink()) {
87 nack.getInterest().getLink();
88 }
89 }
90 catch (const tlv::Error&) {
91 NFD_LOG_DEBUG("startProcessNack face=" << face.getId() <<
92 " nack=" << nack.getInterest().getName() <<
93 "~" << nack.getReason() << " malformed");
94 return;
95 }
96
97 this->onIncomingNack(face, nack);
98}
99
100void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700101Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
102{
103 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700104 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
105 " interest=" << interest.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000106 interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700107 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -0700108
Junxiao Shi88884492014-02-15 15:57:43 -0700109 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700110 bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700111 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700112 if (isViolatingLocalhost) {
113 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
114 " interest=" << interest.getName() << " violates /localhost");
115 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700116 return;
117 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700118
Junxiao Shi330136a2016-03-10 04:53:08 -0700119 // detect duplicate Nonce with Dead Nonce List
120 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), interest.getNonce());
121 if (hasDuplicateNonceInDnl) {
122 // goto Interest loop pipeline
123 this->onInterestLoop(inFace, interest);
124 return;
125 }
126
Junxiao Shid3c792f2014-01-30 00:46:13 -0700127 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700128 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700129
Junxiao Shi330136a2016-03-10 04:53:08 -0700130 // detect duplicate Nonce in PIT entry
Junxiao Shifef73e42016-03-29 14:15:05 -0700131 bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) !=
132 fw::DUPLICATE_NONCE_NONE;
Junxiao Shi330136a2016-03-10 04:53:08 -0700133 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700134 // goto Interest loop pipeline
Junxiao Shi330136a2016-03-10 04:53:08 -0700135 this->onInterestLoop(inFace, interest);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700136 return;
137 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700138
Junxiao Shid3c792f2014-01-30 00:46:13 -0700139 // cancel unsatisfy & straggler timer
140 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700141
Junxiao Shif3c07812014-03-11 21:48:49 -0700142 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700143 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600144 m_cs.find(interest,
145 bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2),
146 bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700147 }
mzhang4eab72492015-02-25 11:16:09 -0600148 else {
149 this->onContentStoreMiss(inFace, pitEntry, interest);
150 }
151}
Junxiao Shic041ca32014-02-25 20:01:15 -0700152
mzhang4eab72492015-02-25 11:16:09 -0600153void
Junxiao Shi330136a2016-03-10 04:53:08 -0700154Forwarder::onInterestLoop(Face& inFace, const Interest& interest)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700155{
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700156 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700157 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700158 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
159 " interest=" << interest.getName() <<
160 " drop");
161 return;
162 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700163
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700164 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
165 " interest=" << interest.getName() <<
166 " send-Nack-duplicate");
167
168 // send Nack with reason=DUPLICATE
169 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
170 lp::Nack nack(interest);
171 nack.setReason(lp::NackReason::DUPLICATE);
172 inFace.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700173}
174
175void
mzhang4eab72492015-02-25 11:16:09 -0600176Forwarder::onContentStoreMiss(const Face& inFace,
177 shared_ptr<pit::Entry> pitEntry,
178 const Interest& interest)
179{
180 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName());
181
182 shared_ptr<Face> face = const_pointer_cast<Face>(inFace.shared_from_this());
Junxiao Shi4846f372016-04-05 13:39:30 -0700183 // insert in-record
mzhang4eab72492015-02-25 11:16:09 -0600184 pitEntry->insertOrUpdateInRecord(face, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700185
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700186 // set PIT unsatisfy timer
187 this->setUnsatisfyTimer(pitEntry);
188
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700189 shared_ptr<fib::Entry> fibEntry;
190 // has Link object?
191 if (!interest.hasLink()) {
192 // FIB lookup with Interest name
193 fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
194 NFD_LOG_TRACE("onContentStoreMiss noLinkObject");
195 }
196 else {
197 const Link& link = interest.getLink();
198
199 // in producer region?
200 if (m_networkRegionTable.isInProducerRegion(link)) {
201 // FIB lookup with Interest name
202 fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
203 NFD_LOG_TRACE("onContentStoreMiss inProducerRegion");
204 }
205 // has SelectedDelegation?
206 else if (interest.hasSelectedDelegation()) {
207 // FIB lookup with SelectedDelegation
208 fibEntry = m_fib.findLongestPrefixMatch(interest.getSelectedDelegation());
209 NFD_LOG_TRACE("onContentStoreMiss hasSelectedDelegation=" << interest.getSelectedDelegation());
210 }
211 else {
212 // FIB lookup with first delegation Name
213 fibEntry = m_fib.findLongestPrefixMatch(link.getDelegations().begin()->second);
214
215 // in default-free zone?
216 bool isDefaultFreeZone = !(fibEntry->getPrefix().size() == 0 && fibEntry->hasNextHops());
217 if (isDefaultFreeZone) {
218 // choose and set SelectedDelegation
219 for (const std::pair<uint32_t, Name>& delegation : link.getDelegations()) {
220 const Name& delegationName = delegation.second;
221 fibEntry = m_fib.findLongestPrefixMatch(delegationName);
222 if (fibEntry->hasNextHops()) {
223 const_cast<Interest&>(interest).setSelectedDelegation(delegationName);
224 NFD_LOG_TRACE("onContentStoreMiss enterDefaultFreeZone"
225 << " setSelectedDelegation=" << delegationName);
226 break;
227 }
228 }
229 }
230 else {
231 NFD_LOG_TRACE("onContentStoreMiss inConsumerRegion");
232 }
233 }
234 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700235
Junxiao Shid3c792f2014-01-30 00:46:13 -0700236 // dispatch to strategy
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700237 BOOST_ASSERT(fibEntry != nullptr);
Junxiao Shif3c07812014-03-11 21:48:49 -0700238 this->dispatchToStrategy(pitEntry, bind(&Strategy::afterReceiveInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700239 cref(inFace), cref(interest), fibEntry, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700240}
241
242void
mzhang4eab72492015-02-25 11:16:09 -0600243Forwarder::onContentStoreHit(const Face& inFace,
244 shared_ptr<pit::Entry> pitEntry,
245 const Interest& interest,
246 const Data& data)
247{
Vince Lehmanfaa5c0c2015-08-18 12:52:46 -0500248 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName());
mzhang4eab72492015-02-25 11:16:09 -0600249
Junxiao Shicde37ad2015-12-24 01:02:05 -0700250 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
mzhang4eab72492015-02-25 11:16:09 -0600251 // XXX should we lookup PIT for other Interests that also match csMatch?
252
253 // set PIT straggler timer
254 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
255
256 // goto outgoing Data pipeline
257 this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this()));
258}
259
Junxiao Shid3c792f2014-01-30 00:46:13 -0700260void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700261Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
262 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700263{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700264 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700265 NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName());
266 return;
267 }
Junxiao Shif3c07812014-03-11 21:48:49 -0700268 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
269 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700270
Junxiao Shi57f0f312014-03-16 11:52:20 -0700271 // scope control
Junxiao Shifef73e42016-03-29 14:15:05 -0700272 if (fw::violatesScope(*pitEntry, outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700273 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700274 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700275 return;
276 }
277
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278 // pick Interest
Junxiao Shi891f47b2016-06-20 00:02:11 +0000279 // The outgoing Interest picked is the last incoming Interest that does not come from outFace.
280 // If all in-records come from outFace, it's fine to pick that.
281 // This happens when there's only one in-record that comes from outFace.
282 // The legit use is for vehicular network; otherwise, strategy shouldn't send to the sole inFace.
Junxiao Shi4846f372016-04-05 13:39:30 -0700283 pit::InRecordCollection::iterator pickedInRecord = std::max_element(
Junxiao Shi891f47b2016-06-20 00:02:11 +0000284 pitEntry->in_begin(), pitEntry->in_end(),
285 [&outFace] (const pit::InRecord& a, const pit::InRecord& b) {
286 bool isOutFaceA = a.getFace().get() == &outFace;
287 bool isOutFaceB = b.getFace().get() == &outFace;
288 return (isOutFaceA > isOutFaceB) ||
289 (isOutFaceA == isOutFaceB && a.getLastRenewed() < b.getLastRenewed());
290 });
Junxiao Shi4846f372016-04-05 13:39:30 -0700291 BOOST_ASSERT(pickedInRecord != pitEntry->in_end());
292 auto interest = const_pointer_cast<Interest>(pickedInRecord->getInterest().shared_from_this());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700293
294 if (wantNewNonce) {
295 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700296 static boost::random::uniform_int_distribution<uint32_t> dist;
297 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700298 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700299
Junxiao Shi4846f372016-04-05 13:39:30 -0700300 // insert out-record
Junxiao Shid938a6b2014-05-11 23:40:29 -0700301 pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700302
Junxiao Shid3c792f2014-01-30 00:46:13 -0700303 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700304 outFace.sendInterest(*interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700305 ++m_counters.nOutInterests;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700306}
307
308void
Junxiao Shi09498f02014-02-26 19:41:08 -0700309Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700310{
Junxiao Shifef73e42016-03-29 14:15:05 -0700311 if (fw::hasPendingOutRecords(*pitEntry)) {
Junxiao Shid938a6b2014-05-11 23:40:29 -0700312 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
313 " cannot reject forwarded Interest");
314 return;
315 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700316 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700317
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700318 // cancel unsatisfy & straggler timer
319 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
320
Junxiao Shid3c792f2014-01-30 00:46:13 -0700321 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700322 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700323}
324
325void
326Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry)
327{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700328 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
329
Junxiao Shid3c792f2014-01-30 00:46:13 -0700330 // invoke PIT unsatisfied callback
Junxiao Shif3c07812014-03-11 21:48:49 -0700331 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeExpirePendingInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700332 pitEntry));
Junxiao Shic041ca32014-02-25 20:01:15 -0700333
Junxiao Shia110f262014-10-12 12:35:20 -0700334 // goto Interest Finalize pipeline
335 this->onInterestFinalize(pitEntry, false);
336}
337
338void
339Forwarder::onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
340 const time::milliseconds& dataFreshnessPeriod)
341{
342 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
343 (isSatisfied ? " satisfied" : " unsatisfied"));
344
345 // Dead Nonce List insert if necessary
346 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
347
Junxiao Shif3c07812014-03-11 21:48:49 -0700348 // PIT delete
Junxiao Shid938a6b2014-05-11 23:40:29 -0700349 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600350 m_pit.erase(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700351}
352
353void
354Forwarder::onIncomingData(Face& inFace, const Data& data)
355{
356 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700357 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi0de23a22015-12-03 20:07:02 +0000358 data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700359 ++m_counters.nInData;
Junxiao Shic041ca32014-02-25 20:01:15 -0700360
Junxiao Shi88884492014-02-15 15:57:43 -0700361 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700362 bool isViolatingLocalhost = inFace.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("onIncomingData face=" << inFace.getId() <<
366 " data=" << data.getName() << " violates /localhost");
367 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700368 return;
369 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700370
Junxiao Shid3c792f2014-01-30 00:46:13 -0700371 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700372 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
373 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700374 // goto Data unsolicited pipeline
375 this->onDataUnsolicited(inFace, data);
376 return;
377 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700378
Junxiao Shid3c792f2014-01-30 00:46:13 -0700379 // CS insert
380 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700381
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700382 std::set<Face*> pendingDownstreams;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700383 // foreach PitEntry
Junxiao Shi4846f372016-04-05 13:39:30 -0700384 auto now = time::steady_clock::now();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700385 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700386 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700387
Junxiao Shid3c792f2014-01-30 00:46:13 -0700388 // cancel unsatisfy & straggler timer
389 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700390
Junxiao Shid3c792f2014-01-30 00:46:13 -0700391 // remember pending downstreams
Junxiao Shi4846f372016-04-05 13:39:30 -0700392 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
393 if (inRecord.getExpiry() > now) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700394 pendingDownstreams.insert(inRecord.getFace().get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700395 }
396 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700397
Junxiao Shid938a6b2014-05-11 23:40:29 -0700398 // invoke PIT satisfy callback
Junxiao Shi82e7f582014-09-07 15:15:40 -0700399 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeSatisfyInterest, _1,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700400 pitEntry, cref(inFace), cref(data)));
401
Junxiao Shi4846f372016-04-05 13:39:30 -0700402 // Dead Nonce List insert if necessary (for out-record of inFace)
Junxiao Shia110f262014-10-12 12:35:20 -0700403 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
404
Junxiao Shid3c792f2014-01-30 00:46:13 -0700405 // mark PIT satisfied
Junxiao Shi4846f372016-04-05 13:39:30 -0700406 pitEntry->clearInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700407 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700408
Junxiao Shid3c792f2014-01-30 00:46:13 -0700409 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700410 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700411 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700412
Junxiao Shid3c792f2014-01-30 00:46:13 -0700413 // foreach pending downstream
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700414 for (Face* pendingDownstream : pendingDownstreams) {
415 if (pendingDownstream == &inFace) {
Junxiao Shida006f52014-05-16 11:18:00 -0700416 continue;
417 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700418 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700419 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700420 }
421}
422
423void
424Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
425{
426 // accept to cache?
Junxiao Shicde37ad2015-12-24 01:02:05 -0700427 bool acceptToCache = inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700428 if (acceptToCache) {
429 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700430 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700431 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700432
Junxiao Shif3c07812014-03-11 21:48:49 -0700433 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
434 " data=" << data.getName() <<
435 (acceptToCache ? " cached" : " not cached"));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700436}
437
438void
439Forwarder::onOutgoingData(const Data& data, Face& outFace)
440{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700441 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi223271b2014-07-03 22:06:13 -0700442 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
443 return;
444 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700445 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
446
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700447 // /localhost scope control
Junxiao Shicde37ad2015-12-24 01:02:05 -0700448 bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700449 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700450 if (isViolatingLocalhost) {
451 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
452 " data=" << data.getName() << " violates /localhost");
453 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700454 return;
455 }
456
Junxiao Shif3c07812014-03-11 21:48:49 -0700457 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700458
Junxiao Shid3c792f2014-01-30 00:46:13 -0700459 // send Data
460 outFace.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700461 ++m_counters.nOutData;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700462}
463
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700464void
465Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack)
466{
Junxiao Shi0de23a22015-12-03 20:07:02 +0000467 // receive Nack
468 nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700469 ++m_counters.nInNacks;
470
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700471 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700472 if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700473 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
474 " nack=" << nack.getInterest().getName() <<
475 "~" << nack.getReason() << " face-is-multi-access");
476 return;
477 }
478
479 // PIT match
480 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
481 // if no PIT entry found, drop
482 if (pitEntry == nullptr) {
483 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
484 " nack=" << nack.getInterest().getName() <<
485 "~" << nack.getReason() << " no-PIT-entry");
486 return;
487 }
488
489 // has out-record?
490 pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace);
491 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700492 if (outRecord == pitEntry->out_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700493 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
494 " nack=" << nack.getInterest().getName() <<
495 "~" << nack.getReason() << " no-out-record");
496 return;
497 }
498
499 // if out-record has different Nonce, drop
500 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
501 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
502 " nack=" << nack.getInterest().getName() <<
503 "~" << nack.getReason() << " wrong-Nonce " <<
504 nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce());
505 return;
506 }
507
508 NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() <<
509 " nack=" << nack.getInterest().getName() <<
510 "~" << nack.getReason() << " OK");
511
512 // record Nack on out-record
513 outRecord->setIncomingNack(nack);
514
515 // trigger strategy: after receive NACK
516 shared_ptr<fib::Entry> fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
517 this->dispatchToStrategy(pitEntry, bind(&Strategy::afterReceiveNack, _1,
518 cref(inFace), cref(nack), fibEntry, pitEntry));
519}
520
521void
522Forwarder::onOutgoingNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace,
523 const lp::NackHeader& nack)
524{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700525 if (outFace.getId() == face::INVALID_FACEID) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700526 NFD_LOG_WARN("onOutgoingNack face=invalid" <<
527 " nack=" << pitEntry->getInterest().getName() <<
528 "~" << nack.getReason() << " no-in-record");
529 return;
530 }
531
532 // has in-record?
Junxiao Shi4846f372016-04-05 13:39:30 -0700533 pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700534
535 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700536 if (inRecord == pitEntry->in_end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700537 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
538 " nack=" << pitEntry->getInterest().getName() <<
539 "~" << nack.getReason() << " no-in-record");
540 return;
541 }
542
543 // if multi-access face, drop
Junxiao Shicde37ad2015-12-24 01:02:05 -0700544 if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700545 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
546 " nack=" << pitEntry->getInterest().getName() <<
547 "~" << nack.getReason() << " face-is-multi-access");
548 return;
549 }
550
551 NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() <<
552 " nack=" << pitEntry->getInterest().getName() <<
553 "~" << nack.getReason() << " OK");
554
555 // create Nack packet with the Interest from in-record
556 lp::Nack nackPkt(inRecord->getInterest());
557 nackPkt.setHeader(nack);
558
559 // erase in-record
560 pitEntry->deleteInRecord(outFace);
561
562 // send Nack on face
563 const_cast<Face&>(outFace).sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700564 ++m_counters.nOutNacks;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700565}
566
Junxiao Shid3c792f2014-01-30 00:46:13 -0700567static inline bool
568compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
569{
570 return a.getExpiry() < b.getExpiry();
571}
572
573void
574Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry)
575{
Junxiao Shi4846f372016-04-05 13:39:30 -0700576 pit::InRecordCollection::iterator lastExpiring =
577 std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700578
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700579 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
Junxiao Shi4846f372016-04-05 13:39:30 -0700580 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
581 if (lastExpiryFromNow <= time::seconds::zero()) {
582 // TODO all in-records are already expired; will this happen?
Junxiao Shid3c792f2014-01-30 00:46:13 -0700583 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700584
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700585 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700586 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700587 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
588}
589
590void
Junxiao Shia110f262014-10-12 12:35:20 -0700591Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
592 const time::milliseconds& dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700593{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700594 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700595
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700596 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700597 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700598 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700599}
600
601void
602Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry)
603{
Junxiao Shic041ca32014-02-25 20:01:15 -0700604 scheduler::cancel(pitEntry->m_unsatisfyTimer);
605 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700606}
607
Junxiao Shia110f262014-10-12 12:35:20 -0700608static inline void
609insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
610 const pit::OutRecord& outRecord)
611{
612 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
613}
614
615void
616Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
617 const time::milliseconds& dataFreshnessPeriod,
618 Face* upstream)
619{
620 // need Dead Nonce List insert?
621 bool needDnl = false;
622 if (isSatisfied) {
623 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
624 // Data never becomes stale if it doesn't have FreshnessPeriod field
625 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
626 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
627 }
628 else {
629 needDnl = true;
630 }
631
632 if (!needDnl) {
633 return;
634 }
635
636 // Dead Nonce List insert
637 if (upstream == 0) {
638 // insert all outgoing Nonces
639 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
640 std::for_each(outRecords.begin(), outRecords.end(),
641 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
642 }
643 else {
644 // insert outgoing Nonce of a specific face
Junxiao Shi4846f372016-04-05 13:39:30 -0700645 pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700646 if (outRecord != pitEntry.getOutRecords().end()) {
647 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
648 }
649 }
650}
651
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800652} // namespace nfd