blob: 87e180ae2aedc649b39bf28ec3303b0727ebe9a4 [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 Pesavento8f0b8b62023-08-29 21:04:08 -04003 * Copyright (c) 2014-2023, 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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040030namespace nfd::fib {
Junxiao Shi40631842014-03-01 13:52:37 -070031
Junxiao Shi3aba7542016-12-24 02:42:52 +000032const unique_ptr<Entry> Fib::s_emptyEntry = make_unique<Entry>(Name());
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -080033
Junxiao Shi811c0102016-08-10 04:12:45 +000034static inline bool
35nteHasFibEntry(const name_tree::Entry& nte)
36{
37 return nte.getFibEntry() != nullptr;
38}
39
HangZhangad4afd12014-03-01 11:03:08 +080040Fib::Fib(NameTree& nameTree)
41 : m_nameTree(nameTree)
Junxiao Shic1e12362014-01-24 20:03:26 -070042{
Junxiao Shic1e12362014-01-24 20:03:26 -070043}
44
Junxiao Shidd8f6612016-08-12 15:42:52 +000045template<typename K>
Junxiao Shia6de4292016-07-12 02:08:10 +000046const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000047Fib::findLongestPrefixMatchImpl(const K& key) const
Junxiao Shic1e12362014-01-24 20:03:26 -070048{
Junxiao Shidd8f6612016-08-12 15:42:52 +000049 name_tree::Entry* nte = m_nameTree.findLongestPrefixMatch(key, &nteHasFibEntry);
Junxiao Shia6de4292016-07-12 02:08:10 +000050 if (nte != nullptr) {
51 return *nte->getFibEntry();
HangZhangad4afd12014-03-01 11:03:08 +080052 }
Junxiao Shia6de4292016-07-12 02:08:10 +000053 return *s_emptyEntry;
HangZhangcb4fc832014-03-11 16:57:11 +080054}
55
Junxiao Shia6de4292016-07-12 02:08:10 +000056const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000057Fib::findLongestPrefixMatch(const Name& prefix) const
HangZhangcb4fc832014-03-11 16:57:11 +080058{
Junxiao Shidd8f6612016-08-12 15:42:52 +000059 return this->findLongestPrefixMatchImpl(prefix);
Junxiao Shic1e12362014-01-24 20:03:26 -070060}
61
Junxiao Shia6de4292016-07-12 02:08:10 +000062const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070063Fib::findLongestPrefixMatch(const pit::Entry& pitEntry) const
64{
Junxiao Shidd8f6612016-08-12 15:42:52 +000065 return this->findLongestPrefixMatchImpl(pitEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070066}
67
Junxiao Shia6de4292016-07-12 02:08:10 +000068const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070069Fib::findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const
70{
Junxiao Shidd8f6612016-08-12 15:42:52 +000071 return this->findLongestPrefixMatchImpl(measurementsEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070072}
73
Junxiao Shia6de4292016-07-12 02:08:10 +000074Entry*
75Fib::findExactMatch(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -070076{
Junxiao Shi811c0102016-08-10 04:12:45 +000077 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +000078 if (nte != nullptr)
79 return nte->getFibEntry();
Junxiao Shib184e532016-05-26 18:09:57 +000080
81 return nullptr;
Steve DiBenedettod5f87932014-02-05 15:11:39 -070082}
83
Junxiao Shia6de4292016-07-12 02:08:10 +000084std::pair<Entry*, bool>
Junxiao Shi56a21bf2014-11-02 21:11:50 -070085Fib::insert(const Name& prefix)
86{
Junxiao Shi7f358432016-08-11 17:06:33 +000087 name_tree::Entry& nte = m_nameTree.lookup(prefix);
88 Entry* entry = nte.getFibEntry();
Junxiao Shia6de4292016-07-12 02:08:10 +000089 if (entry != nullptr) {
Davide Pesaventoe4b22382018-06-10 14:37:24 -040090 return {entry, false};
Junxiao Shia6de4292016-07-12 02:08:10 +000091 }
Junxiao Shib184e532016-05-26 18:09:57 +000092
Junxiao Shi7f358432016-08-11 17:06:33 +000093 nte.setFibEntry(make_unique<Entry>(prefix));
Junxiao Shi56a21bf2014-11-02 21:11:50 -070094 ++m_nItems;
Davide Pesaventoe4b22382018-06-10 14:37:24 -040095 return {nte.getFibEntry(), true};
Junxiao Shi56a21bf2014-11-02 21:11:50 -070096}
97
Steve DiBenedettod5f87932014-02-05 15:11:39 -070098void
Junxiao Shi811c0102016-08-10 04:12:45 +000099Fib::erase(name_tree::Entry* nte, bool canDeleteNte)
Junxiao Shiee5a4442014-07-27 17:13:43 -0700100{
Junxiao Shi02b73f52016-07-28 01:48:27 +0000101 BOOST_ASSERT(nte != nullptr);
102
Junxiao Shia6de4292016-07-12 02:08:10 +0000103 nte->setFibEntry(nullptr);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000104 if (canDeleteNte) {
Junxiao Shi811c0102016-08-10 04:12:45 +0000105 m_nameTree.eraseIfEmpty(nte);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000106 }
Junxiao Shiee5a4442014-07-27 17:13:43 -0700107 --m_nItems;
108}
109
110void
HangZhangad4afd12014-03-01 11:03:08 +0800111Fib::erase(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700112{
Junxiao Shi811c0102016-08-10 04:12:45 +0000113 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +0000114 if (nte != nullptr) {
115 this->erase(nte);
Junxiao Shiefceadc2014-03-09 18:52:57 -0700116 }
117}
118
119void
Junxiao Shia6de4292016-07-12 02:08:10 +0000120Fib::erase(const Entry& entry)
Junxiao Shiefceadc2014-03-09 18:52:57 -0700121{
Junxiao Shi7f358432016-08-11 17:06:33 +0000122 name_tree::Entry* nte = m_nameTree.getEntry(entry);
Junxiao Shidd8f6612016-08-12 15:42:52 +0000123 if (nte == nullptr) { // don't try to erase s_emptyEntry
124 BOOST_ASSERT(&entry == s_emptyEntry.get());
125 return;
HangZhangad4afd12014-03-01 11:03:08 +0800126 }
Junxiao Shidd8f6612016-08-12 15:42:52 +0000127 this->erase(nte);
Junxiao Shic1e12362014-01-24 20:03:26 -0700128}
129
130void
Ju Pand8315bf2019-07-31 06:59:07 +0000131Fib::addOrUpdateNextHop(Entry& entry, Face& face, uint64_t cost)
132{
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400133 auto [it, isNew] = entry.addOrUpdateNextHop(face, cost);
Ju Pand8315bf2019-07-31 06:59:07 +0000134 if (isNew)
135 this->afterNewNextHop(entry.getPrefix(), *it);
136}
137
138Fib::RemoveNextHopResult
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000139Fib::removeNextHop(Entry& entry, const Face& face)
Junxiao Shic1e12362014-01-24 20:03:26 -0700140{
Ju Pand8315bf2019-07-31 06:59:07 +0000141 bool isRemoved = entry.removeNextHop(face);
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000142
Ju Pand8315bf2019-07-31 06:59:07 +0000143 if (!isRemoved) {
144 return RemoveNextHopResult::NO_SUCH_NEXTHOP;
145 }
146 else if (!entry.hasNextHops()) {
Junxiao Shi7f358432016-08-11 17:06:33 +0000147 name_tree::Entry* nte = m_nameTree.getEntry(entry);
148 this->erase(nte, false);
Ju Pand8315bf2019-07-31 06:59:07 +0000149 return RemoveNextHopResult::FIB_ENTRY_REMOVED;
150 }
151 else {
152 return RemoveNextHopResult::NEXTHOP_REMOVED;
Junxiao Shi60607c72014-11-26 22:40:36 -0700153 }
Junxiao Shic1e12362014-01-24 20:03:26 -0700154}
155
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000156Fib::Range
157Fib::getRange() const
HangZhang5d469422014-03-12 09:26:26 +0800158{
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000159 return m_nameTree.fullEnumerate(&nteHasFibEntry) |
160 boost::adaptors::transformed(name_tree::GetTableEntry<Entry>(&name_tree::Entry::getFibEntry));
HangZhang5d469422014-03-12 09:26:26 +0800161}
162
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400163} // namespace nfd::fib