blob: f30b976c6f0401f3da4bbf688ad88465354cc283 [file] [log] [blame]
Junxiao Shic1e12362014-01-24 20:03:26 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento981db802018-04-10 18:05:04 -04002/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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 Shiee5a4442014-07-27 17:13:43 -070024 */
Junxiao Shic1e12362014-01-24 20:03:26 -070025
26#include "fib.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070027#include "pit-entry.hpp"
28#include "measurements-entry.hpp"
Davide Pesavento981db802018-04-10 18:05:04 -040029
30#include <ndn-cxx/util/concepts.hpp>
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -080031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::fib {
Junxiao Shi40631842014-03-01 13:52:37 -070033
Davide Pesavento981db802018-04-10 18:05:04 -040034NDN_CXX_ASSERT_FORWARD_ITERATOR(Fib::const_iterator);
Junxiao Shi40631842014-03-01 13:52:37 -070035
Junxiao Shi3aba7542016-12-24 02:42:52 +000036const unique_ptr<Entry> Fib::s_emptyEntry = make_unique<Entry>(Name());
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -080037
Junxiao Shi811c0102016-08-10 04:12:45 +000038static inline bool
39nteHasFibEntry(const name_tree::Entry& nte)
40{
41 return nte.getFibEntry() != nullptr;
42}
43
HangZhangad4afd12014-03-01 11:03:08 +080044Fib::Fib(NameTree& nameTree)
45 : m_nameTree(nameTree)
Junxiao Shic1e12362014-01-24 20:03:26 -070046{
Junxiao Shic1e12362014-01-24 20:03:26 -070047}
48
Junxiao Shidd8f6612016-08-12 15:42:52 +000049template<typename K>
Junxiao Shia6de4292016-07-12 02:08:10 +000050const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000051Fib::findLongestPrefixMatchImpl(const K& key) const
Junxiao Shic1e12362014-01-24 20:03:26 -070052{
Junxiao Shidd8f6612016-08-12 15:42:52 +000053 name_tree::Entry* nte = m_nameTree.findLongestPrefixMatch(key, &nteHasFibEntry);
Junxiao Shia6de4292016-07-12 02:08:10 +000054 if (nte != nullptr) {
55 return *nte->getFibEntry();
HangZhangad4afd12014-03-01 11:03:08 +080056 }
Junxiao Shia6de4292016-07-12 02:08:10 +000057 return *s_emptyEntry;
HangZhangcb4fc832014-03-11 16:57:11 +080058}
59
Junxiao Shia6de4292016-07-12 02:08:10 +000060const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000061Fib::findLongestPrefixMatch(const Name& prefix) const
HangZhangcb4fc832014-03-11 16:57:11 +080062{
Junxiao Shidd8f6612016-08-12 15:42:52 +000063 return this->findLongestPrefixMatchImpl(prefix);
Junxiao Shic1e12362014-01-24 20:03:26 -070064}
65
Junxiao Shia6de4292016-07-12 02:08:10 +000066const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070067Fib::findLongestPrefixMatch(const pit::Entry& pitEntry) const
68{
Junxiao Shidd8f6612016-08-12 15:42:52 +000069 return this->findLongestPrefixMatchImpl(pitEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070070}
71
Junxiao Shia6de4292016-07-12 02:08:10 +000072const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070073Fib::findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const
74{
Junxiao Shidd8f6612016-08-12 15:42:52 +000075 return this->findLongestPrefixMatchImpl(measurementsEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070076}
77
Junxiao Shia6de4292016-07-12 02:08:10 +000078Entry*
79Fib::findExactMatch(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -070080{
Junxiao Shi811c0102016-08-10 04:12:45 +000081 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +000082 if (nte != nullptr)
83 return nte->getFibEntry();
Junxiao Shib184e532016-05-26 18:09:57 +000084
85 return nullptr;
Steve DiBenedettod5f87932014-02-05 15:11:39 -070086}
87
Junxiao Shia6de4292016-07-12 02:08:10 +000088std::pair<Entry*, bool>
Junxiao Shi56a21bf2014-11-02 21:11:50 -070089Fib::insert(const Name& prefix)
90{
Junxiao Shi7f358432016-08-11 17:06:33 +000091 name_tree::Entry& nte = m_nameTree.lookup(prefix);
92 Entry* entry = nte.getFibEntry();
Junxiao Shia6de4292016-07-12 02:08:10 +000093 if (entry != nullptr) {
Davide Pesaventoe4b22382018-06-10 14:37:24 -040094 return {entry, false};
Junxiao Shia6de4292016-07-12 02:08:10 +000095 }
Junxiao Shib184e532016-05-26 18:09:57 +000096
Junxiao Shi7f358432016-08-11 17:06:33 +000097 nte.setFibEntry(make_unique<Entry>(prefix));
Junxiao Shi56a21bf2014-11-02 21:11:50 -070098 ++m_nItems;
Davide Pesaventoe4b22382018-06-10 14:37:24 -040099 return {nte.getFibEntry(), true};
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700100}
101
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700102void
Junxiao Shi811c0102016-08-10 04:12:45 +0000103Fib::erase(name_tree::Entry* nte, bool canDeleteNte)
Junxiao Shiee5a4442014-07-27 17:13:43 -0700104{
Junxiao Shi02b73f52016-07-28 01:48:27 +0000105 BOOST_ASSERT(nte != nullptr);
106
Junxiao Shia6de4292016-07-12 02:08:10 +0000107 nte->setFibEntry(nullptr);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000108 if (canDeleteNte) {
Junxiao Shi811c0102016-08-10 04:12:45 +0000109 m_nameTree.eraseIfEmpty(nte);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000110 }
Junxiao Shiee5a4442014-07-27 17:13:43 -0700111 --m_nItems;
112}
113
114void
HangZhangad4afd12014-03-01 11:03:08 +0800115Fib::erase(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700116{
Junxiao Shi811c0102016-08-10 04:12:45 +0000117 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +0000118 if (nte != nullptr) {
119 this->erase(nte);
Junxiao Shiefceadc2014-03-09 18:52:57 -0700120 }
121}
122
123void
Junxiao Shia6de4292016-07-12 02:08:10 +0000124Fib::erase(const Entry& entry)
Junxiao Shiefceadc2014-03-09 18:52:57 -0700125{
Junxiao Shi7f358432016-08-11 17:06:33 +0000126 name_tree::Entry* nte = m_nameTree.getEntry(entry);
Junxiao Shidd8f6612016-08-12 15:42:52 +0000127 if (nte == nullptr) { // don't try to erase s_emptyEntry
128 BOOST_ASSERT(&entry == s_emptyEntry.get());
129 return;
HangZhangad4afd12014-03-01 11:03:08 +0800130 }
Junxiao Shidd8f6612016-08-12 15:42:52 +0000131 this->erase(nte);
Junxiao Shic1e12362014-01-24 20:03:26 -0700132}
133
134void
Ju Pand8315bf2019-07-31 06:59:07 +0000135Fib::addOrUpdateNextHop(Entry& entry, Face& face, uint64_t cost)
136{
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400137 auto [it, isNew] = entry.addOrUpdateNextHop(face, cost);
Ju Pand8315bf2019-07-31 06:59:07 +0000138 if (isNew)
139 this->afterNewNextHop(entry.getPrefix(), *it);
140}
141
142Fib::RemoveNextHopResult
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000143Fib::removeNextHop(Entry& entry, const Face& face)
Junxiao Shic1e12362014-01-24 20:03:26 -0700144{
Ju Pand8315bf2019-07-31 06:59:07 +0000145 bool isRemoved = entry.removeNextHop(face);
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000146
Ju Pand8315bf2019-07-31 06:59:07 +0000147 if (!isRemoved) {
148 return RemoveNextHopResult::NO_SUCH_NEXTHOP;
149 }
150 else if (!entry.hasNextHops()) {
Junxiao Shi7f358432016-08-11 17:06:33 +0000151 name_tree::Entry* nte = m_nameTree.getEntry(entry);
152 this->erase(nte, false);
Ju Pand8315bf2019-07-31 06:59:07 +0000153 return RemoveNextHopResult::FIB_ENTRY_REMOVED;
154 }
155 else {
156 return RemoveNextHopResult::NEXTHOP_REMOVED;
Junxiao Shi60607c72014-11-26 22:40:36 -0700157 }
Junxiao Shic1e12362014-01-24 20:03:26 -0700158}
159
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000160Fib::Range
161Fib::getRange() const
HangZhang5d469422014-03-12 09:26:26 +0800162{
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000163 return m_nameTree.fullEnumerate(&nteHasFibEntry) |
164 boost::adaptors::transformed(name_tree::GetTableEntry<Entry>(&name_tree::Entry::getFibEntry));
HangZhang5d469422014-03-12 09:26:26 +0800165}
166
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400167} // namespace nfd::fib