blob: ce689bc1a2578b03978255d8e2ec39e9e04e69a7 [file] [log] [blame]
Vince Lehman8a4c29e2016-07-11 08:49:35 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande90015992017-07-11 17:25:48 -05002/*
Davide Pesavento19779d82019-02-14 13:40:04 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Vince Lehman8a4c29e2016-07-11 08:49:35 +00004 * 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 "asf-strategy.hpp"
Ashlesh Gawande2a73f352016-12-01 15:37:03 +000027#include "algorithm.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/global.hpp"
29#include "common/logger.hpp"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000030
31namespace nfd {
32namespace fw {
33namespace asf {
34
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(AsfStrategy);
Junxiao Shi037f4ab2016-12-13 04:27:06 +000036NFD_REGISTER_STRATEGY(AsfStrategy);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000037
Vince Lehman8a4c29e2016-07-11 08:49:35 +000038const time::milliseconds AsfStrategy::RETX_SUPPRESSION_INITIAL(10);
39const time::milliseconds AsfStrategy::RETX_SUPPRESSION_MAX(250);
40
Vince Lehman8a4c29e2016-07-11 08:49:35 +000041AsfStrategy::AsfStrategy(Forwarder& forwarder, const Name& name)
Junxiao Shi18739c42016-12-22 08:03:00 +000042 : Strategy(forwarder)
Vince Lehman8a4c29e2016-07-11 08:49:35 +000043 , m_measurements(getMeasurements())
44 , m_probing(m_measurements)
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050045 , m_maxSilentTimeouts(0)
Vince Lehman8a4c29e2016-07-11 08:49:35 +000046 , m_retxSuppression(RETX_SUPPRESSION_INITIAL,
47 RetxSuppressionExponential::DEFAULT_MULTIPLIER,
48 RETX_SUPPRESSION_MAX)
49{
Junxiao Shi18739c42016-12-22 08:03:00 +000050 ParsedInstanceName parsed = parseInstanceName(name);
51 if (!parsed.parameters.empty()) {
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050052 processParams(parsed.parameters);
Junxiao Shi18739c42016-12-22 08:03:00 +000053 }
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050054
Junxiao Shi91f6ee02016-12-29 21:44:44 +000055 if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050056 NDN_THROW(std::invalid_argument(
Alexander Afanasyev0c63c632017-12-05 11:17:09 -050057 "AsfStrategy does not support version " + to_string(*parsed.version)));
Junxiao Shi91f6ee02016-12-29 21:44:44 +000058 }
Junxiao Shi18739c42016-12-22 08:03:00 +000059 this->setInstanceName(makeInstanceName(name, getStrategyName()));
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050060
61 NFD_LOG_DEBUG("Probing interval=" << m_probing.getProbingInterval()
62 << ", Num silent timeouts=" << m_maxSilentTimeouts);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000063}
64
Junxiao Shi037f4ab2016-12-13 04:27:06 +000065const Name&
66AsfStrategy::getStrategyName()
67{
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050068 static Name strategyName("/localhost/nfd/strategy/asf/%FD%03");
Junxiao Shi037f4ab2016-12-13 04:27:06 +000069 return strategyName;
70}
71
Vince Lehman8a4c29e2016-07-11 08:49:35 +000072void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050073AsfStrategy::processParams(const PartialName& parsed)
74{
75 for (const auto& component : parsed) {
76 std::string parsedStr(reinterpret_cast<const char*>(component.value()), component.value_size());
77 auto n = parsedStr.find("~");
78 if (n == std::string::npos) {
Davide Pesavento19779d82019-02-14 13:40:04 -050079 NDN_THROW(std::invalid_argument("Format is <parameter>~<value>"));
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050080 }
81
82 auto f = parsedStr.substr(0, n);
83 auto s = parsedStr.substr(n + 1);
84 if (f == "probing-interval") {
85 m_probing.setProbingInterval(getParamValue(f, s));
86 }
87 else if (f == "n-silent-timeouts") {
88 m_maxSilentTimeouts = getParamValue(f, s);
89 }
90 else {
Davide Pesavento19779d82019-02-14 13:40:04 -050091 NDN_THROW(std::invalid_argument("Parameter should be probing-interval or n-silent-timeouts"));
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050092 }
93 }
94}
95
96uint64_t
97AsfStrategy::getParamValue(const std::string& param, const std::string& value)
98{
99 try {
100 if (!value.empty() && value[0] == '-')
Davide Pesavento19779d82019-02-14 13:40:04 -0500101 NDN_THROW(boost::bad_lexical_cast());
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500102
103 return boost::lexical_cast<uint64_t>(value);
104 }
105 catch (const boost::bad_lexical_cast&) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500106 NDN_THROW(std::invalid_argument("Value of " + param + " must be a non-negative integer"));
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500107 }
108}
109
110void
Saurab Dulala6dec222019-04-01 00:15:10 -0500111AsfStrategy::sendAsfProbe(const FaceEndpoint& ingress, const Interest& interest,
112 const shared_ptr<pit::Entry>& pitEntry, const Face& faceToUse,
113 const fib::Entry& fibEntry)
114{
115 Face* faceToProbe = m_probing.getFaceToProbe(ingress.face, interest, fibEntry, faceToUse);
116 if (faceToProbe != nullptr) {
117 forwardInterest(interest, fibEntry, pitEntry, *faceToProbe, true);
118 m_probing.afterForwardingProbe(fibEntry, interest);
119 }
120}
121
122void
ashiqopuc7079482019-02-20 05:34:37 +0000123AsfStrategy::afterReceiveInterest(const FaceEndpoint& ingress, const Interest& interest,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000124 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000125{
126 // Should the Interest be suppressed?
Ashlesh Gawande90015992017-07-11 17:25:48 -0500127 RetxSuppressionResult suppressResult = m_retxSuppression.decidePerPitEntry(*pitEntry);
Saurab Dulala6dec222019-04-01 00:15:10 -0500128 if (suppressResult == RetxSuppressionResult::SUPPRESS) {
ashiqopuc7079482019-02-20 05:34:37 +0000129 NFD_LOG_DEBUG(interest << " from=" << ingress << " suppressed");
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000130 return;
131 }
132
Junxiao Shi8d843142016-07-11 22:42:42 +0000133 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
134 const fib::NextHopList& nexthops = fibEntry.getNextHops();
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000135
Saurab Dulala6dec222019-04-01 00:15:10 -0500136 if (suppressResult == RetxSuppressionResult::NEW) {
137 if (nexthops.size() == 0) {
138 // send noRouteNack if nexthop is not available
139 sendNoRouteNack(ingress, interest, pitEntry);
140 this->rejectPendingInterest(pitEntry);
141 return;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000142 }
Saurab Dulala6dec222019-04-01 00:15:10 -0500143
144 Face* faceToUse = getBestFaceForForwarding(fibEntry, interest, ingress.face, pitEntry);
145
146 if (faceToUse == nullptr) {
147 sendNoRouteNack(ingress, interest, pitEntry);
148 this->rejectPendingInterest(pitEntry);
149 return;
150 }
151
152 NFD_LOG_TRACE("Forwarding interest to face: " << faceToUse->getId());
153 forwardInterest(interest, fibEntry, pitEntry, *faceToUse);
154
155 // If necessary, send probe
156 if (m_probing.isProbingNeeded(fibEntry, interest)) {
157 sendAsfProbe(ingress, interest, pitEntry, *faceToUse, fibEntry);
158 }
159 return;
160 }
161
162 Face* faceToUse = getBestFaceForForwarding(fibEntry, interest, ingress.face, pitEntry, false);
163 // if unused face not found, select nexthop with earliest out record
164 if (faceToUse != nullptr) {
165
166 NFD_LOG_TRACE("Forwarding interest to face: " << faceToUse->getId());
167 forwardInterest(interest, fibEntry, pitEntry, *faceToUse);
168 // avoid probing in case of forwarding
169 return;
170 }
171
172 // find an eligible upstream that is used earliest
173 auto it = nexthops.end();
174 it = findEligibleNextHopWithEarliestOutRecord(ingress.face, interest, nexthops, pitEntry);
175 if (it == nexthops.end()) {
176 NFD_LOG_DEBUG(interest << " from=" << ingress << " retransmitNoNextHop");
177 }
178 else {
179 auto egress = FaceEndpoint(it->getFace(), 0);
180 NFD_LOG_DEBUG(interest << " from=" << ingress << " retransmit-retry-to=" << egress);
181 this->sendInterest(pitEntry, egress, interest);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000182 }
183}
184
185void
Junxiao Shi15e98b02016-08-12 11:21:44 +0000186AsfStrategy::beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry,
ashiqopuc7079482019-02-20 05:34:37 +0000187 const FaceEndpoint& ingress, const Data& data)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000188{
Junxiao Shifc021862016-08-25 21:51:18 +0000189 NamespaceInfo* namespaceInfo = m_measurements.getNamespaceInfo(pitEntry->getName());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000190
191 if (namespaceInfo == nullptr) {
192 NFD_LOG_TRACE("Could not find measurements entry for " << pitEntry->getName());
193 return;
194 }
195
196 // Record the RTT between the Interest out to Data in
ashiqopuc7079482019-02-20 05:34:37 +0000197 FaceInfo* faceInfo = namespaceInfo->get(ingress.face.getId());
Ashlesh Gawandecad76b62017-04-04 15:28:30 -0500198 if (faceInfo == nullptr) {
199 return;
200 }
ashiqopuc7079482019-02-20 05:34:37 +0000201 faceInfo->recordRtt(pitEntry, ingress.face);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000202
203 // Extend lifetime for measurements associated with Face
ashiqopuc7079482019-02-20 05:34:37 +0000204 namespaceInfo->extendFaceInfoLifetime(*faceInfo, ingress.face.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000205
Ashlesh Gawandecad76b62017-04-04 15:28:30 -0500206 if (faceInfo->isTimeoutScheduled()) {
207 faceInfo->cancelTimeoutEvent(data.getName());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000208 }
209}
210
211void
ashiqopuc7079482019-02-20 05:34:37 +0000212AsfStrategy::afterReceiveNack(const FaceEndpoint& ingress, const lp::Nack& nack,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000213 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000214{
ashiqopuc7079482019-02-20 05:34:37 +0000215 NFD_LOG_DEBUG("Nack for " << nack.getInterest() << " from=" << ingress << ": reason=" << nack.getReason());
216 onTimeout(pitEntry->getName(), ingress.face.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000217}
218
219////////////////////////////////////////////////////////////////////////////////
220////////////////////////////////////////////////////////////////////////////////
221
222void
223AsfStrategy::forwardInterest(const Interest& interest,
224 const fib::Entry& fibEntry,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000225 const shared_ptr<pit::Entry>& pitEntry,
Junxiao Shia6de4292016-07-12 02:08:10 +0000226 Face& outFace,
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000227 bool wantNewNonce)
228{
ashiqopuc7079482019-02-20 05:34:37 +0000229 auto egress = FaceEndpoint(outFace, 0);
Ashlesh Gawande2a73f352016-12-01 15:37:03 +0000230 if (wantNewNonce) {
231 //Send probe: interest with new Nonce
232 Interest probeInterest(interest);
233 probeInterest.refreshNonce();
234 NFD_LOG_TRACE("Sending probe for " << probeInterest << probeInterest.getNonce()
ashiqopuc7079482019-02-20 05:34:37 +0000235 << " to: " << egress);
236 this->sendInterest(pitEntry, egress, probeInterest);
Ashlesh Gawande2a73f352016-12-01 15:37:03 +0000237 }
238 else {
ashiqopuc7079482019-02-20 05:34:37 +0000239 this->sendInterest(pitEntry, egress, interest);
Ashlesh Gawande2a73f352016-12-01 15:37:03 +0000240 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000241
ashiqopuc7079482019-02-20 05:34:37 +0000242 FaceInfo& faceInfo = m_measurements.getOrCreateFaceInfo(fibEntry, interest, egress.face.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000243
244 // Refresh measurements since Face is being used for forwarding
245 NamespaceInfo& namespaceInfo = m_measurements.getOrCreateNamespaceInfo(fibEntry, interest);
ashiqopuc7079482019-02-20 05:34:37 +0000246 namespaceInfo.extendFaceInfoLifetime(faceInfo, egress.face.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000247
248 if (!faceInfo.isTimeoutScheduled()) {
249 // Estimate and schedule timeout
250 RttEstimator::Duration timeout = faceInfo.computeRto();
251
ashiqopuc7079482019-02-20 05:34:37 +0000252 NFD_LOG_TRACE("Scheduling timeout for " << fibEntry.getPrefix() << " to: " << egress
253 << " in " << time::duration_cast<time::milliseconds>(timeout) << " ms");
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000254
Davide Pesavento3dade002019-03-19 11:29:56 -0600255 auto id = getScheduler().schedule(timeout, bind(&AsfStrategy::onTimeout, this,
256 interest.getName(), egress.face.getId()));
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000257 faceInfo.setTimeoutEvent(id, interest.getName());
258 }
259}
260
261struct FaceStats
262{
Junxiao Shia6de4292016-07-12 02:08:10 +0000263 Face* face;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000264 RttStats::Rtt rtt;
265 RttStats::Rtt srtt;
266 uint64_t cost;
267};
268
269double
270getValueForSorting(const FaceStats& stats)
271{
272 // These values allow faces with no measurements to be ranked better than timeouts
273 // srtt < RTT_NO_MEASUREMENT < RTT_TIMEOUT
274 static const RttStats::Rtt SORTING_RTT_TIMEOUT = time::microseconds::max();
275 static const RttStats::Rtt SORTING_RTT_NO_MEASUREMENT = SORTING_RTT_TIMEOUT / 2;
276
277 if (stats.rtt == RttStats::RTT_TIMEOUT) {
278 return SORTING_RTT_TIMEOUT.count();
279 }
280 else if (stats.rtt == RttStats::RTT_NO_MEASUREMENT) {
281 return SORTING_RTT_NO_MEASUREMENT.count();
282 }
283 else {
284 return stats.srtt.count();
285 }
286}
287
Junxiao Shia6de4292016-07-12 02:08:10 +0000288Face*
Junxiao Shi15e98b02016-08-12 11:21:44 +0000289AsfStrategy::getBestFaceForForwarding(const fib::Entry& fibEntry, const Interest& interest,
Saurab Dulala6dec222019-04-01 00:15:10 -0500290 const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
291 bool isInterestNew)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000292{
293 NFD_LOG_TRACE("Looking for best face for " << fibEntry.getPrefix());
294
295 typedef std::function<bool(const FaceStats&, const FaceStats&)> FaceStatsPredicate;
296 typedef std::set<FaceStats, FaceStatsPredicate> FaceStatsSet;
297
298 FaceStatsSet rankedFaces(
299 [] (const FaceStats& lhs, const FaceStats& rhs) -> bool {
300 // Sort by RTT and then by cost
301 double lhsValue = getValueForSorting(lhs);
302 double rhsValue = getValueForSorting(rhs);
303
304 if (lhsValue < rhsValue) {
305 return true;
306 }
307 else if (lhsValue == rhsValue) {
308 return lhs.cost < rhs.cost;
309 }
310 else {
311 return false;
312 }
313 });
314
Saurab Dulala6dec222019-04-01 00:15:10 -0500315 auto now = time::steady_clock::now();
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000316 for (const fib::NextHop& hop : fibEntry.getNextHops()) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000317 Face& hopFace = hop.getFace();
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000318
Saurab Dulala6dec222019-04-01 00:15:10 -0500319 if (!isNextHopEligible(inFace, interest, hop, pitEntry, !isInterestNew, now)) {
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000320 continue;
321 }
322
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500323 FaceInfo* info = m_measurements.getFaceInfo(fibEntry, interest, hopFace.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000324
325 if (info == nullptr) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000326 FaceStats stats = {&hopFace,
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000327 RttStats::RTT_NO_MEASUREMENT,
328 RttStats::RTT_NO_MEASUREMENT,
329 hop.getCost()};
330
331 rankedFaces.insert(stats);
332 }
333 else {
Junxiao Shia6de4292016-07-12 02:08:10 +0000334 FaceStats stats = {&hopFace, info->getRtt(), info->getSrtt(), hop.getCost()};
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000335 rankedFaces.insert(stats);
336 }
337 }
338
339 FaceStatsSet::iterator it = rankedFaces.begin();
340
341 if (it != rankedFaces.end()) {
342 return it->face;
343 }
344 else {
345 return nullptr;
346 }
347}
348
349void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500350AsfStrategy::onTimeout(const Name& interestName, const face::FaceId faceId)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000351{
Junxiao Shifc021862016-08-25 21:51:18 +0000352 NamespaceInfo* namespaceInfo = m_measurements.getNamespaceInfo(interestName);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000353
354 if (namespaceInfo == nullptr) {
355 NFD_LOG_TRACE("FibEntry for " << interestName << " has been removed since timeout scheduling");
356 return;
357 }
358
359 FaceInfoTable::iterator it = namespaceInfo->find(faceId);
360
361 if (it == namespaceInfo->end()) {
362 it = namespaceInfo->insert(faceId);
363 }
364
365 FaceInfo& faceInfo = it->second;
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500366
367 faceInfo.setNSilentTimeouts(faceInfo.getNSilentTimeouts() + 1);
368
369 if (faceInfo.getNSilentTimeouts() <= m_maxSilentTimeouts) {
370 NFD_LOG_TRACE("FaceId " << faceId << " for " << interestName << " has timed-out "
371 << faceInfo.getNSilentTimeouts() << " time(s), ignoring");
372 // Extend lifetime for measurements associated with Face
373 namespaceInfo->extendFaceInfoLifetime(faceInfo, faceId);
374
375 if (faceInfo.isTimeoutScheduled()) {
376 faceInfo.cancelTimeoutEvent(interestName);
377 }
378 }
379 else {
380 NFD_LOG_TRACE("FaceId " << faceId << " for " << interestName << " has timed-out");
381 faceInfo.recordTimeout(interestName);
382 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000383}
384
385void
ashiqopuc7079482019-02-20 05:34:37 +0000386AsfStrategy::sendNoRouteNack(const FaceEndpoint& ingress, const Interest& interest,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000387 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000388{
ashiqopuc7079482019-02-20 05:34:37 +0000389 NFD_LOG_DEBUG(interest << " from=" << ingress << " noNextHop");
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000390
391 lp::NackHeader nackHeader;
392 nackHeader.setReason(lp::NackReason::NO_ROUTE);
ashiqopuc7079482019-02-20 05:34:37 +0000393 this->sendNack(pitEntry, ingress, nackHeader);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000394}
395
396} // namespace asf
397} // namespace fw
398} // namespace nfd