blob: fc73a7dad1439a9b872861ec24d58e301ae76013 [file] [log] [blame]
Junxiao Shic1e12362014-01-24 20:03:26 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi75306352018-02-01 21:59:44 +00002/*
ashiqopu3ad49db2018-10-20 22:38:47 +00003 * Copyright (c) 2014-2019, 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
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_FIB_HPP
27#define NFD_DAEMON_TABLE_FIB_HPP
Junxiao Shic1e12362014-01-24 20:03:26 -070028
29#include "fib-entry.hpp"
HangZhangad4afd12014-03-01 11:03:08 +080030#include "name-tree.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070031
Junxiao Shi75306352018-02-01 21:59:44 +000032#include "core/fib-max-depth.hpp"
33
Junxiao Shi13ad4b72016-08-15 04:51:21 +000034#include <boost/range/adaptor/transformed.hpp>
35
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080036namespace nfd {
Junxiao Shic1e12362014-01-24 20:03:26 -070037
HangZhangad4afd12014-03-01 11:03:08 +080038namespace measurements {
39class Entry;
Junxiao Shia6de4292016-07-12 02:08:10 +000040} // namespace measurements
HangZhangad4afd12014-03-01 11:03:08 +080041namespace pit {
42class Entry;
Junxiao Shia6de4292016-07-12 02:08:10 +000043} // namespace pit
HangZhangad4afd12014-03-01 11:03:08 +080044
Junxiao Shia6de4292016-07-12 02:08:10 +000045namespace fib {
46
Davide Pesavento50a6af32019-02-21 00:04:40 -050047/** \brief Represents the Forwarding Information Base (FIB)
Junxiao Shic1e12362014-01-24 20:03:26 -070048 */
49class Fib : noncopyable
50{
51public:
HangZhangad4afd12014-03-01 11:03:08 +080052 explicit
53 Fib(NameTree& nameTree);
Steve DiBenedettod5f87932014-02-05 15:11:39 -070054
Junxiao Shi56a21bf2014-11-02 21:11:50 -070055 size_t
Junxiao Shi13ad4b72016-08-15 04:51:21 +000056 size() const
57 {
58 return m_nItems;
59 }
Steve DiBenedettod5f87932014-02-05 15:11:39 -070060
Junxiao Shi56a21bf2014-11-02 21:11:50 -070061public: // lookup
Davide Pesavento50a6af32019-02-21 00:04:40 -050062 /** \brief Performs a longest prefix match
Junxiao Shia6de4292016-07-12 02:08:10 +000063 */
64 const Entry&
Junxiao Shic1e12362014-01-24 20:03:26 -070065 findLongestPrefixMatch(const Name& prefix) const;
Steve DiBenedettod5f87932014-02-05 15:11:39 -070066
Davide Pesavento50a6af32019-02-21 00:04:40 -050067 /** \brief Performs a longest prefix match
Junxiao Shia6de4292016-07-12 02:08:10 +000068 *
Davide Pesavento50a6af32019-02-21 00:04:40 -050069 * This is equivalent to `findLongestPrefixMatch(pitEntry.getName())`
Junxiao Shia6de4292016-07-12 02:08:10 +000070 */
71 const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070072 findLongestPrefixMatch(const pit::Entry& pitEntry) const;
73
Davide Pesavento50a6af32019-02-21 00:04:40 -050074 /** \brief Performs a longest prefix match
Junxiao Shia6de4292016-07-12 02:08:10 +000075 *
Davide Pesavento50a6af32019-02-21 00:04:40 -050076 * This is equivalent to `findLongestPrefixMatch(measurementsEntry.getName())`
Junxiao Shia6de4292016-07-12 02:08:10 +000077 */
78 const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070079 findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const;
80
Davide Pesavento50a6af32019-02-21 00:04:40 -050081 /** \brief Performs an exact match lookup
Junxiao Shia6de4292016-07-12 02:08:10 +000082 */
83 Entry*
84 findExactMatch(const Name& prefix);
Steve DiBenedettod5f87932014-02-05 15:11:39 -070085
Junxiao Shi56a21bf2014-11-02 21:11:50 -070086public: // mutation
Junxiao Shi75306352018-02-01 21:59:44 +000087 /** \brief Maximum number of components in a FIB entry prefix.
Junxiao Shi75306352018-02-01 21:59:44 +000088 */
89 static constexpr size_t
90 getMaxDepth()
91 {
Junxiao Shi75306352018-02-01 21:59:44 +000092 return FIB_MAX_DEPTH;
93 }
94
Davide Pesavento50a6af32019-02-21 00:04:40 -050095 /** \brief Find or insert a FIB entry
96 * \param prefix FIB entry name; it must not have more than \c getMaxDepth() components.
Junxiao Shia6de4292016-07-12 02:08:10 +000097 * \return the entry, and true for new entry or false for existing entry
Junxiao Shi56a21bf2014-11-02 21:11:50 -070098 */
Junxiao Shia6de4292016-07-12 02:08:10 +000099 std::pair<Entry*, bool>
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700100 insert(const Name& prefix);
101
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700102 void
HangZhangad4afd12014-03-01 11:03:08 +0800103 erase(const Name& prefix);
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700104
Steve DiBenedettod030cfc2014-03-10 20:04:47 -0600105 void
Junxiao Shia6de4292016-07-12 02:08:10 +0000106 erase(const Entry& entry);
Steve DiBenedettod030cfc2014-03-10 20:04:47 -0600107
Davide Pesavento50a6af32019-02-21 00:04:40 -0500108 /** \brief Remove the NextHop record for the given \p face and \p endpointId
Junxiao Shic1e12362014-01-24 20:03:26 -0700109 */
110 void
ashiqopu77d0bfd2019-02-20 20:37:31 +0000111 removeNextHop(Entry& entry, const Face& face, EndpointId endpointId);
ashiqopu3ad49db2018-10-20 22:38:47 +0000112
Davide Pesavento50a6af32019-02-21 00:04:40 -0500113 /** \brief Remove all NextHop records for \p face
ashiqopu3ad49db2018-10-20 22:38:47 +0000114 */
115 void
116 removeNextHopByFace(Entry& entry, const Face& face);
Junxiao Shic1e12362014-01-24 20:03:26 -0700117
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700118public: // enumeration
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000119 typedef boost::transformed_range<name_tree::GetTableEntry<Entry>, const name_tree::Range> Range;
120 typedef boost::range_iterator<Range>::type const_iterator;
HangZhangad4afd12014-03-01 11:03:08 +0800121
Junxiao Shib30863e2016-08-15 21:32:01 +0000122 /** \return an iterator to the beginning
Davide Pesavento50a6af32019-02-21 00:04:40 -0500123 * \note The iteration order is implementation-defined.
Junxiao Shib30863e2016-08-15 21:32:01 +0000124 * \warning Undefined behavior may occur if a FIB/PIT/Measurements/StrategyChoice entry
Davide Pesavento50a6af32019-02-21 00:04:40 -0500125 * is inserted or erased during iteration.
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -0800126 */
HangZhang5d469422014-03-12 09:26:26 +0800127 const_iterator
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000128 begin() const
129 {
130 return this->getRange().begin();
131 }
HangZhang5d469422014-03-12 09:26:26 +0800132
Junxiao Shib30863e2016-08-15 21:32:01 +0000133 /** \return an iterator to the end
134 * \sa begin()
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -0800135 */
HangZhang5d469422014-03-12 09:26:26 +0800136 const_iterator
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000137 end() const
HangZhang5d469422014-03-12 09:26:26 +0800138 {
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000139 return this->getRange().end();
140 }
HangZhang5d469422014-03-12 09:26:26 +0800141
Junxiao Shic1e12362014-01-24 20:03:26 -0700142private:
Junxiao Shidd8f6612016-08-12 15:42:52 +0000143 /** \tparam K a parameter acceptable to NameTree::findLongestPrefixMatch
144 */
145 template<typename K>
Junxiao Shia6de4292016-07-12 02:08:10 +0000146 const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +0000147 findLongestPrefixMatchImpl(const K& key) const;
HangZhangcb4fc832014-03-11 16:57:11 +0800148
Junxiao Shiee5a4442014-07-27 17:13:43 -0700149 void
Junxiao Shi811c0102016-08-10 04:12:45 +0000150 erase(name_tree::Entry* nte, bool canDeleteNte = true);
Junxiao Shiee5a4442014-07-27 17:13:43 -0700151
Davide Pesavento50a6af32019-02-21 00:04:40 -0500152 /** \brief Erase \p entry if it contains no nexthop records
ashiqopu3ad49db2018-10-20 22:38:47 +0000153 */
154 void
155 eraseIfEmpty(Entry& entry);
156
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000157 Range
158 getRange() const;
159
Junxiao Shiefceadc2014-03-09 18:52:57 -0700160private:
HangZhangad4afd12014-03-01 11:03:08 +0800161 NameTree& m_nameTree;
Davide Pesavento50a6af32019-02-21 00:04:40 -0500162 size_t m_nItems = 0;
Junxiao Shiefceadc2014-03-09 18:52:57 -0700163
Davide Pesavento50a6af32019-02-21 00:04:40 -0500164 /** \brief The empty FIB entry.
Junxiao Shi40631842014-03-01 13:52:37 -0700165 *
166 * This entry has no nexthops.
167 * It is returned by findLongestPrefixMatch if nothing is matched.
168 */
Junxiao Shia6de4292016-07-12 02:08:10 +0000169 static const unique_ptr<Entry> s_emptyEntry;
Junxiao Shic1e12362014-01-24 20:03:26 -0700170};
171
Junxiao Shia6de4292016-07-12 02:08:10 +0000172} // namespace fib
173
174using fib::Fib;
175
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800176} // namespace nfd
Junxiao Shic1e12362014-01-24 20:03:26 -0700177
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700178#endif // NFD_DAEMON_TABLE_FIB_HPP