lp-reassembler.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2022, Regents of the University of California,
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 "face-common.hpp"
30 
31 #include <ndn-cxx/lp/packet.hpp>
32 
33 namespace nfd::face {
34 
39 class LpReassembler : noncopyable
40 {
41 public:
44  struct Options
45  {
50  size_t nMaxFragments = 400;
51 
54  time::nanoseconds reassemblyTimeout = 500_ms;
55  };
56 
57  explicit
58  LpReassembler(const Options& options, const LinkService* linkService = nullptr);
59 
62  void
63  setOptions(const Options& options);
64 
69  const LinkService*
70  getLinkService() const;
71 
81  std::tuple<bool, Block, lp::Packet>
82  receiveFragment(const EndpointId& remoteEndpoint, const lp::Packet& packet);
83 
86  size_t
87  size() const;
88 
97  signal::Signal<LpReassembler, EndpointId, size_t> beforeTimeout;
98 
99 private:
103  struct PartialPacket
104  {
105  std::vector<lp::Packet> fragments;
106  size_t fragCount;
107  size_t nReceivedFragments;
108  scheduler::ScopedEventId dropTimer;
109  };
110 
114  using Key = std::tuple<
115  EndpointId, // remote endpoint
116  lp::Sequence // message identifier (sequence number of the first fragment)
117  >;
118 
119  Block
120  doReassembly(const Key& key);
121 
122  void
123  timeoutPartialPacket(const Key& key);
124 
125 private:
126  Options m_options;
127  const LinkService* m_linkService;
128  std::map<Key, PartialPacket> m_partialPackets;
129 };
130 
131 std::ostream&
132 operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh);
133 
134 inline void
136 {
137  m_options = options;
138 }
139 
140 inline const LinkService*
142 {
143  return m_linkService;
144 }
145 
146 inline size_t
148 {
149  return m_partialPackets.size();
150 }
151 
152 } // namespace nfd::face
153 
154 #endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP
Reassembles fragmented network-layer packets.
std::tuple< bool, Block, lp::Packet > receiveFragment(const EndpointId &remoteEndpoint, const lp::Packet &packet)
Adds received fragment to the buffer.
const LinkService * getLinkService() const
signal::Signal< LpReassembler, EndpointId, size_t > beforeTimeout
Notifies before a partial packet is dropped due to timeout.
LpReassembler(const Options &options, const LinkService *linkService=nullptr)
void setOptions(const Options &options)
Set options for reassembler.
size_t size() const
Count of partial packets.
std::ostream & operator<<(std::ostream &os, const FaceLogHelper< Face > &flh)
Definition: face.cpp:45
std::variant< std::monostate, ethernet::Address, udp::Endpoint > EndpointId
Identifies a remote endpoint on the link.
Definition: face-common.hpp:77
Options that control the behavior of LpReassembler.
time::nanoseconds reassemblyTimeout
Timeout before a partially reassembled packet is dropped.
size_t nMaxFragments
Maximum number of fragments in a packet.