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