Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -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_FACE_GENERIC_LINK_SERVICE_HPP |
| 27 | #define NFD_DAEMON_FACE_GENERIC_LINK_SERVICE_HPP |
| 28 | |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 29 | #include "core/common.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 30 | #include "core/logger.hpp" |
| 31 | |
| 32 | #include "link-service.hpp" |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 33 | #include "lp-fragmenter.hpp" |
| 34 | #include "lp-reassembler.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 35 | |
| 36 | namespace nfd { |
| 37 | namespace face { |
| 38 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 39 | /** \brief counters provided by GenericLinkService |
| 40 | * \note The type name 'GenericLinkServiceCounters' is implementation detail. |
| 41 | * Use 'GenericLinkService::Counters' in public API. |
| 42 | */ |
| 43 | class GenericLinkServiceCounters : public virtual LinkService::Counters |
| 44 | { |
| 45 | public: |
| 46 | explicit |
| 47 | GenericLinkServiceCounters(const LpReassembler& reassembler); |
| 48 | |
| 49 | /** \brief count of failed fragmentations |
| 50 | */ |
| 51 | PacketCounter nFragmentationErrors; |
| 52 | |
| 53 | /** \brief count of outgoing LpPackets dropped due to exceeding MTU limit |
| 54 | * |
| 55 | * If this counter is non-zero, the operator should enable fragmentation. |
| 56 | */ |
| 57 | PacketCounter nOutOverMtu; |
| 58 | |
| 59 | /** \brief count of invalid LpPackets dropped before reassembly |
| 60 | */ |
| 61 | PacketCounter nInLpInvalid; |
| 62 | |
| 63 | /** \brief count of network-layer packets currently being reassembled |
| 64 | */ |
| 65 | SizeCounter<LpReassembler> nReassembling; |
| 66 | |
| 67 | /** \brief count of dropped partial network-layer packets due to reassembly timeout |
| 68 | */ |
| 69 | PacketCounter nReassemblyTimeouts; |
| 70 | |
| 71 | /** \brief count of invalid reassembled network-layer packets dropped |
| 72 | */ |
| 73 | PacketCounter nInNetInvalid; |
| 74 | }; |
| 75 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 76 | /** \brief GenericLinkService is a LinkService that implements the NDNLPv2 protocol |
| 77 | * \sa http://redmine.named-data.net/projects/nfd/wiki/NDNLPv2 |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 78 | * \todo #3941 declare GenericLinkServiceCounters as virtual inheritance |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 79 | */ |
| 80 | class GenericLinkService : public LinkService |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 81 | , protected GenericLinkServiceCounters |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 82 | { |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 83 | public: |
| 84 | /** \brief Options that control the behavior of GenericLinkService |
| 85 | */ |
| 86 | class Options |
| 87 | { |
| 88 | public: |
| 89 | Options(); |
| 90 | |
| 91 | public: |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 92 | /** \brief enables encoding of IncomingFaceId, and decoding of NextHopFaceId and CachePolicy |
| 93 | */ |
| 94 | bool allowLocalFields; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 95 | |
| 96 | /** \brief enables fragmentation |
| 97 | */ |
| 98 | bool allowFragmentation; |
| 99 | |
| 100 | /** \brief options for fragmentation |
| 101 | */ |
| 102 | LpFragmenter::Options fragmenterOptions; |
| 103 | |
| 104 | /** \brief enables reassembly |
| 105 | */ |
| 106 | bool allowReassembly; |
| 107 | |
| 108 | /** \brief options for reassembly |
| 109 | */ |
| 110 | LpReassembler::Options reassemblerOptions; |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 111 | }; |
| 112 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 113 | /** \brief counters provided by GenericLinkService |
| 114 | */ |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 115 | using Counters = GenericLinkServiceCounters; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 116 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 117 | explicit |
| 118 | GenericLinkService(const Options& options = Options()); |
| 119 | |
| 120 | /** \brief get Options used by GenericLinkService |
| 121 | */ |
| 122 | const Options& |
| 123 | getOptions() const; |
| 124 | |
| 125 | /** \brief sets Options used by GenericLinkService |
| 126 | */ |
| 127 | void |
| 128 | setOptions(const Options& options); |
| 129 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 130 | const Counters& |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 131 | getCounters() const override; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 132 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 133 | PROTECTED_WITH_TESTS_ELSE_PRIVATE: // send path |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 134 | /** \brief send Interest |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 135 | */ |
| 136 | void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 137 | doSendInterest(const Interest& interest) override; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 138 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 139 | /** \brief send Data |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 140 | */ |
| 141 | void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 142 | doSendData(const Data& data) override; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 143 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 144 | /** \brief send Nack |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 145 | */ |
| 146 | void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 147 | doSendNack(const ndn::lp::Nack& nack) override; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 148 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame^] | 149 | private: |
Eric Newberry | ee400b5 | 2016-11-24 14:12:48 +0000 | [diff] [blame] | 150 | /** \brief encode link protocol fields from tags onto an outgoing LpPacket |
| 151 | * \param netPkt network-layer packet to extract tags from |
| 152 | * \param lpPacket LpPacket to add link protocol fields to |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 153 | */ |
Eric Newberry | ee400b5 | 2016-11-24 14:12:48 +0000 | [diff] [blame] | 154 | void |
| 155 | encodeLpFields(const ndn::TagHost& netPkt, lp::Packet& lpPacket); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 156 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 157 | /** \brief send a complete network layer packet |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 158 | * \param pkt LpPacket containing a complete network layer packet |
| 159 | */ |
| 160 | void |
| 161 | sendNetPacket(lp::Packet&& pkt); |
| 162 | |
| 163 | /** \brief assign a sequence number to an LpPacket |
| 164 | */ |
| 165 | void |
| 166 | assignSequence(lp::Packet& pkt); |
| 167 | |
| 168 | /** \brief assign consecutive sequence numbers to LpPackets |
| 169 | */ |
| 170 | void |
| 171 | assignSequences(std::vector<lp::Packet>& pkts); |
| 172 | |
| 173 | private: // receive path |
| 174 | /** \brief receive Packet from Transport |
| 175 | */ |
| 176 | void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 177 | doReceivePacket(Transport::Packet&& packet) override; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 178 | |
| 179 | /** \brief decode incoming network-layer packet |
| 180 | * \param netPkt reassembled network-layer packet |
| 181 | * \param firstPkt LpPacket of first fragment |
| 182 | * |
| 183 | * If decoding is successful, a receive signal is emitted; |
| 184 | * otherwise, a warning is logged. |
| 185 | */ |
| 186 | void |
| 187 | decodeNetPacket(const Block& netPkt, const lp::Packet& firstPkt); |
| 188 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 189 | /** \brief decode incoming Interest |
| 190 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Interest |
| 191 | * \param firstPkt LpPacket of first fragment; must not have Nack field |
| 192 | * |
| 193 | * If decoding is successful, receiveInterest signal is emitted; |
| 194 | * otherwise, a warning is logged. |
| 195 | * |
| 196 | * \throw tlv::Error parse error in an LpHeader field |
| 197 | */ |
| 198 | void |
| 199 | decodeInterest(const Block& netPkt, const lp::Packet& firstPkt); |
| 200 | |
| 201 | /** \brief decode incoming Interest |
| 202 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Data |
| 203 | * \param firstPkt LpPacket of first fragment |
| 204 | * |
| 205 | * If decoding is successful, receiveData signal is emitted; |
| 206 | * otherwise, a warning is logged. |
| 207 | * |
| 208 | * \throw tlv::Error parse error in an LpHeader field |
| 209 | */ |
| 210 | void |
| 211 | decodeData(const Block& netPkt, const lp::Packet& firstPkt); |
| 212 | |
| 213 | /** \brief decode incoming Interest |
| 214 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Interest |
| 215 | * \param firstPkt LpPacket of first fragment; must have Nack field |
| 216 | * |
| 217 | * If decoding is successful, receiveNack signal is emitted; |
| 218 | * otherwise, a warning is logged. |
| 219 | * |
| 220 | * \throw tlv::Error parse error in an LpHeader field |
| 221 | */ |
| 222 | void |
| 223 | decodeNack(const Block& netPkt, const lp::Packet& firstPkt); |
| 224 | |
| 225 | private: |
| 226 | Options m_options; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 227 | LpFragmenter m_fragmenter; |
| 228 | LpReassembler m_reassembler; |
| 229 | lp::Sequence m_lastSeqNo; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 230 | }; |
| 231 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 232 | inline const GenericLinkService::Options& |
| 233 | GenericLinkService::getOptions() const |
| 234 | { |
| 235 | return m_options; |
| 236 | } |
| 237 | |
| 238 | inline void |
| 239 | GenericLinkService::setOptions(const GenericLinkService::Options& options) |
| 240 | { |
| 241 | m_options = options; |
| 242 | } |
| 243 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 244 | inline const GenericLinkService::Counters& |
| 245 | GenericLinkService::getCounters() const |
| 246 | { |
| 247 | return *this; |
| 248 | } |
| 249 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 250 | } // namespace face |
| 251 | } // namespace nfd |
| 252 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 253 | #endif // NFD_DAEMON_FACE_GENERIC_LINK_SERVICE_HPP |