Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2015, 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. |
| 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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "access-strategy.hpp" |
| 27 | #include "core/logger.hpp" |
| 28 | |
| 29 | namespace nfd { |
| 30 | namespace fw { |
| 31 | |
| 32 | NFD_LOG_INIT("AccessStrategy"); |
| 33 | |
| 34 | const Name AccessStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/access/%FD%01"); |
| 35 | |
| 36 | AccessStrategy::AccessStrategy(Forwarder& forwarder, const Name& name) |
| 37 | : Strategy(forwarder, name) |
| 38 | , m_removeFaceInfoConn(this->beforeRemoveFace.connect( |
| 39 | bind(&AccessStrategy::removeFaceInfo, this, _1))) |
| 40 | { |
| 41 | } |
| 42 | |
| 43 | AccessStrategy::~AccessStrategy() |
| 44 | { |
| 45 | } |
| 46 | |
| 47 | void |
| 48 | AccessStrategy::afterReceiveInterest(const Face& inFace, |
| 49 | const Interest& interest, |
| 50 | shared_ptr<fib::Entry> fibEntry, |
| 51 | shared_ptr<pit::Entry> pitEntry) |
| 52 | { |
| 53 | RetransmissionSuppression::Result suppressResult = |
| 54 | m_retransmissionSuppression.decide(inFace, interest, *pitEntry); |
| 55 | switch (suppressResult) { |
| 56 | case RetransmissionSuppression::NEW: |
| 57 | this->afterReceiveNewInterest(inFace, interest, fibEntry, pitEntry); |
| 58 | break; |
| 59 | case RetransmissionSuppression::FORWARD: |
| 60 | this->afterReceiveRetxInterest(inFace, interest, fibEntry, pitEntry); |
| 61 | break; |
| 62 | case RetransmissionSuppression::SUPPRESS: |
| 63 | NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << " retx-suppress"); |
| 64 | break; |
| 65 | default: |
| 66 | BOOST_ASSERT(false); |
| 67 | break; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | AccessStrategy::afterReceiveNewInterest(const Face& inFace, |
| 73 | const Interest& interest, |
| 74 | shared_ptr<fib::Entry> fibEntry, |
| 75 | shared_ptr<pit::Entry> pitEntry) |
| 76 | { |
| 77 | Name miName; |
| 78 | shared_ptr<MtInfo> mi; |
| 79 | std::tie(miName, mi) = this->findPrefixMeasurements(*pitEntry); |
| 80 | |
| 81 | // has measurements for Interest Name? |
| 82 | if (mi != nullptr) { |
| 83 | NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << |
| 84 | " new-interest mi=" << miName); |
| 85 | |
| 86 | // send to last working nexthop |
| 87 | bool isSentToLastNexthop = this->sendToLastNexthop(inFace, pitEntry, *mi, fibEntry); |
| 88 | |
| 89 | if (isSentToLastNexthop) { |
| 90 | return; |
| 91 | } |
| 92 | } |
| 93 | else { |
| 94 | NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << |
| 95 | " new-interest no-mi"); |
| 96 | } |
| 97 | |
| 98 | // no measurements, or last working nexthop unavailable |
| 99 | |
| 100 | // multicast to all nexthops |
| 101 | this->multicast(pitEntry, fibEntry); |
| 102 | } |
| 103 | |
| 104 | void |
| 105 | AccessStrategy::afterReceiveRetxInterest(const Face& inFace, |
| 106 | const Interest& interest, |
| 107 | shared_ptr<fib::Entry> fibEntry, |
| 108 | shared_ptr<pit::Entry> pitEntry) |
| 109 | { |
| 110 | NFD_LOG_DEBUG(interest << " interestFrom " << inFace.getId() << " retx-forward"); |
| 111 | this->multicast(pitEntry, fibEntry, std::unordered_set<FaceId>{inFace.getId()}); |
| 112 | } |
| 113 | |
| 114 | bool |
| 115 | AccessStrategy::sendToLastNexthop(const Face& inFace, shared_ptr<pit::Entry> pitEntry, MtInfo& mi, |
| 116 | shared_ptr<fib::Entry> fibEntry) |
| 117 | { |
| 118 | if (mi.lastNexthop == INVALID_FACEID) { |
| 119 | NFD_LOG_DEBUG(pitEntry->getInterest() << " no-last-nexthop"); |
| 120 | return false; |
| 121 | } |
| 122 | |
| 123 | if (mi.lastNexthop == inFace.getId()) { |
| 124 | NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-is-downstream"); |
| 125 | return false; |
| 126 | } |
| 127 | |
| 128 | shared_ptr<Face> face = this->getFace(mi.lastNexthop); |
| 129 | if (face == nullptr || !fibEntry->hasNextHop(face)) { |
| 130 | NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-gone"); |
| 131 | return false; |
| 132 | } |
| 133 | |
| 134 | if (pitEntry->violatesScope(*face)) { |
| 135 | NFD_LOG_DEBUG(pitEntry->getInterest() << " last-nexthop-violates-scope"); |
| 136 | return false; |
| 137 | } |
| 138 | |
| 139 | RttEstimator::Duration rto = mi.rtt.computeRto(); |
| 140 | NFD_LOG_DEBUG(pitEntry->getInterest() << " interestTo " << mi.lastNexthop << |
| 141 | " last-nexthop rto=" << time::duration_cast<time::microseconds>(rto).count()); |
| 142 | |
| 143 | this->sendInterest(pitEntry, face); |
| 144 | |
| 145 | // schedule RTO timeout |
| 146 | shared_ptr<PitInfo> pi = pitEntry->getOrCreateStrategyInfo<PitInfo>(); |
| 147 | pi->rtoTimer = scheduler::schedule(rto, |
| 148 | bind(&AccessStrategy::afterRtoTimeout, this, weak_ptr<pit::Entry>(pitEntry), |
| 149 | weak_ptr<fib::Entry>(fibEntry), inFace.getId(), mi.lastNexthop)); |
| 150 | |
| 151 | return true; |
| 152 | } |
| 153 | |
| 154 | void |
| 155 | AccessStrategy::afterRtoTimeout(weak_ptr<pit::Entry> pitWeak, weak_ptr<fib::Entry> fibWeak, |
| 156 | FaceId inFace, FaceId firstOutFace) |
| 157 | { |
| 158 | shared_ptr<pit::Entry> pitEntry = pitWeak.lock(); |
| 159 | BOOST_ASSERT(pitEntry != nullptr); |
| 160 | // pitEntry can't become nullptr, because RTO timer should be cancelled upon pitEntry destruction |
| 161 | |
| 162 | shared_ptr<fib::Entry> fibEntry = fibWeak.lock(); |
| 163 | if (fibEntry == nullptr) { |
| 164 | NFD_LOG_DEBUG(pitEntry->getInterest() << " timeoutFrom " << firstOutFace << " fib-gone"); |
| 165 | return; |
| 166 | } |
| 167 | |
| 168 | NFD_LOG_DEBUG(pitEntry->getInterest() << " timeoutFrom " << firstOutFace << |
| 169 | " multicast-except " << inFace << ',' << firstOutFace); |
| 170 | this->multicast(pitEntry, fibEntry, std::unordered_set<FaceId>{inFace, firstOutFace}); |
| 171 | } |
| 172 | |
| 173 | void |
| 174 | AccessStrategy::multicast(shared_ptr<pit::Entry> pitEntry, shared_ptr<fib::Entry> fibEntry, |
| 175 | std::unordered_set<FaceId> exceptFaces) |
| 176 | { |
| 177 | for (const fib::NextHop& nexthop : fibEntry->getNextHops()) { |
| 178 | shared_ptr<Face> face = nexthop.getFace(); |
| 179 | if (exceptFaces.count(face->getId()) > 0) { |
| 180 | continue; |
| 181 | } |
| 182 | NFD_LOG_DEBUG(pitEntry->getInterest() << " interestTo " << face->getId() << |
| 183 | " multicast"); |
| 184 | this->sendInterest(pitEntry, face); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | void |
| 189 | AccessStrategy::beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry, |
| 190 | const Face& inFace, const Data& data) |
| 191 | { |
| 192 | shared_ptr<PitInfo> pi = pitEntry->getStrategyInfo<PitInfo>(); |
| 193 | if (pi != nullptr) { |
| 194 | pi->rtoTimer.cancel(); |
| 195 | } |
| 196 | |
| 197 | if (pitEntry->getInRecords().empty()) { // already satisfied by another upstream |
| 198 | NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() << |
| 199 | " not-fastest"); |
| 200 | return; |
| 201 | } |
| 202 | |
| 203 | pit::OutRecordCollection::const_iterator outRecord = pitEntry->getOutRecord(inFace); |
| 204 | if (outRecord == pitEntry->getOutRecords().end()) { // no OutRecord |
| 205 | NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() << |
| 206 | " no-out-record"); |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | time::steady_clock::Duration rtt = time::steady_clock::now() - outRecord->getLastRenewed(); |
| 211 | NFD_LOG_DEBUG(pitEntry->getInterest() << " dataFrom " << inFace.getId() << |
| 212 | " rtt=" << time::duration_cast<time::microseconds>(rtt).count()); |
| 213 | this->updateMeasurements(inFace, data, time::duration_cast<RttEstimator::Duration>(rtt)); |
| 214 | } |
| 215 | |
| 216 | void |
| 217 | AccessStrategy::updateMeasurements(const Face& inFace, const Data& data, |
| 218 | const RttEstimator::Duration& rtt) |
| 219 | { |
| 220 | FaceInfo& fi = m_fit[inFace.getId()]; |
| 221 | fi.rtt.addMeasurement(rtt); |
| 222 | |
| 223 | shared_ptr<MtInfo> mi = this->addPrefixMeasurements(data); |
| 224 | if (mi->lastNexthop != inFace.getId()) { |
| 225 | mi->lastNexthop = inFace.getId(); |
| 226 | mi->rtt = fi.rtt; |
| 227 | } |
| 228 | else { |
| 229 | mi->rtt.addMeasurement(rtt); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | AccessStrategy::MtInfo::MtInfo() |
| 234 | : lastNexthop(INVALID_FACEID) |
| 235 | , rtt(1, time::milliseconds(1), 0.1) |
| 236 | { |
| 237 | } |
| 238 | |
| 239 | std::tuple<Name, shared_ptr<AccessStrategy::MtInfo>> |
| 240 | AccessStrategy::findPrefixMeasurements(const pit::Entry& pitEntry) |
| 241 | { |
| 242 | shared_ptr<measurements::Entry> me = this->getMeasurements().findLongestPrefixMatch(pitEntry); |
| 243 | if (me == nullptr) { |
| 244 | return std::forward_as_tuple(Name(), nullptr); |
| 245 | } |
| 246 | |
| 247 | shared_ptr<MtInfo> mi = me->getStrategyInfo<MtInfo>(); |
| 248 | BOOST_ASSERT(mi != nullptr); |
| 249 | // XXX after runtime strategy change, it's possible that me exists but mi doesn't exist; |
| 250 | // this case needs another longest prefix match until mi is found |
| 251 | return std::forward_as_tuple(me->getName(), mi); |
| 252 | } |
| 253 | |
| 254 | shared_ptr<AccessStrategy::MtInfo> |
| 255 | AccessStrategy::addPrefixMeasurements(const Data& data) |
| 256 | { |
| 257 | shared_ptr<measurements::Entry> me; |
| 258 | if (data.getName().size() >= 1) { |
| 259 | me = this->getMeasurements().get(data.getName().getPrefix(-1)); |
| 260 | } |
| 261 | if (me == nullptr) { // parent of Data Name is not in this strategy, or Data Name is empty |
| 262 | me = this->getMeasurements().get(data.getName()); |
| 263 | // Data Name must be in this strategy |
| 264 | BOOST_ASSERT(me != nullptr); |
| 265 | } |
| 266 | |
| 267 | return me->getOrCreateStrategyInfo<MtInfo>(); |
| 268 | } |
| 269 | |
| 270 | AccessStrategy::FaceInfo::FaceInfo() |
| 271 | : rtt(1, time::milliseconds(1), 0.1) |
| 272 | { |
| 273 | } |
| 274 | |
| 275 | void |
| 276 | AccessStrategy::removeFaceInfo(shared_ptr<Face> face) |
| 277 | { |
| 278 | m_fit.erase(face->getId()); |
| 279 | } |
| 280 | |
| 281 | } // namespace fw |
| 282 | } // namespace nfd |