blob: 7c12041b837bb0740ad5db8ffce27577a38dd4c8 [file] [log] [blame]
Junxiao Shi67ba8d22015-08-21 21:21:28 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande90015992017-07-11 17:25:48 -05002/*
Alexander Afanasyev4400e422021-02-17 11:17:33 -05003 * Copyright (c) 2014-2021, Regents of the University of California,
Junxiao Shi67ba8d22015-08-21 21:21:28 -07004 * 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"
Junxiao Shi00dc9142016-11-21 14:23:12 +000027#include "algorithm.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/logger.hpp"
Junxiao Shi67ba8d22015-08-21 21:21:28 -070029
30namespace nfd {
31namespace fw {
32
Junxiao Shi67ba8d22015-08-21 21:21:28 -070033NFD_REGISTER_STRATEGY(MulticastStrategy);
34
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(MulticastStrategy);
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000036
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000037const time::milliseconds MulticastStrategy::RETX_SUPPRESSION_INITIAL(10);
38const time::milliseconds MulticastStrategy::RETX_SUPPRESSION_MAX(250);
39
Junxiao Shi67ba8d22015-08-21 21:21:28 -070040MulticastStrategy::MulticastStrategy(Forwarder& forwarder, const Name& name)
Junxiao Shi18739c42016-12-22 08:03:00 +000041 : Strategy(forwarder)
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000042 , m_retxSuppression(RETX_SUPPRESSION_INITIAL,
43 RetxSuppressionExponential::DEFAULT_MULTIPLIER,
44 RETX_SUPPRESSION_MAX)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070045{
Junxiao Shi18739c42016-12-22 08:03:00 +000046 ParsedInstanceName parsed = parseInstanceName(name);
47 if (!parsed.parameters.empty()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050048 NDN_THROW(std::invalid_argument("MulticastStrategy does not accept parameters"));
Junxiao Shi18739c42016-12-22 08:03:00 +000049 }
Junxiao Shi91f6ee02016-12-29 21:44:44 +000050 if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050051 NDN_THROW(std::invalid_argument(
Alexander Afanasyev0c63c632017-12-05 11:17:09 -050052 "MulticastStrategy does not support version " + to_string(*parsed.version)));
Junxiao Shi91f6ee02016-12-29 21:44:44 +000053 }
Junxiao Shi18739c42016-12-22 08:03:00 +000054 this->setInstanceName(makeInstanceName(name, getStrategyName()));
Junxiao Shi67ba8d22015-08-21 21:21:28 -070055}
56
Junxiao Shi037f4ab2016-12-13 04:27:06 +000057const Name&
58MulticastStrategy::getStrategyName()
59{
Alexander Afanasyev4400e422021-02-17 11:17:33 -050060 static Name strategyName("/localhost/nfd/strategy/multicast/%FD%04");
Junxiao Shi037f4ab2016-12-13 04:27:06 +000061 return strategyName;
62}
63
Junxiao Shi67ba8d22015-08-21 21:21:28 -070064void
ashiqopuc7079482019-02-20 05:34:37 +000065MulticastStrategy::afterReceiveInterest(const FaceEndpoint& ingress, const Interest& interest,
Junxiao Shi15e98b02016-08-12 11:21:44 +000066 const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070067{
Junxiao Shi8d843142016-07-11 22:42:42 +000068 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
69 const fib::NextHopList& nexthops = fibEntry.getNextHops();
Junxiao Shi67ba8d22015-08-21 21:21:28 -070070
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000071 for (const auto& nexthop : nexthops) {
72 Face& outFace = nexthop.getFace();
73
Ashlesh Gawande90015992017-07-11 17:25:48 -050074 RetxSuppressionResult suppressResult = m_retxSuppression.decidePerUpstream(*pitEntry, outFace);
75
76 if (suppressResult == RetxSuppressionResult::SUPPRESS) {
ashiqopuc7079482019-02-20 05:34:37 +000077 NFD_LOG_DEBUG(interest << " from=" << ingress << " to=" << outFace.getId() << " suppressed");
Ashlesh Gawande90015992017-07-11 17:25:48 -050078 continue;
79 }
80
Ashlesh Gawandec1d48372020-08-02 22:30:11 -070081 if (!isNextHopEligible(ingress.face, interest, nexthop, pitEntry)) {
Teng Liangf995f382017-04-04 22:09:39 +000082 continue;
Junxiao Shi67ba8d22015-08-21 21:21:28 -070083 }
Teng Liangf995f382017-04-04 22:09:39 +000084
ashiqopuc7079482019-02-20 05:34:37 +000085 NFD_LOG_DEBUG(interest << " from=" << ingress << " pitEntry-to=" << outFace.getId());
Eric Newberry2377ada2020-09-28 22:40:14 -070086 bool wasSent = this->sendInterest(pitEntry, outFace, interest) != nullptr;
87 if (wasSent && suppressResult == RetxSuppressionResult::FORWARD) {
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000088 m_retxSuppression.incrementIntervalForOutRecord(*pitEntry->getOutRecord(outFace));
Ashlesh Gawande90015992017-07-11 17:25:48 -050089 }
Junxiao Shi67ba8d22015-08-21 21:21:28 -070090 }
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000091}
92
Junxiao Shi67ba8d22015-08-21 21:21:28 -070093} // namespace fw
94} // namespace nfd