blob: 131b4f1e0d8bb682e090da3eb5f925cfa8cc4adf [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shifc2e13d2017-07-25 02:08:48 +00002/*
Alex Lane6bf94c02023-05-22 21:45:45 -05003 * Copyright (c) 2014-2023, Regents of the University of California,
Junxiao Shifaf3eb02015-02-16 10:50:36 -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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shiaf6569a2014-06-14 00:01:34 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
26#include "forwarder.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040027
Junxiao Shi00dc9142016-11-21 14:23:12 +000028#include "algorithm.hpp"
Davide Pesavento7922d122021-03-05 22:41:23 -050029#include "best-route-strategy.hpp"
Davide Pesavento58091582021-03-05 19:02:48 -050030#include "scope-prefix.hpp"
Junxiao Shifaf3eb02015-02-16 10:50:36 -070031#include "strategy.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040032#include "common/global.hpp"
33#include "common/logger.hpp"
Junxiao Shi02b73f52016-07-28 01:48:27 +000034#include "table/cleanup.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040035
Junxiao Shic29eb7f2020-04-14 18:20:32 +000036#include <ndn-cxx/lp/pit-token.hpp>
Junxiao Shicbc8e942016-09-06 03:17:45 +000037#include <ndn-cxx/lp/tags.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080038
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080039namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080040
Davide Pesaventoa3148082018-04-12 18:21:54 -040041NFD_LOG_INIT(Forwarder);
Junxiao Shi8c8d2182014-01-30 22:33:00 -070042
Davide Pesavento412c9822021-07-02 00:21:05 -040043const std::string CFG_FORWARDER = "forwarder";
Philipp Molla1033342021-06-14 09:34:21 +020044
Junxiao Shic34d1672016-12-09 15:57:59 +000045static Name
46getDefaultStrategyName()
47{
Davide Pesavento7922d122021-03-05 22:41:23 -050048 return fw::BestRouteStrategy::getStrategyName();
Junxiao Shic34d1672016-12-09 15:57:59 +000049}
50
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040051Forwarder::Forwarder(FaceTable& faceTable)
52 : m_faceTable(faceTable)
53 , m_unsolicitedDataPolicy(make_unique<fw::DefaultUnsolicitedDataPolicy>())
Junxiao Shifbe8efe2016-08-22 16:02:30 +000054 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060055 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080056 , m_measurements(m_nameTree)
Junxiao Shic34d1672016-12-09 15:57:59 +000057 , m_strategyChoice(*this)
Alexander Afanasyev33b72772014-01-26 23:22:58 -080058{
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040059 m_faceTable.afterAdd.connect([this] (const Face& face) {
Junxiao Shidcffdaa2016-07-26 02:23:56 +000060 face.afterReceiveInterest.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000061 [this, &face] (const Interest& interest, const EndpointId& endpointId) {
Davide Pesavento0498ce82021-06-14 02:02:21 -040062 this->onIncomingInterest(interest, FaceEndpoint(const_cast<Face&>(face), endpointId));
Junxiao Shidcffdaa2016-07-26 02:23:56 +000063 });
64 face.afterReceiveData.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000065 [this, &face] (const Data& data, const EndpointId& endpointId) {
Davide Pesavento0498ce82021-06-14 02:02:21 -040066 this->onIncomingData(data, FaceEndpoint(const_cast<Face&>(face), endpointId));
Junxiao Shidcffdaa2016-07-26 02:23:56 +000067 });
68 face.afterReceiveNack.connect(
ashiqopu075bb7d2019-03-10 01:38:21 +000069 [this, &face] (const lp::Nack& nack, const EndpointId& endpointId) {
Davide Pesavento0498ce82021-06-14 02:02:21 -040070 this->onIncomingNack(nack, FaceEndpoint(const_cast<Face&>(face), endpointId));
Junxiao Shidcffdaa2016-07-26 02:23:56 +000071 });
Eric Newberry41aba102017-11-01 16:42:13 -070072 face.onDroppedInterest.connect(
73 [this, &face] (const Interest& interest) {
Davide Pesavento0498ce82021-06-14 02:02:21 -040074 this->onDroppedInterest(interest, const_cast<Face&>(face));
Eric Newberry41aba102017-11-01 16:42:13 -070075 });
Junxiao Shidcffdaa2016-07-26 02:23:56 +000076 });
77
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040078 m_faceTable.beforeRemove.connect([this] (const Face& face) {
Junxiao Shi02b73f52016-07-28 01:48:27 +000079 cleanupOnFaceRemoval(m_nameTree, m_fib, m_pit, face);
Junxiao Shidcffdaa2016-07-26 02:23:56 +000080 });
Junxiao Shic34d1672016-12-09 15:57:59 +000081
Davide Pesaventob21bed82021-02-13 00:20:06 -050082 m_fib.afterNewNextHop.connect([this] (const Name& prefix, const fib::NextHop& nextHop) {
83 this->onNewNextHop(prefix, nextHop);
Ju Pan2feb4592019-09-16 20:56:38 +000084 });
85
Junxiao Shic34d1672016-12-09 15:57:59 +000086 m_strategyChoice.setDefaultStrategy(getDefaultStrategyName());
Alexander Afanasyev33b72772014-01-26 23:22:58 -080087}
88
Junxiao Shi0355e9f2015-09-02 07:24:53 -070089void
Davide Pesavento0498ce82021-06-14 02:02:21 -040090Forwarder::onIncomingInterest(const Interest& interest, const FaceEndpoint& ingress)
Junxiao Shid3c792f2014-01-30 00:46:13 -070091{
ashiqopuc7079482019-02-20 05:34:37 +000092 interest.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -070093 ++m_counters.nInInterests;
Junxiao Shic041ca32014-02-25 20:01:15 -070094
Alex Lane6bf94c02023-05-22 21:45:45 -050095 // ensure the received Interest has a Nonce
96 auto nonce = interest.getNonce();
97 auto hopLimit = interest.getHopLimit();
98
Eric Newberry9d283ad2020-04-12 23:37:17 -070099 // drop if HopLimit zero, decrement otherwise (if present)
Alex Lane6bf94c02023-05-22 21:45:45 -0500100 if (hopLimit) {
101 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress << " interest=" << interest.getName()
102 << " nonce=" << nonce << " hop-limit=" << static_cast<unsigned>(*hopLimit));
103 if (*hopLimit == 0) {
Davide Pesavento0498ce82021-06-14 02:02:21 -0400104 ++ingress.face.getCounters().nInHopLimitZero;
105 // drop
Eric Newberry9d283ad2020-04-12 23:37:17 -0700106 return;
107 }
Alex Lane6bf94c02023-05-22 21:45:45 -0500108 const_cast<Interest&>(interest).setHopLimit(*hopLimit - 1);
109 }
110 else {
111 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress << " interest=" << interest.getName()
112 << " nonce=" << nonce);
Eric Newberry9d283ad2020-04-12 23:37:17 -0700113 }
114
Junxiao Shi88884492014-02-15 15:57:43 -0700115 // /localhost scope control
ashiqopuc7079482019-02-20 05:34:37 +0000116 bool isViolatingLocalhost = ingress.face.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700117 scope_prefix::LOCALHOST.isPrefixOf(interest.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700118 if (isViolatingLocalhost) {
Alex Lane6bf94c02023-05-22 21:45:45 -0500119 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress << " interest=" << interest.getName()
120 << " nonce=" << nonce << " violates /localhost");
Davide Pesavento0498ce82021-06-14 02:02:21 -0400121 // drop
Junxiao Shi88884492014-02-15 15:57:43 -0700122 return;
123 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700124
Junxiao Shi330136a2016-03-10 04:53:08 -0700125 // detect duplicate Nonce with Dead Nonce List
Alex Lane6bf94c02023-05-22 21:45:45 -0500126 bool hasDuplicateNonceInDnl = m_deadNonceList.has(interest.getName(), nonce);
Junxiao Shi330136a2016-03-10 04:53:08 -0700127 if (hasDuplicateNonceInDnl) {
128 // goto Interest loop pipeline
Davide Pesavento0498ce82021-06-14 02:02:21 -0400129 this->onInterestLoop(interest, ingress);
Junxiao Shi330136a2016-03-10 04:53:08 -0700130 return;
131 }
132
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000133 // strip forwarding hint if Interest has reached producer region
134 if (!interest.getForwardingHint().empty() &&
135 m_networkRegionTable.isInProducerRegion(interest.getForwardingHint())) {
Alex Lane6bf94c02023-05-22 21:45:45 -0500136 NFD_LOG_DEBUG("onIncomingInterest in=" << ingress << " interest=" << interest.getName()
137 << " nonce=" << nonce << " reaching-producer-region");
Junxiao Shifc2e13d2017-07-25 02:08:48 +0000138 const_cast<Interest&>(interest).setForwardingHint({});
Junxiao Shif9858fd2017-02-01 16:22:44 +0000139 }
140
Junxiao Shid3c792f2014-01-30 00:46:13 -0700141 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -0700142 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -0700143
Junxiao Shi330136a2016-03-10 04:53:08 -0700144 // detect duplicate Nonce in PIT entry
Alex Lane6bf94c02023-05-22 21:45:45 -0500145 int dnw = fw::findDuplicateNonce(*pitEntry, nonce, ingress.face);
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000146 bool hasDuplicateNonceInPit = dnw != fw::DUPLICATE_NONCE_NONE;
ashiqopuc7079482019-02-20 05:34:37 +0000147 if (ingress.face.getLinkType() == ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Junxiao Shi2fe3af02017-03-04 17:24:19 +0000148 // for p2p face: duplicate Nonce from same incoming face is not loop
149 hasDuplicateNonceInPit = hasDuplicateNonceInPit && !(dnw & fw::DUPLICATE_NONCE_IN_SAME);
150 }
Junxiao Shi330136a2016-03-10 04:53:08 -0700151 if (hasDuplicateNonceInPit) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700152 // goto Interest loop pipeline
Davide Pesavento0498ce82021-06-14 02:02:21 -0400153 this->onInterestLoop(interest, ingress);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700154 return;
155 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700156
Junxiao Shif3c07812014-03-11 21:48:49 -0700157 // is pending?
Junxiao Shi4846f372016-04-05 13:39:30 -0700158 if (!pitEntry->hasInRecords()) {
mzhang4eab72492015-02-25 11:16:09 -0600159 m_cs.find(interest,
Davide Pesavento0498ce82021-06-14 02:02:21 -0400160 [=] (const Interest& i, const Data& d) { onContentStoreHit(i, ingress, pitEntry, d); },
161 [=] (const Interest& i) { onContentStoreMiss(i, ingress, pitEntry); });
Junxiao Shid3c792f2014-01-30 00:46:13 -0700162 }
mzhang4eab72492015-02-25 11:16:09 -0600163 else {
Davide Pesavento0498ce82021-06-14 02:02:21 -0400164 this->onContentStoreMiss(interest, ingress, pitEntry);
mzhang4eab72492015-02-25 11:16:09 -0600165 }
166}
Junxiao Shic041ca32014-02-25 20:01:15 -0700167
mzhang4eab72492015-02-25 11:16:09 -0600168void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400169Forwarder::onInterestLoop(const Interest& interest, const FaceEndpoint& ingress)
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700170{
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700171 // if multi-access or ad hoc face, drop
ashiqopuc7079482019-02-20 05:34:37 +0000172 if (ingress.face.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Alex Lane6bf94c02023-05-22 21:45:45 -0500173 NFD_LOG_DEBUG("onInterestLoop in=" << ingress << " interest=" << interest.getName()
174 << " nonce=" << interest.getNonce() << " drop");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700175 return;
176 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700177
ashiqopuc7079482019-02-20 05:34:37 +0000178 NFD_LOG_DEBUG("onInterestLoop in=" << ingress << " interest=" << interest.getName()
Alex Lane6bf94c02023-05-22 21:45:45 -0500179 << " nonce=" << interest.getNonce() << " nack");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700180
181 // send Nack with reason=DUPLICATE
182 // note: Don't enter outgoing Nack pipeline because it needs an in-record.
183 lp::Nack nack(interest);
184 nack.setReason(lp::NackReason::DUPLICATE);
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700185 ingress.face.sendNack(nack);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700186}
187
188void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400189Forwarder::onContentStoreMiss(const Interest& interest, const FaceEndpoint& ingress,
190 const shared_ptr<pit::Entry>& pitEntry)
mzhang4eab72492015-02-25 11:16:09 -0600191{
Alex Lane6bf94c02023-05-22 21:45:45 -0500192 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName() << " nonce=" << interest.getNonce());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000193 ++m_counters.nCsMisses;
mzhang4eab72492015-02-25 11:16:09 -0600194
Philipp Molla1033342021-06-14 09:34:21 +0200195 // attach HopLimit if configured and not present in Interest
196 if (m_config.defaultHopLimit > 0 && !interest.getHopLimit()) {
197 const_cast<Interest&>(interest).setHopLimit(m_config.defaultHopLimit);
198 }
199
Md Ashiqur Rahman115ea632019-07-06 02:34:31 +0000200 // insert in-record
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000201 pitEntry->insertOrUpdateInRecord(ingress.face, interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700202
Teng Liang7003e0b2018-03-03 16:03:30 -0700203 // set PIT expiry timer to the time that the last PIT in-record expires
Davide Pesaventob31206e2019-04-20 22:34:12 -0400204 auto lastExpiring = std::max_element(pitEntry->in_begin(), pitEntry->in_end(),
205 [] (const auto& a, const auto& b) {
206 return a.getExpiry() < b.getExpiry();
207 });
Teng Liang7003e0b2018-03-03 16:03:30 -0700208 auto lastExpiryFromNow = lastExpiring->getExpiry() - time::steady_clock::now();
209 this->setExpiryTimer(pitEntry, time::duration_cast<time::milliseconds>(lastExpiryFromNow));
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700210
Junxiao Shie342e8d2016-09-18 16:48:00 +0000211 // has NextHopFaceId?
Davide Pesaventob31206e2019-04-20 22:34:12 -0400212 auto nextHopTag = interest.getTag<lp::NextHopFaceIdTag>();
Junxiao Shie342e8d2016-09-18 16:48:00 +0000213 if (nextHopTag != nullptr) {
214 // chosen NextHop face exists?
215 Face* nextHopFace = m_faceTable.get(*nextHopTag);
216 if (nextHopFace != nullptr) {
Davide Pesaventob31206e2019-04-20 22:34:12 -0400217 NFD_LOG_DEBUG("onContentStoreMiss interest=" << interest.getName()
Alex Lane6bf94c02023-05-22 21:45:45 -0500218 << " nonce=" << interest.getNonce() << " nexthop-faceid=" << nextHopFace->getId());
Junxiao Shie342e8d2016-09-18 16:48:00 +0000219 // go to outgoing Interest pipeline
Junxiao Shic5f651f2016-11-17 22:58:12 +0000220 // scope control is unnecessary, because privileged app explicitly wants to forward
Davide Pesavento0498ce82021-06-14 02:02:21 -0400221 this->onOutgoingInterest(interest, *nextHopFace, pitEntry);
Junxiao Shie342e8d2016-09-18 16:48:00 +0000222 }
223 return;
224 }
225
Davide Pesavento05590472021-02-17 15:53:27 -0500226 // dispatch to strategy: after receive Interest
227 m_strategyChoice.findEffectiveStrategy(*pitEntry)
Teng Liangd94b7b32022-07-10 21:29:37 +0800228 .afterReceiveInterest(interest, FaceEndpoint(ingress.face), pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700229}
230
231void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400232Forwarder::onContentStoreHit(const Interest& interest, const FaceEndpoint& ingress,
233 const shared_ptr<pit::Entry>& pitEntry, const Data& data)
mzhang4eab72492015-02-25 11:16:09 -0600234{
Alex Lane6bf94c02023-05-22 21:45:45 -0500235 NFD_LOG_DEBUG("onContentStoreHit interest=" << interest.getName() << " nonce=" << interest.getNonce());
Junxiao Shi06a1eab2017-09-04 13:13:02 +0000236 ++m_counters.nCsHits;
mzhang4eab72492015-02-25 11:16:09 -0600237
Junxiao Shicde37ad2015-12-24 01:02:05 -0700238 data.setTag(make_shared<lp::IncomingFaceIdTag>(face::FACEID_CONTENT_STORE));
Junxiao Shic29eb7f2020-04-14 18:20:32 +0000239 data.setTag(interest.getTag<lp::PitToken>());
Davide Pesaventob31206e2019-04-20 22:34:12 -0400240 // FIXME Should we lookup PIT for other Interests that also match the data?
mzhang4eab72492015-02-25 11:16:09 -0600241
Teng Liang6f09ab62018-03-01 20:04:08 -0700242 pitEntry->isSatisfied = true;
243 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
244
Teng Liang85a36632018-03-21 05:59:34 -0700245 // set PIT expiry timer to now
246 this->setExpiryTimer(pitEntry, 0_ms);
mzhang4eab72492015-02-25 11:16:09 -0600247
Teng Liang85a36632018-03-21 05:59:34 -0700248 // dispatch to strategy: after Content Store hit
Davide Pesavento0498ce82021-06-14 02:02:21 -0400249 m_strategyChoice.findEffectiveStrategy(*pitEntry).afterContentStoreHit(data, ingress, pitEntry);
mzhang4eab72492015-02-25 11:16:09 -0600250}
251
Eric Newberry2377ada2020-09-28 22:40:14 -0700252pit::OutRecord*
Davide Pesavento0498ce82021-06-14 02:02:21 -0400253Forwarder::onOutgoingInterest(const Interest& interest, Face& egress,
254 const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700255{
Eric Newberry9d283ad2020-04-12 23:37:17 -0700256 // drop if HopLimit == 0 but sending on non-local face
Teng Liangebc20f62020-06-23 16:55:20 -0700257 if (interest.getHopLimit() == 0 && egress.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL) {
Alex Lane6bf94c02023-05-22 21:45:45 -0500258 NFD_LOG_DEBUG("onOutgoingInterest out=" << egress.getId() << " interest=" << interest.getName()
259 << " nonce=" << interest.getNonce() << " non-local hop-limit=0");
Davide Pesavento0498ce82021-06-14 02:02:21 -0400260 ++egress.getCounters().nOutHopLimitZero;
Eric Newberry2377ada2020-09-28 22:40:14 -0700261 return nullptr;
Eric Newberry9d283ad2020-04-12 23:37:17 -0700262 }
263
Alex Lane6bf94c02023-05-22 21:45:45 -0500264 NFD_LOG_DEBUG("onOutgoingInterest out=" << egress.getId() << " interest=" << interest.getName()
265 << " nonce=" << interest.getNonce());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700266
Junxiao Shi4846f372016-04-05 13:39:30 -0700267 // insert out-record
Eric Newberry2377ada2020-09-28 22:40:14 -0700268 auto it = pitEntry->insertOrUpdateOutRecord(egress, interest);
269 BOOST_ASSERT(it != pitEntry->out_end());
Junxiao Shic041ca32014-02-25 20:01:15 -0700270
Junxiao Shid3c792f2014-01-30 00:46:13 -0700271 // send Interest
Teng Liangebc20f62020-06-23 16:55:20 -0700272 egress.sendInterest(interest);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700273 ++m_counters.nOutInterests;
Eric Newberry2377ada2020-09-28 22:40:14 -0700274 return &*it;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700275}
276
277void
Teng Liang6f09ab62018-03-01 20:04:08 -0700278Forwarder::onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shia110f262014-10-12 12:35:20 -0700279{
ashiqopuc7079482019-02-20 05:34:37 +0000280 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName()
281 << (pitEntry->isSatisfied ? " satisfied" : " unsatisfied"));
Junxiao Shia110f262014-10-12 12:35:20 -0700282
283 // Dead Nonce List insert if necessary
Davide Pesavento3dade002019-03-19 11:29:56 -0600284 this->insertDeadNonceList(*pitEntry, nullptr);
Junxiao Shia110f262014-10-12 12:35:20 -0700285
Ju Pan6eb1ac92018-10-26 16:26:15 +0000286 // Increment satisfied/unsatisfied Interests counter
287 if (pitEntry->isSatisfied) {
288 ++m_counters.nSatisfiedInterests;
289 }
290 else {
291 ++m_counters.nUnsatisfiedInterests;
292 }
293
Junxiao Shif3c07812014-03-11 21:48:49 -0700294 // PIT delete
Davide Pesavento3dade002019-03-19 11:29:56 -0600295 pitEntry->expiryTimer.cancel();
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000296 m_pit.erase(pitEntry.get());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700297}
298
299void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400300Forwarder::onIncomingData(const Data& data, const FaceEndpoint& ingress)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700301{
ashiqopuc7079482019-02-20 05:34:37 +0000302 data.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700303 ++m_counters.nInData;
Alex Lane6bf94c02023-05-22 21:45:45 -0500304 NFD_LOG_DEBUG("onIncomingData in=" << ingress << " data=" << data.getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700305
Junxiao Shi88884492014-02-15 15:57:43 -0700306 // /localhost scope control
ashiqopuc7079482019-02-20 05:34:37 +0000307 bool isViolatingLocalhost = ingress.face.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700308 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700309 if (isViolatingLocalhost) {
ashiqopuc7079482019-02-20 05:34:37 +0000310 NFD_LOG_DEBUG("onIncomingData in=" << ingress << " data=" << data.getName() << " violates /localhost");
Davide Pesavento0498ce82021-06-14 02:02:21 -0400311 // drop
Junxiao Shi88884492014-02-15 15:57:43 -0700312 return;
313 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700314
Junxiao Shid3c792f2014-01-30 00:46:13 -0700315 // PIT match
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700316 pit::DataMatchResult pitMatches = m_pit.findAllDataMatches(data);
Teng Liang43bb2312018-03-26 04:16:42 -0700317 if (pitMatches.size() == 0) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700318 // goto Data unsolicited pipeline
Davide Pesavento0498ce82021-06-14 02:02:21 -0400319 this->onDataUnsolicited(data, ingress);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700320 return;
321 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700322
Junxiao Shid3c792f2014-01-30 00:46:13 -0700323 // CS insert
324 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700325
Teng Liang43bb2312018-03-26 04:16:42 -0700326 // when only one PIT entry is matched, trigger strategy: after receive Data
327 if (pitMatches.size() == 1) {
328 auto& pitEntry = pitMatches.front();
Junxiao Shic041ca32014-02-25 20:01:15 -0700329
Teng Liang43bb2312018-03-26 04:16:42 -0700330 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700331
Teng Liang7003e0b2018-03-03 16:03:30 -0700332 // set PIT expiry timer to now
333 this->setExpiryTimer(pitEntry, 0_ms);
334
Teng Liang43bb2312018-03-26 04:16:42 -0700335 // trigger strategy: after receive Data
Davide Pesavento0498ce82021-06-14 02:02:21 -0400336 m_strategyChoice.findEffectiveStrategy(*pitEntry).afterReceiveData(data, ingress, pitEntry);
Junxiao Shid938a6b2014-05-11 23:40:29 -0700337
Teng Liang43bb2312018-03-26 04:16:42 -0700338 // mark PIT satisfied
Teng Liang6f09ab62018-03-01 20:04:08 -0700339 pitEntry->isSatisfied = true;
340 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
341
Teng Liangebc20f62020-06-23 16:55:20 -0700342 // Dead Nonce List insert if necessary (for out-record of ingress face)
ashiqopuc7079482019-02-20 05:34:37 +0000343 this->insertDeadNonceList(*pitEntry, &ingress.face);
Junxiao Shia110f262014-10-12 12:35:20 -0700344
Teng Liang43bb2312018-03-26 04:16:42 -0700345 // delete PIT entry's out-record
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000346 pitEntry->deleteOutRecord(ingress.face);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700347 }
Teng Liang43bb2312018-03-26 04:16:42 -0700348 // when more than one PIT entry is matched, trigger strategy: before satisfy Interest,
349 // and send Data to all matched out faces
350 else {
Teng Liangebc20f62020-06-23 16:55:20 -0700351 std::set<Face*> pendingDownstreams;
Teng Liang43bb2312018-03-26 04:16:42 -0700352 auto now = time::steady_clock::now();
Junxiao Shic041ca32014-02-25 20:01:15 -0700353
Davide Pesaventob31206e2019-04-20 22:34:12 -0400354 for (const auto& pitEntry : pitMatches) {
Teng Liang43bb2312018-03-26 04:16:42 -0700355 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
356
357 // remember pending downstreams
358 for (const pit::InRecord& inRecord : pitEntry->getInRecords()) {
359 if (inRecord.getExpiry() > now) {
Teng Liangebc20f62020-06-23 16:55:20 -0700360 pendingDownstreams.insert(&inRecord.getFace());
Teng Liang43bb2312018-03-26 04:16:42 -0700361 }
362 }
363
364 // set PIT expiry timer to now
365 this->setExpiryTimer(pitEntry, 0_ms);
366
367 // invoke PIT satisfy callback
Davide Pesavento0498ce82021-06-14 02:02:21 -0400368 m_strategyChoice.findEffectiveStrategy(*pitEntry).beforeSatisfyInterest(data, ingress, pitEntry);
Teng Liang43bb2312018-03-26 04:16:42 -0700369
370 // mark PIT satisfied
371 pitEntry->isSatisfied = true;
372 pitEntry->dataFreshnessPeriod = data.getFreshnessPeriod();
373
Teng Liangebc20f62020-06-23 16:55:20 -0700374 // Dead Nonce List insert if necessary (for out-record of ingress face)
ashiqopuc7079482019-02-20 05:34:37 +0000375 this->insertDeadNonceList(*pitEntry, &ingress.face);
Teng Liang43bb2312018-03-26 04:16:42 -0700376
377 // clear PIT entry's in and out records
378 pitEntry->clearInRecords();
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000379 pitEntry->deleteOutRecord(ingress.face);
Junxiao Shida006f52014-05-16 11:18:00 -0700380 }
Teng Liang43bb2312018-03-26 04:16:42 -0700381
382 // foreach pending downstream
ashiqopuc7079482019-02-20 05:34:37 +0000383 for (const auto& pendingDownstream : pendingDownstreams) {
Teng Liangebc20f62020-06-23 16:55:20 -0700384 if (pendingDownstream->getId() == ingress.face.getId() &&
385 pendingDownstream->getLinkType() != ndn::nfd::LINK_TYPE_AD_HOC) {
Teng Liang43bb2312018-03-26 04:16:42 -0700386 continue;
387 }
388 // goto outgoing Data pipeline
Teng Liangebc20f62020-06-23 16:55:20 -0700389 this->onOutgoingData(data, *pendingDownstream);
Teng Liang43bb2312018-03-26 04:16:42 -0700390 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700391 }
392}
393
394void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400395Forwarder::onDataUnsolicited(const Data& data, const FaceEndpoint& ingress)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700396{
Alex Lane6bf94c02023-05-22 21:45:45 -0500397 ++m_counters.nUnsolicitedData;
398
Junxiao Shid3c792f2014-01-30 00:46:13 -0700399 // accept to cache?
Alex Lane6bead9b2020-05-12 19:08:20 -0500400 auto decision = m_unsolicitedDataPolicy->decide(ingress.face, data);
Alex Lane6bf94c02023-05-22 21:45:45 -0500401 NFD_LOG_DEBUG("onDataUnsolicited in=" << ingress << " data=" << data.getName()
402 << " decision=" << decision);
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000403 if (decision == fw::UnsolicitedDataDecision::CACHE) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700404 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700405 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700406 }
407}
408
Eric Newberry2377ada2020-09-28 22:40:14 -0700409bool
Teng Liangebc20f62020-06-23 16:55:20 -0700410Forwarder::onOutgoingData(const Data& data, Face& egress)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700411{
Teng Liangebc20f62020-06-23 16:55:20 -0700412 if (egress.getId() == face::INVALID_FACEID) {
ashiqopuc7079482019-02-20 05:34:37 +0000413 NFD_LOG_WARN("onOutgoingData out=(invalid) data=" << data.getName());
Eric Newberry2377ada2020-09-28 22:40:14 -0700414 return false;
Junxiao Shi223271b2014-07-03 22:06:13 -0700415 }
Teng Liangebc20f62020-06-23 16:55:20 -0700416 NFD_LOG_DEBUG("onOutgoingData out=" << egress.getId() << " data=" << data.getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700417
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700418 // /localhost scope control
Teng Liangebc20f62020-06-23 16:55:20 -0700419 bool isViolatingLocalhost = egress.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL &&
Junxiao Shif3410d82016-04-05 13:49:44 -0700420 scope_prefix::LOCALHOST.isPrefixOf(data.getName());
Junxiao Shif3c07812014-03-11 21:48:49 -0700421 if (isViolatingLocalhost) {
Teng Liangebc20f62020-06-23 16:55:20 -0700422 NFD_LOG_DEBUG("onOutgoingData out=" << egress.getId() << " data=" << data.getName()
423 << " violates /localhost");
Davide Pesavento0498ce82021-06-14 02:02:21 -0400424 // drop
Eric Newberry2377ada2020-09-28 22:40:14 -0700425 return false;
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700426 }
427
Junxiao Shif3c07812014-03-11 21:48:49 -0700428 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700429
Junxiao Shid3c792f2014-01-30 00:46:13 -0700430 // send Data
Teng Liangebc20f62020-06-23 16:55:20 -0700431 egress.sendData(data);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700432 ++m_counters.nOutData;
Eric Newberry2377ada2020-09-28 22:40:14 -0700433
434 return true;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700435}
436
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700437void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400438Forwarder::onIncomingNack(const lp::Nack& nack, const FaceEndpoint& ingress)
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700439{
ashiqopuc7079482019-02-20 05:34:37 +0000440 nack.setTag(make_shared<lp::IncomingFaceIdTag>(ingress.face.getId()));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700441 ++m_counters.nInNacks;
442
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700443 // if multi-access or ad hoc face, drop
ashiqopuc7079482019-02-20 05:34:37 +0000444 if (ingress.face.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
Alex Lane6bf94c02023-05-22 21:45:45 -0500445 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
446 << "~" << nack.getReason() << " link-type=" << ingress.face.getLinkType());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700447 return;
448 }
449
450 // PIT match
451 shared_ptr<pit::Entry> pitEntry = m_pit.find(nack.getInterest());
452 // if no PIT entry found, drop
453 if (pitEntry == nullptr) {
ashiqopuc7079482019-02-20 05:34:37 +0000454 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
Alex Lane6bf94c02023-05-22 21:45:45 -0500455 << "~" << nack.getReason() << " no-pit-entry");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700456 return;
457 }
458
459 // has out-record?
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000460 auto outRecord = pitEntry->getOutRecord(ingress.face);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700461 // if no out-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700462 if (outRecord == pitEntry->out_end()) {
ashiqopuc7079482019-02-20 05:34:37 +0000463 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
464 << "~" << nack.getReason() << " no-out-record");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700465 return;
466 }
467
468 // if out-record has different Nonce, drop
469 if (nack.getInterest().getNonce() != outRecord->getLastNonce()) {
ashiqopuc7079482019-02-20 05:34:37 +0000470 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
Alex Lane6bf94c02023-05-22 21:45:45 -0500471 << "~" << nack.getReason() << " nonce-mismatch " << nack.getInterest().getNonce()
ashiqopuc7079482019-02-20 05:34:37 +0000472 << "!=" << outRecord->getLastNonce());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700473 return;
474 }
475
ashiqopuc7079482019-02-20 05:34:37 +0000476 NFD_LOG_DEBUG("onIncomingNack in=" << ingress << " nack=" << nack.getInterest().getName()
Alex Lane6bf94c02023-05-22 21:45:45 -0500477 << "~" << nack.getReason());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700478
479 // record Nack on out-record
480 outRecord->setIncomingNack(nack);
481
Teng Liang7003e0b2018-03-03 16:03:30 -0700482 // set PIT expiry timer to now when all out-record receive Nack
483 if (!fw::hasPendingOutRecords(*pitEntry)) {
484 this->setExpiryTimer(pitEntry, 0_ms);
485 }
486
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700487 // trigger strategy: after receive NACK
Davide Pesavento0498ce82021-06-14 02:02:21 -0400488 m_strategyChoice.findEffectiveStrategy(*pitEntry).afterReceiveNack(nack, ingress, pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700489}
490
Eric Newberry2377ada2020-09-28 22:40:14 -0700491bool
Davide Pesavento0498ce82021-06-14 02:02:21 -0400492Forwarder::onOutgoingNack(const lp::NackHeader& nack, Face& egress,
493 const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700494{
Teng Liangebc20f62020-06-23 16:55:20 -0700495 if (egress.getId() == face::INVALID_FACEID) {
ashiqopuc7079482019-02-20 05:34:37 +0000496 NFD_LOG_WARN("onOutgoingNack out=(invalid)"
Davide Pesaventob31206e2019-04-20 22:34:12 -0400497 << " nack=" << pitEntry->getInterest().getName() << "~" << nack.getReason());
Eric Newberry2377ada2020-09-28 22:40:14 -0700498 return false;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700499 }
500
501 // has in-record?
Teng Liangebc20f62020-06-23 16:55:20 -0700502 auto inRecord = pitEntry->getInRecord(egress);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700503
504 // if no in-record found, drop
Junxiao Shi4846f372016-04-05 13:39:30 -0700505 if (inRecord == pitEntry->in_end()) {
Teng Liangebc20f62020-06-23 16:55:20 -0700506 NFD_LOG_DEBUG("onOutgoingNack out=" << egress.getId()
ashiqopuc7079482019-02-20 05:34:37 +0000507 << " nack=" << pitEntry->getInterest().getName()
508 << "~" << nack.getReason() << " no-in-record");
Eric Newberry2377ada2020-09-28 22:40:14 -0700509 return false;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700510 }
511
Teng Liang4f5cdcf2017-03-16 15:33:31 -0700512 // if multi-access or ad hoc face, drop
Teng Liangebc20f62020-06-23 16:55:20 -0700513 if (egress.getLinkType() != ndn::nfd::LINK_TYPE_POINT_TO_POINT) {
514 NFD_LOG_DEBUG("onOutgoingNack out=" << egress.getId()
Davide Pesaventob31206e2019-04-20 22:34:12 -0400515 << " nack=" << pitEntry->getInterest().getName() << "~" << nack.getReason()
Teng Liangebc20f62020-06-23 16:55:20 -0700516 << " link-type=" << egress.getLinkType());
Eric Newberry2377ada2020-09-28 22:40:14 -0700517 return false;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700518 }
519
Teng Liangebc20f62020-06-23 16:55:20 -0700520 NFD_LOG_DEBUG("onOutgoingNack out=" << egress.getId()
ashiqopuc7079482019-02-20 05:34:37 +0000521 << " nack=" << pitEntry->getInterest().getName()
522 << "~" << nack.getReason() << " OK");
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700523
524 // create Nack packet with the Interest from in-record
525 lp::Nack nackPkt(inRecord->getInterest());
526 nackPkt.setHeader(nack);
527
528 // erase in-record
Teng Liangebc20f62020-06-23 16:55:20 -0700529 pitEntry->deleteInRecord(egress);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700530
531 // send Nack on face
Teng Liangebc20f62020-06-23 16:55:20 -0700532 egress.sendNack(nackPkt);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700533 ++m_counters.nOutNacks;
Eric Newberry2377ada2020-09-28 22:40:14 -0700534
535 return true;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700536}
537
Eric Newberry41aba102017-11-01 16:42:13 -0700538void
Davide Pesavento0498ce82021-06-14 02:02:21 -0400539Forwarder::onDroppedInterest(const Interest& interest, Face& egress)
Eric Newberry41aba102017-11-01 16:42:13 -0700540{
Davide Pesavento0498ce82021-06-14 02:02:21 -0400541 m_strategyChoice.findEffectiveStrategy(interest.getName()).onDroppedInterest(interest, egress);
Eric Newberry41aba102017-11-01 16:42:13 -0700542}
543
Junxiao Shid3c792f2014-01-30 00:46:13 -0700544void
Ju Pan2feb4592019-09-16 20:56:38 +0000545Forwarder::onNewNextHop(const Name& prefix, const fib::NextHop& nextHop)
546{
547 const auto affectedEntries = this->getNameTree().partialEnumerate(prefix,
548 [&] (const name_tree::Entry& nte) -> std::pair<bool, bool> {
Davide Pesaventob21bed82021-02-13 00:20:06 -0500549 // we ignore an NTE and skip visiting its descendants if that NTE has an
550 // associated FIB entry (1st condition), since in that case the new nexthop
551 // won't affect any PIT entries anywhere in that subtree, *unless* this is
552 // the initial NTE from which the enumeration started (2nd condition), which
553 // must always be considered
554 if (nte.getFibEntry() != nullptr && nte.getName().size() > prefix.size()) {
Ju Pan2feb4592019-09-16 20:56:38 +0000555 return {false, false};
556 }
Davide Pesaventob21bed82021-02-13 00:20:06 -0500557 return {nte.hasPitEntries(), true};
Ju Pan2feb4592019-09-16 20:56:38 +0000558 });
559
560 for (const auto& nte : affectedEntries) {
561 for (const auto& pitEntry : nte.getPitEntries()) {
Davide Pesavento05590472021-02-17 15:53:27 -0500562 m_strategyChoice.findEffectiveStrategy(*pitEntry).afterNewNextHop(nextHop, pitEntry);
Ju Pan2feb4592019-09-16 20:56:38 +0000563 }
564 }
565}
566
567void
Teng Liang7003e0b2018-03-03 16:03:30 -0700568Forwarder::setExpiryTimer(const shared_ptr<pit::Entry>& pitEntry, time::milliseconds duration)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700569{
Teng Liang39465c22018-11-12 19:43:04 -0700570 BOOST_ASSERT(pitEntry);
Junxiao Shie1cf4ba2020-06-19 16:40:53 -0600571 duration = std::max(duration, 0_ms);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700572
Davide Pesavento3dade002019-03-19 11:29:56 -0600573 pitEntry->expiryTimer.cancel();
574 pitEntry->expiryTimer = getScheduler().schedule(duration, [=] { onInterestFinalize(pitEntry); });
Junxiao Shia110f262014-10-12 12:35:20 -0700575}
576
577void
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400578Forwarder::insertDeadNonceList(pit::Entry& pitEntry, const Face* upstream)
Junxiao Shia110f262014-10-12 12:35:20 -0700579{
580 // need Dead Nonce List insert?
Eric Newberryf4056d02017-05-26 17:31:53 +0000581 bool needDnl = true;
Teng Liang6f09ab62018-03-01 20:04:08 -0700582 if (pitEntry.isSatisfied) {
583 BOOST_ASSERT(pitEntry.dataFreshnessPeriod >= 0_ms);
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400584 needDnl = pitEntry.getInterest().getMustBeFresh() &&
Teng Liang6f09ab62018-03-01 20:04:08 -0700585 pitEntry.dataFreshnessPeriod < m_deadNonceList.getLifetime();
Junxiao Shia110f262014-10-12 12:35:20 -0700586 }
587
588 if (!needDnl) {
589 return;
590 }
591
592 // Dead Nonce List insert
Teng Liangf995f382017-04-04 22:09:39 +0000593 if (upstream == nullptr) {
Junxiao Shia110f262014-10-12 12:35:20 -0700594 // insert all outgoing Nonces
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400595 const auto& outRecords = pitEntry.getOutRecords();
596 std::for_each(outRecords.begin(), outRecords.end(), [&] (const auto& outRecord) {
597 m_deadNonceList.add(pitEntry.getName(), outRecord.getLastNonce());
598 });
Junxiao Shia110f262014-10-12 12:35:20 -0700599 }
600 else {
601 // insert outgoing Nonce of a specific face
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000602 auto outRecord = pitEntry.getOutRecord(*upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700603 if (outRecord != pitEntry.getOutRecords().end()) {
604 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
605 }
606 }
607}
608
Philipp Molla1033342021-06-14 09:34:21 +0200609void
610Forwarder::setConfigFile(ConfigFile& configFile)
611{
Davide Pesavento412c9822021-07-02 00:21:05 -0400612 configFile.addSectionHandler(CFG_FORWARDER, [this] (auto&&... args) {
613 processConfig(std::forward<decltype(args)>(args)...);
614 });
Philipp Molla1033342021-06-14 09:34:21 +0200615}
616
617void
618Forwarder::processConfig(const ConfigSection& configSection, bool isDryRun, const std::string&)
619{
620 Config config;
621
622 for (const auto& pair : configSection) {
623 const std::string& key = pair.first;
624 if (key == "default_hop_limit") {
Davide Pesavento412c9822021-07-02 00:21:05 -0400625 config.defaultHopLimit = ConfigFile::parseNumber<uint8_t>(pair, CFG_FORWARDER);
Philipp Molla1033342021-06-14 09:34:21 +0200626 }
627 else {
Davide Pesavento412c9822021-07-02 00:21:05 -0400628 NDN_THROW(ConfigFile::Error("Unrecognized option " + CFG_FORWARDER + "." + key));
Philipp Molla1033342021-06-14 09:34:21 +0200629 }
630 }
631
632 if (!isDryRun) {
633 m_config = config;
634 }
635}
636
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800637} // namespace nfd