Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 2 | /* |
ashiqopu | 77d0bfd | 2019-02-20 20:37:31 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -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_LP_REASSEMBLER_HPP |
| 27 | #define NFD_DAEMON_FACE_LP_REASSEMBLER_HPP |
| 28 | |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 29 | #include "face-common.hpp" |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 30 | |
| 31 | #include <ndn-cxx/lp/packet.hpp> |
| 32 | |
| 33 | namespace nfd { |
| 34 | namespace face { |
| 35 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 36 | /** \brief reassembles fragmented network-layer packets |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 37 | * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2 |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 38 | */ |
| 39 | class LpReassembler : noncopyable |
| 40 | { |
| 41 | public: |
| 42 | /** \brief Options that control the behavior of LpReassembler |
| 43 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 44 | struct Options |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 45 | { |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 46 | /** \brief maximum number of fragments in a packet |
| 47 | * |
| 48 | * LpPackets with FragCount over this limit are dropped. |
| 49 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 50 | size_t nMaxFragments = 400; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 51 | |
| 52 | /** \brief timeout before a partially reassembled packet is dropped |
| 53 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 54 | time::nanoseconds reassemblyTimeout = 500_ms; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | explicit |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 58 | LpReassembler(const Options& options, const LinkService* linkService = nullptr); |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 59 | |
| 60 | /** \brief set options for reassembler |
| 61 | */ |
| 62 | void |
| 63 | setOptions(const Options& options); |
| 64 | |
| 65 | /** \return LinkService that owns this instance |
| 66 | * |
| 67 | * This is only used for logging, and may be nullptr. |
| 68 | */ |
| 69 | const LinkService* |
| 70 | getLinkService() const; |
| 71 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 72 | /** \brief adds received fragment to the buffer |
| 73 | * \param remoteEndpoint endpoint that sent the packet |
| 74 | * \param packet received fragment; must have Fragment field |
| 75 | * \return a tuple containing: |
| 76 | * whether a network-layer packet has been completely received, |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 77 | * the reassembled network-layer packet, |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 78 | * the first fragment for inspecting other NDNLPv2 headers |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 79 | * \throw tlv::Error packet is malformed |
| 80 | */ |
| 81 | std::tuple<bool, Block, lp::Packet> |
ashiqopu | 77d0bfd | 2019-02-20 20:37:31 +0000 | [diff] [blame] | 82 | receiveFragment(EndpointId remoteEndpoint, const lp::Packet& packet); |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 83 | |
| 84 | /** \brief count of partial packets |
| 85 | */ |
| 86 | size_t |
| 87 | size() const; |
| 88 | |
| 89 | /** \brief signals before a partial packet is dropped due to timeout |
| 90 | * |
| 91 | * If a partial packet is incomplete and no new fragment is received |
| 92 | * within Options::reassemblyTimeout, it would be dropped due to timeout. |
| 93 | * Before it's erased, this signal is emitted with the remote endpoint, |
| 94 | * and the number of fragments being dropped. |
| 95 | */ |
ashiqopu | 77d0bfd | 2019-02-20 20:37:31 +0000 | [diff] [blame] | 96 | signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 97 | |
| 98 | private: |
| 99 | /** \brief holds all fragments of packet until reassembled |
| 100 | */ |
| 101 | struct PartialPacket |
| 102 | { |
| 103 | std::vector<lp::Packet> fragments; |
| 104 | size_t fragCount; ///< total fragments |
| 105 | size_t nReceivedFragments; ///< number of received fragments |
| 106 | scheduler::ScopedEventId dropTimer; |
| 107 | }; |
| 108 | |
| 109 | /** \brief index key for PartialPackets |
| 110 | */ |
| 111 | typedef std::tuple< |
ashiqopu | 77d0bfd | 2019-02-20 20:37:31 +0000 | [diff] [blame] | 112 | EndpointId, // remoteEndpoint |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 113 | lp::Sequence // message identifier (sequence of the first fragment) |
| 114 | > Key; |
| 115 | |
| 116 | Block |
| 117 | doReassembly(const Key& key); |
| 118 | |
| 119 | void |
| 120 | timeoutPartialPacket(const Key& key); |
| 121 | |
| 122 | private: |
| 123 | Options m_options; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 124 | const LinkService* m_linkService; |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 125 | std::map<Key, PartialPacket> m_partialPackets; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 126 | }; |
| 127 | |
| 128 | std::ostream& |
| 129 | operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh); |
| 130 | |
| 131 | inline void |
| 132 | LpReassembler::setOptions(const Options& options) |
| 133 | { |
| 134 | m_options = options; |
| 135 | } |
| 136 | |
| 137 | inline const LinkService* |
| 138 | LpReassembler::getLinkService() const |
| 139 | { |
| 140 | return m_linkService; |
| 141 | } |
| 142 | |
| 143 | inline size_t |
| 144 | LpReassembler::size() const |
| 145 | { |
| 146 | return m_partialPackets.size(); |
| 147 | } |
| 148 | |
| 149 | } // namespace face |
| 150 | } // namespace nfd |
| 151 | |
| 152 | #endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP |