blob: ee921c37463bc0c1a1605cee06effe3c801f19cd [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/*
Teng Liangebc20f62020-06-23 16:55:20 -07003 * Copyright (c) 2014-2020, 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 Gawandee38e2612017-02-25 07:23:41 +000042 , ProcessNackTraits(this)
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000043 , m_retxSuppression(RETX_SUPPRESSION_INITIAL,
44 RetxSuppressionExponential::DEFAULT_MULTIPLIER,
45 RETX_SUPPRESSION_MAX)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070046{
Junxiao Shi18739c42016-12-22 08:03:00 +000047 ParsedInstanceName parsed = parseInstanceName(name);
48 if (!parsed.parameters.empty()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050049 NDN_THROW(std::invalid_argument("MulticastStrategy does not accept parameters"));
Junxiao Shi18739c42016-12-22 08:03:00 +000050 }
Junxiao Shi91f6ee02016-12-29 21:44:44 +000051 if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
Davide Pesavento19779d82019-02-14 13:40:04 -050052 NDN_THROW(std::invalid_argument(
Alexander Afanasyev0c63c632017-12-05 11:17:09 -050053 "MulticastStrategy does not support version " + to_string(*parsed.version)));
Junxiao Shi91f6ee02016-12-29 21:44:44 +000054 }
Junxiao Shi18739c42016-12-22 08:03:00 +000055 this->setInstanceName(makeInstanceName(name, getStrategyName()));
Junxiao Shi67ba8d22015-08-21 21:21:28 -070056}
57
Junxiao Shi037f4ab2016-12-13 04:27:06 +000058const Name&
59MulticastStrategy::getStrategyName()
60{
Teng Liangf995f382017-04-04 22:09:39 +000061 static Name strategyName("/localhost/nfd/strategy/multicast/%FD%03");
Junxiao Shi037f4ab2016-12-13 04:27:06 +000062 return strategyName;
63}
64
Junxiao Shi67ba8d22015-08-21 21:21:28 -070065void
ashiqopuc7079482019-02-20 05:34:37 +000066MulticastStrategy::afterReceiveInterest(const FaceEndpoint& ingress, const Interest& interest,
Junxiao Shi15e98b02016-08-12 11:21:44 +000067 const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070068{
Junxiao Shi8d843142016-07-11 22:42:42 +000069 const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
70 const fib::NextHopList& nexthops = fibEntry.getNextHops();
Junxiao Shi67ba8d22015-08-21 21:21:28 -070071
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000072 for (const auto& nexthop : nexthops) {
73 Face& outFace = nexthop.getFace();
74
Ashlesh Gawande90015992017-07-11 17:25:48 -050075 RetxSuppressionResult suppressResult = m_retxSuppression.decidePerUpstream(*pitEntry, outFace);
76
77 if (suppressResult == RetxSuppressionResult::SUPPRESS) {
ashiqopuc7079482019-02-20 05:34:37 +000078 NFD_LOG_DEBUG(interest << " from=" << ingress << " to=" << outFace.getId() << " suppressed");
Ashlesh Gawande90015992017-07-11 17:25:48 -050079 continue;
80 }
81
Ashlesh Gawandec1d48372020-08-02 22:30:11 -070082 if (!isNextHopEligible(ingress.face, interest, nexthop, pitEntry)) {
Teng Liangf995f382017-04-04 22:09:39 +000083 continue;
Junxiao Shi67ba8d22015-08-21 21:21:28 -070084 }
Teng Liangf995f382017-04-04 22:09:39 +000085
Teng Liangebc20f62020-06-23 16:55:20 -070086 this->sendInterest(pitEntry, outFace, interest);
ashiqopuc7079482019-02-20 05:34:37 +000087 NFD_LOG_DEBUG(interest << " from=" << ingress << " pitEntry-to=" << outFace.getId());
Ashlesh Gawande90015992017-07-11 17:25:48 -050088
89 if (suppressResult == RetxSuppressionResult::FORWARD) {
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000090 m_retxSuppression.incrementIntervalForOutRecord(*pitEntry->getOutRecord(outFace));
Ashlesh Gawande90015992017-07-11 17:25:48 -050091 }
Junxiao Shi67ba8d22015-08-21 21:21:28 -070092 }
93
Ashlesh Gawandec1d48372020-08-02 22:30:11 -070094 if (!hasPendingOutRecords(*pitEntry)) {
95 NFD_LOG_DEBUG(interest << " from=" << ingress << " noNextHop (removing pitEntry)");
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000096
Ashlesh Gawande90015992017-07-11 17:25:48 -050097 lp::NackHeader nackHeader;
98 nackHeader.setReason(lp::NackReason::NO_ROUTE);
Teng Liangebc20f62020-06-23 16:55:20 -070099 this->sendNack(pitEntry, ingress.face, nackHeader);
Ashlesh Gawandee38e2612017-02-25 07:23:41 +0000100
Ashlesh Gawande90015992017-07-11 17:25:48 -0500101 this->rejectPendingInterest(pitEntry);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700102 }
103}
104
Ashlesh Gawandee38e2612017-02-25 07:23:41 +0000105void
ashiqopuc7079482019-02-20 05:34:37 +0000106MulticastStrategy::afterReceiveNack(const FaceEndpoint& ingress, const lp::Nack& nack,
Ashlesh Gawandee38e2612017-02-25 07:23:41 +0000107 const shared_ptr<pit::Entry>& pitEntry)
108{
ashiqopuc7079482019-02-20 05:34:37 +0000109 this->processNack(ingress.face, nack, pitEntry);
Ashlesh Gawandee38e2612017-02-25 07:23:41 +0000110}
111
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700112} // namespace fw
113} // namespace nfd