blob: cd6f8739601a4bcb303f8f3e4c183527b07f1965 [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/*
3 * Copyright (c) 2014-2018, 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 Pesaventoa3148082018-04-12 18:21:54 -040028
Eric Newberry4c3e6b82015-11-10 16:48:42 -070029#include <numeric>
30
31namespace nfd {
32namespace face {
33
Davide Pesaventoa3148082018-04-12 18:21:54 -040034NFD_LOG_INIT(LpReassembler);
Eric Newberry4c3e6b82015-11-10 16:48:42 -070035
Eric Newberry4c3e6b82015-11-10 16:48:42 -070036LpReassembler::LpReassembler(const LpReassembler::Options& options, const LinkService* linkService)
37 : m_options(options)
38 , m_linkService(linkService)
39{
40}
41
42std::tuple<bool, Block, lp::Packet>
43LpReassembler::receiveFragment(Transport::EndpointId remoteEndpoint, const lp::Packet& packet)
44{
45 BOOST_ASSERT(packet.has<lp::FragmentField>());
46
47 static auto FALSE_RETURN = std::make_tuple(false, Block(), lp::Packet());
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_RETURN;
62 }
63
64 if (fragCount > m_options.nMaxFragments) {
65 NFD_LOG_FACE_WARN("reassembly error, FragCount over limit: DROP");
66 return FALSE_RETURN;
67 }
68
69 // check for fast path
70 if (fragIndex == 0 && fragCount == 1) {
71 ndn::Buffer::const_iterator fragBegin, fragEnd;
72 std::tie(fragBegin, fragEnd) = packet.get<lp::FragmentField>();
73 Block netPkt(&*fragBegin, std::distance(fragBegin, fragEnd));
74 return std::make_tuple(true, netPkt, packet);
75 }
76
77 // check Sequence and compute message identifier
78 if (!packet.has<lp::SequenceField>()) {
79 NFD_LOG_FACE_WARN("reassembly error, Sequence missing: DROP");
80 return FALSE_RETURN;
81 }
82 lp::Sequence messageIdentifier = packet.get<lp::SequenceField>() - fragIndex;
83 Key key = std::make_tuple(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_RETURN;
96 }
97 }
98
99 if (pp.fragments[fragIndex].has<lp::SequenceField>()) {
100 NFD_LOG_FACE_TRACE("fragment already received: DROP");
101 return FALSE_RETURN;
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 std::make_tuple(true, reassembled, firstFrag);
113 }
114
115 // set drop timer
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400116 pp.dropTimer = scheduler::schedule(m_options.reassemblyTimeout, [=] { timeoutPartialPacket(key); });
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700117
118 return FALSE_RETURN;
119}
120
121Block
122LpReassembler::doReassembly(const Key& key)
123{
124 PartialPacket& pp = m_partialPackets[key];
125
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400126 size_t payloadSize = std::accumulate(pp.fragments.begin(), pp.fragments.end(), 0U,
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700127 [&] (size_t sum, const lp::Packet& pkt) -> size_t {
128 ndn::Buffer::const_iterator fragBegin, fragEnd;
129 std::tie(fragBegin, fragEnd) = pkt.get<lp::FragmentField>();
130 return sum + std::distance(fragBegin, fragEnd);
131 });
132
133 ndn::Buffer fragBuffer(payloadSize);
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400134 auto it = fragBuffer.begin();
Eric Newberry4c3e6b82015-11-10 16:48:42 -0700135
136 for (const lp::Packet& frag : pp.fragments) {
137 ndn::Buffer::const_iterator fragBegin, fragEnd;
138 std::tie(fragBegin, fragEnd) = frag.get<lp::FragmentField>();
139 it = std::copy(fragBegin, fragEnd, it);
140 }
141
142 return Block(&*(fragBuffer.cbegin()), std::distance(fragBuffer.cbegin(), fragBuffer.cend()));
143}
144
145void
146LpReassembler::timeoutPartialPacket(const Key& key)
147{
148 auto it = m_partialPackets.find(key);
149 if (it == m_partialPackets.end()) {
150 return;
151 }
152
153 this->beforeTimeout(std::get<0>(key), it->second.nReceivedFragments);
154 m_partialPackets.erase(it);
155}
156
157std::ostream&
158operator<<(std::ostream& os, const FaceLogHelper<LpReassembler>& flh)
159{
160 if (flh.obj.getLinkService() == nullptr) {
161 os << "[id=0,local=unknown,remote=unknown] ";
162 }
163 else {
164 os << FaceLogHelper<LinkService>(*flh.obj.getLinkService());
165 }
166 return os;
167}
168
169} // namespace face
170} // namespace nfd