akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, The University of Memphis, |
Junxiao Shi | 3e5120c | 2016-09-10 16:58:34 +0000 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame] | 20 | */ |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 21 | |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 22 | #ifndef NLSR_ROUTE_FIB_HPP |
| 23 | #define NLSR_ROUTE_FIB_HPP |
Nick Gordon | b716847 | 2016-09-21 13:57:17 -0500 | [diff] [blame] | 24 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 25 | #include "face-map.hpp" |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 26 | #include "fib-entry.hpp" |
Vince Lehman | 942eb7b | 2014-10-02 10:09:27 -0500 | [diff] [blame] | 27 | #include "test-access-control.hpp" |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 28 | |
Nick Gordon | 2108808 | 2017-05-24 10:57:06 -0500 | [diff] [blame] | 29 | #include <ndn-cxx/mgmt/nfd/controller.hpp> |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 30 | #include <ndn-cxx/util/time.hpp> |
| 31 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 32 | namespace nlsr { |
| 33 | |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 34 | typedef std::function<void(FibEntry&)> afterRefreshCallback; |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 35 | |
Vince Lehman | 942eb7b | 2014-10-02 10:09:27 -0500 | [diff] [blame] | 36 | class AdjacencyList; |
| 37 | class ConfParameter; |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 38 | class FibEntry; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 39 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 40 | /*! \brief Maps names to lists of next hops, and exports this information to NFD. |
| 41 | * |
| 42 | * The FIB (Forwarding Information Base) is the "authoritative" source |
| 43 | * of how to route Interests on this router to other nodes running |
| 44 | * NLSR. In essence, the FIB is a map that takes name prefixes to a |
| 45 | * list of next-hops out of this router. This class also contains |
| 46 | * methods to inform NFD about these relationships. The FIB has its |
| 47 | * entries populated by the NamePrefixTable |
| 48 | * |
| 49 | * \sa nlsr::NamePrefixTable |
| 50 | * \sa nlsr::NamePrefixTable::addEntry |
| 51 | * \sa nlsr::NamePrefixTable::updateWithNewRoute |
| 52 | */ |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 53 | class Fib |
| 54 | { |
| 55 | public: |
Ashlesh Gawande | e5002b3 | 2018-12-20 21:07:31 -0600 | [diff] [blame] | 56 | Fib(ndn::Face& face, ndn::Scheduler& scheduler, AdjacencyList& adjacencyList, |
| 57 | ConfParameter& conf, ndn::security::v2::KeyChain& keyChain); |
Vince Lehman | 942eb7b | 2014-10-02 10:09:27 -0500 | [diff] [blame] | 58 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 59 | /*! \brief Completely remove a name prefix from the FIB. |
| 60 | * |
| 61 | * If a name prefix is found to no longer be reachable from this |
| 62 | * router, it will be removed from the FIB and all of its next-hops |
| 63 | * will be unregistered from NFD. |
| 64 | * |
| 65 | * \sa nlsr::NamePrefixTable::removeEntry |
| 66 | */ |
Ashlesh Gawande | 744e481 | 2018-08-22 16:26:24 -0500 | [diff] [blame] | 67 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 68 | remove(const ndn::Name& name); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 69 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 70 | /*! \brief Set the nexthop list of a name. |
| 71 | * |
| 72 | * This method is the entry for others to add next-hop information |
| 73 | * to the FIB. Formally put, this method registers in NFD all |
| 74 | * next-hops in allHops, and unregisters the set difference of |
| 75 | * newHops - oldHops. This method also schedules the regular refresh |
| 76 | * of those next hops. |
| 77 | * |
| 78 | * \param name The name prefix that the next-hops apply to |
| 79 | * \param allHops A complete list of next-hops to associate with name. |
| 80 | */ |
Ashlesh Gawande | 744e481 | 2018-08-22 16:26:24 -0500 | [diff] [blame] | 81 | void |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 82 | update(const ndn::Name& name, const NexthopList& allHops); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 83 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 84 | /*! \brief Remove all entries from the FIB. |
| 85 | * |
| 86 | * This method is called before terminating NLSR to minimize the |
| 87 | * time NFD spends routing on now-invalid information. This is not |
| 88 | * strictly necessary, because eventually those prefix registrations |
| 89 | * will expire, but cleaning up after ourselves improves |
| 90 | * performance. |
| 91 | * |
| 92 | * \sa NlsrRunner::run |
| 93 | * |
| 94 | */ |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 95 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 96 | clean(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 97 | |
| 98 | void |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 99 | setEntryRefreshTime(int32_t fert) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 100 | { |
| 101 | m_refreshTime = fert; |
| 102 | } |
| 103 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 104 | /*! \brief Inform NFD of a next-hop |
| 105 | * |
| 106 | * This method informs NFD of a next-hop for some name prefix. This |
| 107 | * method actually submits the information to NFD's RIB, which then |
| 108 | * aggregates its own best hops and updates NFD's (the actual) |
| 109 | * FIB. Typically, NLSR's FIB and NFD's FIB will be almost the |
| 110 | * same. However, this is not necessarily the case and there may be |
| 111 | * cases when other sources of information provide better next-hops |
| 112 | * to NFD that NLSR doesn't know about. For example, an operator |
| 113 | * could set up a direct link to a node that isn't running NLSR. |
| 114 | * |
| 115 | * \param namePrefix The name prefix to register a next-hop for |
| 116 | * \param faceUri The faceUri of the adjacent that this prefix can be reached through |
| 117 | * \param faceCost The cost to reach namePrefix through faceUri |
| 118 | * \param timeout How long this registration should last |
| 119 | * \param flags Route inheritance flags (CAPTURE, CHILD_INHERIT) |
| 120 | * \param times How many times we have failed to register this prefix since the last success. |
| 121 | * |
| 122 | * \sa Fib::registerPrefixInNfd |
| 123 | */ |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 124 | void |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 125 | registerPrefix(const ndn::Name& namePrefix, |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 126 | const ndn::FaceUri& faceUri, |
akmhoque | bf11c5f | 2014-07-21 14:49:47 -0500 | [diff] [blame] | 127 | uint64_t faceCost, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 128 | const ndn::time::milliseconds& timeout, |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 129 | uint64_t flags, |
| 130 | uint8_t times); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 131 | |
| 132 | void |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 133 | setStrategy(const ndn::Name& name, const std::string& strategy, uint32_t count); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 134 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 135 | void |
| 136 | writeLog(); |
| 137 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 138 | private: |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 139 | /*! \brief Indicates whether a prefix is a direct neighbor or not. |
| 140 | * |
| 141 | * \return Whether the name is NOT associated with a direct neighbor |
| 142 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 143 | bool |
Ashlesh Gawande | e5002b3 | 2018-12-20 21:07:31 -0600 | [diff] [blame] | 144 | isNotNeighbor(const ndn::Name& name); |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 145 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 146 | /*! \brief Does one half of the updating of a FibEntry with new next-hops. |
| 147 | * |
| 148 | * Adds nexthops to a FibEntry and registers them in NFD. |
| 149 | * \sa Fib::update |
| 150 | * \sa Fib::removeOldNextHopsFromFibEntryAndNfd |
| 151 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 152 | void |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 153 | addNextHopsToFibEntryAndNfd(FibEntry& entry, const NexthopList& hopsToAdd); |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 154 | |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 155 | unsigned int |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 156 | getNumberOfFacesForName(const NexthopList& nextHopList); |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 157 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 158 | /*! \brief Unregisters a prefix from NFD's RIB. |
| 159 | * |
| 160 | */ |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 161 | void |
| 162 | unregisterPrefix(const ndn::Name& namePrefix, const std::string& faceUri); |
| 163 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 164 | /*! \brief Log registration success, and update the Face ID associated with a URI. |
| 165 | */ |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 166 | void |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 167 | onRegistrationSuccess(const ndn::nfd::ControlParameters& commandSuccessResult, |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 168 | const std::string& message, const ndn::FaceUri& faceUri); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 169 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 170 | /*! \brief Retry a prefix (next-hop) registration up to three (3) times. |
| 171 | */ |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 172 | void |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 173 | onRegistrationFailure(const ndn::nfd::ControlResponse& response, |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 174 | const std::string& message, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 175 | const ndn::nfd::ControlParameters& parameters, |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 176 | const ndn::FaceUri& faceUri, |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 177 | uint8_t times); |
| 178 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 179 | /*! \brief Log a successful unregistration. |
| 180 | */ |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 181 | void |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 182 | onUnregistrationSuccess(const ndn::nfd::ControlParameters& commandSuccessResult, |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 183 | const std::string& message); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 184 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 185 | /*! \brief Log an unregistration failure. Does not retry. |
| 186 | */ |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 187 | void |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 188 | onUnregistrationFailure(const ndn::nfd::ControlResponse& response, |
| 189 | const std::string& message); |
| 190 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 191 | /*! \brief Log a successful strategy setting. |
| 192 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 193 | void |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 194 | onSetStrategySuccess(const ndn::nfd::ControlParameters& commandSuccessResult, |
| 195 | const std::string& message); |
| 196 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 197 | /*! \brief Retry a strategy setting up to three (3) times. |
| 198 | */ |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 199 | void |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 200 | onSetStrategyFailure(const ndn::nfd::ControlResponse& response, |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 201 | const ndn::nfd::ControlParameters& parameters, |
| 202 | uint32_t count, |
| 203 | const std::string& message); |
| 204 | |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 205 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 206 | /*! \brief Schedule a refresh event for an entry. |
| 207 | * |
| 208 | * Schedules a refresh event for an entry. In order to form a |
| 209 | * perpetual loop, refreshCallback needs to call |
| 210 | * Fib::scheduleEntryRefresh in some way, with refreshCallback being |
| 211 | * the same each time. In the current implementation, this is |
| 212 | * accomplished by having a separate function, Fib::scheduleLoop, |
| 213 | * that does this work. |
| 214 | * \sa Fib::scheduleLoop |
| 215 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 216 | void |
| 217 | scheduleEntryRefresh(FibEntry& entry, const afterRefreshCallback& refreshCb); |
| 218 | |
| 219 | private: |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 220 | /*! \brief Continue the entry refresh cycle. |
| 221 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 222 | void |
| 223 | scheduleLoop(FibEntry& entry); |
| 224 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 225 | /*! \brief Cancel an entry's refresh event. |
| 226 | * |
| 227 | * Cancel an entry's refresh event. This only needs to be done when |
| 228 | * an entry is removed. Typically this happens when NLSR is |
| 229 | * terminated or crashes, and we don't want the scheduler to crash |
| 230 | * because it's referencing memory that has no valid function. |
| 231 | * |
| 232 | * \sa NlsrRunner::run |
| 233 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 234 | void |
| 235 | cancelEntryRefresh(const FibEntry& entry); |
| 236 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 237 | /*! \brief Refreshes an entry in NFD. |
| 238 | */ |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 239 | void |
| 240 | refreshEntry(const ndn::Name& name, afterRefreshCallback refreshCb); |
| 241 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 242 | private: |
Vince Lehman | 7c60329 | 2014-09-11 17:48:16 -0500 | [diff] [blame] | 243 | ndn::Scheduler& m_scheduler; |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 244 | int32_t m_refreshTime; |
| 245 | ndn::nfd::Controller m_controller; |
Vince Lehman | 942eb7b | 2014-10-02 10:09:27 -0500 | [diff] [blame] | 246 | |
| 247 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 248 | FaceMap m_faceMap; |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 249 | std::map<ndn::Name, FibEntry> m_table; |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 250 | |
Vince Lehman | 942eb7b | 2014-10-02 10:09:27 -0500 | [diff] [blame] | 251 | private: |
| 252 | AdjacencyList& m_adjacencyList; |
| 253 | ConfParameter& m_confParameter; |
| 254 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 255 | /*! GRACE_PERIOD A "window" we append to the timeout time to |
| 256 | * allow for things like stuttering prefix registrations and |
| 257 | * processing time when refreshing events. |
| 258 | */ |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 259 | static const uint64_t GRACE_PERIOD; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 260 | }; |
| 261 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 262 | } // namespace nlsr |
Muktadir Chowdhury | 3be6466 | 2015-05-01 14:50:53 -0500 | [diff] [blame] | 263 | |
| 264 | #endif // NLSR_ROUTE_FIB_HPP |