Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | c0822fa | 2018-05-10 21:54:10 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 4 | * 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. |
| 10 | * |
| 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/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_DAEMON_FW_ACCESS_STRATEGY_HPP |
| 27 | #define NFD_DAEMON_FW_ACCESS_STRATEGY_HPP |
| 28 | |
| 29 | #include "strategy.hpp" |
Junxiao Shi | a788e25 | 2015-01-28 17:06:25 -0700 | [diff] [blame] | 30 | #include "retx-suppression-fixed.hpp" |
Davide Pesavento | c0822fa | 2018-05-10 21:54:10 -0400 | [diff] [blame] | 31 | #include "core/rtt-estimator.hpp" |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | namespace fw { |
| 35 | |
| 36 | /** \brief Access Router Strategy version 1 |
| 37 | * |
| 38 | * This strategy is designed for the last hop on the NDN testbed, |
| 39 | * where each nexthop connects to a laptop, links are lossy, and FIB is mostly correct. |
| 40 | * |
| 41 | * 1. Multicast the first Interest to all nexthops. |
| 42 | * 2. When Data comes back, remember last working nexthop of the prefix; |
| 43 | * the granularity of this knowledge is the parent of Data Name. |
| 44 | * 3. Forward subsequent Interests to the last working nexthop. |
| 45 | * If it doesn't respond, multicast again. |
| 46 | */ |
| 47 | class AccessStrategy : public Strategy |
| 48 | { |
| 49 | public: |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 50 | explicit |
Junxiao Shi | 037f4ab | 2016-12-13 04:27:06 +0000 | [diff] [blame] | 51 | AccessStrategy(Forwarder& forwarder, const Name& name = getStrategyName()); |
| 52 | |
| 53 | static const Name& |
| 54 | getStrategyName(); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 55 | |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 56 | public: // triggers |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 57 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 58 | afterReceiveInterest(const Face& inFace, const Interest& interest, |
| 59 | const shared_ptr<pit::Entry>& pitEntry) override; |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 60 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 61 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 62 | beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry, |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 63 | const Face& inFace, const Data& data) override; |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 64 | |
| 65 | private: // StrategyInfo |
| 66 | /** \brief StrategyInfo on PIT entry |
| 67 | */ |
| 68 | class PitInfo : public StrategyInfo |
| 69 | { |
| 70 | public: |
| 71 | static constexpr int |
| 72 | getTypeId() |
| 73 | { |
| 74 | return 1010; |
| 75 | } |
| 76 | |
| 77 | public: |
| 78 | scheduler::ScopedEventId rtoTimer; |
| 79 | }; |
| 80 | |
| 81 | /** \brief StrategyInfo in measurements table |
| 82 | */ |
| 83 | class MtInfo : public StrategyInfo |
| 84 | { |
| 85 | public: |
| 86 | static constexpr int |
| 87 | getTypeId() |
| 88 | { |
| 89 | return 1011; |
| 90 | } |
| 91 | |
| 92 | MtInfo(); |
| 93 | |
| 94 | public: |
| 95 | FaceId lastNexthop; |
| 96 | RttEstimator rtt; |
| 97 | }; |
| 98 | |
| 99 | /** \brief find per-prefix measurements for Interest |
| 100 | */ |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 101 | std::tuple<Name, MtInfo*> |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 102 | findPrefixMeasurements(const pit::Entry& pitEntry); |
| 103 | |
| 104 | /** \brief get or create pre-prefix measurements for incoming Data |
| 105 | * \note This function creates MtInfo but doesn't update it. |
| 106 | */ |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 107 | MtInfo* |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 108 | addPrefixMeasurements(const Data& data); |
| 109 | |
| 110 | /** \brief global per-face StrategyInfo |
| 111 | */ |
| 112 | class FaceInfo |
| 113 | { |
| 114 | public: |
| 115 | FaceInfo(); |
| 116 | |
| 117 | public: |
| 118 | RttEstimator rtt; |
| 119 | }; |
| 120 | |
| 121 | typedef std::unordered_map<FaceId, FaceInfo> FaceInfoTable; |
| 122 | |
| 123 | void |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 124 | removeFaceInfo(const Face& face); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 125 | |
| 126 | private: // forwarding procedures |
| 127 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 128 | afterReceiveNewInterest(const Face& inFace, const Interest& interest, |
| 129 | const shared_ptr<pit::Entry>& pitEntry); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 130 | |
| 131 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 132 | afterReceiveRetxInterest(const Face& inFace, const Interest& interest, |
| 133 | const shared_ptr<pit::Entry>& pitEntry); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 134 | |
| 135 | /** \brief send to last working nexthop |
| 136 | * \return whether an Interest is sent |
| 137 | */ |
| 138 | bool |
Junxiao Shi | a7f9a29 | 2016-11-22 16:31:38 +0000 | [diff] [blame] | 139 | sendToLastNexthop(const Face& inFace, const Interest& interest, |
| 140 | const shared_ptr<pit::Entry>& pitEntry, MtInfo& mi, |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 141 | const fib::Entry& fibEntry); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 142 | |
| 143 | void |
Junxiao Shi | a7f9a29 | 2016-11-22 16:31:38 +0000 | [diff] [blame] | 144 | afterRtoTimeout(weak_ptr<pit::Entry> pitWeak, FaceId inFaceId, FaceId firstOutFaceId); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 145 | |
| 146 | /** \brief multicast to all nexthops |
Junxiao Shi | a7f9a29 | 2016-11-22 16:31:38 +0000 | [diff] [blame] | 147 | * \param exceptFace don't forward to this face; also, inFace is always excluded |
| 148 | * \return how many Interests are sent |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 149 | */ |
Junxiao Shi | a7f9a29 | 2016-11-22 16:31:38 +0000 | [diff] [blame] | 150 | int |
| 151 | multicast(const Face& inFace, const Interest& interest, |
| 152 | const shared_ptr<pit::Entry>& pitEntry, const fib::Entry& fibEntry, |
| 153 | FaceId exceptFace = face::INVALID_FACEID); |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 154 | |
| 155 | void |
| 156 | updateMeasurements(const Face& inFace, const Data& data, |
| 157 | const RttEstimator::Duration& rtt); |
| 158 | |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 159 | private: |
| 160 | FaceInfoTable m_fit; |
Junxiao Shi | a788e25 | 2015-01-28 17:06:25 -0700 | [diff] [blame] | 161 | RetxSuppressionFixed m_retxSuppression; |
Junxiao Shi | 80ee7cb | 2014-12-14 10:53:05 -0700 | [diff] [blame] | 162 | signal::ScopedConnection m_removeFaceInfoConn; |
| 163 | }; |
| 164 | |
| 165 | } // namespace fw |
| 166 | } // namespace nfd |
| 167 | |
| 168 | #endif // NFD_DAEMON_FW_ACCESS_STRATEGY_HPP |