Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 3 | * 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 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 | */ |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 25 | |
| 26 | #include "ncc-strategy.hpp" |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 27 | #include "core/random.hpp" |
| 28 | #include <boost/random/uniform_int_distribution.hpp> |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 29 | |
| 30 | namespace nfd { |
| 31 | namespace fw { |
| 32 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 33 | const Name NccStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/ncc"); |
| 34 | |
| 35 | NccStrategy::NccStrategy(Forwarder& forwarder, const Name& name) |
| 36 | : Strategy(forwarder, name) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 37 | { |
| 38 | } |
| 39 | |
| 40 | NccStrategy::~NccStrategy() |
| 41 | { |
| 42 | } |
| 43 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 44 | const time::microseconds NccStrategy::DEFER_FIRST_WITHOUT_BEST_FACE = time::microseconds(4000); |
| 45 | const time::microseconds NccStrategy::DEFER_RANGE_WITHOUT_BEST_FACE = time::microseconds(75000); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 46 | const time::nanoseconds NccStrategy::MEASUREMENTS_LIFETIME = time::seconds(16); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 47 | |
| 48 | void |
| 49 | NccStrategy::afterReceiveInterest(const Face& inFace, |
| 50 | const Interest& interest, |
| 51 | shared_ptr<fib::Entry> fibEntry, |
| 52 | shared_ptr<pit::Entry> pitEntry) |
| 53 | { |
| 54 | const fib::NextHopList& nexthops = fibEntry->getNextHops(); |
| 55 | if (nexthops.size() == 0) { |
| 56 | this->rejectPendingInterest(pitEntry); |
| 57 | return; |
| 58 | } |
| 59 | |
| 60 | shared_ptr<PitEntryInfo> pitEntryInfo = |
| 61 | pitEntry->getOrCreateStrategyInfo<PitEntryInfo>(); |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 62 | bool isNewInterest = pitEntryInfo->isNewInterest; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 63 | if (!isNewInterest) { |
| 64 | return; |
| 65 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 66 | pitEntryInfo->isNewInterest = false; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 67 | |
| 68 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 69 | this->getMeasurementsEntryInfo(pitEntry); |
| 70 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 71 | time::microseconds deferFirst = DEFER_FIRST_WITHOUT_BEST_FACE; |
| 72 | time::microseconds deferRange = DEFER_RANGE_WITHOUT_BEST_FACE; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 73 | size_t nUpstreams = nexthops.size(); |
| 74 | |
| 75 | shared_ptr<Face> bestFace = measurementsEntryInfo->getBestFace(); |
| 76 | if (static_cast<bool>(bestFace) && fibEntry->hasNextHop(bestFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 77 | pitEntry->canForwardTo(*bestFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 78 | // TODO Should we use `randlow = 100 + nrand48(h->seed) % 4096U;` ? |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 79 | deferFirst = measurementsEntryInfo->prediction; |
| 80 | deferRange = time::microseconds((deferFirst.count() + 1) / 2); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 81 | --nUpstreams; |
| 82 | this->sendInterest(pitEntry, bestFace); |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 83 | pitEntryInfo->bestFaceTimeout = scheduler::schedule( |
| 84 | measurementsEntryInfo->prediction, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 85 | bind(&NccStrategy::timeoutOnBestFace, this, weak_ptr<pit::Entry>(pitEntry))); |
| 86 | } |
| 87 | else { |
| 88 | // use first nexthop |
| 89 | this->sendInterest(pitEntry, nexthops.begin()->getFace()); |
| 90 | // TODO avoid sending to inFace |
| 91 | } |
| 92 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 93 | shared_ptr<Face> previousFace = measurementsEntryInfo->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 94 | if (static_cast<bool>(previousFace) && fibEntry->hasNextHop(previousFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 95 | pitEntry->canForwardTo(*previousFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 96 | --nUpstreams; |
| 97 | } |
| 98 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 99 | if (nUpstreams > 0) { |
| 100 | pitEntryInfo->maxInterval = std::max(time::microseconds(1), |
| 101 | time::microseconds((2 * deferRange.count() + nUpstreams - 1) / nUpstreams)); |
| 102 | } |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 103 | else { |
| 104 | // Normally, maxInterval is unused if there aren't any face beyond best and previousBest. |
| 105 | // However, in case FIB entry gains a new nexthop before doPropagate executes (bug 1853), |
| 106 | // this maxInterval would be used to determine when the next doPropagate would happen. |
| 107 | pitEntryInfo->maxInterval = deferFirst; |
| 108 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 109 | pitEntryInfo->propagateTimer = scheduler::schedule(deferFirst, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 110 | bind(&NccStrategy::doPropagate, this, |
| 111 | weak_ptr<pit::Entry>(pitEntry), weak_ptr<fib::Entry>(fibEntry))); |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | NccStrategy::doPropagate(weak_ptr<pit::Entry> pitEntryWeak, weak_ptr<fib::Entry> fibEntryWeak) |
| 116 | { |
| 117 | shared_ptr<pit::Entry> pitEntry = pitEntryWeak.lock(); |
| 118 | if (!static_cast<bool>(pitEntry)) { |
| 119 | return; |
| 120 | } |
| 121 | shared_ptr<fib::Entry> fibEntry = fibEntryWeak.lock(); |
| 122 | if (!static_cast<bool>(fibEntry)) { |
| 123 | return; |
| 124 | } |
| 125 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 126 | shared_ptr<PitEntryInfo> pitEntryInfo = pitEntry->getStrategyInfo<PitEntryInfo>(); |
| 127 | // pitEntryInfo is guaranteed to exist here, because doPropagate is triggered |
| 128 | // from a timer set by NccStrategy. |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 129 | BOOST_ASSERT(static_cast<bool>(pitEntryInfo)); |
| 130 | |
| 131 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 132 | this->getMeasurementsEntryInfo(pitEntry); |
| 133 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 134 | shared_ptr<Face> previousFace = measurementsEntryInfo->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 135 | if (static_cast<bool>(previousFace) && fibEntry->hasNextHop(previousFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 136 | pitEntry->canForwardTo(*previousFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 137 | this->sendInterest(pitEntry, previousFace); |
| 138 | } |
| 139 | |
| 140 | const fib::NextHopList& nexthops = fibEntry->getNextHops(); |
| 141 | bool isForwarded = false; |
| 142 | for (fib::NextHopList::const_iterator it = nexthops.begin(); it != nexthops.end(); ++it) { |
| 143 | shared_ptr<Face> face = it->getFace(); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 144 | if (pitEntry->canForwardTo(*face)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 145 | isForwarded = true; |
| 146 | this->sendInterest(pitEntry, face); |
| 147 | break; |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | if (isForwarded) { |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 152 | boost::random::uniform_int_distribution<time::nanoseconds::rep> dist(0, |
| 153 | pitEntryInfo->maxInterval.count() - 1); |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 154 | time::nanoseconds deferNext = time::nanoseconds(dist(getGlobalRng())); |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 155 | pitEntryInfo->propagateTimer = scheduler::schedule(deferNext, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 156 | bind(&NccStrategy::doPropagate, this, |
| 157 | weak_ptr<pit::Entry>(pitEntry), weak_ptr<fib::Entry>(fibEntry))); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | void |
| 162 | NccStrategy::timeoutOnBestFace(weak_ptr<pit::Entry> pitEntryWeak) |
| 163 | { |
| 164 | shared_ptr<pit::Entry> pitEntry = pitEntryWeak.lock(); |
| 165 | if (!static_cast<bool>(pitEntry)) { |
| 166 | return; |
| 167 | } |
| 168 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*pitEntry); |
| 169 | |
| 170 | for (int i = 0; i < UPDATE_MEASUREMENTS_N_LEVELS; ++i) { |
| 171 | if (!static_cast<bool>(measurementsEntry)) { |
| 172 | // going out of this strategy's namespace |
| 173 | return; |
| 174 | } |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 175 | this->getMeasurements().extendLifetime(measurementsEntry, MEASUREMENTS_LIFETIME); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 176 | |
| 177 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 178 | this->getMeasurementsEntryInfo(measurementsEntry); |
| 179 | measurementsEntryInfo->adjustPredictUp(); |
| 180 | |
| 181 | measurementsEntry = this->getMeasurements().getParent(measurementsEntry); |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | void |
| 186 | NccStrategy::beforeSatisfyPendingInterest(shared_ptr<pit::Entry> pitEntry, |
| 187 | const Face& inFace, const Data& data) |
| 188 | { |
| 189 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*pitEntry); |
| 190 | |
| 191 | for (int i = 0; i < UPDATE_MEASUREMENTS_N_LEVELS; ++i) { |
| 192 | if (!static_cast<bool>(measurementsEntry)) { |
| 193 | // going out of this strategy's namespace |
| 194 | return; |
| 195 | } |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 196 | this->getMeasurements().extendLifetime(measurementsEntry, MEASUREMENTS_LIFETIME); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 197 | |
| 198 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 199 | this->getMeasurementsEntryInfo(measurementsEntry); |
| 200 | measurementsEntryInfo->updateBestFace(inFace); |
| 201 | |
| 202 | measurementsEntry = this->getMeasurements().getParent(measurementsEntry); |
| 203 | } |
| 204 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 205 | shared_ptr<PitEntryInfo> pitEntryInfo = pitEntry->getStrategyInfo<PitEntryInfo>(); |
| 206 | if (static_cast<bool>(pitEntryInfo)) { |
| 207 | scheduler::cancel(pitEntryInfo->propagateTimer); |
| 208 | } |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | shared_ptr<NccStrategy::MeasurementsEntryInfo> |
| 212 | NccStrategy::getMeasurementsEntryInfo(shared_ptr<pit::Entry> entry) |
| 213 | { |
| 214 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*entry); |
| 215 | return this->getMeasurementsEntryInfo(measurementsEntry); |
| 216 | } |
| 217 | |
| 218 | shared_ptr<NccStrategy::MeasurementsEntryInfo> |
| 219 | NccStrategy::getMeasurementsEntryInfo(shared_ptr<measurements::Entry> entry) |
| 220 | { |
| 221 | shared_ptr<MeasurementsEntryInfo> info = entry->getStrategyInfo<MeasurementsEntryInfo>(); |
| 222 | if (static_cast<bool>(info)) { |
| 223 | return info; |
| 224 | } |
| 225 | |
| 226 | info = make_shared<MeasurementsEntryInfo>(); |
| 227 | entry->setStrategyInfo(info); |
| 228 | |
| 229 | shared_ptr<measurements::Entry> parentEntry = this->getMeasurements().getParent(entry); |
| 230 | if (static_cast<bool>(parentEntry)) { |
| 231 | shared_ptr<MeasurementsEntryInfo> parentInfo = this->getMeasurementsEntryInfo(parentEntry); |
| 232 | BOOST_ASSERT(static_cast<bool>(parentInfo)); |
| 233 | info->inheritFrom(*parentInfo); |
| 234 | } |
| 235 | |
| 236 | return info; |
| 237 | } |
| 238 | |
| 239 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 240 | const time::microseconds NccStrategy::MeasurementsEntryInfo::INITIAL_PREDICTION = |
| 241 | time::microseconds(8192); |
| 242 | const time::microseconds NccStrategy::MeasurementsEntryInfo::MIN_PREDICTION = |
| 243 | time::microseconds(127); |
| 244 | const time::microseconds NccStrategy::MeasurementsEntryInfo::MAX_PREDICTION = |
| 245 | time::microseconds(160000); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 246 | |
| 247 | NccStrategy::MeasurementsEntryInfo::MeasurementsEntryInfo() |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 248 | : prediction(INITIAL_PREDICTION) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 249 | { |
| 250 | } |
| 251 | |
| 252 | void |
| 253 | NccStrategy::MeasurementsEntryInfo::inheritFrom(const MeasurementsEntryInfo& other) |
| 254 | { |
| 255 | this->operator=(other); |
| 256 | } |
| 257 | |
| 258 | shared_ptr<Face> |
| 259 | NccStrategy::MeasurementsEntryInfo::getBestFace(void) { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 260 | shared_ptr<Face> best = this->bestFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 261 | if (static_cast<bool>(best)) { |
| 262 | return best; |
| 263 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 264 | this->bestFace = best = this->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 265 | return best; |
| 266 | } |
| 267 | |
| 268 | void |
| 269 | NccStrategy::MeasurementsEntryInfo::updateBestFace(const Face& face) { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 270 | if (this->bestFace.expired()) { |
| 271 | this->bestFace = const_cast<Face&>(face).shared_from_this(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 272 | return; |
| 273 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 274 | shared_ptr<Face> bestFace = this->bestFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 275 | if (bestFace.get() == &face) { |
| 276 | this->adjustPredictDown(); |
| 277 | } |
| 278 | else { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 279 | this->previousFace = this->bestFace; |
| 280 | this->bestFace = const_cast<Face&>(face).shared_from_this(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 281 | } |
| 282 | } |
| 283 | |
| 284 | void |
| 285 | NccStrategy::MeasurementsEntryInfo::adjustPredictDown() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 286 | prediction = std::max(MIN_PREDICTION, |
| 287 | time::microseconds(prediction.count() - (prediction.count() >> ADJUST_PREDICT_DOWN_SHIFT))); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | void |
| 291 | NccStrategy::MeasurementsEntryInfo::adjustPredictUp() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 292 | prediction = std::min(MAX_PREDICTION, |
| 293 | time::microseconds(prediction.count() + (prediction.count() >> ADJUST_PREDICT_UP_SHIFT))); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | void |
| 297 | NccStrategy::MeasurementsEntryInfo::ageBestFace() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 298 | this->previousFace = this->bestFace; |
| 299 | this->bestFace.reset(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | NccStrategy::PitEntryInfo::PitEntryInfo() |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 303 | : isNewInterest(true) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 304 | { |
| 305 | } |
| 306 | |
| 307 | NccStrategy::PitEntryInfo::~PitEntryInfo() |
| 308 | { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 309 | scheduler::cancel(this->bestFaceTimeout); |
| 310 | scheduler::cancel(this->propagateTimer); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | } // namespace fw |
| 314 | } // namespace nfd |