Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 2 | /* |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2023, Regents of the University of California, |
Junxiao Shi | 192af1f | 2015-01-13 23:19:39 -0700 | [diff] [blame] | 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. |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 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 | |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 26 | #include "best-route-strategy.hpp" |
Junxiao Shi | 00dc914 | 2016-11-21 14:23:12 +0000 | [diff] [blame] | 27 | #include "algorithm.hpp" |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 28 | #include "common/logger.hpp" |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 29 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 30 | namespace nfd::fw { |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 31 | |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 32 | NFD_LOG_INIT(BestRouteStrategy); |
| 33 | NFD_REGISTER_STRATEGY(BestRouteStrategy); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 34 | |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 35 | BestRouteStrategy::BestRouteStrategy(Forwarder& forwarder, const Name& name) |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 36 | : Strategy(forwarder) |
Junxiao Shi | 9954007 | 2017-01-27 19:57:33 +0000 | [diff] [blame] | 37 | , ProcessNackTraits(this) |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 38 | { |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 39 | ParsedInstanceName parsed = parseInstanceName(name); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 40 | if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 41 | NDN_THROW(std::invalid_argument( |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 42 | "BestRouteStrategy does not support version " + to_string(*parsed.version))); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 43 | } |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 44 | |
| 45 | StrategyParameters params = parseParameters(parsed.parameters); |
| 46 | m_retxSuppression = RetxSuppressionExponential::construct(params); |
| 47 | |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 48 | this->setInstanceName(makeInstanceName(name, getStrategyName())); |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 49 | |
| 50 | NDN_LOG_DEBUG(*m_retxSuppression); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Junxiao Shi | 037f4ab | 2016-12-13 04:27:06 +0000 | [diff] [blame] | 53 | const Name& |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 54 | BestRouteStrategy::getStrategyName() |
Junxiao Shi | 037f4ab | 2016-12-13 04:27:06 +0000 | [diff] [blame] | 55 | { |
Eric Newberry | 358414d | 2021-03-21 20:56:42 -0700 | [diff] [blame] | 56 | static const auto strategyName = Name("/localhost/nfd/strategy/best-route").appendVersion(5); |
Junxiao Shi | 037f4ab | 2016-12-13 04:27:06 +0000 | [diff] [blame] | 57 | return strategyName; |
| 58 | } |
| 59 | |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 60 | void |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 61 | BestRouteStrategy::afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress, |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 62 | const shared_ptr<pit::Entry>& pitEntry) |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 63 | { |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 64 | auto suppression = m_retxSuppression->decidePerPitEntry(*pitEntry); |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 65 | if (suppression == RetxSuppressionResult::SUPPRESS) { |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 66 | NFD_LOG_INTEREST_FROM(interest, ingress, "suppressed"); |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 67 | return; |
| 68 | } |
| 69 | |
| 70 | const fib::Entry& fibEntry = this->lookupFib(*pitEntry); |
| 71 | const fib::NextHopList& nexthops = fibEntry.getNextHops(); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 72 | auto it = nexthops.end(); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 73 | |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 74 | if (suppression == RetxSuppressionResult::NEW) { |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 75 | // forward to nexthop with lowest cost except downstream |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 76 | it = std::find_if(nexthops.begin(), nexthops.end(), [&] (const auto& nexthop) { |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 77 | return isNextHopEligible(ingress.face, interest, nexthop, pitEntry); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 78 | }); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 79 | |
| 80 | if (it == nexthops.end()) { |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 81 | NFD_LOG_INTEREST_FROM(interest, ingress, "new no-nexthop"); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 82 | lp::NackHeader nackHeader; |
| 83 | nackHeader.setReason(lp::NackReason::NO_ROUTE); |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 84 | this->sendNack(nackHeader, ingress.face, pitEntry); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 85 | this->rejectPendingInterest(pitEntry); |
| 86 | return; |
| 87 | } |
| 88 | |
Teng Liang | ebc20f6 | 2020-06-23 16:55:20 -0700 | [diff] [blame] | 89 | Face& outFace = it->getFace(); |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 90 | NFD_LOG_INTEREST_FROM(interest, ingress, "new to=" << outFace.getId()); |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 91 | this->sendInterest(interest, outFace, pitEntry); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 92 | return; |
| 93 | } |
| 94 | |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 95 | // find an unused upstream with lowest cost except downstream |
Teng Liang | ebc20f6 | 2020-06-23 16:55:20 -0700 | [diff] [blame] | 96 | it = std::find_if(nexthops.begin(), nexthops.end(), |
| 97 | [&, now = time::steady_clock::now()] (const auto& nexthop) { |
| 98 | return isNextHopEligible(ingress.face, interest, nexthop, pitEntry, true, now); |
| 99 | }); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 100 | |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 101 | if (it != nexthops.end()) { |
Teng Liang | ebc20f6 | 2020-06-23 16:55:20 -0700 | [diff] [blame] | 102 | Face& outFace = it->getFace(); |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 103 | this->sendInterest(interest, outFace, pitEntry); |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 104 | NFD_LOG_INTEREST_FROM(interest, ingress, "retx unused-to=" << outFace.getId()); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 105 | return; |
| 106 | } |
| 107 | |
| 108 | // find an eligible upstream that is used earliest |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 109 | it = findEligibleNextHopWithEarliestOutRecord(ingress.face, interest, nexthops, pitEntry); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 110 | if (it == nexthops.end()) { |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 111 | NFD_LOG_INTEREST_FROM(interest, ingress, "retx no-nexthop"); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 112 | } |
| 113 | else { |
Teng Liang | ebc20f6 | 2020-06-23 16:55:20 -0700 | [diff] [blame] | 114 | Face& outFace = it->getFace(); |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 115 | this->sendInterest(interest, outFace, pitEntry); |
Alex Lane | 653eb07 | 2023-07-27 22:11:46 -0400 | [diff] [blame^] | 116 | NFD_LOG_INTEREST_FROM(interest, ingress, "retx retry-to=" << outFace.getId()); |
Junxiao Shi | 986b849 | 2014-08-20 12:07:14 -0700 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 120 | void |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 121 | BestRouteStrategy::afterReceiveNack(const lp::Nack& nack, const FaceEndpoint& ingress, |
Davide Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 122 | const shared_ptr<pit::Entry>& pitEntry) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 123 | { |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 124 | this->processNack(nack, ingress.face, pitEntry); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 127 | } // namespace nfd::fw |