blob: d19f7993b07ac98fd0bc3384db1755f0d8df15fa [file] [log] [blame]
Eric Newberry4c3e6b82015-11-10 16:48:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
ashiqopu77d0bfd2019-02-20 20:37:31 +00003 * Copyright (c) 2014-2019, 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#include "lp-reassembler.hpp"
27#include "link-service.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/global.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040029
Eric Newberry4c3e6b82015-11-10 16:48:42 -070030#include <numeric>
31
32namespace nfd {
33namespace face {
34
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(LpReassembler);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070036
Eric Newberry4c3e6b82015-11-10 16:48:42 -070037LpReassembler::LpReassembler(const LpReassembler::Options& options, const LinkService* linkService)
38 : m_options(options)
39 , m_linkService(linkService)
40{
41}
42
43std::tuple<bool, Block, lp::Packet>
ashiqopu77d0bfd2019-02-20 20:37:31 +000044LpReassembler::receiveFragment(EndpointId remoteEndpoint, const lp::Packet& packet)
Eric Newberry4c3e6b82015-11-10 16:48:42 -070045{
46 BOOST_ASSERT(packet.has<lp::FragmentField>());
47
48 static auto FALSE_RETURN = std::make_tuple(false, Block(), lp::Packet());
49
50 // read and check FragIndex and FragCount
51 uint64_t fragIndex = 0;
52 uint64_t fragCount = 1;
53 if (packet.has<lp::FragIndexField>()) {
54 fragIndex = packet.get<lp::FragIndexField>();
55 }
56 if (packet.has<lp::FragCountField>()) {
57 fragCount = packet.get<lp::FragCountField>();
58 }
59
60 if (fragIndex >= fragCount) {
61 NFD_LOG_FACE_WARN("reassembly error, FragIndex>=FragCount: DROP");
62 return FALSE_RETURN;
63 }
64
65 if (fragCount > m_options.nMaxFragments) {
66 NFD_LOG_FACE_WARN("reassembly error, FragCount over limit: DROP");
67 return FALSE_RETURN;
68 }
69
70 // check for fast path
71 if (fragIndex == 0 && fragCount == 1) {
72 ndn::Buffer::const_iterator fragBegin, fragEnd;
73 std::tie(fragBegin, fragEnd) = packet.get<lp::FragmentField>();
74 Block netPkt(&*fragBegin, std::distance(fragBegin, fragEnd));
75 return std::make_tuple(true, netPkt, packet);
76 }
77
78 // check Sequence and compute message identifier
79 if (!packet.has<lp::SequenceField>()) {
80 NFD_LOG_FACE_WARN("reassembly error, Sequence missing: DROP");
81 return FALSE_RETURN;
82 }
83 lp::Sequence messageIdentifier = packet.get<lp::SequenceField>() - fragIndex;
84 Key key = std::make_tuple(remoteEndpoint, messageIdentifier);
85
86 // add to PartialPacket
87 PartialPacket& pp = m_partialPackets[key];
88 if (pp.fragCount == 0) { // new PartialPacket
89 pp.fragCount = fragCount;
90 pp.nReceivedFragments = 0;
91 pp.fragments.resize(fragCount);
92 }
93 else {
94 if (fragCount != pp.fragCount) {
95 NFD_LOG_FACE_WARN("reassembly error, FragCount changed: DROP");
96 return FALSE_RETURN;
97 }
98 }
99
100 if (pp.fragments[fragIndex].has<lp::SequenceField>()) {
101 NFD_LOG_FACE_TRACE("fragment already received: DROP");
102 return FALSE_RETURN;
103 }
104
105 pp.fragments[fragIndex] = packet;
106 ++pp.nReceivedFragments;
107
108 // check complete condition
109 if (pp.nReceivedFragments == pp.fragCount) {
110 Block reassembled = doReassembly(key);
111 lp::Packet firstFrag(std::move(pp.fragments[0]));
112 m_partialPackets.erase(key);
113 return std::make_tuple(true, reassembled, firstFrag);
114 }
115
116 // set drop timer
Davide Pesavento3dade002019-03-19 11:29:56 -0600117 pp.dropTimer = getScheduler().schedule(m_options.reassemblyTimeout, [=] { timeoutPartialPacket(key); });
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700118
119 return FALSE_RETURN;
120}
121
122Block
123LpReassembler::doReassembly(const Key& key)
124{
125 PartialPacket& pp = m_partialPackets[key];
126
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400127 size_t payloadSize = std::accumulate(pp.fragments.begin(), pp.fragments.end(), 0U,
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700128 [&] (size_t sum, const lp::Packet& pkt) -> size_t {
129 ndn::Buffer::const_iterator fragBegin, fragEnd;
130 std::tie(fragBegin, fragEnd) = pkt.get<lp::FragmentField>();
131 return sum + std::distance(fragBegin, fragEnd);
132 });
133
134 ndn::Buffer fragBuffer(payloadSize);
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400135 auto it = fragBuffer.begin();
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700136
137 for (const lp::Packet& frag : pp.fragments) {
138 ndn::Buffer::const_iterator fragBegin, fragEnd;
139 std::tie(fragBegin, fragEnd) = frag.get<lp::FragmentField>();
140 it = std::copy(fragBegin, fragEnd, it);
141 }
142
143 return Block(&*(fragBuffer.cbegin()), std::distance(fragBuffer.cbegin(), fragBuffer.cend()));
144}
145
146void
147LpReassembler::timeoutPartialPacket(const Key& key)
148{
149 auto it = m_partialPackets.find(key);
150 if (it == m_partialPackets.end()) {
151 return;
152 }
153
154 this->beforeTimeout(std::get<0>(key), it->second.nReceivedFragments);
155 m_partialPackets.erase(it);
156}
157
158std::ostream&
159operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh)
160{
161 if (flh.obj.getLinkService() == nullptr) {
162 os << "[id=0,local=unknown,remote=unknown] ";
163 }
164 else {
165 os << FaceLogHelper<LinkService>(*flh.obj.getLinkService());
166 }
167 return os;
168}
169
170} // namespace face
171} // namespace nfd