blob: 32b7e15967552a7973ef6540f1f2028ca05ef869 [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/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, 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
Davide Pesaventocb425e82019-07-14 21:48:22 -040029#include "face-common.hpp"
Eric Newberry4c3e6b82015-11-10 16:48:42 -070030
31#include <ndn-cxx/lp/packet.hpp>
32
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::face {
Eric Newberry4c3e6b82015-11-10 16:48:42 -070034
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040035/**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040036 * \brief Reassembles fragmented network-layer packets.
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040037 * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2
Eric Newberry4c3e6b82015-11-10 16:48:42 -070038 */
39class LpReassembler : noncopyable
40{
41public:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040042 /** \brief %Options that control the behavior of LpReassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070043 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040044 struct Options
Eric Newberry4c3e6b82015-11-10 16:48:42 -070045 {
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040046 /** \brief Maximum number of fragments in a packet.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070047 *
48 * LpPackets with FragCount over this limit are dropped.
49 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040050 size_t nMaxFragments = 400;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070051
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040052 /** \brief Timeout before a partially reassembled packet is dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070053 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040054 time::nanoseconds reassemblyTimeout = 500_ms;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070055 };
56
57 explicit
Davide Pesaventoe4b22382018-06-10 14:37:24 -040058 LpReassembler(const Options& options, const LinkService* linkService = nullptr);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070059
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040060 /** \brief Set options for reassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070061 */
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 Pesaventoaa9e3b22022-10-21 17:00:07 -040072 /** \brief Adds received fragment to the buffer.
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040073 * \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 Newberry4c3e6b82015-11-10 16:48:42 -070077 * the reassembled network-layer packet,
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040078 * the first fragment for inspecting other NDNLPv2 headers
Eric Newberry4c3e6b82015-11-10 16:48:42 -070079 * \throw tlv::Error packet is malformed
80 */
81 std::tuple<bool, Block, lp::Packet>
Teng Liangd94b7b32022-07-10 21:29:37 +080082 receiveFragment(const EndpointId& remoteEndpoint, const lp::Packet& packet);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070083
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040084 /** \brief Count of partial packets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070085 */
86 size_t
87 size() const;
88
Teng Liangd94b7b32022-07-10 21:29:37 +080089 /**
90 * \brief Notifies before a partial packet is dropped due to timeout.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070091 *
Teng Liangd94b7b32022-07-10 21:29:37 +080092 * If a partial packet is incomplete and no new fragments are received within
93 * Options::reassemblyTimeout, the partial packet is dropped due to timeout.
94 * Before dropping the packet, this signal is emitted with the remote endpoint
95 * and the number of fragments being dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070096 */
ashiqopu77d0bfd2019-02-20 20:37:31 +000097 signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070098
99private:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400100 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400101 * \brief Holds all fragments of a packet until reassembled.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700102 */
103 struct PartialPacket
104 {
105 std::vector<lp::Packet> fragments;
106 size_t fragCount; ///< total fragments
107 size_t nReceivedFragments; ///< number of received fragments
108 scheduler::ScopedEventId dropTimer;
109 };
110
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400111 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400112 * \brief Index key for PartialPackets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700113 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400114 using Key = std::tuple<
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400115 EndpointId, // remote endpoint
116 lp::Sequence // message identifier (sequence number of the first fragment)
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400117 >;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700118
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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400152} // namespace nfd::face
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700153
154#endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP