strategy.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2019, 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 "strategy.hpp"
27 #include "forwarder.hpp"
28 #include "common/logger.hpp"
29 
30 #include <boost/range/adaptor/map.hpp>
31 #include <boost/range/algorithm/copy.hpp>
32 
33 namespace nfd {
34 namespace fw {
35 
36 NFD_LOG_INIT(Strategy);
37 
38 Strategy::Registry&
39 Strategy::getRegistry()
40 {
41  static Registry registry;
42  return registry;
43 }
44 
45 Strategy::Registry::const_iterator
46 Strategy::find(const Name& instanceName)
47 {
48  const Registry& registry = getRegistry();
49  ParsedInstanceName parsed = parseInstanceName(instanceName);
50 
51  if (parsed.version) {
52  // specified version: find exact or next higher version
53 
54  auto found = registry.lower_bound(parsed.strategyName);
55  if (found != registry.end()) {
56  if (parsed.strategyName.getPrefix(-1).isPrefixOf(found->first)) {
57  NFD_LOG_TRACE("find " << instanceName << " versioned found=" << found->first);
58  return found;
59  }
60  }
61 
62  NFD_LOG_TRACE("find " << instanceName << " versioned not-found");
63  return registry.end();
64  }
65 
66  // no version specified: find highest version
67 
68  if (!parsed.strategyName.empty()) { // Name().getSuccessor() would be invalid
69  auto found = registry.lower_bound(parsed.strategyName.getSuccessor());
70  if (found != registry.begin()) {
71  --found;
72  if (parsed.strategyName.isPrefixOf(found->first)) {
73  NFD_LOG_TRACE("find " << instanceName << " unversioned found=" << found->first);
74  return found;
75  }
76  }
77  }
78 
79  NFD_LOG_TRACE("find " << instanceName << " unversioned not-found");
80  return registry.end();
81 }
82 
83 bool
84 Strategy::canCreate(const Name& instanceName)
85 {
86  return Strategy::find(instanceName) != getRegistry().end();
87 }
88 
89 unique_ptr<Strategy>
90 Strategy::create(const Name& instanceName, Forwarder& forwarder)
91 {
92  auto found = Strategy::find(instanceName);
93  if (found == getRegistry().end()) {
94  NFD_LOG_DEBUG("create " << instanceName << " not-found");
95  return nullptr;
96  }
97 
98  unique_ptr<Strategy> instance = found->second(forwarder, instanceName);
99  NFD_LOG_DEBUG("create " << instanceName << " found=" << found->first
100  << " created=" << instance->getInstanceName());
101  BOOST_ASSERT(!instance->getInstanceName().empty());
102  return instance;
103 }
104 
105 bool
106 Strategy::areSameType(const Name& instanceNameA, const Name& instanceNameB)
107 {
108  return Strategy::find(instanceNameA) == Strategy::find(instanceNameB);
109 }
110 
111 std::set<Name>
113 {
114  std::set<Name> strategyNames;
115  boost::copy(getRegistry() | boost::adaptors::map_keys,
116  std::inserter(strategyNames, strategyNames.end()));
117  return strategyNames;
118 }
119 
121 Strategy::parseInstanceName(const Name& input)
122 {
123  for (ssize_t i = input.size() - 1; i > 0; --i) {
124  if (input[i].isVersion()) {
125  return {input.getPrefix(i + 1), input[i].toVersion(), input.getSubName(i + 1)};
126  }
127  }
128  return {input, nullopt, PartialName()};
129 }
130 
131 Name
132 Strategy::makeInstanceName(const Name& input, const Name& strategyName)
133 {
134  BOOST_ASSERT(strategyName.at(-1).isVersion());
135 
136  bool hasVersion = std::any_of(input.rbegin(), input.rend(),
137  [] (const name::Component& comp) { return comp.isVersion(); });
138  return hasVersion ? input : Name(input).append(strategyName.at(-1));
139 }
140 
142  : afterAddFace(forwarder.getFaceTable().afterAdd)
143  , beforeRemoveFace(forwarder.getFaceTable().beforeRemove)
144  , m_forwarder(forwarder)
145  , m_measurements(m_forwarder.getMeasurements(), m_forwarder.getStrategyChoice(), *this)
146 {
147 }
148 
149 Strategy::~Strategy() = default;
150 
151 void
152 Strategy::beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry,
153  const FaceEndpoint& ingress, const Data& data)
154 {
155  NFD_LOG_DEBUG("beforeSatisfyInterest pitEntry=" << pitEntry->getName()
156  << " in=" << ingress << " data=" << data.getName());
157 }
158 
159 void
160 Strategy::afterContentStoreHit(const shared_ptr<pit::Entry>& pitEntry,
161  const FaceEndpoint& ingress, const Data& data)
162 {
163  NFD_LOG_DEBUG("afterContentStoreHit pitEntry=" << pitEntry->getName()
164  << " in=" << ingress << " data=" << data.getName());
165 
166  this->sendData(pitEntry, data, ingress);
167 }
168 
169 void
170 Strategy::afterReceiveData(const shared_ptr<pit::Entry>& pitEntry,
171  const FaceEndpoint& ingress, const Data& data)
172 {
173  NFD_LOG_DEBUG("afterReceiveData pitEntry=" << pitEntry->getName()
174  << " in=" << ingress << " data=" << data.getName());
175 
176  this->beforeSatisfyInterest(pitEntry, ingress, data);
177 
178  this->sendDataToAll(pitEntry, ingress, data);
179 }
180 
181 void
182 Strategy::afterReceiveNack(const FaceEndpoint& ingress, const lp::Nack& nack,
183  const shared_ptr<pit::Entry>& pitEntry)
184 {
185  NFD_LOG_DEBUG("afterReceiveNack in=" << ingress << " pitEntry=" << pitEntry->getName());
186 }
187 
188 void
189 Strategy::onDroppedInterest(const FaceEndpoint& egress, const Interest& interest)
190 {
191  NFD_LOG_DEBUG("onDroppedInterest out=" << egress << " name=" << interest.getName());
192 }
193 
194 void
195 Strategy::sendData(const shared_ptr<pit::Entry>& pitEntry, const Data& data,
196  const FaceEndpoint& egress)
197 {
198  BOOST_ASSERT(pitEntry->getInterest().matchesData(data));
199 
200  // delete the PIT entry's in-record based on egress,
201  // since Data is sent to face and endpoint from which the Interest was received
202  pitEntry->deleteInRecord(egress.face, egress.endpoint);
203 
204  m_forwarder.onOutgoingData(data, egress);
205 }
206 
207 void
208 Strategy::sendDataToAll(const shared_ptr<pit::Entry>& pitEntry,
209  const FaceEndpoint& ingress, const Data& data)
210 {
211  std::set<std::pair<Face*, EndpointId>> pendingDownstreams;
212  auto now = time::steady_clock::now();
213 
214  // remember pending downstreams
215  for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
216  if (inRecord.getExpiry() > now) {
217  if (inRecord.getFace().getId() == ingress.face.getId() &&
218  inRecord.getEndpointId() == ingress.endpoint &&
219  inRecord.getFace().getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
220  continue;
221  }
222  pendingDownstreams.emplace(&inRecord.getFace(), inRecord.getEndpointId());
223  }
224  }
225 
226  for (const auto& pendingDownstream : pendingDownstreams) {
227  this->sendData(pitEntry, data, FaceEndpoint(*pendingDownstream.first, pendingDownstream.second));
228  }
229 }
230 
231 void
232 Strategy::sendNacks(const shared_ptr<pit::Entry>& pitEntry, const lp::NackHeader& header,
233  std::initializer_list<FaceEndpoint> exceptFaceEndpoints)
234 {
235  // populate downstreams with all downstreams faces
236  std::set<std::pair<Face*, EndpointId>> downstreams;
237  std::transform(pitEntry->in_begin(), pitEntry->in_end(), std::inserter(downstreams, downstreams.end()),
238  [] (const pit::InRecord& inR) {
239  return std::make_pair(&inR.getFace(), inR.getEndpointId());
240  });
241 
242  // delete excluded faces
243  for (const auto& exceptFaceEndpoint : exceptFaceEndpoints) {
244  downstreams.erase({&exceptFaceEndpoint.face, exceptFaceEndpoint.endpoint});
245  }
246 
247  // send Nacks
248  for (const auto& downstream : downstreams) {
249  this->sendNack(pitEntry, FaceEndpoint(*downstream.first, downstream.second), header);
250  }
251  // warning: don't loop on pitEntry->getInRecords(), because in-record is deleted when sending Nack
252 }
253 
254 const fib::Entry&
255 Strategy::lookupFib(const pit::Entry& pitEntry) const
256 {
257  const Fib& fib = m_forwarder.getFib();
258 
259  const Interest& interest = pitEntry.getInterest();
260  // has forwarding hint?
261  if (interest.getForwardingHint().empty()) {
262  // FIB lookup with Interest name
263  const fib::Entry& fibEntry = fib.findLongestPrefixMatch(pitEntry);
264  NFD_LOG_TRACE("lookupFib noForwardingHint found=" << fibEntry.getPrefix());
265  return fibEntry;
266  }
267 
268  const DelegationList& fh = interest.getForwardingHint();
269  // Forwarding hint should have been stripped by incoming Interest pipeline when reaching producer region
270  BOOST_ASSERT(!m_forwarder.getNetworkRegionTable().isInProducerRegion(fh));
271 
272  const fib::Entry* fibEntry = nullptr;
273  for (const Delegation& del : fh) {
274  fibEntry = &fib.findLongestPrefixMatch(del.name);
275  if (fibEntry->hasNextHops()) {
276  if (fibEntry->getPrefix().size() == 0) {
277  // in consumer region, return the default route
278  NFD_LOG_TRACE("lookupFib inConsumerRegion found=" << fibEntry->getPrefix());
279  }
280  else {
281  // in default-free zone, use the first delegation that finds a FIB entry
282  NFD_LOG_TRACE("lookupFib delegation=" << del.name << " found=" << fibEntry->getPrefix());
283  }
284  return *fibEntry;
285  }
286  BOOST_ASSERT(fibEntry->getPrefix().size() == 0); // only ndn:/ FIB entry can have zero nexthop
287  }
288  BOOST_ASSERT(fibEntry != nullptr && fibEntry->getPrefix().size() == 0);
289  return *fibEntry; // only occurs if no delegation finds a FIB nexthop
290 }
291 
292 } // namespace fw
293 } // namespace nfd
const EndpointId endpoint
Main class of NFD forwarding engine.
Definition: forwarder.hpp:51
Strategy(Forwarder &forwarder)
Construct a strategy instance.
Definition: strategy.cpp:141
const FaceTable & getFaceTable() const
Definition: strategy.hpp:332
Fib & getFib()
Definition: forwarder.hpp:143
void sendNack(const shared_ptr< pit::Entry > &pitEntry, const FaceEndpoint &egress, const lp::NackHeader &header)
send Nack to egress
Definition: strategy.hpp:289
represents a FIB entry
Definition: fib-entry.hpp:51
void sendDataToAll(const shared_ptr< pit::Entry > &pitEntry, const FaceEndpoint &ingress, const Data &data)
send data to all matched and qualified face-endpoint pairs
Definition: strategy.cpp:208
#define NFD_LOG_TRACE
Definition: logger.hpp:37
static Name makeInstanceName(const Name &input, const Name &strategyName)
construct a strategy instance name
Definition: strategy.cpp:132
static bool canCreate(const Name &instanceName)
Definition: strategy.cpp:84
MeasurementsAccessor & getMeasurements()
Definition: strategy.hpp:320
virtual void afterReceiveNack(const FaceEndpoint &ingress, const lp::Nack &nack, const shared_ptr< pit::Entry > &pitEntry)
trigger after Nack is received
Definition: strategy.cpp:182
static bool areSameType(const Name &instanceNameA, const Name &instanceNameB)
Definition: strategy.cpp:106
An Interest table entry.
Definition: pit-entry.hpp:58
const Name & getPrefix() const
Definition: fib-entry.hpp:58
Represents a face-endpoint pair in the forwarder.
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
Definition: algorithm.hpp:32
signal::Signal< FaceTable, Face & > & afterAddFace
Definition: strategy.hpp:385
Contains information about an Interest from an incoming face.
Face & getFace() const
const Interest & getInterest() const
Definition: pit-entry.hpp:70
static unique_ptr< Strategy > create(const Name &instanceName, Forwarder &forwarder)
Definition: strategy.cpp:90
virtual void afterContentStoreHit(const shared_ptr< pit::Entry > &pitEntry, const FaceEndpoint &ingress, const Data &data)
trigger after a Data is matched in CS
Definition: strategy.cpp:160
void sendData(const shared_ptr< pit::Entry > &pitEntry, const Data &data, const FaceEndpoint &egress)
send data to egress
Definition: strategy.cpp:195
#define NFD_LOG_DEBUG
Definition: logger.hpp:38
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
signal::Signal< FaceTable, Face & > & beforeRemoveFace
Definition: strategy.hpp:386
virtual void afterReceiveData(const shared_ptr< pit::Entry > &pitEntry, const FaceEndpoint &ingress, const Data &data)
trigger after Data is received
Definition: strategy.cpp:170
static ParsedInstanceName parseInstanceName(const Name &input)
parse a strategy instance name
Definition: strategy.cpp:121
static std::set< Name > listRegistered()
Definition: strategy.cpp:112
EndpointId getEndpointId() const
bool isInProducerRegion(const DelegationList &forwardingHint) const
determines whether an Interest has reached a producer region
void sendNacks(const shared_ptr< pit::Entry > &pitEntry, const lp::NackHeader &header, std::initializer_list< FaceEndpoint > exceptFaceEndpoints={})
send Nack to every face-endpoint pair that has an in-record, except those in exceptFaceEndpoints ...
Definition: strategy.cpp:232
virtual ~Strategy()
virtual void onDroppedInterest(const FaceEndpoint &egress, const Interest &interest)
trigger after Interest dropped for exceeding allowed retransmissions
Definition: strategy.cpp:189
virtual void beforeSatisfyInterest(const shared_ptr< pit::Entry > &pitEntry, const FaceEndpoint &ingress, const Data &data)
trigger before PIT entry is satisfied
Definition: strategy.cpp:152
NetworkRegionTable & getNetworkRegionTable()
Definition: forwarder.hpp:179
const fib::Entry & lookupFib(const pit::Entry &pitEntry) const
performs a FIB lookup, considering Link object if present
Definition: strategy.cpp:255