blob: d47649d10da7f2b0786780689b3db058f944e20f [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/*
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -05003 * Copyright (c) 2014-2018, 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"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000028#include "core/logger.hpp"
29
30namespace nfd {
31namespace fw {
32namespace asf {
33
Davide Pesaventoa3148082018-04-12 18:21:54 -040034NFD_LOG_INIT(AsfStrategy);
Junxiao Shi037f4ab2016-12-13 04:27:06 +000035NFD_REGISTER_STRATEGY(AsfStrategy);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000036
Vince Lehman8a4c29e2016-07-11 08:49:35 +000037const time::milliseconds AsfStrategy::RETX_SUPPRESSION_INITIAL(10);
38const time::milliseconds AsfStrategy::RETX_SUPPRESSION_MAX(250);
39
Vince Lehman8a4c29e2016-07-11 08:49:35 +000040AsfStrategy::AsfStrategy(Forwarder& forwarder, const Name& name)
Junxiao Shi18739c42016-12-22 08:03:00 +000041 : Strategy(forwarder)
Vince Lehman8a4c29e2016-07-11 08:49:35 +000042 , m_measurements(getMeasurements())
43 , m_probing(m_measurements)
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050044 , m_maxSilentTimeouts(0)
Vince Lehman8a4c29e2016-07-11 08:49:35 +000045 , m_retxSuppression(RETX_SUPPRESSION_INITIAL,
46 RetxSuppressionExponential::DEFAULT_MULTIPLIER,
47 RETX_SUPPRESSION_MAX)
48{
Junxiao Shi18739c42016-12-22 08:03:00 +000049 ParsedInstanceName parsed = parseInstanceName(name);
50 if (!parsed.parameters.empty()) {
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050051 processParams(parsed.parameters);
Junxiao Shi18739c42016-12-22 08:03:00 +000052 }
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050053
Junxiao Shi91f6ee02016-12-29 21:44:44 +000054 if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
55 BOOST_THROW_EXCEPTION(std::invalid_argument(
Alexander Afanasyev0c63c632017-12-05 11:17:09 -050056 "AsfStrategy does not support version " + to_string(*parsed.version)));
Junxiao Shi91f6ee02016-12-29 21:44:44 +000057 }
Junxiao Shi18739c42016-12-22 08:03:00 +000058 this->setInstanceName(makeInstanceName(name, getStrategyName()));
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050059
60 NFD_LOG_DEBUG("Probing interval=" << m_probing.getProbingInterval()
61 << ", Num silent timeouts=" << m_maxSilentTimeouts);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000062}
63
Junxiao Shi037f4ab2016-12-13 04:27:06 +000064const Name&
65AsfStrategy::getStrategyName()
66{
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050067 static Name strategyName("/localhost/nfd/strategy/asf/%FD%03");
Junxiao Shi037f4ab2016-12-13 04:27:06 +000068 return strategyName;
69}
70
Vince Lehman8a4c29e2016-07-11 08:49:35 +000071void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050072AsfStrategy::processParams(const PartialName& parsed)
73{
74 for (const auto& component : parsed) {
75 std::string parsedStr(reinterpret_cast<const char*>(component.value()), component.value_size());
76 auto n = parsedStr.find("~");
77 if (n == std::string::npos) {
78 BOOST_THROW_EXCEPTION(std::invalid_argument("Format is <parameter>~<value>"));
79 }
80
81 auto f = parsedStr.substr(0, n);
82 auto s = parsedStr.substr(n + 1);
83 if (f == "probing-interval") {
84 m_probing.setProbingInterval(getParamValue(f, s));
85 }
86 else if (f == "n-silent-timeouts") {
87 m_maxSilentTimeouts = getParamValue(f, s);
88 }
89 else {
90 BOOST_THROW_EXCEPTION(std::invalid_argument("Parameter should be probing-interval or n-silent-timeouts"));
91 }
92 }
93}
94
95uint64_t
96AsfStrategy::getParamValue(const std::string& param, const std::string& value)
97{
98 try {
99 if (!value.empty() && value[0] == '-')
100 BOOST_THROW_EXCEPTION(boost::bad_lexical_cast());
101
102 return boost::lexical_cast<uint64_t>(value);
103 }
104 catch (const boost::bad_lexical_cast&) {
105 BOOST_THROW_EXCEPTION(std::invalid_argument("Value of " + param + " must be a non-negative integer"));
106 }
107}
108
109void
Junxiao Shi15e98b02016-08-12 11:21:44 +0000110AsfStrategy::afterReceiveInterest(const Face& inFace, const Interest& interest,
111 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000112{
113 // Should the Interest be suppressed?
Ashlesh Gawande90015992017-07-11 17:25:48 -0500114 RetxSuppressionResult suppressResult = m_retxSuppression.decidePerPitEntry(*pitEntry);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000115
116 switch (suppressResult) {
Ashlesh Gawande90015992017-07-11 17:25:48 -0500117 case RetxSuppressionResult::NEW:
118 case RetxSuppressionResult::FORWARD:
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000119 break;
Ashlesh Gawande90015992017-07-11 17:25:48 -0500120 case RetxSuppressionResult::SUPPRESS:
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000121 NFD_LOG_DEBUG(interest << " from=" << inFace.getId() << " suppressed");
122 return;
123 }
124
Junxiao Shi8d843142016-07-11 22:42:42 +0000125 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
126 const fib::NextHopList& nexthops = fibEntry.getNextHops();
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000127
128 if (nexthops.size() == 0) {
129 sendNoRouteNack(inFace, interest, pitEntry);
130 this->rejectPendingInterest(pitEntry);
131 return;
132 }
133
Junxiao Shia6de4292016-07-12 02:08:10 +0000134 Face* faceToUse = getBestFaceForForwarding(fibEntry, interest, inFace);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000135
136 if (faceToUse == nullptr) {
137 sendNoRouteNack(inFace, interest, pitEntry);
138 this->rejectPendingInterest(pitEntry);
139 return;
140 }
141
Ashlesh Gawandecad76b62017-04-04 15:28:30 -0500142 NFD_LOG_TRACE("Forwarding interest to face: " << faceToUse->getId());
143
Junxiao Shia6de4292016-07-12 02:08:10 +0000144 forwardInterest(interest, fibEntry, pitEntry, *faceToUse);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000145
146 // If necessary, send probe
147 if (m_probing.isProbingNeeded(fibEntry, interest)) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000148 Face* faceToProbe = m_probing.getFaceToProbe(inFace, interest, fibEntry, *faceToUse);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000149
150 if (faceToProbe != nullptr) {
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000151 bool wantNewNonce = true;
Junxiao Shia6de4292016-07-12 02:08:10 +0000152 forwardInterest(interest, fibEntry, pitEntry, *faceToProbe, wantNewNonce);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000153 m_probing.afterForwardingProbe(fibEntry, interest);
154 }
155 }
156}
157
158void
Junxiao Shi15e98b02016-08-12 11:21:44 +0000159AsfStrategy::beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry,
160 const Face& inFace, const Data& data)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000161{
Junxiao Shifc021862016-08-25 21:51:18 +0000162 NamespaceInfo* namespaceInfo = m_measurements.getNamespaceInfo(pitEntry->getName());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000163
164 if (namespaceInfo == nullptr) {
165 NFD_LOG_TRACE("Could not find measurements entry for " << pitEntry->getName());
166 return;
167 }
168
169 // Record the RTT between the Interest out to Data in
Ashlesh Gawandecad76b62017-04-04 15:28:30 -0500170 FaceInfo* faceInfo = namespaceInfo->get(inFace.getId());
171 if (faceInfo == nullptr) {
172 return;
173 }
174 faceInfo->recordRtt(pitEntry, inFace);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000175
176 // Extend lifetime for measurements associated with Face
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500177 namespaceInfo->extendFaceInfoLifetime(*faceInfo, inFace.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000178
Ashlesh Gawandecad76b62017-04-04 15:28:30 -0500179 if (faceInfo->isTimeoutScheduled()) {
180 faceInfo->cancelTimeoutEvent(data.getName());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000181 }
182}
183
184void
185AsfStrategy::afterReceiveNack(const Face& inFace, const lp::Nack& nack,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000186 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000187{
188 NFD_LOG_DEBUG("Nack for " << nack.getInterest() << " from=" << inFace.getId() << ": " << nack.getReason());
189 onTimeout(pitEntry->getName(), inFace.getId());
190}
191
192////////////////////////////////////////////////////////////////////////////////
193////////////////////////////////////////////////////////////////////////////////
194
195void
196AsfStrategy::forwardInterest(const Interest& interest,
197 const fib::Entry& fibEntry,
Junxiao Shi15e98b02016-08-12 11:21:44 +0000198 const shared_ptr<pit::Entry>& pitEntry,
Junxiao Shia6de4292016-07-12 02:08:10 +0000199 Face& outFace,
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000200 bool wantNewNonce)
201{
Ashlesh Gawande2a73f352016-12-01 15:37:03 +0000202 if (wantNewNonce) {
203 //Send probe: interest with new Nonce
204 Interest probeInterest(interest);
205 probeInterest.refreshNonce();
206 NFD_LOG_TRACE("Sending probe for " << probeInterest << probeInterest.getNonce()
207 << " to FaceId: " << outFace.getId());
208 this->sendInterest(pitEntry, outFace, probeInterest);
209 }
210 else {
211 this->sendInterest(pitEntry, outFace, interest);
212 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000213
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500214 FaceInfo& faceInfo = m_measurements.getOrCreateFaceInfo(fibEntry, interest, outFace.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000215
216 // Refresh measurements since Face is being used for forwarding
217 NamespaceInfo& namespaceInfo = m_measurements.getOrCreateNamespaceInfo(fibEntry, interest);
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500218 namespaceInfo.extendFaceInfoLifetime(faceInfo, outFace.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000219
220 if (!faceInfo.isTimeoutScheduled()) {
221 // Estimate and schedule timeout
222 RttEstimator::Duration timeout = faceInfo.computeRto();
223
224 NFD_LOG_TRACE("Scheduling timeout for " << fibEntry.getPrefix()
Junxiao Shia6de4292016-07-12 02:08:10 +0000225 << " FaceId: " << outFace.getId()
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000226 << " in " << time::duration_cast<time::milliseconds>(timeout) << " ms");
227
228 scheduler::EventId id = scheduler::schedule(timeout,
Junxiao Shia6de4292016-07-12 02:08:10 +0000229 bind(&AsfStrategy::onTimeout, this, interest.getName(), outFace.getId()));
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000230
231 faceInfo.setTimeoutEvent(id, interest.getName());
232 }
233}
234
235struct FaceStats
236{
Junxiao Shia6de4292016-07-12 02:08:10 +0000237 Face* face;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000238 RttStats::Rtt rtt;
239 RttStats::Rtt srtt;
240 uint64_t cost;
241};
242
243double
244getValueForSorting(const FaceStats& stats)
245{
246 // These values allow faces with no measurements to be ranked better than timeouts
247 // srtt < RTT_NO_MEASUREMENT < RTT_TIMEOUT
248 static const RttStats::Rtt SORTING_RTT_TIMEOUT = time::microseconds::max();
249 static const RttStats::Rtt SORTING_RTT_NO_MEASUREMENT = SORTING_RTT_TIMEOUT / 2;
250
251 if (stats.rtt == RttStats::RTT_TIMEOUT) {
252 return SORTING_RTT_TIMEOUT.count();
253 }
254 else if (stats.rtt == RttStats::RTT_NO_MEASUREMENT) {
255 return SORTING_RTT_NO_MEASUREMENT.count();
256 }
257 else {
258 return stats.srtt.count();
259 }
260}
261
Junxiao Shia6de4292016-07-12 02:08:10 +0000262Face*
Junxiao Shi15e98b02016-08-12 11:21:44 +0000263AsfStrategy::getBestFaceForForwarding(const fib::Entry& fibEntry, const Interest& interest,
264 const Face& inFace)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000265{
266 NFD_LOG_TRACE("Looking for best face for " << fibEntry.getPrefix());
267
268 typedef std::function<bool(const FaceStats&, const FaceStats&)> FaceStatsPredicate;
269 typedef std::set<FaceStats, FaceStatsPredicate> FaceStatsSet;
270
271 FaceStatsSet rankedFaces(
272 [] (const FaceStats& lhs, const FaceStats& rhs) -> bool {
273 // Sort by RTT and then by cost
274 double lhsValue = getValueForSorting(lhs);
275 double rhsValue = getValueForSorting(rhs);
276
277 if (lhsValue < rhsValue) {
278 return true;
279 }
280 else if (lhsValue == rhsValue) {
281 return lhs.cost < rhs.cost;
282 }
283 else {
284 return false;
285 }
286 });
287
288 for (const fib::NextHop& hop : fibEntry.getNextHops()) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000289 Face& hopFace = hop.getFace();
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000290
Teng Liangf995f382017-04-04 22:09:39 +0000291 if ((hopFace.getId() == inFace.getId() && hopFace.getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) ||
292 wouldViolateScope(inFace, interest, hopFace)) {
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000293 continue;
294 }
295
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500296 FaceInfo* info = m_measurements.getFaceInfo(fibEntry, interest, hopFace.getId());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000297
298 if (info == nullptr) {
Junxiao Shia6de4292016-07-12 02:08:10 +0000299 FaceStats stats = {&hopFace,
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000300 RttStats::RTT_NO_MEASUREMENT,
301 RttStats::RTT_NO_MEASUREMENT,
302 hop.getCost()};
303
304 rankedFaces.insert(stats);
305 }
306 else {
Junxiao Shia6de4292016-07-12 02:08:10 +0000307 FaceStats stats = {&hopFace, info->getRtt(), info->getSrtt(), hop.getCost()};
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000308 rankedFaces.insert(stats);
309 }
310 }
311
312 FaceStatsSet::iterator it = rankedFaces.begin();
313
314 if (it != rankedFaces.end()) {
315 return it->face;
316 }
317 else {
318 return nullptr;
319 }
320}
321
322void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500323AsfStrategy::onTimeout(const Name& interestName, const face::FaceId faceId)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000324{
Junxiao Shifc021862016-08-25 21:51:18 +0000325 NamespaceInfo* namespaceInfo = m_measurements.getNamespaceInfo(interestName);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000326
327 if (namespaceInfo == nullptr) {
328 NFD_LOG_TRACE("FibEntry for " << interestName << " has been removed since timeout scheduling");
329 return;
330 }
331
332 FaceInfoTable::iterator it = namespaceInfo->find(faceId);
333
334 if (it == namespaceInfo->end()) {
335 it = namespaceInfo->insert(faceId);
336 }
337
338 FaceInfo& faceInfo = it->second;
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500339
340 faceInfo.setNSilentTimeouts(faceInfo.getNSilentTimeouts() + 1);
341
342 if (faceInfo.getNSilentTimeouts() <= m_maxSilentTimeouts) {
343 NFD_LOG_TRACE("FaceId " << faceId << " for " << interestName << " has timed-out "
344 << faceInfo.getNSilentTimeouts() << " time(s), ignoring");
345 // Extend lifetime for measurements associated with Face
346 namespaceInfo->extendFaceInfoLifetime(faceInfo, faceId);
347
348 if (faceInfo.isTimeoutScheduled()) {
349 faceInfo.cancelTimeoutEvent(interestName);
350 }
351 }
352 else {
353 NFD_LOG_TRACE("FaceId " << faceId << " for " << interestName << " has timed-out");
354 faceInfo.recordTimeout(interestName);
355 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000356}
357
358void
Junxiao Shi15e98b02016-08-12 11:21:44 +0000359AsfStrategy::sendNoRouteNack(const Face& inFace, const Interest& interest,
360 const shared_ptr<pit::Entry>& pitEntry)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000361{
362 NFD_LOG_DEBUG(interest << " from=" << inFace.getId() << " noNextHop");
363
364 lp::NackHeader nackHeader;
365 nackHeader.setReason(lp::NackReason::NO_ROUTE);
366 this->sendNack(pitEntry, inFace, nackHeader);
367}
368
369} // namespace asf
370} // namespace fw
371} // namespace nfd