Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Junxiao Shi | 3535396 | 2015-01-08 09:13:47 -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 | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 25 | |
| 26 | #include "strategy.hpp" |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 27 | #include "forwarder.hpp" |
Junxiao Shi | 00dc914 | 2016-11-21 14:23:12 +0000 | [diff] [blame] | 28 | #include "algorithm.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 29 | #include "core/logger.hpp" |
Junxiao Shi | c5f651f | 2016-11-17 22:58:12 +0000 | [diff] [blame] | 30 | #include "core/random.hpp" |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 33 | namespace fw { |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 34 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 35 | NFD_LOG_INIT("Strategy"); |
| 36 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 37 | Strategy::Strategy(Forwarder& forwarder, const Name& name) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 38 | : afterAddFace(forwarder.getFaceTable().afterAdd) |
| 39 | , beforeRemoveFace(forwarder.getFaceTable().beforeRemove) |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 40 | , m_name(name) |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 41 | , m_forwarder(forwarder) |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 42 | , m_measurements(m_forwarder.getMeasurements(), m_forwarder.getStrategyChoice(), *this) |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 43 | { |
| 44 | } |
| 45 | |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 46 | Strategy::~Strategy() = default; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 47 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 48 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 49 | Strategy::beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry, |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 50 | const Face& inFace, const Data& data) |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 51 | { |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 52 | NFD_LOG_DEBUG("beforeSatisfyInterest pitEntry=" << pitEntry->getName() << |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 53 | " inFace=" << inFace.getId() << " data=" << data.getName()); |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 57 | Strategy::beforeExpirePendingInterest(const shared_ptr<pit::Entry>& pitEntry) |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 58 | { |
| 59 | NFD_LOG_DEBUG("beforeExpirePendingInterest pitEntry=" << pitEntry->getName()); |
| 60 | } |
| 61 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 62 | void |
| 63 | Strategy::afterReceiveNack(const Face& inFace, const lp::Nack& nack, |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 64 | const shared_ptr<pit::Entry>& pitEntry) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 65 | { |
| 66 | NFD_LOG_DEBUG("afterReceiveNack inFace=" << inFace.getId() << |
| 67 | " pitEntry=" << pitEntry->getName()); |
| 68 | } |
| 69 | |
| 70 | void |
Junxiao Shi | c5f651f | 2016-11-17 22:58:12 +0000 | [diff] [blame] | 71 | Strategy::sendInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, |
| 72 | bool wantNewNonce) |
| 73 | { |
| 74 | // scope control |
| 75 | if (fw::violatesScope(*pitEntry, outFace)) { |
| 76 | NFD_LOG_DEBUG("sendInterestLegacy face=" << outFace.getId() << |
| 77 | " interest=" << pitEntry->getName() << " violates scope"); |
| 78 | return; |
| 79 | } |
| 80 | |
| 81 | // pick Interest |
| 82 | // The outgoing Interest picked is the last incoming Interest that does not come from outFace. |
| 83 | // If all in-records come from outFace, it's fine to pick that. |
| 84 | // This happens when there's only one in-record that comes from outFace. |
| 85 | // The legit use is for vehicular network; otherwise, strategy shouldn't send to the sole inFace. |
| 86 | pit::InRecordCollection::iterator pickedInRecord = std::max_element( |
| 87 | pitEntry->in_begin(), pitEntry->in_end(), |
| 88 | [&outFace] (const pit::InRecord& a, const pit::InRecord& b) { |
| 89 | bool isOutFaceA = &a.getFace() == &outFace; |
| 90 | bool isOutFaceB = &b.getFace() == &outFace; |
| 91 | return (isOutFaceA > isOutFaceB) || |
| 92 | (isOutFaceA == isOutFaceB && a.getLastRenewed() < b.getLastRenewed()); |
| 93 | }); |
| 94 | BOOST_ASSERT(pickedInRecord != pitEntry->in_end()); |
| 95 | auto interest = const_pointer_cast<Interest>(pickedInRecord->getInterest().shared_from_this()); |
| 96 | |
| 97 | if (wantNewNonce) { |
| 98 | interest = make_shared<Interest>(*interest); |
| 99 | static std::uniform_int_distribution<uint32_t> dist; |
| 100 | interest->setNonce(dist(getGlobalRng())); |
| 101 | } |
| 102 | |
| 103 | this->sendInterest(pitEntry, outFace, *interest); |
| 104 | } |
| 105 | |
| 106 | void |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 107 | Strategy::sendNacks(const shared_ptr<pit::Entry>& pitEntry, const lp::NackHeader& header, |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 108 | std::initializer_list<const Face*> exceptFaces) |
| 109 | { |
| 110 | // populate downstreams with all downstreams faces |
| 111 | std::unordered_set<const Face*> downstreams; |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 112 | std::transform(pitEntry->in_begin(), pitEntry->in_end(), std::inserter(downstreams, downstreams.end()), |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 113 | [] (const pit::InRecord& inR) { return &inR.getFace(); }); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 114 | |
| 115 | // delete excluded faces |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 116 | // .erase in a loop is more efficient than std::set_difference because that requires sorted range |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 117 | for (const Face* exceptFace : exceptFaces) { |
| 118 | downstreams.erase(exceptFace); |
| 119 | } |
| 120 | |
| 121 | // send Nacks |
| 122 | for (const Face* downstream : downstreams) { |
| 123 | this->sendNack(pitEntry, *downstream, header); |
| 124 | } |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 125 | // warning: don't loop on pitEntry->getInRecords(), because in-record is deleted when sending Nack |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 126 | } |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 127 | |
Junxiao Shi | cf0f3ce | 2016-09-02 13:01:59 +0000 | [diff] [blame] | 128 | const fib::Entry& |
| 129 | Strategy::lookupFib(const pit::Entry& pitEntry) const |
| 130 | { |
| 131 | const Fib& fib = m_forwarder.getFib(); |
| 132 | const NetworkRegionTable& nrt = m_forwarder.getNetworkRegionTable(); |
| 133 | |
| 134 | const Interest& interest = pitEntry.getInterest(); |
| 135 | // has Link object? |
| 136 | if (!interest.hasLink()) { |
| 137 | // FIB lookup with Interest name |
| 138 | const fib::Entry& fibEntry = fib.findLongestPrefixMatch(pitEntry); |
| 139 | NFD_LOG_TRACE("lookupFib noLinkObject found=" << fibEntry.getPrefix()); |
| 140 | return fibEntry; |
| 141 | } |
| 142 | |
| 143 | const Link& link = interest.getLink(); |
| 144 | |
| 145 | // in producer region? |
| 146 | if (nrt.isInProducerRegion(link)) { |
| 147 | // FIB lookup with Interest name |
| 148 | const fib::Entry& fibEntry = fib.findLongestPrefixMatch(pitEntry); |
| 149 | NFD_LOG_TRACE("lookupFib inProducerRegion found=" << fibEntry.getPrefix()); |
| 150 | return fibEntry; |
| 151 | } |
| 152 | |
| 153 | // has SelectedDelegation? |
| 154 | if (interest.hasSelectedDelegation()) { |
| 155 | // FIB lookup with SelectedDelegation |
| 156 | Name selectedDelegation = interest.getSelectedDelegation(); |
| 157 | const fib::Entry& fibEntry = fib.findLongestPrefixMatch(selectedDelegation); |
| 158 | NFD_LOG_TRACE("lookupFib hasSelectedDelegation=" << selectedDelegation << " found=" << fibEntry.getPrefix()); |
| 159 | return fibEntry; |
| 160 | } |
| 161 | |
| 162 | // FIB lookup with first delegation Name |
| 163 | const fib::Entry& fibEntry0 = fib.findLongestPrefixMatch(link.getDelegations().begin()->second); |
| 164 | // in default-free zone? |
| 165 | bool isDefaultFreeZone = !(fibEntry0.getPrefix().size() == 0 && fibEntry0.hasNextHops()); |
| 166 | if (!isDefaultFreeZone) { |
| 167 | NFD_LOG_TRACE("lookupFib inConsumerRegion found=" << fibEntry0.getPrefix()); |
| 168 | return fibEntry0; |
| 169 | } |
| 170 | |
| 171 | // choose and set SelectedDelegation |
| 172 | for (const std::pair<uint32_t, Name>& delegation : link.getDelegations()) { |
| 173 | const Name& delegationName = delegation.second; |
| 174 | const fib::Entry& fibEntry = fib.findLongestPrefixMatch(delegationName); |
| 175 | if (fibEntry.hasNextHops()) { |
| 176 | /// \todo Don't modify in-record Interests. |
| 177 | /// Set SelectedDelegation in outgoing Interest pipeline. |
| 178 | std::for_each(pitEntry.in_begin(), pitEntry.in_end(), |
| 179 | [&delegationName] (const pit::InRecord& inR) { |
| 180 | const_cast<Interest&>(inR.getInterest()).setSelectedDelegation(delegationName); |
| 181 | }); |
| 182 | NFD_LOG_TRACE("lookupFib enterDefaultFreeZone setSelectedDelegation=" << delegationName); |
| 183 | return fibEntry; |
| 184 | } |
| 185 | } |
| 186 | BOOST_ASSERT(false); |
| 187 | return fibEntry0; |
| 188 | } |
| 189 | |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 190 | } // namespace fw |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 191 | } // namespace nfd |