lp-reassembler.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2023, 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 #include "lp-reassembler.hpp"
27 #include "common/global.hpp"
28 #include "link-service.hpp"
29 
30 #include <ndn-cxx/lp/fields.hpp>
31 
32 #include <numeric>
33 
34 namespace nfd::face {
35 
36 NFD_LOG_INIT(LpReassembler);
37 
39  : m_options(options)
40  , m_linkService(linkService)
41 {
42 }
43 
44 std::tuple<bool, Block, lp::Packet>
45 LpReassembler::receiveFragment(const EndpointId& remoteEndpoint, const lp::Packet& packet)
46 {
47  BOOST_ASSERT(packet.has<lp::FragmentField>());
48 
49  // read and check FragIndex and FragCount
50  uint64_t fragIndex = 0;
51  uint64_t fragCount = 1;
52  if (packet.has<lp::FragIndexField>()) {
53  fragIndex = packet.get<lp::FragIndexField>();
54  }
55  if (packet.has<lp::FragCountField>()) {
56  fragCount = packet.get<lp::FragCountField>();
57  }
58 
59  if (fragIndex >= fragCount) {
60  NFD_LOG_FACE_WARN("reassembly error, FragIndex>=FragCount: DROP");
61  return {false, {}, {}};
62  }
63 
64  if (fragCount > m_options.nMaxFragments) {
65  NFD_LOG_FACE_WARN("reassembly error, FragCount over limit: DROP");
66  return {false, {}, {}};
67  }
68 
69  // check for fast path
70  if (fragIndex == 0 && fragCount == 1) {
71  auto frag = packet.get<lp::FragmentField>();
72  Block netPkt({frag.first, frag.second});
73  return {true, netPkt, packet};
74  }
75 
76  // check Sequence and compute message identifier
77  if (!packet.has<lp::SequenceField>()) {
78  NFD_LOG_FACE_WARN("reassembly error, Sequence missing: DROP");
79  return {false, {}, {}};
80  }
81 
82  lp::Sequence messageIdentifier = packet.get<lp::SequenceField>() - fragIndex;
83  Key key(remoteEndpoint, messageIdentifier);
84 
85  // add to PartialPacket
86  PartialPacket& pp = m_partialPackets[key];
87  if (pp.fragCount == 0) { // new PartialPacket
88  pp.fragCount = fragCount;
89  pp.nReceivedFragments = 0;
90  pp.fragments.resize(fragCount);
91  }
92  else {
93  if (fragCount != pp.fragCount) {
94  NFD_LOG_FACE_WARN("reassembly error, FragCount changed: DROP");
95  return {false, {}, {}};
96  }
97  }
98 
99  if (pp.fragments[fragIndex].has<lp::SequenceField>()) {
100  NFD_LOG_FACE_TRACE("fragment already received: DROP");
101  return {false, {}, {}};
102  }
103 
104  pp.fragments[fragIndex] = packet;
105  ++pp.nReceivedFragments;
106 
107  // check complete condition
108  if (pp.nReceivedFragments == pp.fragCount) {
109  Block reassembled = doReassembly(key);
110  lp::Packet firstFrag(std::move(pp.fragments[0]));
111  m_partialPackets.erase(key);
112  return {true, reassembled, firstFrag};
113  }
114 
115  // set drop timer
116  pp.dropTimer = getScheduler().schedule(m_options.reassemblyTimeout, [=] { timeoutPartialPacket(key); });
117 
118  return {false, {}, {}};
119 }
120 
121 Block
122 LpReassembler::doReassembly(const Key& key)
123 {
124  PartialPacket& pp = m_partialPackets[key];
125 
126  size_t payloadSize = std::accumulate(pp.fragments.begin(), pp.fragments.end(), 0U,
127  [&] (size_t sum, const lp::Packet& pkt) -> size_t {
128  auto [fragBegin, fragEnd] = pkt.get<lp::FragmentField>();
129  return sum + std::distance(fragBegin, fragEnd);
130  });
131 
132  ndn::Buffer fragBuffer(payloadSize);
133  auto it = fragBuffer.begin();
134  for (const lp::Packet& frag : pp.fragments) {
135  auto [fragBegin, fragEnd] = frag.get<lp::FragmentField>();
136  it = std::copy(fragBegin, fragEnd, it);
137  }
138  return Block(fragBuffer);
139 }
140 
141 void
142 LpReassembler::timeoutPartialPacket(const Key& key)
143 {
144  auto it = m_partialPackets.find(key);
145  if (it == m_partialPackets.end()) {
146  return;
147  }
148 
149  this->beforeTimeout(std::get<0>(key), it->second.nReceivedFragments);
150  m_partialPackets.erase(it);
151 }
152 
153 std::ostream&
154 operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh)
155 {
156  if (flh.obj.getLinkService() == nullptr) {
157  os << "[id=0,local=unknown,remote=unknown] ";
158  }
159  else {
160  os << FaceLogHelper<LinkService>(*flh.obj.getLinkService());
161  }
162  return os;
163 }
164 
165 } // namespace nfd::face
For internal use by FaceLogging macros.
std::tuple< bool, Block, lp::Packet > receiveFragment(const EndpointId &remoteEndpoint, const lp::Packet &packet)
Adds received fragment to the buffer.
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)
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
std::ostream & operator<<(std::ostream &os, const FaceLogHelper< Face > &flh)
Definition: face.cpp:63
std::variant< std::monostate, ethernet::Address, udp::Endpoint > EndpointId
Identifies a remote endpoint on the link.
Definition: face-common.hpp:78
ndn::Scheduler & getScheduler()
Returns the global Scheduler instance for the calling thread.
Definition: global.cpp:45
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.