blob: dbb9b9fb894a55b8f41ceaeeac19aa36256a4682 [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 Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, 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>
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050033#include <ndn-cxx/util/scheduler.hpp>
34
35#include <map>
Eric Newberry4c3e6b82015-11-10 16:48:42 -070036
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040037namespace nfd::face {
Eric Newberry4c3e6b82015-11-10 16:48:42 -070038
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040039/**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040040 * \brief Reassembles fragmented network-layer packets.
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040041 * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2
Eric Newberry4c3e6b82015-11-10 16:48:42 -070042 */
43class LpReassembler : noncopyable
44{
45public:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040046 /** \brief %Options that control the behavior of LpReassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070047 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040048 struct Options
Eric Newberry4c3e6b82015-11-10 16:48:42 -070049 {
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040050 /** \brief Maximum number of fragments in a packet.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070051 *
52 * LpPackets with FragCount over this limit are dropped.
53 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040054 size_t nMaxFragments = 400;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070055
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040056 /** \brief Timeout before a partially reassembled packet is dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070057 */
Davide Pesaventoe4b22382018-06-10 14:37:24 -040058 time::nanoseconds reassemblyTimeout = 500_ms;
Eric Newberry4c3e6b82015-11-10 16:48:42 -070059 };
60
61 explicit
Davide Pesaventoe4b22382018-06-10 14:37:24 -040062 LpReassembler(const Options& options, const LinkService* linkService = nullptr);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070063
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040064 /** \brief Set options for reassembler.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070065 */
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
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040076 /** \brief Adds received fragment to the buffer.
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040077 * \param remoteEndpoint endpoint that sent the packet
78 * \param packet received fragment; must have Fragment field
79 * \return a tuple containing:
80 * whether a network-layer packet has been completely received,
Eric Newberry4c3e6b82015-11-10 16:48:42 -070081 * the reassembled network-layer packet,
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040082 * the first fragment for inspecting other NDNLPv2 headers
Eric Newberry4c3e6b82015-11-10 16:48:42 -070083 * \throw tlv::Error packet is malformed
84 */
85 std::tuple<bool, Block, lp::Packet>
Teng Liangd94b7b32022-07-10 21:29:37 +080086 receiveFragment(const EndpointId& remoteEndpoint, const lp::Packet& packet);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070087
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040088 /** \brief Count of partial packets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070089 */
90 size_t
91 size() const;
92
Teng Liangd94b7b32022-07-10 21:29:37 +080093 /**
94 * \brief Notifies before a partial packet is dropped due to timeout.
Eric Newberry4c3e6b82015-11-10 16:48:42 -070095 *
Teng Liangd94b7b32022-07-10 21:29:37 +080096 * If a partial packet is incomplete and no new fragments are received within
97 * Options::reassemblyTimeout, the partial packet is dropped due to timeout.
98 * Before dropping the packet, this signal is emitted with the remote endpoint
99 * and the number of fragments being dropped.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700100 */
ashiqopu77d0bfd2019-02-20 20:37:31 +0000101 signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700102
103private:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400104 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400105 * \brief Holds all fragments of a packet until reassembled.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700106 */
107 struct PartialPacket
108 {
109 std::vector<lp::Packet> fragments;
110 size_t fragCount; ///< total fragments
111 size_t nReceivedFragments; ///< number of received fragments
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500112 ndn::scheduler::ScopedEventId dropTimer;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700113 };
114
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400115 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400116 * \brief Index key for PartialPackets.
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700117 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400118 using Key = std::tuple<
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400119 EndpointId, // remote endpoint
120 lp::Sequence // message identifier (sequence number of the first fragment)
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400121 >;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700122
123 Block
124 doReassembly(const Key& key);
125
126 void
127 timeoutPartialPacket(const Key& key);
128
129private:
130 Options m_options;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700131 const LinkService* m_linkService;
Davide Pesavento3dade002019-03-19 11:29:56 -0600132 std::map<Key, PartialPacket> m_partialPackets;
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700133};
134
135std::ostream&
136operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh);
137
138inline void
139LpReassembler::setOptions(const Options& options)
140{
141 m_options = options;
142}
143
144inline const LinkService*
145LpReassembler::getLinkService() const
146{
147 return m_linkService;
148}
149
150inline size_t
151LpReassembler::size() const
152{
153 return m_partialPackets.size();
154}
155
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400156} // namespace nfd::face
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700157
158#endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP