blob: 1908ccc319450f36e88621df2a56e785bf43d6d1 [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 Pesavento9a63bf22023-11-11 17:12:51 -05003 * Copyright (c) 2014-2023, 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>
Davide Pesavento9a63bf22023-11-11 17:12:51 -050032#include <ndn-cxx/lp/sequence.hpp>
Eric Newberry4c3e6b82015-11-10 16:48:42 -070033
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::face {
Eric Newberry4c3e6b82015-11-10 16:48:42 -070035
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040036/**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040037 * \brief Reassembles fragmented network-layer packets.
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040038 * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2
Eric Newberry4c3e6b82015-11-10 16:48:42 -070039 */
40class LpReassembler : noncopyable
41{
42public:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040043 /** \brief %Options that control the behavior of LpReassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070044 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040045 struct Options
Eric Newberry4c3e6b82015-11-10 16:48:42 -070046 {
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040047 /** \brief Maximum number of fragments in a packet.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070048 *
49 * LpPackets with FragCount over this limit are dropped.
50 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040051 size_t nMaxFragments = 400;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070052
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040053 /** \brief Timeout before a partially reassembled packet is dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070054 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040055 time::nanoseconds reassemblyTimeout = 500_ms;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070056 };
57
58 explicit
Davide Pesaventoe4b22382018-06-10 14:37:24 -040059 LpReassembler(const Options& options, const LinkService* linkService = nullptr);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070060
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040061 /** \brief Set options for reassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070062 */
63 void
64 setOptions(const Options& options);
65
66 /** \return LinkService that owns this instance
67 *
68 * This is only used for logging, and may be nullptr.
69 */
70 const LinkService*
71 getLinkService() const;
72
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040073 /** \brief Adds received fragment to the buffer.
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040074 * \param remoteEndpoint endpoint that sent the packet
75 * \param packet received fragment; must have Fragment field
76 * \return a tuple containing:
77 * whether a network-layer packet has been completely received,
Eric Newberry4c3e6b82015-11-10 16:48:42 -070078 * the reassembled network-layer packet,
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040079 * the first fragment for inspecting other NDNLPv2 headers
Eric Newberry4c3e6b82015-11-10 16:48:42 -070080 * \throw tlv::Error packet is malformed
81 */
82 std::tuple<bool, Block, lp::Packet>
Teng Liangd94b7b32022-07-10 21:29:37 +080083 receiveFragment(const EndpointId& remoteEndpoint, const lp::Packet& packet);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070084
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040085 /** \brief Count of partial packets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070086 */
87 size_t
88 size() const;
89
Teng Liangd94b7b32022-07-10 21:29:37 +080090 /**
91 * \brief Notifies before a partial packet is dropped due to timeout.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070092 *
Teng Liangd94b7b32022-07-10 21:29:37 +080093 * If a partial packet is incomplete and no new fragments are received within
94 * Options::reassemblyTimeout, the partial packet is dropped due to timeout.
95 * Before dropping the packet, this signal is emitted with the remote endpoint
96 * and the number of fragments being dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070097 */
ashiqopu77d0bfd2019-02-20 20:37:31 +000098 signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070099
100private:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400101 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400102 * \brief Holds all fragments of a packet until reassembled.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700103 */
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
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400112 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400113 * \brief Index key for PartialPackets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700114 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400115 using Key = std::tuple<
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400116 EndpointId, // remote endpoint
117 lp::Sequence // message identifier (sequence number of the first fragment)
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400118 >;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700119
120 Block
121 doReassembly(const Key& key);
122
123 void
124 timeoutPartialPacket(const Key& key);
125
126private:
127 Options m_options;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700128 const LinkService* m_linkService;
Davide Pesavento3dade002019-03-19 11:29:56 -0600129 std::map<Key, PartialPacket> m_partialPackets;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700130};
131
132std::ostream&
133operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh);
134
135inline void
136LpReassembler::setOptions(const Options& options)
137{
138 m_options = options;
139}
140
141inline const LinkService*
142LpReassembler::getLinkService() const
143{
144 return m_linkService;
145}
146
147inline size_t
148LpReassembler::size() const
149{
150 return m_partialPackets.size();
151}
152
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400153} // namespace nfd::face
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700154
155#endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP