multicast-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-2022, 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 "multicast-strategy.hpp"
27 #include "algorithm.hpp"
28 #include "common/logger.hpp"
29 
30 namespace nfd::fw {
31 
33 
35 
36 MulticastStrategy::MulticastStrategy(Forwarder& forwarder, const Name& name)
37  : Strategy(forwarder)
38 {
40  if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
41  NDN_THROW(std::invalid_argument(
42  "MulticastStrategy does not support version " + to_string(*parsed.version)));
43  }
44 
46  m_retxSuppression = RetxSuppressionExponential::construct(params);
47 
49 
50  NDN_LOG_DEBUG(*m_retxSuppression);
51 }
52 
53 const Name&
55 {
56  static const auto strategyName = Name("/localhost/nfd/strategy/multicast").appendVersion(4);
57  return strategyName;
58 }
59 
60 void
61 MulticastStrategy::afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress,
62  const shared_ptr<pit::Entry>& pitEntry)
63 {
64  const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
65  const fib::NextHopList& nexthops = fibEntry.getNextHops();
66 
67  for (const auto& nexthop : nexthops) {
68  Face& outFace = nexthop.getFace();
69 
70  RetxSuppressionResult suppressResult = m_retxSuppression->decidePerUpstream(*pitEntry, outFace);
71 
72  if (suppressResult == RetxSuppressionResult::SUPPRESS) {
73  NFD_LOG_DEBUG(interest << " from=" << ingress << " to=" << outFace.getId() << " suppressed");
74  continue;
75  }
76 
77  if (!isNextHopEligible(ingress.face, interest, nexthop, pitEntry)) {
78  continue;
79  }
80 
81  NFD_LOG_DEBUG(interest << " from=" << ingress << " pitEntry-to=" << outFace.getId());
82  auto* sentOutRecord = this->sendInterest(interest, outFace, pitEntry);
83  if (sentOutRecord && suppressResult == RetxSuppressionResult::FORWARD) {
84  m_retxSuppression->incrementIntervalForOutRecord(*sentOutRecord);
85  }
86  }
87 }
88 
89 void
91  const shared_ptr<pit::Entry>& pitEntry)
92 {
93  // no need to check for suppression, as it is a new next hop
94 
95  auto nextHopFaceId = nextHop.getFace().getId();
96  auto& interest = pitEntry->getInterest();
97 
98  // try to find an incoming face record that doesn't violate scope restrictions
99  for (const auto& r : pitEntry->getInRecords()) {
100  auto& inFace = r.getFace();
101  if (isNextHopEligible(inFace, interest, nextHop, pitEntry)) {
102 
103  NFD_LOG_DEBUG(interest << " from=" << inFace.getId() << " pitEntry-to=" << nextHopFaceId);
104  this->sendInterest(interest, nextHop.getFace(), pitEntry);
105 
106  break; // just one eligible incoming face record is enough
107  }
108  }
109 
110  // if nothing found, the interest will not be forwarded
111 }
112 
113 } // namespace nfd::fw
This file contains common algorithms used by forwarding strategies.
Represents a face-endpoint pair in the forwarder.
Main class of NFD's forwarding engine.
Definition: forwarder.hpp:54
Generalization of a network interface.
Definition: face.hpp:56
FaceId getId() const noexcept
Returns the face ID.
Definition: face.hpp:121
Represents an entry in the FIB.
Definition: fib-entry.hpp:54
const NextHopList & getNextHops() const
Definition: fib-entry.hpp:66
Represents a nexthop record in a FIB entry.
Definition: fib-nexthop.hpp:37
Face & getFace() const
Definition: fib-nexthop.hpp:46
A forwarding strategy that forwards Interests to all FIB nexthops.
MulticastStrategy(Forwarder &forwarder, const Name &name=getStrategyName())
void afterNewNextHop(const fib::NextHop &nextHop, const shared_ptr< pit::Entry > &pitEntry) override
Trigger after a new nexthop is added.
static const Name & getStrategyName()
void afterReceiveInterest(const Interest &interest, const FaceEndpoint &ingress, const shared_ptr< pit::Entry > &pitEntry) override
Trigger after an Interest is received.
static std::unique_ptr< RetxSuppressionExponential > construct(const StrategyParameters &params)
Base class of all forwarding strategies.
Definition: strategy.hpp:42
const fib::Entry & lookupFib(const pit::Entry &pitEntry) const
Performs a FIB lookup, considering Link object if present.
Definition: strategy.cpp:304
pit::OutRecord * sendInterest(const Interest &interest, Face &egress, const shared_ptr< pit::Entry > &pitEntry)
Send an Interest packet.
Definition: strategy.cpp:226
static ParsedInstanceName parseInstanceName(const Name &input)
Parse a strategy instance name.
Definition: strategy.cpp:123
void setInstanceName(const Name &name) noexcept
Set strategy instance name.
Definition: strategy.hpp:415
static StrategyParameters parseParameters(const PartialName &params)
Parse strategy parameters encoded in a strategy instance name.
Definition: strategy.cpp:144
static Name makeInstanceName(const Name &input, const Name &strategyName)
Construct a strategy instance name.
Definition: strategy.cpp:134
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
#define NFD_LOG_DEBUG
Definition: logger.hpp:38
std::vector< NextHop > NextHopList
Definition: fib-entry.hpp:47
@ SUPPRESS
Interest is retransmission and should be suppressed.
@ FORWARD
Interest is retransmission and should be forwarded.
bool isNextHopEligible(const Face &inFace, const Interest &interest, const fib::NextHop &nexthop, const shared_ptr< pit::Entry > &pitEntry, bool wantUnused, time::steady_clock::time_point now)
Determines whether a NextHop is eligible, i.e., not the same inFace.
Definition: algorithm.cpp:130
NFD_REGISTER_STRATEGY(SelfLearningStrategy)
std::optional< uint64_t > version
The strategy version number, if present.
Definition: strategy.hpp:387
PartialName parameters
Parameter components, may be empty.
Definition: strategy.hpp:388