blob: 2c5ff91c3602fc5583ab170652e7448867832d87 [file] [log] [blame]
Eric Newberry4c3e6b82015-11-10 16:48:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoe4b22382018-06-10 14:37:24 -04002/*
ashiqopu77d0bfd2019-02-20 20:37:31 +00003 * Copyright (c) 2014-2019, Regents of the University of California,
Eric Newberry4c3e6b82015-11-10 16:48:42 -07004 * 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
Eric Newberry4c3e6b82015-11-10 16:48:42 -070029#include "face-log.hpp"
30#include "transport.hpp"
31
32#include <ndn-cxx/lp/packet.hpp>
33
34namespace nfd {
35namespace face {
36
37class LinkService;
38
39/** \brief reassembles fragmented network-layer packets
Davide Pesaventoe4b22382018-06-10 14:37:24 -040040 * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2
Eric Newberry4c3e6b82015-11-10 16:48:42 -070041 */
42class LpReassembler : noncopyable
43{
44public:
45 /** \brief Options that control the behavior of LpReassembler
46 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040047 struct Options
Eric Newberry4c3e6b82015-11-10 16:48:42 -070048 {
Eric Newberry4c3e6b82015-11-10 16:48:42 -070049 /** \brief maximum number of fragments in a packet
50 *
51 * LpPackets with FragCount over this limit are dropped.
52 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040053 size_t nMaxFragments = 400;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070054
55 /** \brief timeout before a partially reassembled packet is dropped
56 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040057 time::nanoseconds reassemblyTimeout = 500_ms;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070058 };
59
60 explicit
Davide Pesaventoe4b22382018-06-10 14:37:24 -040061 LpReassembler(const Options& options, const LinkService* linkService = nullptr);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070062
63 /** \brief set options for reassembler
64 */
65 void
66 setOptions(const Options& options);
67
68 /** \return LinkService that owns this instance
69 *
70 * This is only used for logging, and may be nullptr.
71 */
72 const LinkService*
73 getLinkService() const;
74
75 /** \brief adds received fragment to buffer
76 * \param remoteEndpoint endpoint whose sends the packet
77 * \param packet received fragment;
78 * must have Fragment field
79 * \return whether network-layer packet has been completely received,
80 * the reassembled network-layer packet,
81 * and the first fragment for inspecting other NDNLPv2 headers
82 * \throw tlv::Error packet is malformed
83 */
84 std::tuple<bool, Block, lp::Packet>
ashiqopu77d0bfd2019-02-20 20:37:31 +000085 receiveFragment(EndpointId remoteEndpoint, const lp::Packet& packet);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070086
87 /** \brief count of partial packets
88 */
89 size_t
90 size() const;
91
92 /** \brief signals before a partial packet is dropped due to timeout
93 *
94 * If a partial packet is incomplete and no new fragment is received
95 * within Options::reassemblyTimeout, it would be dropped due to timeout.
96 * Before it's erased, this signal is emitted with the remote endpoint,
97 * and the number of fragments being dropped.
98 */
ashiqopu77d0bfd2019-02-20 20:37:31 +000099 signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700100
101private:
102 /** \brief holds all fragments of packet until reassembled
103 */
104 struct PartialPacket
105 {
106 std::vector<lp::Packet> fragments;
107 size_t fragCount; ///< total fragments
108 size_t nReceivedFragments; ///< number of received fragments
109 scheduler::ScopedEventId dropTimer;
110 };
111
112 /** \brief index key for PartialPackets
113 */
114 typedef std::tuple<
ashiqopu77d0bfd2019-02-20 20:37:31 +0000115 EndpointId, // remoteEndpoint
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700116 lp::Sequence // message identifier (sequence of the first fragment)
117 > Key;
118
119 Block
120 doReassembly(const Key& key);
121
122 void
123 timeoutPartialPacket(const Key& key);
124
125private:
126 Options m_options;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700127 const LinkService* m_linkService;
Davide Pesavento3dade002019-03-19 11:29:56 -0600128 std::map<Key, PartialPacket> m_partialPackets;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700129};
130
131std::ostream&
132operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh);
133
134inline void
135LpReassembler::setOptions(const Options& options)
136{
137 m_options = options;
138}
139
140inline const LinkService*
141LpReassembler::getLinkService() const
142{
143 return m_linkService;
144}
145
146inline size_t
147LpReassembler::size() const
148{
149 return m_partialPackets.size();
150}
151
152} // namespace face
153} // namespace nfd
154
155#endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP