blob: f29d0e7c4dc6e765094679c450d6155a0a7e8c2e [file] [log] [blame]
Vince Lehman8a4c29e2016-07-11 08:49:35 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2016, 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 "asf-probing-module.hpp"
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000027#include "core/random.hpp"
Ashlesh Gawande2a73f352016-12-01 15:37:03 +000028#include "algorithm.hpp"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000029
Vince Lehman8a4c29e2016-07-11 08:49:35 +000030namespace nfd {
31namespace fw {
32namespace asf {
33
34constexpr time::seconds ProbingModule::DEFAULT_PROBING_INTERVAL;
35
36static_assert(ProbingModule::DEFAULT_PROBING_INTERVAL < AsfMeasurements::MEASUREMENTS_LIFETIME,
37 "ProbingModule::DEFAULT_PROBING_INTERVAL must be less than AsfMeasurements::MEASUREMENTS_LIFETIME");
38
39ProbingModule::ProbingModule(AsfMeasurements& measurements)
40 : m_probingInterval(DEFAULT_PROBING_INTERVAL)
41 , m_measurements(measurements)
42{
43}
44
45void
Junxiao Shi8d843142016-07-11 22:42:42 +000046ProbingModule::scheduleProbe(const fib::Entry& fibEntry, const time::milliseconds& interval)
Vince Lehman8a4c29e2016-07-11 08:49:35 +000047{
Junxiao Shifc021862016-08-25 21:51:18 +000048 Name prefix = fibEntry.getPrefix();
Vince Lehman8a4c29e2016-07-11 08:49:35 +000049
50 // Set the probing flag for the namespace to true after passed interval of time
51 scheduler::schedule(interval, [this, prefix] {
Junxiao Shifc021862016-08-25 21:51:18 +000052 NamespaceInfo* info = m_measurements.getNamespaceInfo(prefix);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000053
54 if (info == nullptr) {
55 // fib::Entry with the passed prefix has been removed or the fib::Entry has
56 // a name that is not controlled by the AsfStrategy
57 return;
58 }
59 else {
60 info->setIsProbingDue(true);
61 }
62 });
63}
64
Junxiao Shia6de4292016-07-12 02:08:10 +000065Face*
Vince Lehman8a4c29e2016-07-11 08:49:35 +000066ProbingModule::getFaceToProbe(const Face& inFace,
67 const Interest& interest,
Junxiao Shi8d843142016-07-11 22:42:42 +000068 const fib::Entry& fibEntry,
Vince Lehman8a4c29e2016-07-11 08:49:35 +000069 const Face& faceUsed)
70{
71 FaceInfoFacePairSet rankedFaces(
72 [] (FaceInfoFacePair pairLhs, FaceInfoFacePair pairRhs) -> bool {
73 // Sort by RTT
74 // If a face has timed-out, rank it behind non-timed-out faces
75 FaceInfo& lhs = *pairLhs.first;
76 FaceInfo& rhs = *pairRhs.first;
77
78 return (!lhs.isTimeout() && rhs.isTimeout()) ||
79 (lhs.isTimeout() == rhs.isTimeout() && lhs.getSrtt() < rhs.getSrtt());
80 });
81
82 // Put eligible faces into rankedFaces. If a face does not have an RTT measurement,
83 // immediately pick the face for probing
Junxiao Shi8d843142016-07-11 22:42:42 +000084 for (const fib::NextHop& hop : fibEntry.getNextHops()) {
Junxiao Shia6de4292016-07-12 02:08:10 +000085 Face& hopFace = hop.getFace();
Vince Lehman8a4c29e2016-07-11 08:49:35 +000086
87 // Don't send probe Interest back to the incoming face or use the same face
Ashlesh Gawande2a73f352016-12-01 15:37:03 +000088 // as the forwarded Interest or use a face that violates scope
89 if (hopFace.getId() == inFace.getId() || hopFace.getId() == faceUsed.getId() ||
90 wouldViolateScope(inFace, interest, hopFace)) {
Vince Lehman8a4c29e2016-07-11 08:49:35 +000091 continue;
92 }
93
Junxiao Shia6de4292016-07-12 02:08:10 +000094 FaceInfo* info = m_measurements.getFaceInfo(fibEntry, interest, hopFace);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000095
96 // If no RTT has been recorded, probe this face
97 if (info == nullptr || !info->hasSrttMeasurement()) {
Junxiao Shia6de4292016-07-12 02:08:10 +000098 return &hopFace;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000099 }
100
101 // Add FaceInfo to container sorted by RTT
Junxiao Shia6de4292016-07-12 02:08:10 +0000102 rankedFaces.insert(std::make_pair(info, &hopFace));
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000103 }
104
105 if (rankedFaces.empty()) {
106 // No Face to probe
107 return nullptr;
108 }
109
110 return getFaceBasedOnProbability(rankedFaces);
111}
112
113bool
Junxiao Shifc021862016-08-25 21:51:18 +0000114ProbingModule::isProbingNeeded(const fib::Entry& fibEntry, const Interest& interest)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000115{
116 // Return the probing status flag for a namespace
Junxiao Shi8d843142016-07-11 22:42:42 +0000117 NamespaceInfo& info = m_measurements.getOrCreateNamespaceInfo(fibEntry, interest);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000118
119 // If a first probe has not been scheduled for a namespace
120 if (!info.isFirstProbeScheduled()) {
121 // Schedule first probe between 0 and 5 seconds
122 uint64_t interval = getRandomNumber(0, 5000);
123 scheduleProbe(fibEntry, time::milliseconds(interval));
124
125 info.setHasFirstProbeBeenScheduled(true);
126 }
127
128 return info.isProbingDue();
129}
130
131void
Junxiao Shifc021862016-08-25 21:51:18 +0000132ProbingModule::afterForwardingProbe(const fib::Entry& fibEntry, const Interest& interest)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000133{
134 // After probing is done, need to set probing flag to false and
135 // schedule another future probe
Junxiao Shi8d843142016-07-11 22:42:42 +0000136 NamespaceInfo& info = m_measurements.getOrCreateNamespaceInfo(fibEntry, interest);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000137 info.setIsProbingDue(false);
138
139 scheduleProbe(fibEntry, m_probingInterval);
140}
141
Junxiao Shia6de4292016-07-12 02:08:10 +0000142Face*
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000143ProbingModule::getFaceBasedOnProbability(const FaceInfoFacePairSet& rankedFaces)
144{
145 double randomNumber = getRandomNumber(0, 1);
146 uint64_t rankSum = ((rankedFaces.size() + 1) * rankedFaces.size()) / 2;
147
148 uint64_t rank = 1;
149 double offset = 0.0;
150
151 for (const FaceInfoFacePair pair : rankedFaces) {
152 double probability = getProbingProbability(rank++, rankSum, rankedFaces.size());
153
154 // Is the random number within the bounds of this face's probability + the previous faces'
155 // probability?
156 //
157 // e.g. (FaceId: 1, p=0.5), (FaceId: 2, p=0.33), (FaceId: 3, p=0.17)
158 // randomNumber = 0.92
159 //
160 // The face with FaceId: 3 should be picked
161 // (0.68 < 0.5 + 0.33 + 0.17) == true
162 //
163 if (randomNumber <= offset + probability) {
164 // Found face to probe
165 return pair.second;
166 }
167
168 offset += probability;
169 }
170
171 // Given a set of Faces, this method should always select a Face to probe
172 BOOST_ASSERT(false);
173 return nullptr;
174}
175
176double
177ProbingModule::getProbingProbability(uint64_t rank, uint64_t rankSum, uint64_t nFaces)
178{
179 // p = n + 1 - j ; n: # faces
180 // ---------
181 // sum(ranks)
182 return static_cast<double>(nFaces + 1 - rank) / rankSum;
183}
184
185double
186ProbingModule::getRandomNumber(double start, double end)
187{
Davide Pesavento5f47aa62016-10-07 22:09:09 +0200188 std::uniform_real_distribution<double> dist(start, end);
189 return dist(getGlobalRng());
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000190}
191
192} // namespace asf
193} // namespace fw
194} // namespace nfd