Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Junxiao Shi | faf3eb0 | 2015-02-16 10:50:36 -0700 | [diff] [blame] | 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 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 Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 25 | |
| 26 | #include "forwarder.hpp" |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 27 | #include "pit-algorithm.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 28 | #include "core/logger.hpp" |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 29 | #include "core/random.hpp" |
Junxiao Shi | faf3eb0 | 2015-02-16 10:50:36 -0700 | [diff] [blame] | 30 | #include "strategy.hpp" |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 31 | #include <boost/random/uniform_int_distribution.hpp> |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 32 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 33 | namespace nfd { |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 34 | |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 35 | NFD_LOG_INIT("Forwarder"); |
| 36 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 37 | using fw::Strategy; |
| 38 | |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 39 | Forwarder::Forwarder() |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 40 | : m_faceTable(*this) |
HangZhang | ad4afd1 | 2014-03-01 11:03:08 +0800 | [diff] [blame] | 41 | , m_fib(m_nameTree) |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 42 | , m_pit(m_nameTree) |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 43 | , m_measurements(m_nameTree) |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 44 | , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this)) |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 45 | { |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 46 | fw::installStrategies(*this); |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 47 | } |
| 48 | |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 49 | Forwarder::~Forwarder() |
| 50 | { |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 51 | } |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 52 | |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 53 | void |
| 54 | Forwarder::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 Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 62 | catch (const tlv::Error&) { |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 63 | 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 | |
| 72 | void |
| 73 | Forwarder::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 DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 79 | } |
| 80 | |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 81 | void |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 82 | Forwarder::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 | |
| 100 | void |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 101 | Forwarder::onIncomingInterest(Face& inFace, const Interest& interest) |
| 102 | { |
| 103 | // receive Interest |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 104 | NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() << |
| 105 | " interest=" << interest.getName()); |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 106 | interest.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId())); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 107 | ++m_counters.nInInterests; |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 108 | |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 109 | // /localhost scope control |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 110 | bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL && |
Junxiao Shi | f3410d8 | 2016-04-05 13:49:44 -0700 | [diff] [blame] | 111 | scope_prefix::LOCALHOST.isPrefixOf(interest.getName()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 112 | if (isViolatingLocalhost) { |
| 113 | NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() << |
| 114 | " interest=" << interest.getName() << " violates /localhost"); |
| 115 | // (drop) |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 116 | return; |
| 117 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 118 | |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 119 | // 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 Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 127 | // PIT insert |
Junxiao Shi | 4063184 | 2014-03-01 13:52:37 -0700 | [diff] [blame] | 128 | shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first; |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 129 | |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 130 | // detect duplicate Nonce in PIT entry |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 131 | bool hasDuplicateNonceInPit = fw::findDuplicateNonce(*pitEntry, interest.getNonce(), inFace) != |
| 132 | fw::DUPLICATE_NONCE_NONE; |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 133 | if (hasDuplicateNonceInPit) { |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 134 | // goto Interest loop pipeline |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 135 | this->onInterestLoop(inFace, interest); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 136 | return; |
| 137 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 138 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 139 | // cancel unsatisfy & straggler timer |
| 140 | this->cancelUnsatisfyAndStragglerTimer(pitEntry); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 141 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 142 | // is pending? |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 143 | if (!pitEntry->hasInRecords()) { |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 144 | m_cs.find(interest, |
| 145 | bind(&Forwarder::onContentStoreHit, this, ref(inFace), pitEntry, _1, _2), |
| 146 | bind(&Forwarder::onContentStoreMiss, this, ref(inFace), pitEntry, _1)); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 147 | } |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 148 | else { |
| 149 | this->onContentStoreMiss(inFace, pitEntry, interest); |
| 150 | } |
| 151 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 152 | |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 153 | void |
Junxiao Shi | 330136a | 2016-03-10 04:53:08 -0700 | [diff] [blame] | 154 | Forwarder::onInterestLoop(Face& inFace, const Interest& interest) |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 155 | { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 156 | // if multi-access face, drop |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 157 | if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 158 | NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() << |
| 159 | " interest=" << interest.getName() << |
| 160 | " drop"); |
| 161 | return; |
| 162 | } |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 163 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 164 | 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 Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | void |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 176 | Forwarder::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 Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 183 | // insert in-record |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 184 | pitEntry->insertOrUpdateInRecord(face, interest); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 185 | |
Alexander Afanasyev | a57f8b4 | 2014-07-10 20:11:32 -0700 | [diff] [blame] | 186 | // set PIT unsatisfy timer |
| 187 | this->setUnsatisfyTimer(pitEntry); |
| 188 | |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 189 | // dispatch to strategy: after incoming Interest |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 190 | this->dispatchToStrategy(pitEntry, |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 191 | [&] (fw::Strategy* strategy) { strategy->afterReceiveInterest(inFace, interest, pitEntry); }); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | void |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 195 | Forwarder::onContentStoreHit(const Face& inFace, |
| 196 | shared_ptr<pit::Entry> pitEntry, |
| 197 | const Interest& interest, |
| 198 | const Data& data) |
| 199 | { |
Vince Lehman | faa5c0c | 2015-08-18 12:52:46 -0500 | [diff] [blame] | 200 | NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName()); |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 201 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 202 | data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE)); |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 203 | // XXX should we lookup PIT for other Interests that also match csMatch? |
| 204 | |
| 205 | // set PIT straggler timer |
| 206 | this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod()); |
| 207 | |
| 208 | // goto outgoing Data pipeline |
| 209 | this->onOutgoingData(data, *const_pointer_cast<Face>(inFace.shared_from_this())); |
| 210 | } |
| 211 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 212 | void |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 213 | Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace, |
| 214 | bool wantNewNonce) |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 215 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 216 | if (outFace.getId() == face::INVALID_FACEID) { |
Junxiao Shi | 223271b | 2014-07-03 22:06:13 -0700 | [diff] [blame] | 217 | NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName()); |
| 218 | return; |
| 219 | } |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 220 | NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() << |
| 221 | " interest=" << pitEntry->getName()); |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 222 | |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 223 | // scope control |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 224 | if (fw::violatesScope(*pitEntry, outFace)) { |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 225 | NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() << |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 226 | " interest=" << pitEntry->getName() << " violates scope"); |
Junxiao Shi | 11bd9c2 | 2014-03-13 20:44:13 -0700 | [diff] [blame] | 227 | return; |
| 228 | } |
| 229 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 230 | // pick Interest |
Junxiao Shi | 891f47b | 2016-06-20 00:02:11 +0000 | [diff] [blame] | 231 | // The outgoing Interest picked is the last incoming Interest that does not come from outFace. |
| 232 | // If all in-records come from outFace, it's fine to pick that. |
| 233 | // This happens when there's only one in-record that comes from outFace. |
| 234 | // The legit use is for vehicular network; otherwise, strategy shouldn't send to the sole inFace. |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 235 | pit::InRecordCollection::iterator pickedInRecord = std::max_element( |
Junxiao Shi | 891f47b | 2016-06-20 00:02:11 +0000 | [diff] [blame] | 236 | pitEntry->in_begin(), pitEntry->in_end(), |
| 237 | [&outFace] (const pit::InRecord& a, const pit::InRecord& b) { |
| 238 | bool isOutFaceA = a.getFace().get() == &outFace; |
| 239 | bool isOutFaceB = b.getFace().get() == &outFace; |
| 240 | return (isOutFaceA > isOutFaceB) || |
| 241 | (isOutFaceA == isOutFaceB && a.getLastRenewed() < b.getLastRenewed()); |
| 242 | }); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 243 | BOOST_ASSERT(pickedInRecord != pitEntry->in_end()); |
| 244 | auto interest = const_pointer_cast<Interest>(pickedInRecord->getInterest().shared_from_this()); |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 245 | |
| 246 | if (wantNewNonce) { |
| 247 | interest = make_shared<Interest>(*interest); |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 248 | static boost::random::uniform_int_distribution<uint32_t> dist; |
| 249 | interest->setNonce(dist(getGlobalRng())); |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 250 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 251 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 252 | // insert out-record |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 253 | pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 254 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 255 | // send Interest |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 256 | outFace.sendInterest(*interest); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 257 | ++m_counters.nOutInterests; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 261 | Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry) |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 262 | { |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 263 | if (fw::hasPendingOutRecords(*pitEntry)) { |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 264 | NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() << |
| 265 | " cannot reject forwarded Interest"); |
| 266 | return; |
| 267 | } |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 268 | NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName()); |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 269 | |
Alexander Afanasyev | a57f8b4 | 2014-07-10 20:11:32 -0700 | [diff] [blame] | 270 | // cancel unsatisfy & straggler timer |
| 271 | this->cancelUnsatisfyAndStragglerTimer(pitEntry); |
| 272 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 273 | // set PIT straggler timer |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 274 | this->setStragglerTimer(pitEntry, false); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | void |
| 278 | Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry) |
| 279 | { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 280 | NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName()); |
| 281 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 282 | // invoke PIT unsatisfied callback |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 283 | this->dispatchToStrategy(pitEntry, |
| 284 | [&] (fw::Strategy* strategy) { strategy->beforeExpirePendingInterest(pitEntry); }); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 285 | |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 286 | // goto Interest Finalize pipeline |
| 287 | this->onInterestFinalize(pitEntry, false); |
| 288 | } |
| 289 | |
| 290 | void |
| 291 | Forwarder::onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied, |
| 292 | const time::milliseconds& dataFreshnessPeriod) |
| 293 | { |
| 294 | NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() << |
| 295 | (isSatisfied ? " satisfied" : " unsatisfied")); |
| 296 | |
| 297 | // Dead Nonce List insert if necessary |
| 298 | this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0); |
| 299 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 300 | // PIT delete |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 301 | this->cancelUnsatisfyAndStragglerTimer(pitEntry); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 302 | m_pit.erase(pitEntry); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | void |
| 306 | Forwarder::onIncomingData(Face& inFace, const Data& data) |
| 307 | { |
| 308 | // receive Data |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 309 | NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName()); |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 310 | data.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId())); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 311 | ++m_counters.nInData; |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 312 | |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 313 | // /localhost scope control |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 314 | bool isViolatingLocalhost = inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL && |
Junxiao Shi | f3410d8 | 2016-04-05 13:49:44 -0700 | [diff] [blame] | 315 | scope_prefix::LOCALHOST.isPrefixOf(data.getName()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 316 | if (isViolatingLocalhost) { |
| 317 | NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << |
| 318 | " data=" << data.getName() << " violates /localhost"); |
| 319 | // (drop) |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 320 | return; |
| 321 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 322 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 323 | // PIT match |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 324 | pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data); |
| 325 | if (pitMatches.begin() == pitMatches.end()) { |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 326 | // goto Data unsolicited pipeline |
| 327 | this->onDataUnsolicited(inFace, data); |
| 328 | return; |
| 329 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 330 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 331 | // CS insert |
| 332 | m_cs.insert(data); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 333 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 334 | std::set<Face*> pendingDownstreams; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 335 | // foreach PitEntry |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 336 | auto now = time::steady_clock::now(); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 337 | for (const shared_ptr<pit::Entry>& pitEntry : pitMatches) { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 338 | NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName()); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 339 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 340 | // cancel unsatisfy & straggler timer |
| 341 | this->cancelUnsatisfyAndStragglerTimer(pitEntry); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 342 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 343 | // remember pending downstreams |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 344 | for (const pit::InRecord& inRecord : pitEntry->getInRecords()) { |
| 345 | if (inRecord.getExpiry() > now) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 346 | pendingDownstreams.insert(inRecord.getFace().get()); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 347 | } |
| 348 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 349 | |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 350 | // invoke PIT satisfy callback |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 351 | this->dispatchToStrategy(pitEntry, |
| 352 | [&] (fw::Strategy* strategy) { strategy->beforeSatisfyInterest(pitEntry, inFace, data); }); |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 353 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 354 | // Dead Nonce List insert if necessary (for out-record of inFace) |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 355 | this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace); |
| 356 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 357 | // mark PIT satisfied |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 358 | pitEntry->clearInRecords(); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 359 | pitEntry->deleteOutRecord(inFace); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 360 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 361 | // set PIT straggler timer |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 362 | this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod()); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 363 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 364 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 365 | // foreach pending downstream |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 366 | for (Face* pendingDownstream : pendingDownstreams) { |
| 367 | if (pendingDownstream == &inFace) { |
Junxiao Shi | da006f5 | 2014-05-16 11:18:00 -0700 | [diff] [blame] | 368 | continue; |
| 369 | } |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 370 | // goto outgoing Data pipeline |
Junxiao Shi | da006f5 | 2014-05-16 11:18:00 -0700 | [diff] [blame] | 371 | this->onOutgoingData(data, *pendingDownstream); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 372 | } |
| 373 | } |
| 374 | |
| 375 | void |
| 376 | Forwarder::onDataUnsolicited(Face& inFace, const Data& data) |
| 377 | { |
| 378 | // accept to cache? |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 379 | bool acceptToCache = inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 380 | if (acceptToCache) { |
| 381 | // CS insert |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 382 | m_cs.insert(data, true); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 383 | } |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 384 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 385 | NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() << |
| 386 | " data=" << data.getName() << |
| 387 | (acceptToCache ? " cached" : " not cached")); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | void |
| 391 | Forwarder::onOutgoingData(const Data& data, Face& outFace) |
| 392 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 393 | if (outFace.getId() == face::INVALID_FACEID) { |
Junxiao Shi | 223271b | 2014-07-03 22:06:13 -0700 | [diff] [blame] | 394 | NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName()); |
| 395 | return; |
| 396 | } |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 397 | NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName()); |
| 398 | |
Junxiao Shi | 9b27bd2 | 2014-02-26 20:29:58 -0700 | [diff] [blame] | 399 | // /localhost scope control |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 400 | bool isViolatingLocalhost = outFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL && |
Junxiao Shi | f3410d8 | 2016-04-05 13:49:44 -0700 | [diff] [blame] | 401 | scope_prefix::LOCALHOST.isPrefixOf(data.getName()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 402 | if (isViolatingLocalhost) { |
| 403 | NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << |
| 404 | " data=" << data.getName() << " violates /localhost"); |
| 405 | // (drop) |
Junxiao Shi | 9b27bd2 | 2014-02-26 20:29:58 -0700 | [diff] [blame] | 406 | return; |
| 407 | } |
| 408 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 409 | // TODO traffic manager |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 410 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 411 | // send Data |
| 412 | outFace.sendData(data); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 413 | ++m_counters.nOutData; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 416 | void |
| 417 | Forwarder::onIncomingNack(Face& inFace, const lp::Nack& nack) |
| 418 | { |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 419 | // receive Nack |
| 420 | nack.setTag(make_shared<lp::IncomingFaceIdTag>(inFace.getId())); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 421 | ++m_counters.nInNacks; |
| 422 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 423 | // if multi-access face, drop |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 424 | if (inFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 425 | NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() << |
| 426 | " nack=" << nack.getInterest().getName() << |
| 427 | "~" << nack.getReason() << " face-is-multi-access"); |
| 428 | return; |
| 429 | } |
| 430 | |
| 431 | // PIT match |
| 432 | shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest()); |
| 433 | // if no PIT entry found, drop |
| 434 | if (pitEntry == nullptr) { |
| 435 | NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() << |
| 436 | " nack=" << nack.getInterest().getName() << |
| 437 | "~" << nack.getReason() << " no-PIT-entry"); |
| 438 | return; |
| 439 | } |
| 440 | |
| 441 | // has out-record? |
| 442 | pit::OutRecordCollection::iterator outRecord = pitEntry->getOutRecord(inFace); |
| 443 | // if no out-record found, drop |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 444 | if (outRecord == pitEntry->out_end()) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 445 | NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() << |
| 446 | " nack=" << nack.getInterest().getName() << |
| 447 | "~" << nack.getReason() << " no-out-record"); |
| 448 | return; |
| 449 | } |
| 450 | |
| 451 | // if out-record has different Nonce, drop |
| 452 | if (nack.getInterest().getNonce() != outRecord->getLastNonce()) { |
| 453 | NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() << |
| 454 | " nack=" << nack.getInterest().getName() << |
| 455 | "~" << nack.getReason() << " wrong-Nonce " << |
| 456 | nack.getInterest().getNonce() << "!=" << outRecord->getLastNonce()); |
| 457 | return; |
| 458 | } |
| 459 | |
| 460 | NFD_LOG_DEBUG("onIncomingNack face=" << inFace.getId() << |
| 461 | " nack=" << nack.getInterest().getName() << |
| 462 | "~" << nack.getReason() << " OK"); |
| 463 | |
| 464 | // record Nack on out-record |
| 465 | outRecord->setIncomingNack(nack); |
| 466 | |
| 467 | // trigger strategy: after receive NACK |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 468 | this->dispatchToStrategy(pitEntry, |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 469 | [&] (fw::Strategy* strategy) { strategy->afterReceiveNack(inFace, nack, pitEntry); }); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | void |
| 473 | Forwarder::onOutgoingNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace, |
| 474 | const lp::NackHeader& nack) |
| 475 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 476 | if (outFace.getId() == face::INVALID_FACEID) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 477 | NFD_LOG_WARN("onOutgoingNack face=invalid" << |
| 478 | " nack=" << pitEntry->getInterest().getName() << |
| 479 | "~" << nack.getReason() << " no-in-record"); |
| 480 | return; |
| 481 | } |
| 482 | |
| 483 | // has in-record? |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 484 | pit::InRecordCollection::iterator inRecord = pitEntry->getInRecord(outFace); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 485 | |
| 486 | // if no in-record found, drop |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 487 | if (inRecord == pitEntry->in_end()) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 488 | NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() << |
| 489 | " nack=" << pitEntry->getInterest().getName() << |
| 490 | "~" << nack.getReason() << " no-in-record"); |
| 491 | return; |
| 492 | } |
| 493 | |
| 494 | // if multi-access face, drop |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 495 | if (outFace.getLinkType() == ndn::nfd::LINK_TYPE_MULTI_ACCESS) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 496 | NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() << |
| 497 | " nack=" << pitEntry->getInterest().getName() << |
| 498 | "~" << nack.getReason() << " face-is-multi-access"); |
| 499 | return; |
| 500 | } |
| 501 | |
| 502 | NFD_LOG_DEBUG("onOutgoingNack face=" << outFace.getId() << |
| 503 | " nack=" << pitEntry->getInterest().getName() << |
| 504 | "~" << nack.getReason() << " OK"); |
| 505 | |
| 506 | // create Nack packet with the Interest from in-record |
| 507 | lp::Nack nackPkt(inRecord->getInterest()); |
| 508 | nackPkt.setHeader(nack); |
| 509 | |
| 510 | // erase in-record |
| 511 | pitEntry->deleteInRecord(outFace); |
| 512 | |
| 513 | // send Nack on face |
| 514 | const_cast<Face&>(outFace).sendNack(nackPkt); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 515 | ++m_counters.nOutNacks; |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 516 | } |
| 517 | |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 518 | const fib::Entry& |
| 519 | Forwarder::lookupFib(const pit::Entry& pitEntry) const |
| 520 | { |
| 521 | const Interest& interest = pitEntry.getInterest(); |
| 522 | // has Link object? |
| 523 | if (!interest.hasLink()) { |
| 524 | // FIB lookup with Interest name |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame^] | 525 | const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(pitEntry); |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 526 | NFD_LOG_TRACE("lookupFib noLinkObject found=" << fibEntry.getPrefix()); |
| 527 | return fibEntry; |
| 528 | } |
| 529 | |
| 530 | const Link& link = interest.getLink(); |
| 531 | |
| 532 | // in producer region? |
| 533 | if (m_networkRegionTable.isInProducerRegion(link)) { |
| 534 | // FIB lookup with Interest name |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame^] | 535 | const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(pitEntry); |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 536 | NFD_LOG_TRACE("lookupFib inProducerRegion found=" << fibEntry.getPrefix()); |
| 537 | return fibEntry; |
| 538 | } |
| 539 | |
| 540 | // has SelectedDelegation? |
| 541 | if (interest.hasSelectedDelegation()) { |
| 542 | // FIB lookup with SelectedDelegation |
| 543 | Name selectedDelegation = interest.getSelectedDelegation(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame^] | 544 | const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(selectedDelegation); |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 545 | NFD_LOG_TRACE("lookupFib hasSelectedDelegation=" << selectedDelegation << " found=" << fibEntry.getPrefix()); |
| 546 | return fibEntry; |
| 547 | } |
| 548 | |
| 549 | // FIB lookup with first delegation Name |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame^] | 550 | const fib::Entry& fibEntry0 = m_fib.findLongestPrefixMatch(link.getDelegations().begin()->second); |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 551 | // in default-free zone? |
| 552 | bool isDefaultFreeZone = !(fibEntry0.getPrefix().size() == 0 && fibEntry0.hasNextHops()); |
| 553 | if (!isDefaultFreeZone) { |
| 554 | NFD_LOG_TRACE("onContentStoreMiss inConsumerRegion found=" << fibEntry0.getPrefix()); |
| 555 | return fibEntry0; |
| 556 | } |
| 557 | |
| 558 | // choose and set SelectedDelegation |
| 559 | for (const std::pair<uint32_t, Name>& delegation : link.getDelegations()) { |
| 560 | const Name& delegationName = delegation.second; |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame^] | 561 | const fib::Entry& fibEntry = m_fib.findLongestPrefixMatch(delegationName); |
Junxiao Shi | 05cc50a | 2016-07-11 22:38:21 +0000 | [diff] [blame] | 562 | if (fibEntry.hasNextHops()) { |
| 563 | /// \todo Don't modify in-record Interests. |
| 564 | /// Set SelectedDelegation in outgoing Interest pipeline. |
| 565 | std::for_each(pitEntry.in_begin(), pitEntry.in_end(), |
| 566 | [&delegationName] (const pit::InRecord& inR) { |
| 567 | const_cast<Interest&>(inR.getInterest()).setSelectedDelegation(delegationName); |
| 568 | }); |
| 569 | NFD_LOG_TRACE("onContentStoreMiss enterDefaultFreeZone" |
| 570 | << " setSelectedDelegation=" << delegationName); |
| 571 | return fibEntry; |
| 572 | } |
| 573 | } |
| 574 | BOOST_ASSERT(false); |
| 575 | return fibEntry0; |
| 576 | } |
| 577 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 578 | static inline bool |
| 579 | compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b) |
| 580 | { |
| 581 | return a.getExpiry() < b.getExpiry(); |
| 582 | } |
| 583 | |
| 584 | void |
| 585 | Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry) |
| 586 | { |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 587 | pit::InRecordCollection::iterator lastExpiring = |
| 588 | std::max_element(pitEntry->in_begin(), pitEntry->in_end(), &compare_InRecord_expiry); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 589 | |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 590 | time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 591 | time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now(); |
| 592 | if (lastExpiryFromNow <= time::seconds::zero()) { |
| 593 | // TODO all in-records are already expired; will this happen? |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 594 | } |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 595 | |
Junxiao Shi | 9f7455b | 2014-04-07 21:02:16 -0700 | [diff] [blame] | 596 | scheduler::cancel(pitEntry->m_unsatisfyTimer); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 597 | pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow, |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 598 | bind(&Forwarder::onInterestUnsatisfied, this, pitEntry)); |
| 599 | } |
| 600 | |
| 601 | void |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 602 | Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied, |
| 603 | const time::milliseconds& dataFreshnessPeriod) |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 604 | { |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 605 | time::nanoseconds stragglerTime = time::milliseconds(100); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 606 | |
Junxiao Shi | 9f7455b | 2014-04-07 21:02:16 -0700 | [diff] [blame] | 607 | scheduler::cancel(pitEntry->m_stragglerTimer); |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 608 | pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime, |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 609 | bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod)); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | void |
| 613 | Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry) |
| 614 | { |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 615 | scheduler::cancel(pitEntry->m_unsatisfyTimer); |
| 616 | scheduler::cancel(pitEntry->m_stragglerTimer); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 619 | static inline void |
| 620 | insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry, |
| 621 | const pit::OutRecord& outRecord) |
| 622 | { |
| 623 | dnl.add(pitEntry.getName(), outRecord.getLastNonce()); |
| 624 | } |
| 625 | |
| 626 | void |
| 627 | Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied, |
| 628 | const time::milliseconds& dataFreshnessPeriod, |
| 629 | Face* upstream) |
| 630 | { |
| 631 | // need Dead Nonce List insert? |
| 632 | bool needDnl = false; |
| 633 | if (isSatisfied) { |
| 634 | bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero(); |
| 635 | // Data never becomes stale if it doesn't have FreshnessPeriod field |
| 636 | needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) && |
| 637 | (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime()); |
| 638 | } |
| 639 | else { |
| 640 | needDnl = true; |
| 641 | } |
| 642 | |
| 643 | if (!needDnl) { |
| 644 | return; |
| 645 | } |
| 646 | |
| 647 | // Dead Nonce List insert |
| 648 | if (upstream == 0) { |
| 649 | // insert all outgoing Nonces |
| 650 | const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords(); |
| 651 | std::for_each(outRecords.begin(), outRecords.end(), |
| 652 | bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1)); |
| 653 | } |
| 654 | else { |
| 655 | // insert outgoing Nonce of a specific face |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 656 | pit::OutRecordCollection::iterator outRecord = pitEntry.getOutRecord(*upstream); |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 657 | if (outRecord != pitEntry.getOutRecords().end()) { |
| 658 | m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce()); |
| 659 | } |
| 660 | } |
| 661 | } |
| 662 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 663 | } // namespace nfd |