Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 2 | /* |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 3 | * Copyright (c) 2014-2020, Regents of the University of California, |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 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-reliability.hpp" |
| 27 | #include "generic-link-service.hpp" |
| 28 | #include "transport.hpp" |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 29 | #include "common/global.hpp" |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | namespace face { |
| 33 | |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 34 | NFD_LOG_INIT(LpReliability); |
| 35 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 36 | LpReliability::LpReliability(const LpReliability::Options& options, GenericLinkService* linkService) |
| 37 | : m_options(options) |
| 38 | , m_linkService(linkService) |
| 39 | , m_firstUnackedFrag(m_unackedFrags.begin()) |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 40 | , m_lastTxSeqNo(-1) // set to "-1" to start TxSequence numbers at 0 |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 41 | { |
| 42 | BOOST_ASSERT(m_linkService != nullptr); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 43 | BOOST_ASSERT(m_options.idleAckTimerPeriod > 0_ns); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | void |
| 47 | LpReliability::setOptions(const Options& options) |
| 48 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 49 | BOOST_ASSERT(options.idleAckTimerPeriod > 0_ns); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 50 | |
| 51 | if (m_options.isEnabled && !options.isEnabled) { |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 52 | m_idleAckTimer.cancel(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | m_options = options; |
| 56 | } |
| 57 | |
| 58 | const GenericLinkService* |
| 59 | LpReliability::getLinkService() const |
| 60 | { |
| 61 | return m_linkService; |
| 62 | } |
| 63 | |
| 64 | void |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 65 | LpReliability::handleOutgoing(std::vector<lp::Packet>& frags, lp::Packet&& pkt, bool isInterest) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 66 | { |
| 67 | BOOST_ASSERT(m_options.isEnabled); |
| 68 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 69 | auto unackedFragsIt = m_unackedFrags.begin(); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 70 | auto sendTime = time::steady_clock::now(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 71 | |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 72 | auto netPkt = make_shared<NetPkt>(std::move(pkt), isInterest); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 73 | netPkt->unackedFrags.reserve(frags.size()); |
| 74 | |
| 75 | for (lp::Packet& frag : frags) { |
| 76 | // Assign TxSequence number |
| 77 | lp::Sequence txSeq = assignTxSequence(frag); |
| 78 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 79 | // Store LpPacket for future retransmissions |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 80 | unackedFragsIt = m_unackedFrags.emplace_hint(unackedFragsIt, |
| 81 | std::piecewise_construct, |
| 82 | std::forward_as_tuple(txSeq), |
| 83 | std::forward_as_tuple(frag)); |
| 84 | unackedFragsIt->second.sendTime = sendTime; |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 85 | auto rto = m_rttEst.getEstimatedRto(); |
| 86 | NFD_LOG_FACE_TRACE("transmitting txseq=" << txSeq << ", rto=" << |
| 87 | time::duration_cast<time::milliseconds>(rto).count() << "ms"); |
| 88 | unackedFragsIt->second.rtoTimer = getScheduler().schedule(rto, [=] { |
| 89 | NFD_LOG_FACE_TRACE("rto timer expired for txseq=" << txSeq); |
| 90 | onLpPacketLost(txSeq); |
| 91 | }); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 92 | unackedFragsIt->second.netPkt = netPkt; |
| 93 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 94 | if (m_unackedFrags.size() == 1) { |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 95 | m_firstUnackedFrag = m_unackedFrags.begin(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 96 | } |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 97 | |
| 98 | // Add to associated NetPkt |
| 99 | netPkt->unackedFrags.push_back(unackedFragsIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
| 103 | void |
| 104 | LpReliability::processIncomingPacket(const lp::Packet& pkt) |
| 105 | { |
| 106 | BOOST_ASSERT(m_options.isEnabled); |
| 107 | |
| 108 | auto now = time::steady_clock::now(); |
| 109 | |
| 110 | // Extract and parse Acks |
| 111 | for (lp::Sequence ackSeq : pkt.list<lp::AckField>()) { |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 112 | auto fragIt = m_unackedFrags.find(ackSeq); |
| 113 | if (fragIt == m_unackedFrags.end()) { |
| 114 | // Ignore an Ack for an unknown TxSequence number |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 115 | NFD_LOG_FACE_DEBUG("received ack for unknown txseq=" << ackSeq); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 116 | continue; |
| 117 | } |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 118 | auto& frag = fragIt->second; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 119 | |
| 120 | // Cancel the RTO timer for the acknowledged fragment |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 121 | frag.rtoTimer.cancel(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 122 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 123 | if (frag.retxCount == 0) { |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 124 | NFD_LOG_FACE_TRACE("received ack for txseq=" << ackSeq << ", retx=0, rtt=" << |
| 125 | time::duration_cast<time::milliseconds>(now - frag.sendTime).count() << "ms"); |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 126 | // This sequence had no retransmissions, so use it to estimate the RTO |
Davide Pesavento | eb7b7ab | 2019-08-14 19:00:15 -0400 | [diff] [blame] | 127 | m_rttEst.addMeasurement(now - frag.sendTime); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 128 | } |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 129 | else { |
| 130 | NFD_LOG_FACE_TRACE("received ack for txseq=" << ackSeq << ", retx=" << frag.retxCount); |
| 131 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 132 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 133 | // Look for frags with TxSequence numbers < ackSeq (allowing for wraparound) and consider them |
| 134 | // lost if a configurable number of Acks containing greater TxSequence numbers have been |
| 135 | // received. |
| 136 | auto lostLpPackets = findLostLpPackets(fragIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 137 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 138 | // Remove the fragment from the map of unacknowledged fragments and from its associated network |
| 139 | // packet. Potentially increment the start of the window. |
| 140 | onLpPacketAcknowledged(fragIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 141 | |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 142 | // This set contains TxSequences that have been removed by onLpPacketLost below because they |
| 143 | // were part of a network packet that was removed due to a fragment exceeding retx, as well as |
| 144 | // any other TxSequences removed by onLpPacketLost. This prevents onLpPacketLost from being |
| 145 | // called later for an invalid iterator. |
| 146 | std::set<lp::Sequence> removedLpPackets; |
| 147 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 148 | // Resend or fail fragments considered lost. Potentially increment the start of the window. |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 149 | for (lp::Sequence txSeq : lostLpPackets) { |
| 150 | if (removedLpPackets.find(txSeq) == removedLpPackets.end()) { |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 151 | NFD_LOG_FACE_TRACE("txseq=" << txSeq << " considered lost from acks for more recent txseqs"); |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 152 | auto removedThisTxSeq = onLpPacketLost(txSeq); |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 153 | for (auto removedTxSeq : removedThisTxSeq) { |
| 154 | removedLpPackets.insert(removedTxSeq); |
| 155 | } |
| 156 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 160 | // If packet has Fragment and TxSequence fields, extract TxSequence and add to AckQueue |
| 161 | if (pkt.has<lp::FragmentField>() && pkt.has<lp::TxSequenceField>()) { |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 162 | NFD_LOG_FACE_TRACE("queueing ack for remote txseq=" << pkt.get<lp::TxSequenceField>()); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 163 | m_ackQueue.push(pkt.get<lp::TxSequenceField>()); |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 164 | startIdleAckTimer(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | LpReliability::piggyback(lp::Packet& pkt, ssize_t mtu) |
| 170 | { |
| 171 | BOOST_ASSERT(m_options.isEnabled); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 172 | BOOST_ASSERT(pkt.wireEncode().type() == lp::tlv::LpPacket); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 173 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 174 | // up to 2 extra octets reserved for potential TLV-LENGTH size increases |
| 175 | ssize_t pktSize = pkt.wireEncode().size(); |
| 176 | ssize_t reservedSpace = tlv::sizeOfVarNumber(ndn::MAX_NDN_PACKET_SIZE) - |
| 177 | tlv::sizeOfVarNumber(pktSize); |
| 178 | ssize_t remainingSpace = (mtu == MTU_UNLIMITED ? ndn::MAX_NDN_PACKET_SIZE : mtu) - reservedSpace; |
| 179 | remainingSpace -= pktSize; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 180 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 181 | while (!m_ackQueue.empty()) { |
| 182 | lp::Sequence ackSeq = m_ackQueue.front(); |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 183 | // Ack size = Ack TLV-TYPE (3 octets) + TLV-LENGTH (1 octet) + lp::Sequence (8 octets) |
Junxiao Shi | 21e0193 | 2018-04-21 10:39:05 +0000 | [diff] [blame] | 184 | const ssize_t ackSize = tlv::sizeOfVarNumber(lp::tlv::Ack) + |
| 185 | tlv::sizeOfVarNumber(sizeof(lp::Sequence)) + |
| 186 | sizeof(lp::Sequence); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 187 | |
| 188 | if (ackSize > remainingSpace) { |
| 189 | break; |
| 190 | } |
| 191 | |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 192 | NFD_LOG_FACE_TRACE("piggybacking ack for remote txseq=" << ackSeq); |
| 193 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 194 | pkt.add<lp::AckField>(ackSeq); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 195 | m_ackQueue.pop(); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 196 | remainingSpace -= ackSize; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 200 | lp::Sequence |
| 201 | LpReliability::assignTxSequence(lp::Packet& frag) |
| 202 | { |
| 203 | lp::Sequence txSeq = ++m_lastTxSeqNo; |
| 204 | frag.set<lp::TxSequenceField>(txSeq); |
| 205 | if (m_unackedFrags.size() > 0 && m_lastTxSeqNo == m_firstUnackedFrag->first) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 206 | NDN_THROW(std::length_error("TxSequence range exceeded")); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 207 | } |
| 208 | return m_lastTxSeqNo; |
| 209 | } |
| 210 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 211 | void |
| 212 | LpReliability::startIdleAckTimer() |
| 213 | { |
Davide Pesavento | f190cfa | 2019-07-17 20:14:11 -0400 | [diff] [blame] | 214 | if (m_idleAckTimer) { |
| 215 | // timer is already running, do nothing |
| 216 | return; |
| 217 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 218 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 219 | m_idleAckTimer = getScheduler().schedule(m_options.idleAckTimerPeriod, [this] { |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 220 | while (!m_ackQueue.empty()) { |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame] | 221 | m_linkService->requestIdlePacket(0); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 222 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 223 | }); |
| 224 | } |
| 225 | |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 226 | std::vector<lp::Sequence> |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 227 | LpReliability::findLostLpPackets(LpReliability::UnackedFrags::iterator ackIt) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 228 | { |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 229 | std::vector<lp::Sequence> lostLpPackets; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 230 | |
| 231 | for (auto it = m_firstUnackedFrag; ; ++it) { |
| 232 | if (it == m_unackedFrags.end()) { |
| 233 | it = m_unackedFrags.begin(); |
| 234 | } |
| 235 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 236 | if (it->first == ackIt->first) { |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 237 | break; |
| 238 | } |
| 239 | |
| 240 | auto& unackedFrag = it->second; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 241 | unackedFrag.nGreaterSeqAcks++; |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 242 | NFD_LOG_FACE_TRACE("received ack=" << ackIt->first << ", out-of-order for txseq=" << |
| 243 | it->first << ", out-of-order count=" << unackedFrag.nGreaterSeqAcks); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 244 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 245 | if (unackedFrag.nGreaterSeqAcks >= m_options.seqNumLossThreshold) { |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 246 | lostLpPackets.push_back(it->first); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
| 250 | return lostLpPackets; |
| 251 | } |
| 252 | |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 253 | std::vector<lp::Sequence> |
| 254 | LpReliability::onLpPacketLost(lp::Sequence txSeq) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 255 | { |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 256 | BOOST_ASSERT(m_unackedFrags.count(txSeq) > 0); |
| 257 | auto txSeqIt = m_unackedFrags.find(txSeq); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 258 | |
| 259 | auto& txFrag = txSeqIt->second; |
| 260 | txFrag.rtoTimer.cancel(); |
| 261 | auto netPkt = txFrag.netPkt; |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 262 | std::vector<lp::Sequence> removedThisTxSeq; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 263 | |
| 264 | // Check if maximum number of retransmissions exceeded |
| 265 | if (txFrag.retxCount >= m_options.maxRetx) { |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 266 | NFD_LOG_FACE_DEBUG("txseq=" << txSeq << " exceeded allowed retransmissions: DROP"); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 267 | // Delete all LpPackets of NetPkt from m_unackedFrags (except this one) |
| 268 | for (size_t i = 0; i < netPkt->unackedFrags.size(); i++) { |
| 269 | if (netPkt->unackedFrags[i] != txSeqIt) { |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 270 | removedThisTxSeq.push_back(netPkt->unackedFrags[i]->first); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 271 | deleteUnackedFrag(netPkt->unackedFrags[i]); |
| 272 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 273 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 274 | |
| 275 | ++m_linkService->nRetxExhausted; |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 276 | |
| 277 | // Notify strategy of dropped Interest (if any) |
| 278 | if (netPkt->isInterest) { |
| 279 | BOOST_ASSERT(netPkt->pkt.has<lp::FragmentField>()); |
| 280 | ndn::Buffer::const_iterator fragBegin, fragEnd; |
| 281 | std::tie(fragBegin, fragEnd) = netPkt->pkt.get<lp::FragmentField>(); |
| 282 | Block frag(&*fragBegin, std::distance(fragBegin, fragEnd)); |
| 283 | onDroppedInterest(Interest(frag)); |
| 284 | } |
| 285 | |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 286 | // Delete this LpPacket from m_unackedFrags |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 287 | removedThisTxSeq.push_back(txSeqIt->first); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 288 | deleteUnackedFrag(txSeqIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 289 | } |
| 290 | else { |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 291 | // Assign new TxSequence |
| 292 | lp::Sequence newTxSeq = assignTxSequence(txFrag.pkt); |
Eric Newberry | 00d39fd | 2017-12-10 14:26:45 -0700 | [diff] [blame] | 293 | netPkt->didRetx = true; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 294 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 295 | // Move fragment to new TxSequence mapping |
| 296 | auto newTxFragIt = m_unackedFrags.emplace_hint( |
| 297 | m_firstUnackedFrag != m_unackedFrags.end() && m_firstUnackedFrag->first > newTxSeq |
| 298 | ? m_firstUnackedFrag |
| 299 | : m_unackedFrags.end(), |
| 300 | std::piecewise_construct, |
| 301 | std::forward_as_tuple(newTxSeq), |
| 302 | std::forward_as_tuple(txFrag.pkt)); |
| 303 | auto& newTxFrag = newTxFragIt->second; |
| 304 | newTxFrag.retxCount = txFrag.retxCount + 1; |
| 305 | newTxFrag.netPkt = netPkt; |
| 306 | |
| 307 | // Update associated NetPkt |
| 308 | auto fragInNetPkt = std::find(netPkt->unackedFrags.begin(), netPkt->unackedFrags.end(), txSeqIt); |
| 309 | BOOST_ASSERT(fragInNetPkt != netPkt->unackedFrags.end()); |
| 310 | *fragInNetPkt = newTxFragIt; |
| 311 | |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 312 | removedThisTxSeq.push_back(txSeqIt->first); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 313 | deleteUnackedFrag(txSeqIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 314 | |
| 315 | // Retransmit fragment |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame] | 316 | m_linkService->sendLpPacket(lp::Packet(newTxFrag.pkt), 0); |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 317 | |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 318 | auto rto = m_rttEst.getEstimatedRto(); |
| 319 | NFD_LOG_FACE_TRACE("retransmitting txseq=" << txSeq << " as " << newTxSeq << ", retx=" << |
| 320 | txFrag.retxCount << ", rto=" << |
| 321 | time::duration_cast<time::milliseconds>(rto).count() << "ms"); |
| 322 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 323 | // Start RTO timer for this sequence |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 324 | newTxFrag.rtoTimer = getScheduler().schedule(rto, [=] { |
| 325 | NFD_LOG_FACE_TRACE("rto timer expired for txseq=" << newTxSeq); |
| 326 | onLpPacketLost(newTxSeq); |
| 327 | }); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 328 | } |
Eric Newberry | 971d962 | 2018-03-30 23:29:26 -0700 | [diff] [blame] | 329 | |
| 330 | return removedThisTxSeq; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | void |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 334 | LpReliability::onLpPacketAcknowledged(UnackedFrags::iterator fragIt) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 335 | { |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 336 | auto netPkt = fragIt->second.netPkt; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 337 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 338 | // Remove from NetPkt unacked fragment list |
| 339 | auto fragInNetPkt = std::find(netPkt->unackedFrags.begin(), netPkt->unackedFrags.end(), fragIt); |
| 340 | BOOST_ASSERT(fragInNetPkt != netPkt->unackedFrags.end()); |
| 341 | *fragInNetPkt = netPkt->unackedFrags.back(); |
| 342 | netPkt->unackedFrags.pop_back(); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 343 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 344 | // Check if network-layer packet completely received. If so, increment counters |
| 345 | if (netPkt->unackedFrags.empty()) { |
| 346 | if (netPkt->didRetx) { |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 347 | ++m_linkService->nRetransmitted; |
| 348 | } |
| 349 | else { |
| 350 | ++m_linkService->nAcknowledged; |
| 351 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 352 | } |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 353 | |
| 354 | deleteUnackedFrag(fragIt); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 357 | void |
| 358 | LpReliability::deleteUnackedFrag(UnackedFrags::iterator fragIt) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 359 | { |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 360 | lp::Sequence firstUnackedTxSeq = m_firstUnackedFrag->first; |
| 361 | lp::Sequence currentTxSeq = fragIt->first; |
| 362 | auto nextFragIt = m_unackedFrags.erase(fragIt); |
| 363 | |
| 364 | if (!m_unackedFrags.empty() && firstUnackedTxSeq == currentTxSeq) { |
| 365 | // If "first" fragment in send window (allowing for wraparound), increment window begin |
| 366 | if (nextFragIt == m_unackedFrags.end()) { |
| 367 | m_firstUnackedFrag = m_unackedFrags.begin(); |
| 368 | } |
| 369 | else { |
| 370 | m_firstUnackedFrag = nextFragIt; |
| 371 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 372 | } |
Eric Newberry | 7b0071e | 2017-07-03 17:33:31 +0000 | [diff] [blame] | 373 | else if (m_unackedFrags.empty()) { |
| 374 | m_firstUnackedFrag = m_unackedFrags.end(); |
| 375 | } |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | LpReliability::UnackedFrag::UnackedFrag(lp::Packet pkt) |
| 379 | : pkt(std::move(pkt)) |
| 380 | , sendTime(time::steady_clock::now()) |
| 381 | , retxCount(0) |
| 382 | , nGreaterSeqAcks(0) |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 383 | { |
| 384 | } |
| 385 | |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 386 | LpReliability::NetPkt::NetPkt(lp::Packet&& pkt, bool isInterest) |
| 387 | : pkt(std::move(pkt)) |
| 388 | , isInterest(isInterest) |
| 389 | , didRetx(false) |
| 390 | { |
| 391 | } |
| 392 | |
Eric Newberry | 5ab4cf8 | 2020-02-03 15:40:16 -0800 | [diff] [blame^] | 393 | std::ostream& |
| 394 | operator<<(std::ostream& os, const FaceLogHelper<LpReliability>& flh) |
| 395 | { |
| 396 | if (flh.obj.getLinkService() == nullptr) { |
| 397 | os << "[id=0,local=unknown,remote=unknown] "; |
| 398 | } |
| 399 | else { |
| 400 | os << FaceLogHelper<LinkService>(*flh.obj.getLinkService()); |
| 401 | } |
| 402 | return os; |
| 403 | } |
| 404 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 405 | } // namespace face |
| 406 | } // namespace nfd |