lp-fragmenter.cpp
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 #include "lp-fragmenter.hpp"
27 #include "link-service.hpp"
28 
29 #include <ndn-cxx/encoding/tlv.hpp>
30 
31 namespace nfd::face {
32 
33 NFD_LOG_INIT(LpFragmenter);
34 
35 static_assert(lp::tlv::LpPacket < 253, "LpPacket TLV-TYPE must fit in 1 octet");
36 static_assert(lp::tlv::Sequence < 253, "Sequence TLV-TYPE must fit in 1 octet");
37 static_assert(lp::tlv::FragIndex < 253, "FragIndex TLV-TYPE must fit in 1 octet");
38 static_assert(lp::tlv::FragCount < 253, "FragCount TLV-TYPE must fit in 1 octet");
39 static_assert(lp::tlv::Fragment < 253, "Fragment TLV-TYPE must fit in 1 octet");
40 
44 constexpr size_t MAX_SINGLE_FRAG_OVERHEAD =
45  1 + 9 + // LpPacket TLV-TYPE and TLV-LENGTH
46  1 + 1 + 8 + // Sequence TLV
47  1 + 9; // Fragment TLV-TYPE and TLV-LENGTH
48 
52 constexpr size_t MAX_FRAG_OVERHEAD =
53  1 + 9 + // LpPacket TLV-TYPE and TLV-LENGTH
54  1 + 1 + 8 + // Sequence TLV
55  1 + 1 + 8 + // FragIndex TLV
56  1 + 1 + 8 + // FragCount TLV
57  1 + 9; // Fragment TLV-TYPE and TLV-LENGTH
58 
60  : m_options(options)
61  , m_linkService(linkService)
62 {
63 }
64 
65 void
67 {
68  m_options = options;
69 }
70 
71 const LinkService*
73 {
74  return m_linkService;
75 }
76 
77 std::tuple<bool, std::vector<lp::Packet>>
78 LpFragmenter::fragmentPacket(const lp::Packet& packet, size_t mtu)
79 {
80  BOOST_ASSERT(packet.has<lp::FragmentField>());
81  BOOST_ASSERT(!packet.has<lp::FragIndexField>());
82  BOOST_ASSERT(!packet.has<lp::FragCountField>());
83 
84  if (MAX_SINGLE_FRAG_OVERHEAD + packet.wireEncode().size() <= mtu) {
85  // fast path: fragmentation not needed
86  // To qualify for fast path, the packet must have space for adding a sequence number,
87  // because another NDNLPv2 feature may require the sequence number.
88  return {true, {packet}};
89  }
90 
91  auto [netPktBegin, netPktEnd] = packet.get<lp::FragmentField>();
92  size_t netPktSize = std::distance(netPktBegin, netPktEnd);
93 
94  // compute size of other NDNLPv2 headers to be placed on the first fragment
95  size_t firstHeaderSize = 0;
96  const auto& packetWire = packet.wireEncode();
97  if (packetWire.type() == lp::tlv::LpPacket) {
98  for (const auto& element : packetWire.elements()) {
99  if (element.type() != lp::tlv::Fragment) {
100  firstHeaderSize += element.size();
101  }
102  }
103  }
104 
105  // compute payload size
106  if (MAX_FRAG_OVERHEAD + firstHeaderSize + 1 > mtu) { // 1-octet fragment
107  NFD_LOG_FACE_WARN("fragmentation error, MTU too small for first fragment: DROP");
108  return {false, {}};
109  }
110  size_t firstPayloadSize = std::min(netPktSize, mtu - firstHeaderSize - MAX_FRAG_OVERHEAD);
111  size_t payloadSize = mtu - MAX_FRAG_OVERHEAD;
112  size_t fragCount = 1 + ((netPktSize - firstPayloadSize) / payloadSize) +
113  ((netPktSize - firstPayloadSize) % payloadSize != 0);
114 
115  // compute FragCount
116  if (fragCount > m_options.nMaxFragments) {
117  NFD_LOG_FACE_WARN("fragmentation error, FragCount over limit: DROP");
118  return {false, {}};
119  }
120 
121  // populate fragments
122  std::vector<lp::Packet> frags(fragCount);
123  frags.front() = packet; // copy input packet to preserve other NDNLPv2 fields
124  size_t fragIndex = 0;
125  auto fragBegin = netPktBegin,
126  fragEnd = fragBegin + firstPayloadSize;
127  while (fragBegin < netPktEnd) {
128  lp::Packet& frag = frags[fragIndex];
129  frag.add<lp::FragIndexField>(fragIndex);
130  frag.add<lp::FragCountField>(fragCount);
131  frag.set<lp::FragmentField>({fragBegin, fragEnd});
132  BOOST_ASSERT(frag.wireEncode().size() <= mtu);
133 
134  ++fragIndex;
135  fragBegin = fragEnd;
136  fragEnd = std::min(netPktEnd, fragBegin + payloadSize);
137  }
138  BOOST_ASSERT(fragIndex == fragCount);
139 
140  return {true, frags};
141 }
142 
143 std::ostream&
144 operator<<(std::ostream& os, const FaceLogHelper<LpFragmenter>& flh)
145 {
146  if (flh.obj.getLinkService() == nullptr) {
147  os << "[id=0,local=unknown,remote=unknown] ";
148  }
149  else {
150  os << FaceLogHelper<LinkService>(*flh.obj.getLinkService());
151  }
152  return os;
153 }
154 
155 } // namespace nfd::face
For internal use by FaceLogging macros.
void setOptions(const Options &options)
Set options for fragmenter.
LpFragmenter(const Options &options, const LinkService *linkService=nullptr)
std::tuple< bool, std::vector< lp::Packet > > fragmentPacket(const lp::Packet &packet, size_t mtu)
Fragments a network-layer packet into link-layer packets.
const LinkService * getLinkService() const
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
std::ostream & operator<<(std::ostream &os, const FaceLogHelper< Face > &flh)
Definition: face.cpp:45
constexpr size_t MAX_SINGLE_FRAG_OVERHEAD
Maximum overhead on a single fragment, not counting other NDNLPv2 headers.
constexpr size_t MAX_FRAG_OVERHEAD
Maximum overhead of adding fragmentation to payload, not counting other NDNLPv2 headers.
Options that control the behavior of LpFragmenter.
size_t nMaxFragments
Maximum number of fragments in a packet.