blob: 85d7b6cdc94996f36918e010f6aa93b7702eb60c [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shiaf6569a2014-06-14 00:01:34 -07003 * Copyright (c) 2014, Regents of the University of California,
4 * 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"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070028#include "core/random.hpp"
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -080029#include "face/null-face.hpp"
Junxiao Shid938a6b2014-05-11 23:40:29 -070030#include "available-strategies.hpp"
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -080031
Junxiao Shiaf6569a2014-06-14 00:01:34 -070032#include <boost/random/uniform_int_distribution.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 Shif3c07812014-03-11 21:48:49 -070038using fw::Strategy;
39
Junxiao Shif3c07812014-03-11 21:48:49 -070040const Name Forwarder::LOCALHOST_NAME("ndn:/localhost");
Junxiao Shi88884492014-02-15 15:57:43 -070041
Junxiao Shic041ca32014-02-25 20:01:15 -070042Forwarder::Forwarder()
Junxiao Shia4f2be82014-03-02 22:56:41 -070043 : m_faceTable(*this)
HangZhangad4afd12014-03-01 11:03:08 +080044 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060045 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080046 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070047 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -080048 , m_csFace(make_shared<NullFace>(FaceUri("contentstore://")))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080049{
Junxiao Shif3c07812014-03-11 21:48:49 -070050 fw::installStrategies(*this);
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -080051 getFaceTable().addReserved(m_csFace, FACEID_CONTENT_STORE);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080052}
53
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060054Forwarder::~Forwarder()
55{
56
57}
58
Alexander Afanasyev33b72772014-01-26 23:22:58 -080059void
Junxiao Shid3c792f2014-01-30 00:46:13 -070060Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
61{
62 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -070063 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
64 " interest=" << interest.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -070065 const_cast<Interest&>(interest).setIncomingFaceId(inFace.getId());
Junxiao Shi33152f12014-07-16 19:54:32 -070066 ++m_counters.getNInInterests();
Junxiao Shic041ca32014-02-25 20:01:15 -070067
Junxiao Shi88884492014-02-15 15:57:43 -070068 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -070069 bool isViolatingLocalhost = !inFace.isLocal() &&
70 LOCALHOST_NAME.isPrefixOf(interest.getName());
71 if (isViolatingLocalhost) {
72 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
73 " interest=" << interest.getName() << " violates /localhost");
74 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -070075 return;
76 }
Junxiao Shic041ca32014-02-25 20:01:15 -070077
Junxiao Shid3c792f2014-01-30 00:46:13 -070078 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -070079 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -070080
Junxiao Shia110f262014-10-12 12:35:20 -070081 // detect duplicate Nonce
82 int dnw = pitEntry->findNonce(interest.getNonce(), inFace);
83 bool hasDuplicateNonce = (dnw != pit::DUPLICATE_NONCE_NONE) ||
84 m_deadNonceList.has(interest.getName(), interest.getNonce());
85 if (hasDuplicateNonce) {
Junxiao Shid3c792f2014-01-30 00:46:13 -070086 // goto Interest loop pipeline
87 this->onInterestLoop(inFace, interest, pitEntry);
88 return;
89 }
Junxiao Shic041ca32014-02-25 20:01:15 -070090
Junxiao Shid3c792f2014-01-30 00:46:13 -070091 // cancel unsatisfy & straggler timer
92 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -070093
Junxiao Shif3c07812014-03-11 21:48:49 -070094 // is pending?
Junxiao Shid3c792f2014-01-30 00:46:13 -070095 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
Junxiao Shie17349a2014-03-25 00:55:38 -070096 bool isPending = inRecords.begin() != inRecords.end();
Junxiao Shid3c792f2014-01-30 00:46:13 -070097 if (!isPending) {
98 // CS lookup
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -080099 const Data* csMatch;
100 shared_ptr<Data> match;
101 if (m_csFromNdnSim == nullptr)
102 csMatch = m_cs.find(interest);
103 else {
104 match = m_csFromNdnSim->Lookup(interest.shared_from_this());
105 csMatch = match.get();
106 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700107 if (csMatch != 0) {
Junxiao Shi7b984c62014-07-17 22:18:34 -0700108 const_cast<Data*>(csMatch)->setIncomingFaceId(FACEID_CONTENT_STORE);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700109 // XXX should we lookup PIT for other Interests that also match csMatch?
110
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -0800111 // invoke PIT satisfy callback
112 beforeSatisfyInterest(*pitEntry, *m_csFace, *csMatch);
113 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeSatisfyInterest, _1,
114 pitEntry, cref(*m_csFace), cref(*csMatch)));
Junxiao Shiad3f1cb2014-08-18 11:12:30 -0700115 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700116 this->setStragglerTimer(pitEntry, true, csMatch->getFreshnessPeriod());
Junxiao Shiad3f1cb2014-08-18 11:12:30 -0700117
Junxiao Shid3c792f2014-01-30 00:46:13 -0700118 // goto outgoing Data pipeline
119 this->onOutgoingData(*csMatch, inFace);
120 return;
121 }
122 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700123
Junxiao Shid3c792f2014-01-30 00:46:13 -0700124 // insert InRecord
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700125 pitEntry->insertOrUpdateInRecord(inFace.shared_from_this(), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700126
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700127 // set PIT unsatisfy timer
128 this->setUnsatisfyTimer(pitEntry);
129
Junxiao Shid3c792f2014-01-30 00:46:13 -0700130 // FIB lookup
Junxiao Shi40631842014-03-01 13:52:37 -0700131 shared_ptr<fib::Entry> fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700132
Junxiao Shid3c792f2014-01-30 00:46:13 -0700133 // dispatch to strategy
Junxiao Shif3c07812014-03-11 21:48:49 -0700134 this->dispatchToStrategy(pitEntry, bind(&Strategy::afterReceiveInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700135 cref(inFace), cref(interest), fibEntry, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700136}
137
138void
139Forwarder::onInterestLoop(Face& inFace, const Interest& interest,
140 shared_ptr<pit::Entry> pitEntry)
141{
Junxiao Shif3c07812014-03-11 21:48:49 -0700142 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
143 " interest=" << interest.getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700144
Junxiao Shif3c07812014-03-11 21:48:49 -0700145 // (drop)
146}
147
148/** \brief compare two InRecords for picking outgoing Interest
149 * \return true if b is preferred over a
150 *
151 * This function should be passed to std::max_element over InRecordCollection.
152 * The outgoing Interest picked is the last incoming Interest
153 * that does not come from outFace.
154 * If all InRecords come from outFace, it's fine to pick that. This happens when
155 * there's only one InRecord that comes from outFace. The legit use is for
156 * vehicular network; otherwise, strategy shouldn't send to the sole inFace.
157 */
158static inline bool
159compare_pickInterest(const pit::InRecord& a, const pit::InRecord& b, const Face* outFace)
160{
161 bool isOutFaceA = a.getFace().get() == outFace;
162 bool isOutFaceB = b.getFace().get() == outFace;
163
164 if (!isOutFaceA && isOutFaceB) {
165 return false;
166 }
167 if (isOutFaceA && !isOutFaceB) {
168 return true;
169 }
170
171 return a.getLastRenewed() > b.getLastRenewed();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700172}
173
174void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700175Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
176 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700177{
Junxiao Shi223271b2014-07-03 22:06:13 -0700178 if (outFace.getId() == INVALID_FACEID) {
179 NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName());
180 return;
181 }
Junxiao Shif3c07812014-03-11 21:48:49 -0700182 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
183 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700184
Junxiao Shi57f0f312014-03-16 11:52:20 -0700185 // scope control
186 if (pitEntry->violatesScope(outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700187 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700188 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700189 return;
190 }
191
Junxiao Shid3c792f2014-01-30 00:46:13 -0700192 // pick Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700193 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
194 pit::InRecordCollection::const_iterator pickedInRecord = std::max_element(
195 inRecords.begin(), inRecords.end(), bind(&compare_pickInterest, _1, _2, &outFace));
196 BOOST_ASSERT(pickedInRecord != inRecords.end());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700197 shared_ptr<Interest> interest = const_pointer_cast<Interest>(
198 pickedInRecord->getInterest().shared_from_this());
199
200 if (wantNewNonce) {
201 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700202 static boost::random::uniform_int_distribution<uint32_t> dist;
203 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700204 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700205
Junxiao Shid3c792f2014-01-30 00:46:13 -0700206 // insert OutRecord
Junxiao Shid938a6b2014-05-11 23:40:29 -0700207 pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700208
Junxiao Shid3c792f2014-01-30 00:46:13 -0700209 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700210 outFace.sendInterest(*interest);
Junxiao Shi33152f12014-07-16 19:54:32 -0700211 ++m_counters.getNOutInterests();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700212}
213
214void
Junxiao Shi09498f02014-02-26 19:41:08 -0700215Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700216{
Junxiao Shid938a6b2014-05-11 23:40:29 -0700217 if (pitEntry->hasUnexpiredOutRecords()) {
218 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
219 " cannot reject forwarded Interest");
220 return;
221 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700222 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700223
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700224 // cancel unsatisfy & straggler timer
225 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
226
Junxiao Shid3c792f2014-01-30 00:46:13 -0700227 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700228 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700229}
230
231void
232Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry)
233{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700234 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
235
Junxiao Shid3c792f2014-01-30 00:46:13 -0700236 // invoke PIT unsatisfied callback
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -0800237 beforeExpirePendingInterest(*pitEntry);
Junxiao Shif3c07812014-03-11 21:48:49 -0700238 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeExpirePendingInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700239 pitEntry));
Junxiao Shic041ca32014-02-25 20:01:15 -0700240
Junxiao Shia110f262014-10-12 12:35:20 -0700241 // goto Interest Finalize pipeline
242 this->onInterestFinalize(pitEntry, false);
243}
244
245void
246Forwarder::onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
247 const time::milliseconds& dataFreshnessPeriod)
248{
249 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
250 (isSatisfied ? " satisfied" : " unsatisfied"));
251
252 // Dead Nonce List insert if necessary
253 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
254
Junxiao Shif3c07812014-03-11 21:48:49 -0700255 // PIT delete
Junxiao Shid938a6b2014-05-11 23:40:29 -0700256 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600257 m_pit.erase(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700258}
259
260void
261Forwarder::onIncomingData(Face& inFace, const Data& data)
262{
263 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700264 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -0700265 const_cast<Data&>(data).setIncomingFaceId(inFace.getId());
Junxiao Shi33152f12014-07-16 19:54:32 -0700266 ++m_counters.getNInDatas();
Junxiao Shic041ca32014-02-25 20:01:15 -0700267
Junxiao Shi88884492014-02-15 15:57:43 -0700268 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700269 bool isViolatingLocalhost = !inFace.isLocal() &&
270 LOCALHOST_NAME.isPrefixOf(data.getName());
271 if (isViolatingLocalhost) {
272 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
273 " data=" << data.getName() << " violates /localhost");
274 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700275 return;
276 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700277
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700279 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
280 if (pitMatches.begin() == pitMatches.end()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700281 // goto Data unsolicited pipeline
282 this->onDataUnsolicited(inFace, data);
283 return;
284 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700285
Junxiao Shid3c792f2014-01-30 00:46:13 -0700286 // CS insert
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -0800287 if (m_csFromNdnSim == nullptr)
288 m_cs.insert(data);
289 else
290 m_csFromNdnSim->Add(data.shared_from_this());
Junxiao Shic041ca32014-02-25 20:01:15 -0700291
Junxiao Shid3c792f2014-01-30 00:46:13 -0700292 std::set<shared_ptr<Face> > pendingDownstreams;
293 // foreach PitEntry
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700294 for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) {
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700295 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700296
Junxiao Shid3c792f2014-01-30 00:46:13 -0700297 // cancel unsatisfy & straggler timer
298 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700299
Junxiao Shid3c792f2014-01-30 00:46:13 -0700300 // remember pending downstreams
301 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
302 for (pit::InRecordCollection::const_iterator it = inRecords.begin();
303 it != inRecords.end(); ++it) {
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700304 if (it->getExpiry() > time::steady_clock::now()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700305 pendingDownstreams.insert(it->getFace());
306 }
307 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700308
Junxiao Shid938a6b2014-05-11 23:40:29 -0700309 // invoke PIT satisfy callback
Alexander Afanasyev9bcf39e2015-01-08 21:41:48 -0800310 beforeSatisfyInterest(*pitEntry, inFace, data);
Junxiao Shi82e7f582014-09-07 15:15:40 -0700311 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeSatisfyInterest, _1,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700312 pitEntry, cref(inFace), cref(data)));
313
Junxiao Shia110f262014-10-12 12:35:20 -0700314 // Dead Nonce List insert if necessary (for OutRecord of inFace)
315 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
316
Junxiao Shid3c792f2014-01-30 00:46:13 -0700317 // mark PIT satisfied
318 pitEntry->deleteInRecords();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700319 pitEntry->deleteOutRecord(inFace);
Junxiao Shic041ca32014-02-25 20:01:15 -0700320
Junxiao Shid3c792f2014-01-30 00:46:13 -0700321 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700322 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700323 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700324
Junxiao Shid3c792f2014-01-30 00:46:13 -0700325 // foreach pending downstream
326 for (std::set<shared_ptr<Face> >::iterator it = pendingDownstreams.begin();
327 it != pendingDownstreams.end(); ++it) {
Junxiao Shida006f52014-05-16 11:18:00 -0700328 shared_ptr<Face> pendingDownstream = *it;
329 if (pendingDownstream.get() == &inFace) {
330 continue;
331 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700332 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700333 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700334 }
335}
336
337void
338Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
339{
340 // accept to cache?
Junxiao Shif3c07812014-03-11 21:48:49 -0700341 bool acceptToCache = inFace.isLocal();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700342 if (acceptToCache) {
343 // CS insert
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -0800344 if (m_csFromNdnSim == nullptr)
345 m_cs.insert(data, true);
346 else
347 m_csFromNdnSim->Add(data.shared_from_this());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700348 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700349
Junxiao Shif3c07812014-03-11 21:48:49 -0700350 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
351 " data=" << data.getName() <<
352 (acceptToCache ? " cached" : " not cached"));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700353}
354
355void
356Forwarder::onOutgoingData(const Data& data, Face& outFace)
357{
Junxiao Shi223271b2014-07-03 22:06:13 -0700358 if (outFace.getId() == INVALID_FACEID) {
359 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
360 return;
361 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700362 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
363
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700364 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700365 bool isViolatingLocalhost = !outFace.isLocal() &&
366 LOCALHOST_NAME.isPrefixOf(data.getName());
367 if (isViolatingLocalhost) {
368 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
369 " data=" << data.getName() << " violates /localhost");
370 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700371 return;
372 }
373
Junxiao Shif3c07812014-03-11 21:48:49 -0700374 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700375
Junxiao Shid3c792f2014-01-30 00:46:13 -0700376 // send Data
377 outFace.sendData(data);
Junxiao Shi33152f12014-07-16 19:54:32 -0700378 ++m_counters.getNOutDatas();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700379}
380
381static inline bool
382compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
383{
384 return a.getExpiry() < b.getExpiry();
385}
386
387void
388Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry)
389{
390 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
391 pit::InRecordCollection::const_iterator lastExpiring =
392 std::max_element(inRecords.begin(), inRecords.end(),
393 &compare_InRecord_expiry);
394
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700395 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
396 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700397 if (lastExpiryFromNow <= time::seconds(0)) {
398 // TODO all InRecords are already expired; will this happen?
399 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700400
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700401 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700402 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700403 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
404}
405
406void
Junxiao Shia110f262014-10-12 12:35:20 -0700407Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
408 const time::milliseconds& dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700409{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700410 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700411
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700412 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700413 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700414 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700415}
416
417void
418Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry)
419{
Junxiao Shic041ca32014-02-25 20:01:15 -0700420 scheduler::cancel(pitEntry->m_unsatisfyTimer);
421 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700422}
423
Junxiao Shia110f262014-10-12 12:35:20 -0700424static inline void
425insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
426 const pit::OutRecord& outRecord)
427{
428 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
429}
430
431void
432Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
433 const time::milliseconds& dataFreshnessPeriod,
434 Face* upstream)
435{
436 // need Dead Nonce List insert?
437 bool needDnl = false;
438 if (isSatisfied) {
439 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
440 // Data never becomes stale if it doesn't have FreshnessPeriod field
441 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
442 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
443 }
444 else {
445 needDnl = true;
446 }
447
448 if (!needDnl) {
449 return;
450 }
451
452 // Dead Nonce List insert
453 if (upstream == 0) {
454 // insert all outgoing Nonces
455 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
456 std::for_each(outRecords.begin(), outRecords.end(),
457 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
458 }
459 else {
460 // insert outgoing Nonce of a specific face
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700461 pit::OutRecordCollection::const_iterator outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700462 if (outRecord != pitEntry.getOutRecords().end()) {
463 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
464 }
465 }
466}
467
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800468} // namespace nfd