blob: 21189bee6f052290c606c729df42b277c27c2ef0 [file] [log] [blame]
Eric Newberry185ab292017-03-28 06:45:39 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry7b0071e2017-07-03 17:33:31 +00002/*
Eric Newberry5ab4cf82020-02-03 15:40:16 -08003 * Copyright (c) 2014-2020, Regents of the University of California,
Eric Newberry185ab292017-03-28 06:45:39 +00004 * 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-reliability.hpp"
27#include "generic-link-service.hpp"
28#include "transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040029#include "common/global.hpp"
Eric Newberry185ab292017-03-28 06:45:39 +000030
31namespace nfd {
32namespace face {
33
Eric Newberry5ab4cf82020-02-03 15:40:16 -080034NFD_LOG_INIT(LpReliability);
35
Eric Newberry185ab292017-03-28 06:45:39 +000036LpReliability::LpReliability(const LpReliability::Options& options, GenericLinkService* linkService)
37 : m_options(options)
38 , m_linkService(linkService)
39 , m_firstUnackedFrag(m_unackedFrags.begin())
Eric Newberry7b0071e2017-07-03 17:33:31 +000040 , m_lastTxSeqNo(-1) // set to "-1" to start TxSequence numbers at 0
Eric Newberry185ab292017-03-28 06:45:39 +000041{
42 BOOST_ASSERT(m_linkService != nullptr);
Davide Pesaventoe4b22382018-06-10 14:37:24 -040043 BOOST_ASSERT(m_options.idleAckTimerPeriod > 0_ns);
Eric Newberry185ab292017-03-28 06:45:39 +000044}
45
46void
47LpReliability::setOptions(const Options& options)
48{
Davide Pesaventoe4b22382018-06-10 14:37:24 -040049 BOOST_ASSERT(options.idleAckTimerPeriod > 0_ns);
Eric Newberry185ab292017-03-28 06:45:39 +000050
51 if (m_options.isEnabled && !options.isEnabled) {
Davide Pesaventof190cfa2019-07-17 20:14:11 -040052 m_idleAckTimer.cancel();
Eric Newberry185ab292017-03-28 06:45:39 +000053 }
54
55 m_options = options;
56}
57
58const GenericLinkService*
59LpReliability::getLinkService() const
60{
61 return m_linkService;
62}
63
64void
Eric Newberry41aba102017-11-01 16:42:13 -070065LpReliability::handleOutgoing(std::vector<lp::Packet>& frags, lp::Packet&& pkt, bool isInterest)
Eric Newberry185ab292017-03-28 06:45:39 +000066{
67 BOOST_ASSERT(m_options.isEnabled);
68
Eric Newberry185ab292017-03-28 06:45:39 +000069 auto unackedFragsIt = m_unackedFrags.begin();
Eric Newberry7b0071e2017-07-03 17:33:31 +000070 auto sendTime = time::steady_clock::now();
Eric Newberry185ab292017-03-28 06:45:39 +000071
Eric Newberry41aba102017-11-01 16:42:13 -070072 auto netPkt = make_shared<NetPkt>(std::move(pkt), isInterest);
Eric Newberry7b0071e2017-07-03 17:33:31 +000073 netPkt->unackedFrags.reserve(frags.size());
74
75 for (lp::Packet& frag : frags) {
Eric Newberry32f7eac2020-02-07 14:40:17 -080076 // Non-IDLE packets are required to have assigned Sequence numbers with LpReliability enabled
77 BOOST_ASSERT(frag.has<lp::SequenceField>());
78
Eric Newberry7b0071e2017-07-03 17:33:31 +000079 // Assign TxSequence number
80 lp::Sequence txSeq = assignTxSequence(frag);
81
Eric Newberry185ab292017-03-28 06:45:39 +000082 // Store LpPacket for future retransmissions
Eric Newberry7b0071e2017-07-03 17:33:31 +000083 unackedFragsIt = m_unackedFrags.emplace_hint(unackedFragsIt,
84 std::piecewise_construct,
85 std::forward_as_tuple(txSeq),
86 std::forward_as_tuple(frag));
87 unackedFragsIt->second.sendTime = sendTime;
Eric Newberry5ab4cf82020-02-03 15:40:16 -080088 auto rto = m_rttEst.getEstimatedRto();
Eric Newberry32f7eac2020-02-07 14:40:17 -080089 lp::Sequence seq = frag.get<lp::SequenceField>();
90 NFD_LOG_FACE_TRACE("transmitting seq=" << seq << ", txseq=" << txSeq << ", rto=" <<
Eric Newberry5ab4cf82020-02-03 15:40:16 -080091 time::duration_cast<time::milliseconds>(rto).count() << "ms");
92 unackedFragsIt->second.rtoTimer = getScheduler().schedule(rto, [=] {
Eric Newberry32f7eac2020-02-07 14:40:17 -080093 onLpPacketLost(txSeq, true);
Eric Newberry5ab4cf82020-02-03 15:40:16 -080094 });
Eric Newberry7b0071e2017-07-03 17:33:31 +000095 unackedFragsIt->second.netPkt = netPkt;
96
Eric Newberry185ab292017-03-28 06:45:39 +000097 if (m_unackedFrags.size() == 1) {
Eric Newberry7b0071e2017-07-03 17:33:31 +000098 m_firstUnackedFrag = m_unackedFrags.begin();
Eric Newberry185ab292017-03-28 06:45:39 +000099 }
Eric Newberry7b0071e2017-07-03 17:33:31 +0000100
101 // Add to associated NetPkt
102 netPkt->unackedFrags.push_back(unackedFragsIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000103 }
104}
105
Eric Newberry32f7eac2020-02-07 14:40:17 -0800106bool
Eric Newberry185ab292017-03-28 06:45:39 +0000107LpReliability::processIncomingPacket(const lp::Packet& pkt)
108{
109 BOOST_ASSERT(m_options.isEnabled);
110
Eric Newberry32f7eac2020-02-07 14:40:17 -0800111 bool isDuplicate = false;
Eric Newberry185ab292017-03-28 06:45:39 +0000112 auto now = time::steady_clock::now();
113
114 // Extract and parse Acks
Eric Newberry32f7eac2020-02-07 14:40:17 -0800115 for (lp::Sequence ackTxSeq : pkt.list<lp::AckField>()) {
116 auto fragIt = m_unackedFrags.find(ackTxSeq);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000117 if (fragIt == m_unackedFrags.end()) {
118 // Ignore an Ack for an unknown TxSequence number
Eric Newberry32f7eac2020-02-07 14:40:17 -0800119 NFD_LOG_FACE_DEBUG("received ack for unknown txseq=" << ackTxSeq);
Eric Newberry185ab292017-03-28 06:45:39 +0000120 continue;
121 }
Eric Newberry7b0071e2017-07-03 17:33:31 +0000122 auto& frag = fragIt->second;
Eric Newberry185ab292017-03-28 06:45:39 +0000123
124 // Cancel the RTO timer for the acknowledged fragment
Eric Newberry7b0071e2017-07-03 17:33:31 +0000125 frag.rtoTimer.cancel();
Eric Newberry185ab292017-03-28 06:45:39 +0000126
Eric Newberry7b0071e2017-07-03 17:33:31 +0000127 if (frag.retxCount == 0) {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800128 NFD_LOG_FACE_TRACE("received ack for seq=" << frag.pkt.get<lp::SequenceField>() << ", txseq=" <<
129 ackTxSeq << ", retx=0, rtt=" <<
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800130 time::duration_cast<time::milliseconds>(now - frag.sendTime).count() << "ms");
Davide Pesaventof190cfa2019-07-17 20:14:11 -0400131 // This sequence had no retransmissions, so use it to estimate the RTO
Davide Pesaventoeb7b7ab2019-08-14 19:00:15 -0400132 m_rttEst.addMeasurement(now - frag.sendTime);
Eric Newberry185ab292017-03-28 06:45:39 +0000133 }
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800134 else {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800135 NFD_LOG_FACE_TRACE("received ack for seq=" << frag.pkt.get<lp::SequenceField>() << ", txseq=" <<
136 ackTxSeq << ", retx=" << frag.retxCount);
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800137 }
Eric Newberry185ab292017-03-28 06:45:39 +0000138
Eric Newberry32f7eac2020-02-07 14:40:17 -0800139 // Look for frags with TxSequence numbers < ackTxSeq (allowing for wraparound) and consider
140 // them lost if a configurable number of Acks containing greater TxSequence numbers have been
Eric Newberry7b0071e2017-07-03 17:33:31 +0000141 // received.
142 auto lostLpPackets = findLostLpPackets(fragIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000143
Eric Newberry7b0071e2017-07-03 17:33:31 +0000144 // Remove the fragment from the map of unacknowledged fragments and from its associated network
145 // packet. Potentially increment the start of the window.
146 onLpPacketAcknowledged(fragIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000147
Eric Newberry971d9622018-03-30 23:29:26 -0700148 // This set contains TxSequences that have been removed by onLpPacketLost below because they
149 // were part of a network packet that was removed due to a fragment exceeding retx, as well as
150 // any other TxSequences removed by onLpPacketLost. This prevents onLpPacketLost from being
151 // called later for an invalid iterator.
152 std::set<lp::Sequence> removedLpPackets;
153
Eric Newberry7b0071e2017-07-03 17:33:31 +0000154 // Resend or fail fragments considered lost. Potentially increment the start of the window.
Eric Newberry971d9622018-03-30 23:29:26 -0700155 for (lp::Sequence txSeq : lostLpPackets) {
156 if (removedLpPackets.find(txSeq) == removedLpPackets.end()) {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800157 auto removedTxSeqs = onLpPacketLost(txSeq, false);
158 for (auto removedTxSeq : removedTxSeqs) {
Eric Newberry971d9622018-03-30 23:29:26 -0700159 removedLpPackets.insert(removedTxSeq);
160 }
161 }
Eric Newberry185ab292017-03-28 06:45:39 +0000162 }
163 }
164
Eric Newberry7b0071e2017-07-03 17:33:31 +0000165 // If packet has Fragment and TxSequence fields, extract TxSequence and add to AckQueue
166 if (pkt.has<lp::FragmentField>() && pkt.has<lp::TxSequenceField>()) {
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800167 NFD_LOG_FACE_TRACE("queueing ack for remote txseq=" << pkt.get<lp::TxSequenceField>());
Eric Newberry7b0071e2017-07-03 17:33:31 +0000168 m_ackQueue.push(pkt.get<lp::TxSequenceField>());
Eric Newberry32f7eac2020-02-07 14:40:17 -0800169
170 // Check for received frames with duplicate Sequences
171 if (pkt.has<lp::SequenceField>()) {
172 lp::Sequence pktSequence = pkt.get<lp::SequenceField>();
173 isDuplicate = m_recentRecvSeqs.count(pktSequence) > 0;
174 // Check for recent received Sequences to remove
175 auto now = time::steady_clock::now();
176 auto rto = m_rttEst.getEstimatedRto();
177 while (m_recentRecvSeqsQueue.size() > 0 &&
178 now > m_recentRecvSeqs[m_recentRecvSeqsQueue.front()] + rto) {
179 m_recentRecvSeqs.erase(m_recentRecvSeqsQueue.front());
180 m_recentRecvSeqsQueue.pop();
181 }
182 m_recentRecvSeqs.emplace(pktSequence, now);
183 m_recentRecvSeqsQueue.push(pktSequence);
184 }
185
Davide Pesaventof190cfa2019-07-17 20:14:11 -0400186 startIdleAckTimer();
Eric Newberry185ab292017-03-28 06:45:39 +0000187 }
Eric Newberry32f7eac2020-02-07 14:40:17 -0800188
189 return !isDuplicate;
Eric Newberry185ab292017-03-28 06:45:39 +0000190}
191
192void
193LpReliability::piggyback(lp::Packet& pkt, ssize_t mtu)
194{
195 BOOST_ASSERT(m_options.isEnabled);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000196 BOOST_ASSERT(pkt.wireEncode().type() == lp::tlv::LpPacket);
Eric Newberry185ab292017-03-28 06:45:39 +0000197
Eric Newberry7b0071e2017-07-03 17:33:31 +0000198 // up to 2 extra octets reserved for potential TLV-LENGTH size increases
199 ssize_t pktSize = pkt.wireEncode().size();
200 ssize_t reservedSpace = tlv::sizeOfVarNumber(ndn::MAX_NDN_PACKET_SIZE) -
201 tlv::sizeOfVarNumber(pktSize);
202 ssize_t remainingSpace = (mtu == MTU_UNLIMITED ? ndn::MAX_NDN_PACKET_SIZE : mtu) - reservedSpace;
203 remainingSpace -= pktSize;
Eric Newberry185ab292017-03-28 06:45:39 +0000204
Eric Newberry7b0071e2017-07-03 17:33:31 +0000205 while (!m_ackQueue.empty()) {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800206 lp::Sequence ackTxSeq = m_ackQueue.front();
Davide Pesaventof190cfa2019-07-17 20:14:11 -0400207 // Ack size = Ack TLV-TYPE (3 octets) + TLV-LENGTH (1 octet) + lp::Sequence (8 octets)
Junxiao Shi21e01932018-04-21 10:39:05 +0000208 const ssize_t ackSize = tlv::sizeOfVarNumber(lp::tlv::Ack) +
209 tlv::sizeOfVarNumber(sizeof(lp::Sequence)) +
210 sizeof(lp::Sequence);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000211
212 if (ackSize > remainingSpace) {
213 break;
214 }
215
Eric Newberry32f7eac2020-02-07 14:40:17 -0800216 NFD_LOG_FACE_TRACE("piggybacking ack for remote txseq=" << ackTxSeq);
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800217
Eric Newberry32f7eac2020-02-07 14:40:17 -0800218 pkt.add<lp::AckField>(ackTxSeq);
Eric Newberry185ab292017-03-28 06:45:39 +0000219 m_ackQueue.pop();
Eric Newberry7b0071e2017-07-03 17:33:31 +0000220 remainingSpace -= ackSize;
Eric Newberry185ab292017-03-28 06:45:39 +0000221 }
222}
223
Eric Newberry7b0071e2017-07-03 17:33:31 +0000224lp::Sequence
225LpReliability::assignTxSequence(lp::Packet& frag)
226{
227 lp::Sequence txSeq = ++m_lastTxSeqNo;
228 frag.set<lp::TxSequenceField>(txSeq);
229 if (m_unackedFrags.size() > 0 && m_lastTxSeqNo == m_firstUnackedFrag->first) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500230 NDN_THROW(std::length_error("TxSequence range exceeded"));
Eric Newberry7b0071e2017-07-03 17:33:31 +0000231 }
232 return m_lastTxSeqNo;
233}
234
Eric Newberry185ab292017-03-28 06:45:39 +0000235void
236LpReliability::startIdleAckTimer()
237{
Davide Pesaventof190cfa2019-07-17 20:14:11 -0400238 if (m_idleAckTimer) {
239 // timer is already running, do nothing
240 return;
241 }
Eric Newberry185ab292017-03-28 06:45:39 +0000242
Davide Pesavento3dade002019-03-19 11:29:56 -0600243 m_idleAckTimer = getScheduler().schedule(m_options.idleAckTimerPeriod, [this] {
Eric Newberry185ab292017-03-28 06:45:39 +0000244 while (!m_ackQueue.empty()) {
ashiqopu075bb7d2019-03-10 01:38:21 +0000245 m_linkService->requestIdlePacket(0);
Eric Newberry185ab292017-03-28 06:45:39 +0000246 }
Eric Newberry185ab292017-03-28 06:45:39 +0000247 });
248}
249
Eric Newberry971d9622018-03-30 23:29:26 -0700250std::vector<lp::Sequence>
Eric Newberry7b0071e2017-07-03 17:33:31 +0000251LpReliability::findLostLpPackets(LpReliability::UnackedFrags::iterator ackIt)
Eric Newberry185ab292017-03-28 06:45:39 +0000252{
Eric Newberry971d9622018-03-30 23:29:26 -0700253 std::vector<lp::Sequence> lostLpPackets;
Eric Newberry185ab292017-03-28 06:45:39 +0000254
255 for (auto it = m_firstUnackedFrag; ; ++it) {
256 if (it == m_unackedFrags.end()) {
257 it = m_unackedFrags.begin();
258 }
259
Eric Newberry7b0071e2017-07-03 17:33:31 +0000260 if (it->first == ackIt->first) {
Eric Newberry185ab292017-03-28 06:45:39 +0000261 break;
262 }
263
264 auto& unackedFrag = it->second;
Eric Newberry185ab292017-03-28 06:45:39 +0000265 unackedFrag.nGreaterSeqAcks++;
Eric Newberry32f7eac2020-02-07 14:40:17 -0800266 NFD_LOG_FACE_TRACE("received ack=" << ackIt->first << " before=" << it->first <<
267 ", before count=" << unackedFrag.nGreaterSeqAcks);
Eric Newberry185ab292017-03-28 06:45:39 +0000268
Eric Newberry7b0071e2017-07-03 17:33:31 +0000269 if (unackedFrag.nGreaterSeqAcks >= m_options.seqNumLossThreshold) {
Eric Newberry971d9622018-03-30 23:29:26 -0700270 lostLpPackets.push_back(it->first);
Eric Newberry185ab292017-03-28 06:45:39 +0000271 }
272 }
273
274 return lostLpPackets;
275}
276
Eric Newberry971d9622018-03-30 23:29:26 -0700277std::vector<lp::Sequence>
Eric Newberry32f7eac2020-02-07 14:40:17 -0800278LpReliability::onLpPacketLost(lp::Sequence txSeq, bool isTimeout)
Eric Newberry185ab292017-03-28 06:45:39 +0000279{
Eric Newberry971d9622018-03-30 23:29:26 -0700280 BOOST_ASSERT(m_unackedFrags.count(txSeq) > 0);
281 auto txSeqIt = m_unackedFrags.find(txSeq);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000282
283 auto& txFrag = txSeqIt->second;
284 txFrag.rtoTimer.cancel();
285 auto netPkt = txFrag.netPkt;
Eric Newberry971d9622018-03-30 23:29:26 -0700286 std::vector<lp::Sequence> removedThisTxSeq;
Eric Newberry32f7eac2020-02-07 14:40:17 -0800287 lp::Sequence seq = txFrag.pkt.get<lp::SequenceField>();
288
289 if (isTimeout) {
290 NFD_LOG_FACE_TRACE("rto timer expired for seq=" << seq << ", txseq=" << txSeq);
291 }
292 else { // lost due to out-of-order TxSeqs
293 NFD_LOG_FACE_TRACE("seq=" << seq << ", txseq=" << txSeq <<
294 " considered lost from acks for more recent txseqs");
295 }
Eric Newberry185ab292017-03-28 06:45:39 +0000296
297 // Check if maximum number of retransmissions exceeded
298 if (txFrag.retxCount >= m_options.maxRetx) {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800299 NFD_LOG_FACE_DEBUG("seq=" << seq << " exceeded allowed retransmissions: DROP");
Eric Newberry7b0071e2017-07-03 17:33:31 +0000300 // Delete all LpPackets of NetPkt from m_unackedFrags (except this one)
301 for (size_t i = 0; i < netPkt->unackedFrags.size(); i++) {
302 if (netPkt->unackedFrags[i] != txSeqIt) {
Eric Newberry971d9622018-03-30 23:29:26 -0700303 removedThisTxSeq.push_back(netPkt->unackedFrags[i]->first);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000304 deleteUnackedFrag(netPkt->unackedFrags[i]);
305 }
Eric Newberry185ab292017-03-28 06:45:39 +0000306 }
Eric Newberry185ab292017-03-28 06:45:39 +0000307
308 ++m_linkService->nRetxExhausted;
Eric Newberry41aba102017-11-01 16:42:13 -0700309
310 // Notify strategy of dropped Interest (if any)
311 if (netPkt->isInterest) {
312 BOOST_ASSERT(netPkt->pkt.has<lp::FragmentField>());
313 ndn::Buffer::const_iterator fragBegin, fragEnd;
314 std::tie(fragBegin, fragEnd) = netPkt->pkt.get<lp::FragmentField>();
315 Block frag(&*fragBegin, std::distance(fragBegin, fragEnd));
316 onDroppedInterest(Interest(frag));
317 }
318
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800319 // Delete this LpPacket from m_unackedFrags
Eric Newberry971d9622018-03-30 23:29:26 -0700320 removedThisTxSeq.push_back(txSeqIt->first);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000321 deleteUnackedFrag(txSeqIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000322 }
323 else {
Eric Newberry7b0071e2017-07-03 17:33:31 +0000324 // Assign new TxSequence
325 lp::Sequence newTxSeq = assignTxSequence(txFrag.pkt);
Eric Newberry00d39fd2017-12-10 14:26:45 -0700326 netPkt->didRetx = true;
Eric Newberry185ab292017-03-28 06:45:39 +0000327
Eric Newberry7b0071e2017-07-03 17:33:31 +0000328 // Move fragment to new TxSequence mapping
329 auto newTxFragIt = m_unackedFrags.emplace_hint(
330 m_firstUnackedFrag != m_unackedFrags.end() && m_firstUnackedFrag->first > newTxSeq
331 ? m_firstUnackedFrag
332 : m_unackedFrags.end(),
333 std::piecewise_construct,
334 std::forward_as_tuple(newTxSeq),
335 std::forward_as_tuple(txFrag.pkt));
336 auto& newTxFrag = newTxFragIt->second;
337 newTxFrag.retxCount = txFrag.retxCount + 1;
338 newTxFrag.netPkt = netPkt;
339
340 // Update associated NetPkt
341 auto fragInNetPkt = std::find(netPkt->unackedFrags.begin(), netPkt->unackedFrags.end(), txSeqIt);
342 BOOST_ASSERT(fragInNetPkt != netPkt->unackedFrags.end());
343 *fragInNetPkt = newTxFragIt;
344
Eric Newberry971d9622018-03-30 23:29:26 -0700345 removedThisTxSeq.push_back(txSeqIt->first);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000346 deleteUnackedFrag(txSeqIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000347
348 // Retransmit fragment
ashiqopu075bb7d2019-03-10 01:38:21 +0000349 m_linkService->sendLpPacket(lp::Packet(newTxFrag.pkt), 0);
Eric Newberry7b0071e2017-07-03 17:33:31 +0000350
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800351 auto rto = m_rttEst.getEstimatedRto();
Eric Newberry32f7eac2020-02-07 14:40:17 -0800352 NFD_LOG_FACE_TRACE("retransmitting seq=" << seq << ", txseq=" << newTxSeq << ", retx=" <<
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800353 txFrag.retxCount << ", rto=" <<
354 time::duration_cast<time::milliseconds>(rto).count() << "ms");
355
Eric Newberry7b0071e2017-07-03 17:33:31 +0000356 // Start RTO timer for this sequence
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800357 newTxFrag.rtoTimer = getScheduler().schedule(rto, [=] {
Eric Newberry32f7eac2020-02-07 14:40:17 -0800358 onLpPacketLost(newTxSeq, true);
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800359 });
Eric Newberry185ab292017-03-28 06:45:39 +0000360 }
Eric Newberry971d9622018-03-30 23:29:26 -0700361
362 return removedThisTxSeq;
Eric Newberry185ab292017-03-28 06:45:39 +0000363}
364
365void
Eric Newberry7b0071e2017-07-03 17:33:31 +0000366LpReliability::onLpPacketAcknowledged(UnackedFrags::iterator fragIt)
Eric Newberry185ab292017-03-28 06:45:39 +0000367{
Eric Newberry7b0071e2017-07-03 17:33:31 +0000368 auto netPkt = fragIt->second.netPkt;
Eric Newberry185ab292017-03-28 06:45:39 +0000369
Eric Newberry7b0071e2017-07-03 17:33:31 +0000370 // Remove from NetPkt unacked fragment list
371 auto fragInNetPkt = std::find(netPkt->unackedFrags.begin(), netPkt->unackedFrags.end(), fragIt);
372 BOOST_ASSERT(fragInNetPkt != netPkt->unackedFrags.end());
373 *fragInNetPkt = netPkt->unackedFrags.back();
374 netPkt->unackedFrags.pop_back();
Eric Newberry185ab292017-03-28 06:45:39 +0000375
Eric Newberry7b0071e2017-07-03 17:33:31 +0000376 // Check if network-layer packet completely received. If so, increment counters
377 if (netPkt->unackedFrags.empty()) {
378 if (netPkt->didRetx) {
Eric Newberry185ab292017-03-28 06:45:39 +0000379 ++m_linkService->nRetransmitted;
380 }
381 else {
382 ++m_linkService->nAcknowledged;
383 }
Eric Newberry185ab292017-03-28 06:45:39 +0000384 }
Eric Newberry7b0071e2017-07-03 17:33:31 +0000385
386 deleteUnackedFrag(fragIt);
Eric Newberry185ab292017-03-28 06:45:39 +0000387}
388
Eric Newberry7b0071e2017-07-03 17:33:31 +0000389void
390LpReliability::deleteUnackedFrag(UnackedFrags::iterator fragIt)
Eric Newberry185ab292017-03-28 06:45:39 +0000391{
Eric Newberry7b0071e2017-07-03 17:33:31 +0000392 lp::Sequence firstUnackedTxSeq = m_firstUnackedFrag->first;
393 lp::Sequence currentTxSeq = fragIt->first;
394 auto nextFragIt = m_unackedFrags.erase(fragIt);
395
396 if (!m_unackedFrags.empty() && firstUnackedTxSeq == currentTxSeq) {
397 // If "first" fragment in send window (allowing for wraparound), increment window begin
398 if (nextFragIt == m_unackedFrags.end()) {
399 m_firstUnackedFrag = m_unackedFrags.begin();
400 }
401 else {
402 m_firstUnackedFrag = nextFragIt;
403 }
Eric Newberry185ab292017-03-28 06:45:39 +0000404 }
Eric Newberry7b0071e2017-07-03 17:33:31 +0000405 else if (m_unackedFrags.empty()) {
406 m_firstUnackedFrag = m_unackedFrags.end();
407 }
Eric Newberry185ab292017-03-28 06:45:39 +0000408}
409
410LpReliability::UnackedFrag::UnackedFrag(lp::Packet pkt)
411 : pkt(std::move(pkt))
412 , sendTime(time::steady_clock::now())
413 , retxCount(0)
414 , nGreaterSeqAcks(0)
Eric Newberry185ab292017-03-28 06:45:39 +0000415{
416}
417
Eric Newberry41aba102017-11-01 16:42:13 -0700418LpReliability::NetPkt::NetPkt(lp::Packet&& pkt, bool isInterest)
419 : pkt(std::move(pkt))
420 , isInterest(isInterest)
421 , didRetx(false)
422{
423}
424
Eric Newberry5ab4cf82020-02-03 15:40:16 -0800425std::ostream&
426operator<<(std::ostream& os, const FaceLogHelper<LpReliability>& flh)
427{
428 if (flh.obj.getLinkService() == nullptr) {
429 os << "[id=0,local=unknown,remote=unknown] ";
430 }
431 else {
432 os << FaceLogHelper<LinkService>(*flh.obj.getLinkService());
433 }
434 return os;
435}
436
Eric Newberry185ab292017-03-28 06:45:39 +0000437} // namespace face
438} // namespace nfd