blob: df4ad4b7eb271d95c739e2011463b3a2db91d36e [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/third_party/quiche/src/quic/core/quic_sent_packet_manager.h"
6
7#include <algorithm>
vasilvv872e7a32019-03-12 16:42:44 -07008#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -05009
10#include "net/third_party/quiche/src/quic/core/congestion_control/general_loss_algorithm.h"
11#include "net/third_party/quiche/src/quic/core/congestion_control/pacing_sender.h"
12#include "net/third_party/quiche/src/quic/core/crypto/crypto_protocol.h"
dschinazi56fb53e2019-06-21 15:30:04 -070013#include "net/third_party/quiche/src/quic/core/proto/cached_network_parameters_proto.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014#include "net/third_party/quiche/src/quic/core/quic_connection_stats.h"
wub967ba572019-04-01 09:27:52 -070015#include "net/third_party/quiche/src/quic/core/quic_types.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050016#include "net/third_party/quiche/src/quic/core/quic_utils.h"
17#include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h"
18#include "net/third_party/quiche/src/quic/platform/api/quic_flag_utils.h"
19#include "net/third_party/quiche/src/quic/platform/api/quic_flags.h"
20#include "net/third_party/quiche/src/quic/platform/api/quic_logging.h"
21#include "net/third_party/quiche/src/quic/platform/api/quic_map_util.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050022
23namespace quic {
24
25namespace {
26static const int64_t kDefaultRetransmissionTimeMs = 500;
27static const int64_t kMaxRetransmissionTimeMs = 60000;
28// Maximum number of exponential backoffs used for RTO timeouts.
29static const size_t kMaxRetransmissions = 10;
30// Maximum number of packets retransmitted upon an RTO.
31static const size_t kMaxRetransmissionsOnTimeout = 2;
32// The path degrading delay is the sum of this number of consecutive RTO delays.
33const size_t kNumRetransmissionDelaysForPathDegradingDelay = 2;
34
35// Ensure the handshake timer isnt't faster than 10ms.
36// This limits the tenth retransmitted packet to 10s after the initial CHLO.
37static const int64_t kMinHandshakeTimeoutMs = 10;
38
39// Sends up to two tail loss probes before firing an RTO,
40// per draft RFC draft-dukkipati-tcpm-tcp-loss-probe.
41static const size_t kDefaultMaxTailLossProbes = 2;
42
QUICHE teama6ef0a62019-03-07 20:34:33 -050043// Returns true of retransmissions of the specified type should retransmit
44// the frames directly (as opposed to resulting in a loss notification).
45inline bool ShouldForceRetransmission(TransmissionType transmission_type) {
46 return transmission_type == HANDSHAKE_RETRANSMISSION ||
47 transmission_type == TLP_RETRANSMISSION ||
48 transmission_type == PROBING_RETRANSMISSION ||
fayang73d0ac42019-10-31 12:45:31 -070049 transmission_type == RTO_RETRANSMISSION ||
50 transmission_type == PTO_RETRANSMISSION;
QUICHE teama6ef0a62019-03-07 20:34:33 -050051}
52
fayang4ba55982019-05-13 05:53:22 -070053// If pacing rate is accurate, > 2 burst token is not likely to help first ACK
54// to arrive earlier, and overly large burst token could cause incast packet
55// losses.
56static const uint32_t kConservativeUnpacedBurst = 2;
57
QUICHE teama6ef0a62019-03-07 20:34:33 -050058} // namespace
59
60#define ENDPOINT \
61 (unacked_packets_.perspective() == Perspective::IS_SERVER ? "Server: " \
62 : "Client: ")
63
64QuicSentPacketManager::QuicSentPacketManager(
65 Perspective perspective,
66 const QuicClock* clock,
QUICHE team73957f12019-04-18 16:21:52 -070067 QuicRandom* random,
QUICHE teama6ef0a62019-03-07 20:34:33 -050068 QuicConnectionStats* stats,
fayang3be090d2020-02-11 14:05:08 -080069 CongestionControlType congestion_control_type)
QUICHE teama6ef0a62019-03-07 20:34:33 -050070 : unacked_packets_(perspective),
71 clock_(clock),
QUICHE team73957f12019-04-18 16:21:52 -070072 random_(random),
QUICHE teama6ef0a62019-03-07 20:34:33 -050073 stats_(stats),
74 debug_delegate_(nullptr),
75 network_change_visitor_(nullptr),
76 initial_congestion_window_(kInitialCongestionWindow),
wub37ec5962019-04-03 09:02:51 -070077 loss_algorithm_(GetInitialLossAlgorithm()),
QUICHE teama6ef0a62019-03-07 20:34:33 -050078 consecutive_rto_count_(0),
79 consecutive_tlp_count_(0),
80 consecutive_crypto_retransmission_count_(0),
81 pending_timer_transmission_count_(0),
82 max_tail_loss_probes_(kDefaultMaxTailLossProbes),
83 max_rto_packets_(kMaxRetransmissionsOnTimeout),
84 enable_half_rtt_tail_loss_probe_(false),
85 using_pacing_(false),
86 use_new_rto_(false),
87 conservative_handshake_retransmits_(false),
88 min_tlp_timeout_(
89 QuicTime::Delta::FromMilliseconds(kMinTailLossProbeTimeoutMs)),
90 min_rto_timeout_(
91 QuicTime::Delta::FromMilliseconds(kMinRetransmissionTimeMs)),
QUICHE teama6ef0a62019-03-07 20:34:33 -050092 largest_mtu_acked_(0),
fayang63a19842020-01-23 02:51:28 -080093 handshake_finished_(false),
fkastenholz59c653b2019-07-15 09:55:53 -070094 peer_max_ack_delay_(
QUICHE teama6ef0a62019-03-07 20:34:33 -050095 QuicTime::Delta::FromMilliseconds(kDefaultDelayedAckTimeMs)),
96 rtt_updated_(false),
QUICHE team9929cc42019-03-13 08:17:43 -070097 acked_packets_iter_(last_ack_frame_.packets.rbegin()),
fayang62f867a2019-08-22 12:05:01 -070098 pto_enabled_(false),
fayangce0a3162019-08-15 09:05:36 -070099 max_probe_packets_per_pto_(2),
100 consecutive_pto_count_(0),
fayang19d2d5b2019-09-11 14:22:03 -0700101 handshake_mode_disabled_(false),
fayang4c908f02019-11-01 07:26:17 -0700102 skip_packet_number_for_pto_(false),
103 always_include_max_ack_delay_for_pto_timeout_(true),
fayang7085a6d2019-11-04 07:03:57 -0800104 pto_exponential_backoff_start_point_(0),
fayang75db4342019-11-04 13:29:14 -0800105 pto_rttvar_multiplier_(4),
fayang4aa22402020-01-07 11:36:07 -0800106 num_tlp_timeout_ptos_(0),
fayang9a0e1bd2020-02-19 13:13:04 -0800107 one_rtt_packet_acked_(false),
fayang2ccfbcf2020-02-28 12:37:08 -0800108 one_rtt_packet_sent_(false),
109 arm_1st_pto_with_earliest_inflight_sent_time_(false) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500110 SetSendAlgorithm(congestion_control_type);
111}
112
wub37ec5962019-04-03 09:02:51 -0700113LossDetectionInterface* QuicSentPacketManager::GetInitialLossAlgorithm() {
fayangbf3d2862019-06-20 14:13:44 -0700114 return &uber_loss_algorithm_;
wub37ec5962019-04-03 09:02:51 -0700115}
116
QUICHE teama6ef0a62019-03-07 20:34:33 -0500117QuicSentPacketManager::~QuicSentPacketManager() {}
118
119void QuicSentPacketManager::SetFromConfig(const QuicConfig& config) {
120 const Perspective perspective = unacked_packets_.perspective();
121 if (config.HasReceivedInitialRoundTripTimeUs() &&
122 config.ReceivedInitialRoundTripTimeUs() > 0) {
123 if (!config.HasClientSentConnectionOption(kNRTT, perspective)) {
124 SetInitialRtt(QuicTime::Delta::FromMicroseconds(
125 config.ReceivedInitialRoundTripTimeUs()));
126 }
127 } else if (config.HasInitialRoundTripTimeUsToSend() &&
128 config.GetInitialRoundTripTimeUsToSend() > 0) {
129 SetInitialRtt(QuicTime::Delta::FromMicroseconds(
130 config.GetInitialRoundTripTimeUsToSend()));
131 }
ianswett43eefae2019-08-02 12:27:15 -0700132 if (config.HasReceivedMaxAckDelayMs()) {
133 peer_max_ack_delay_ =
134 QuicTime::Delta::FromMilliseconds(config.ReceivedMaxAckDelayMs());
135 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500136 if (config.HasClientSentConnectionOption(kMAD0, perspective)) {
137 rtt_stats_.set_ignore_max_ack_delay(true);
138 }
139 if (config.HasClientSentConnectionOption(kMAD1, perspective)) {
ianswett43eefae2019-08-02 12:27:15 -0700140 rtt_stats_.set_initial_max_ack_delay(peer_max_ack_delay_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500141 }
ianswettad65ab92019-10-28 07:19:07 -0700142 if (config.HasClientSentConnectionOption(kMAD2, perspective)) {
143 // Set the minimum to the alarm granularity.
ianswett8f90e512019-12-18 10:50:27 -0800144 min_tlp_timeout_ = kAlarmGranularity;
ianswettad65ab92019-10-28 07:19:07 -0700145 }
146 if (config.HasClientSentConnectionOption(kMAD3, perspective)) {
147 // Set the minimum to the alarm granularity.
ianswett8f90e512019-12-18 10:50:27 -0800148 min_rto_timeout_ = kAlarmGranularity;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500149 }
150
fayang961eaa02020-01-10 13:04:22 -0800151 if (config.HasClientSentConnectionOption(k2PTO, perspective)) {
152 pto_enabled_ = true;
153 }
154 if (config.HasClientSentConnectionOption(k1PTO, perspective)) {
155 pto_enabled_ = true;
156 max_probe_packets_per_pto_ = 1;
fayangce0a3162019-08-15 09:05:36 -0700157 }
158
fayang91ab42f2020-01-13 17:18:48 -0800159 if (config.HasClientSentConnectionOption(kPTOS, perspective)) {
fayang4c908f02019-11-01 07:26:17 -0700160 if (!pto_enabled_) {
161 QUIC_PEER_BUG
162 << "PTO is not enabled when receiving PTOS connection option.";
163 pto_enabled_ = true;
164 max_probe_packets_per_pto_ = 1;
165 }
166 skip_packet_number_for_pto_ = true;
167 }
168
fayang7085a6d2019-11-04 07:03:57 -0800169 if (pto_enabled_) {
170 if (config.HasClientSentConnectionOption(kPTOA, perspective)) {
fayang7085a6d2019-11-04 07:03:57 -0800171 always_include_max_ack_delay_for_pto_timeout_ = false;
172 }
173 if (config.HasClientSentConnectionOption(kPEB1, perspective)) {
fayang7085a6d2019-11-04 07:03:57 -0800174 StartExponentialBackoffAfterNthPto(1);
175 }
176 if (config.HasClientSentConnectionOption(kPEB2, perspective)) {
fayang7085a6d2019-11-04 07:03:57 -0800177 StartExponentialBackoffAfterNthPto(2);
178 }
fayang75db4342019-11-04 13:29:14 -0800179 if (config.HasClientSentConnectionOption(kPVS1, perspective)) {
fayang75db4342019-11-04 13:29:14 -0800180 pto_rttvar_multiplier_ = 2;
181 }
fayang4aa22402020-01-07 11:36:07 -0800182 if (config.HasClientSentConnectionOption(kPAG1, perspective)) {
183 QUIC_CODE_COUNT(one_aggressive_pto);
184 num_tlp_timeout_ptos_ = 1;
185 }
186 if (config.HasClientSentConnectionOption(kPAG2, perspective)) {
187 QUIC_CODE_COUNT(two_aggressive_ptos);
188 num_tlp_timeout_ptos_ = 2;
189 }
fayang2ccfbcf2020-02-28 12:37:08 -0800190 if (GetQuicReloadableFlag(quic_arm_pto_with_earliest_sent_time) &&
191 config.HasClientSentConnectionOption(kPLE1, perspective)) {
192 QUIC_RELOADABLE_FLAG_COUNT(quic_arm_pto_with_earliest_sent_time);
193 arm_1st_pto_with_earliest_inflight_sent_time_ = true;
194 }
fayang4c908f02019-11-01 07:26:17 -0700195 }
196
QUICHE teama6ef0a62019-03-07 20:34:33 -0500197 // Configure congestion control.
198 if (config.HasClientRequestedIndependentOption(kTBBR, perspective)) {
199 SetSendAlgorithm(kBBR);
200 }
wuba9a43cb2019-07-17 15:22:42 -0700201 if (GetQuicReloadableFlag(quic_allow_client_enabled_bbr_v2) &&
202 config.HasClientRequestedIndependentOption(kB2ON, perspective)) {
203 QUIC_RELOADABLE_FLAG_COUNT(quic_allow_client_enabled_bbr_v2);
204 SetSendAlgorithm(kBBRv2);
205 }
206
QUICHE teama6ef0a62019-03-07 20:34:33 -0500207 if (config.HasClientRequestedIndependentOption(kRENO, perspective)) {
208 SetSendAlgorithm(kRenoBytes);
209 } else if (config.HasClientRequestedIndependentOption(kBYTE, perspective) ||
210 (GetQuicReloadableFlag(quic_default_to_bbr) &&
211 config.HasClientRequestedIndependentOption(kQBIC, perspective))) {
212 SetSendAlgorithm(kCubicBytes);
213 } else if (GetQuicReloadableFlag(quic_enable_pcc3) &&
214 config.HasClientRequestedIndependentOption(kTPCC, perspective)) {
215 SetSendAlgorithm(kPCC);
216 }
wuba9a43cb2019-07-17 15:22:42 -0700217
QUICHE teama6ef0a62019-03-07 20:34:33 -0500218 // Initial window.
219 if (GetQuicReloadableFlag(quic_unified_iw_options)) {
220 if (config.HasClientRequestedIndependentOption(kIW03, perspective)) {
221 initial_congestion_window_ = 3;
222 send_algorithm_->SetInitialCongestionWindowInPackets(3);
223 }
224 if (config.HasClientRequestedIndependentOption(kIW10, perspective)) {
225 initial_congestion_window_ = 10;
226 send_algorithm_->SetInitialCongestionWindowInPackets(10);
227 }
228 if (config.HasClientRequestedIndependentOption(kIW20, perspective)) {
229 initial_congestion_window_ = 20;
230 send_algorithm_->SetInitialCongestionWindowInPackets(20);
231 }
232 if (config.HasClientRequestedIndependentOption(kIW50, perspective)) {
233 initial_congestion_window_ = 50;
234 send_algorithm_->SetInitialCongestionWindowInPackets(50);
235 }
236 }
fayang402103c2020-01-10 13:36:24 -0800237 if (GetQuicReloadableFlag(quic_bbr_mitigate_overly_large_bandwidth_sample) &&
238 config.HasClientRequestedIndependentOption(kBWS5, perspective)) {
239 initial_congestion_window_ = 10;
240 send_algorithm_->SetInitialCongestionWindowInPackets(10);
241 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500242
danzh88e3e052019-06-13 11:47:18 -0700243 using_pacing_ = !GetQuicFlag(FLAGS_quic_disable_pacing_for_perf_tests);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500244
QUICHE teama6ef0a62019-03-07 20:34:33 -0500245 if (config.HasClientSentConnectionOption(kNTLP, perspective)) {
246 max_tail_loss_probes_ = 0;
247 }
248 if (config.HasClientSentConnectionOption(k1TLP, perspective)) {
249 max_tail_loss_probes_ = 1;
250 }
251 if (config.HasClientSentConnectionOption(k1RTO, perspective)) {
252 max_rto_packets_ = 1;
253 }
254 if (config.HasClientSentConnectionOption(kTLPR, perspective)) {
255 enable_half_rtt_tail_loss_probe_ = true;
256 }
257 if (config.HasClientSentConnectionOption(kNRTO, perspective)) {
258 use_new_rto_ = true;
259 }
260 // Configure loss detection.
fayanga590b752020-01-13 06:37:35 -0800261 if (config.HasClientRequestedIndependentOption(kILD0, perspective)) {
fayang3be090d2020-02-11 14:05:08 -0800262 uber_loss_algorithm_.SetReorderingShift(kDefaultIetfLossDelayShift);
263 uber_loss_algorithm_.DisableAdaptiveReorderingThreshold();
fayanga590b752020-01-13 06:37:35 -0800264 }
265 if (config.HasClientRequestedIndependentOption(kILD1, perspective)) {
fayanga590b752020-01-13 06:37:35 -0800266 uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift);
fayang3be090d2020-02-11 14:05:08 -0800267 uber_loss_algorithm_.DisableAdaptiveReorderingThreshold();
fayanga590b752020-01-13 06:37:35 -0800268 }
269 if (config.HasClientRequestedIndependentOption(kILD2, perspective)) {
fayanga590b752020-01-13 06:37:35 -0800270 uber_loss_algorithm_.EnableAdaptiveReorderingThreshold();
fayang3be090d2020-02-11 14:05:08 -0800271 uber_loss_algorithm_.SetReorderingShift(kDefaultIetfLossDelayShift);
fayanga590b752020-01-13 06:37:35 -0800272 }
273 if (config.HasClientRequestedIndependentOption(kILD3, perspective)) {
fayanga590b752020-01-13 06:37:35 -0800274 uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift);
275 uber_loss_algorithm_.EnableAdaptiveReorderingThreshold();
276 }
277 if (config.HasClientRequestedIndependentOption(kILD4, perspective)) {
fayanga590b752020-01-13 06:37:35 -0800278 uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift);
279 uber_loss_algorithm_.EnableAdaptiveReorderingThreshold();
280 uber_loss_algorithm_.EnableAdaptiveTimeThreshold();
fayangb0c7b4b2019-09-12 06:45:24 -0700281 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500282 if (config.HasClientSentConnectionOption(kCONH, perspective)) {
283 conservative_handshake_retransmits_ = true;
284 }
285 send_algorithm_->SetFromConfig(config, perspective);
286
287 if (network_change_visitor_ != nullptr) {
288 network_change_visitor_->OnCongestionChange();
289 }
290}
291
292void QuicSentPacketManager::ResumeConnectionState(
293 const CachedNetworkParameters& cached_network_params,
294 bool max_bandwidth_resumption) {
295 QuicBandwidth bandwidth = QuicBandwidth::FromBytesPerSecond(
296 max_bandwidth_resumption
297 ? cached_network_params.max_bandwidth_estimate_bytes_per_second()
298 : cached_network_params.bandwidth_estimate_bytes_per_second());
299 QuicTime::Delta rtt =
300 QuicTime::Delta::FromMilliseconds(cached_network_params.min_rtt_ms());
QUICHE teamb4e187c2019-11-14 06:22:50 -0800301 // This calls the old AdjustNetworkParameters interface, and fills certain
302 // fields in SendAlgorithmInterface::NetworkParams
303 // (e.g., quic_bbr_fix_pacing_rate) using GFE flags.
304 AdjustNetworkParameters(SendAlgorithmInterface::NetworkParams(
305 bandwidth, rtt, /*allow_cwnd_to_decrease = */ false));
QUICHE teama6ef0a62019-03-07 20:34:33 -0500306}
307
fayangf1b99dc2019-05-14 06:29:18 -0700308void QuicSentPacketManager::AdjustNetworkParameters(
QUICHE teamfdcfe3b2019-11-06 10:54:25 -0800309 const SendAlgorithmInterface::NetworkParams& params) {
QUICHE teamb4e187c2019-11-14 06:22:50 -0800310 const QuicBandwidth& bandwidth = params.bandwidth;
311 const QuicTime::Delta& rtt = params.rtt;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500312 if (!rtt.IsZero()) {
313 SetInitialRtt(rtt);
314 }
fayangbe83ecd2019-04-26 13:58:09 -0700315 const QuicByteCount old_cwnd = send_algorithm_->GetCongestionWindow();
fayang6c2d64f2019-05-20 17:12:05 -0700316 if (GetQuicReloadableFlag(quic_conservative_bursts) && using_pacing_ &&
317 !bandwidth.IsZero()) {
fayang4ba55982019-05-13 05:53:22 -0700318 QUIC_RELOADABLE_FLAG_COUNT(quic_conservative_bursts);
319 pacing_sender_.SetBurstTokens(kConservativeUnpacedBurst);
320 }
QUICHE teamb4e187c2019-11-14 06:22:50 -0800321 send_algorithm_->AdjustNetworkParameters(params);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500322 if (debug_delegate_ != nullptr) {
fayangbe83ecd2019-04-26 13:58:09 -0700323 debug_delegate_->OnAdjustNetworkParameters(
fayangef9c8f92019-04-29 13:35:13 -0700324 bandwidth, rtt.IsZero() ? rtt_stats_.SmoothedOrInitialRtt() : rtt,
325 old_cwnd, send_algorithm_->GetCongestionWindow());
QUICHE teama6ef0a62019-03-07 20:34:33 -0500326 }
327}
328
329void QuicSentPacketManager::SetHandshakeConfirmed() {
fayang63a19842020-01-23 02:51:28 -0800330 if (!handshake_finished_) {
331 handshake_finished_ = true;
vasilvv975c2352019-10-03 16:53:57 -0400332 NeuterHandshakePackets();
333 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500334}
335
fayang3eb82212019-04-16 12:05:46 -0700336void QuicSentPacketManager::PostProcessNewlyAckedPackets(
fayangf8e918b2019-07-16 13:03:16 -0700337 QuicPacketNumber ack_packet_number,
QUICHE teama6ef0a62019-03-07 20:34:33 -0500338 const QuicAckFrame& ack_frame,
339 QuicTime ack_receive_time,
340 bool rtt_updated,
341 QuicByteCount prior_bytes_in_flight) {
fayangcff885a2019-10-22 07:39:04 -0700342 unacked_packets_.NotifyAggregatedStreamFrameAcked(
343 last_ack_frame_.ack_delay_time);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500344 InvokeLossDetection(ack_receive_time);
345 // Ignore losses in RTO mode.
346 if (consecutive_rto_count_ > 0 && !use_new_rto_) {
347 packets_lost_.clear();
348 }
349 MaybeInvokeCongestionEvent(rtt_updated, prior_bytes_in_flight,
350 ack_receive_time);
351 unacked_packets_.RemoveObsoletePackets();
352
353 sustained_bandwidth_recorder_.RecordEstimate(
354 send_algorithm_->InRecovery(), send_algorithm_->InSlowStart(),
355 send_algorithm_->BandwidthEstimate(), ack_receive_time, clock_->WallNow(),
356 rtt_stats_.smoothed_rtt());
357
358 // Anytime we are making forward progress and have a new RTT estimate, reset
359 // the backoff counters.
360 if (rtt_updated) {
361 if (consecutive_rto_count_ > 0) {
362 // If the ack acknowledges data sent prior to the RTO,
363 // the RTO was spurious.
364 if (LargestAcked(ack_frame) < first_rto_transmission_) {
365 // Replace SRTT with latest_rtt and increase the variance to prevent
366 // a spurious RTO from happening again.
367 rtt_stats_.ExpireSmoothedMetrics();
368 } else {
369 if (!use_new_rto_) {
370 send_algorithm_->OnRetransmissionTimeout(true);
371 }
372 }
373 }
374 // Reset all retransmit counters any time a new packet is acked.
375 consecutive_rto_count_ = 0;
376 consecutive_tlp_count_ = 0;
fayangce0a3162019-08-15 09:05:36 -0700377 consecutive_pto_count_ = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500378 consecutive_crypto_retransmission_count_ = 0;
379 }
380
381 if (debug_delegate_ != nullptr) {
fayangf8e918b2019-07-16 13:03:16 -0700382 debug_delegate_->OnIncomingAck(ack_packet_number, ack_frame,
383 ack_receive_time, LargestAcked(ack_frame),
384 rtt_updated, GetLeastUnacked());
QUICHE teama6ef0a62019-03-07 20:34:33 -0500385 }
386 // Remove packets below least unacked from all_packets_acked_ and
387 // last_ack_frame_.
388 last_ack_frame_.packets.RemoveUpTo(unacked_packets_.GetLeastUnacked());
389 last_ack_frame_.received_packet_times.clear();
390}
391
392void QuicSentPacketManager::MaybeInvokeCongestionEvent(
393 bool rtt_updated,
394 QuicByteCount prior_in_flight,
395 QuicTime event_time) {
396 if (!rtt_updated && packets_acked_.empty() && packets_lost_.empty()) {
397 return;
398 }
399 if (using_pacing_) {
400 pacing_sender_.OnCongestionEvent(rtt_updated, prior_in_flight, event_time,
401 packets_acked_, packets_lost_);
402 } else {
403 send_algorithm_->OnCongestionEvent(rtt_updated, prior_in_flight, event_time,
404 packets_acked_, packets_lost_);
405 }
406 packets_acked_.clear();
407 packets_lost_.clear();
408 if (network_change_visitor_ != nullptr) {
409 network_change_visitor_->OnCongestionChange();
410 }
411}
412
413void QuicSentPacketManager::RetransmitUnackedPackets(
414 TransmissionType retransmission_type) {
415 DCHECK(retransmission_type == ALL_UNACKED_RETRANSMISSION ||
416 retransmission_type == ALL_INITIAL_RETRANSMISSION);
417 QuicPacketNumber packet_number = unacked_packets_.GetLeastUnacked();
ianswett898306b2019-04-23 11:05:57 -0700418 for (QuicUnackedPacketMap::iterator it = unacked_packets_.begin();
QUICHE teama6ef0a62019-03-07 20:34:33 -0500419 it != unacked_packets_.end(); ++it, ++packet_number) {
420 if ((retransmission_type == ALL_UNACKED_RETRANSMISSION ||
ianswett898306b2019-04-23 11:05:57 -0700421 it->encryption_level == ENCRYPTION_ZERO_RTT)) {
ianswett04004652019-09-03 18:46:57 -0700422 if (it->in_flight) {
ianswett898306b2019-04-23 11:05:57 -0700423 // Remove 0-RTT packets and packets of the wrong version from flight,
424 // because neither can be processed by the peer.
425 unacked_packets_.RemoveFromInFlight(&*it);
426 }
427 if (unacked_packets_.HasRetransmittableFrames(*it)) {
428 MarkForRetransmission(packet_number, retransmission_type);
429 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500430 }
431 }
ianswett898306b2019-04-23 11:05:57 -0700432 if (retransmission_type == ALL_UNACKED_RETRANSMISSION &&
433 unacked_packets_.bytes_in_flight() > 0) {
434 QUIC_BUG << "RetransmitUnackedPackets should remove all packets from flight"
435 << ", bytes_in_flight:" << unacked_packets_.bytes_in_flight();
436 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500437}
438
439void QuicSentPacketManager::NeuterUnencryptedPackets() {
wubf4ab9652020-02-20 14:45:43 -0800440 for (QuicPacketNumber packet_number :
441 unacked_packets_.NeuterUnencryptedPackets()) {
442 if (avoid_overestimate_bandwidth_with_aggregation_) {
443 QUIC_RELOADABLE_FLAG_COUNT_N(
444 quic_avoid_overestimate_bandwidth_with_aggregation, 1, 4);
445 send_algorithm_->OnPacketNeutered(packet_number);
446 }
447 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500448}
449
450void QuicSentPacketManager::NeuterHandshakePackets() {
wubf4ab9652020-02-20 14:45:43 -0800451 for (QuicPacketNumber packet_number :
452 unacked_packets_.NeuterHandshakePackets()) {
453 if (avoid_overestimate_bandwidth_with_aggregation_) {
454 QUIC_RELOADABLE_FLAG_COUNT_N(
455 quic_avoid_overestimate_bandwidth_with_aggregation, 2, 4);
456 send_algorithm_->OnPacketNeutered(packet_number);
457 }
458 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500459}
460
fayang4c908f02019-11-01 07:26:17 -0700461bool QuicSentPacketManager::ShouldAddMaxAckDelay() const {
462 DCHECK(pto_enabled_);
463 if (always_include_max_ack_delay_for_pto_timeout_) {
464 return true;
465 }
466 if (!unacked_packets_
467 .GetLargestSentRetransmittableOfPacketNumberSpace(APPLICATION_DATA)
468 .IsInitialized() ||
469 unacked_packets_.GetLargestSentRetransmittableOfPacketNumberSpace(
470 APPLICATION_DATA) <
471 FirstSendingPacketNumber() + kMinReceivedBeforeAckDecimation - 1) {
472 // Peer is doing TCP style acking. Expect an immediate ACK if more than 1
473 // packet are outstanding.
474 if (unacked_packets_.packets_in_flight() >=
475 kDefaultRetransmittablePacketsBeforeAck) {
476 return false;
477 }
478 } else if (unacked_packets_.packets_in_flight() >=
479 kMaxRetransmittablePacketsBeforeAck) {
480 // Peer is doing ack decimation. Expect an immediate ACK if >= 10
481 // packets are outstanding.
482 return false;
483 }
484 if (skip_packet_number_for_pto_ && consecutive_pto_count_ > 0) {
485 // An immediate ACK is expected when doing PTOS. Please note, this will miss
486 // cases when PTO fires and turns out to be spurious.
487 return false;
488 }
489 return true;
490}
491
fayang18ff23b2020-01-28 09:19:00 -0800492QuicTime QuicSentPacketManager::GetEarliestPacketSentTimeForPto(
493 PacketNumberSpace* packet_number_space) const {
494 DCHECK(supports_multiple_packet_number_spaces());
495 QuicTime earliest_sent_time = QuicTime::Zero();
496 for (int8_t i = 0; i < NUM_PACKET_NUMBER_SPACES; ++i) {
497 const QuicTime sent_time = unacked_packets_.GetLastInFlightPacketSentTime(
498 static_cast<PacketNumberSpace>(i));
fayang9a0e1bd2020-02-19 13:13:04 -0800499 if (!ShouldArmPtoForApplicationData() && i == APPLICATION_DATA) {
fayang18ff23b2020-01-28 09:19:00 -0800500 continue;
501 }
fayang9a0e1bd2020-02-19 13:13:04 -0800502 if (!sent_time.IsInitialized() || (earliest_sent_time.IsInitialized() &&
503 earliest_sent_time <= sent_time)) {
504 continue;
fayang18ff23b2020-01-28 09:19:00 -0800505 }
fayang9a0e1bd2020-02-19 13:13:04 -0800506 earliest_sent_time = sent_time;
507 *packet_number_space = static_cast<PacketNumberSpace>(i);
fayang18ff23b2020-01-28 09:19:00 -0800508 }
fayang9a0e1bd2020-02-19 13:13:04 -0800509
fayang18ff23b2020-01-28 09:19:00 -0800510 return earliest_sent_time;
511}
512
fayang9a0e1bd2020-02-19 13:13:04 -0800513bool QuicSentPacketManager::ShouldArmPtoForApplicationData() const {
514 DCHECK(supports_multiple_packet_number_spaces());
515 // Application data must be ignored before handshake completes (1-RTT key
516 // is available). Not arming PTO for application data to prioritize the
517 // completion of handshake. On the server side, handshake_finished_
518 // indicates handshake complete (and confirmed). On the client side,
519 // one_rtt_packet_sent_ indicates handshake complete (while handshake
520 // confirmation will happen later).
521 return handshake_finished_ ||
522 (unacked_packets_.perspective() == Perspective::IS_CLIENT &&
523 one_rtt_packet_sent_);
524}
525
QUICHE teama6ef0a62019-03-07 20:34:33 -0500526void QuicSentPacketManager::MarkForRetransmission(
527 QuicPacketNumber packet_number,
528 TransmissionType transmission_type) {
529 QuicTransmissionInfo* transmission_info =
530 unacked_packets_.GetMutableTransmissionInfo(packet_number);
fayangcff885a2019-10-22 07:39:04 -0700531 // A previous RTO retransmission may cause connection close; packets without
532 // retransmittable frames can be marked for loss retransmissions.
533 QUIC_BUG_IF(transmission_type != LOSS_RETRANSMISSION &&
534 transmission_type != RTO_RETRANSMISSION &&
QUICHE teama6ef0a62019-03-07 20:34:33 -0500535 !unacked_packets_.HasRetransmittableFrames(*transmission_info))
dschinazief79a5f2019-10-04 10:32:54 -0700536 << "transmission_type: " << TransmissionTypeToString(transmission_type);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500537 // Handshake packets should never be sent as probing retransmissions.
fayang73d0ac42019-10-31 12:45:31 -0700538 DCHECK(!transmission_info->has_crypto_handshake ||
QUICHE teama6ef0a62019-03-07 20:34:33 -0500539 transmission_type != PROBING_RETRANSMISSION);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500540
541 HandleRetransmission(transmission_type, transmission_info);
542
543 // Update packet state according to transmission type.
544 transmission_info->state =
545 QuicUtils::RetransmissionTypeToPacketState(transmission_type);
546}
547
548void QuicSentPacketManager::HandleRetransmission(
549 TransmissionType transmission_type,
550 QuicTransmissionInfo* transmission_info) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500551 if (ShouldForceRetransmission(transmission_type)) {
552 // TODO(fayang): Consider to make RTO and PROBING retransmission
553 // strategies be configurable by applications. Today, TLP, RTO and PROBING
554 // retransmissions are handled similarly, i.e., always retranmist the
555 // oldest outstanding data. This is not ideal in general because different
556 // applications may want different strategies. For example, some
557 // applications may want to use higher priority stream data for bandwidth
558 // probing, and some applications want to consider RTO is an indication of
559 // loss, etc.
560 unacked_packets_.RetransmitFrames(*transmission_info, transmission_type);
561 return;
562 }
563
564 unacked_packets_.NotifyFramesLost(*transmission_info, transmission_type);
565 if (transmission_info->retransmittable_frames.empty()) {
566 return;
567 }
568
569 if (transmission_type == LOSS_RETRANSMISSION) {
570 // Record the first packet sent after loss, which allows to wait 1
571 // more RTT before giving up on this lost packet.
572 transmission_info->retransmission =
573 unacked_packets_.largest_sent_packet() + 1;
574 } else {
575 // Clear the recorded first packet sent after loss when version or
576 // encryption changes.
577 transmission_info->retransmission.Clear();
578 }
579}
580
581void QuicSentPacketManager::RecordOneSpuriousRetransmission(
582 const QuicTransmissionInfo& info) {
583 stats_->bytes_spuriously_retransmitted += info.bytes_sent;
584 ++stats_->packets_spuriously_retransmitted;
585 if (debug_delegate_ != nullptr) {
586 debug_delegate_->OnSpuriousPacketRetransmission(info.transmission_type,
587 info.bytes_sent);
588 }
589}
590
QUICHE teama6ef0a62019-03-07 20:34:33 -0500591void QuicSentPacketManager::MarkPacketHandled(QuicPacketNumber packet_number,
592 QuicTransmissionInfo* info,
fayang19d2d5b2019-09-11 14:22:03 -0700593 QuicTime ack_receive_time,
QUICHE team9467db02019-05-30 09:38:45 -0700594 QuicTime::Delta ack_delay_time,
595 QuicTime receive_timestamp) {
fayangcff885a2019-10-22 07:39:04 -0700596 // Try to aggregate acked stream frames if acked packet is not a
597 // retransmission.
598 if (info->transmission_type == NOT_RETRANSMISSION) {
599 unacked_packets_.MaybeAggregateAckedStreamFrame(*info, ack_delay_time,
600 receive_timestamp);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500601 } else {
fayangcff885a2019-10-22 07:39:04 -0700602 unacked_packets_.NotifyAggregatedStreamFrameAcked(ack_delay_time);
603 const bool new_data_acked = unacked_packets_.NotifyFramesAcked(
604 *info, ack_delay_time, receive_timestamp);
605 if (!new_data_acked && info->transmission_type != NOT_RETRANSMISSION) {
606 // Record as a spurious retransmission if this packet is a
607 // retransmission and no new data gets acked.
608 QUIC_DVLOG(1) << "Detect spurious retransmitted packet " << packet_number
609 << " transmission type: "
610 << TransmissionTypeToString(info->transmission_type);
fayangcc4ea6a2019-10-25 08:44:03 -0700611 RecordOneSpuriousRetransmission(*info);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500612 }
613 }
fayangcc4ea6a2019-10-25 08:44:03 -0700614 if (info->state == LOST) {
fayangcff885a2019-10-22 07:39:04 -0700615 // Record as a spurious loss as a packet previously declared lost gets
616 // acked.
fayangcff885a2019-10-22 07:39:04 -0700617 const PacketNumberSpace packet_number_space =
618 unacked_packets_.GetPacketNumberSpace(info->encryption_level);
619 const QuicPacketNumber previous_largest_acked =
620 supports_multiple_packet_number_spaces()
621 ? unacked_packets_.GetLargestAckedOfPacketNumberSpace(
622 packet_number_space)
623 : unacked_packets_.largest_acked();
624 QUIC_DVLOG(1) << "Packet " << packet_number
625 << " was detected lost spuriously, "
626 "previous_largest_acked: "
627 << previous_largest_acked;
628 loss_algorithm_->SpuriousLossDetected(unacked_packets_, rtt_stats_,
629 ack_receive_time, packet_number,
630 previous_largest_acked);
wub02831dc2020-02-28 12:00:54 -0800631 ++stats_->packet_spuriously_detected_lost;
fayangcff885a2019-10-22 07:39:04 -0700632 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500633
634 if (network_change_visitor_ != nullptr &&
635 info->bytes_sent > largest_mtu_acked_) {
636 largest_mtu_acked_ = info->bytes_sent;
637 network_change_visitor_->OnPathMtuIncreased(largest_mtu_acked_);
638 }
639 unacked_packets_.RemoveFromInFlight(info);
640 unacked_packets_.RemoveRetransmittability(info);
641 info->state = ACKED;
642}
643
644bool QuicSentPacketManager::OnPacketSent(
645 SerializedPacket* serialized_packet,
QUICHE teama6ef0a62019-03-07 20:34:33 -0500646 QuicTime sent_time,
647 TransmissionType transmission_type,
648 HasRetransmittableData has_retransmittable_data) {
649 QuicPacketNumber packet_number = serialized_packet->packet_number;
650 DCHECK_LE(FirstSendingPacketNumber(), packet_number);
651 DCHECK(!unacked_packets_.IsUnacked(packet_number));
652 QUIC_BUG_IF(serialized_packet->encrypted_length == 0)
653 << "Cannot send empty packets.";
QUICHE teama6ef0a62019-03-07 20:34:33 -0500654 if (pending_timer_transmission_count_ > 0) {
655 --pending_timer_transmission_count_;
656 }
657
658 bool in_flight = has_retransmittable_data == HAS_RETRANSMITTABLE_DATA;
659 if (using_pacing_) {
660 pacing_sender_.OnPacketSent(
661 sent_time, unacked_packets_.bytes_in_flight(), packet_number,
662 serialized_packet->encrypted_length, has_retransmittable_data);
663 } else {
664 send_algorithm_->OnPacketSent(
665 sent_time, unacked_packets_.bytes_in_flight(), packet_number,
666 serialized_packet->encrypted_length, has_retransmittable_data);
667 }
668
fayang9a0e1bd2020-02-19 13:13:04 -0800669 if (serialized_packet->encryption_level == ENCRYPTION_FORWARD_SECURE) {
670 one_rtt_packet_sent_ = true;
671 }
672
fayangcff885a2019-10-22 07:39:04 -0700673 unacked_packets_.AddSentPacket(serialized_packet, transmission_type,
674 sent_time, in_flight);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500675 // Reset the retransmission timer anytime a pending packet is sent.
676 return in_flight;
677}
678
fayang67f82272019-08-14 16:08:45 -0700679QuicSentPacketManager::RetransmissionTimeoutMode
680QuicSentPacketManager::OnRetransmissionTimeout() {
fayang5f135052019-08-22 17:59:40 -0700681 DCHECK(unacked_packets_.HasInFlightPackets() ||
fayang63a19842020-01-23 02:51:28 -0800682 (handshake_mode_disabled_ && !handshake_finished_));
QUICHE teama6ef0a62019-03-07 20:34:33 -0500683 DCHECK_EQ(0u, pending_timer_transmission_count_);
684 // Handshake retransmission, timer based loss detection, TLP, and RTO are
685 // implemented with a single alarm. The handshake alarm is set when the
686 // handshake has not completed, the loss alarm is set when the loss detection
687 // algorithm says to, and the TLP and RTO alarms are set after that.
688 // The TLP alarm is always set to run for under an RTO.
689 switch (GetRetransmissionMode()) {
690 case HANDSHAKE_MODE:
fayang5f135052019-08-22 17:59:40 -0700691 DCHECK(!handshake_mode_disabled_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500692 ++stats_->crypto_retransmit_count;
693 RetransmitCryptoPackets();
fayang67f82272019-08-14 16:08:45 -0700694 return HANDSHAKE_MODE;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500695 case LOSS_MODE: {
696 ++stats_->loss_timeout_count;
697 QuicByteCount prior_in_flight = unacked_packets_.bytes_in_flight();
698 const QuicTime now = clock_->Now();
699 InvokeLossDetection(now);
700 MaybeInvokeCongestionEvent(false, prior_in_flight, now);
fayang67f82272019-08-14 16:08:45 -0700701 return LOSS_MODE;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500702 }
703 case TLP_MODE:
704 ++stats_->tlp_count;
705 ++consecutive_tlp_count_;
706 pending_timer_transmission_count_ = 1;
707 // TLPs prefer sending new data instead of retransmitting data, so
708 // give the connection a chance to write before completing the TLP.
fayang67f82272019-08-14 16:08:45 -0700709 return TLP_MODE;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500710 case RTO_MODE:
711 ++stats_->rto_count;
712 RetransmitRtoPackets();
fayang67f82272019-08-14 16:08:45 -0700713 return RTO_MODE;
fayangce0a3162019-08-15 09:05:36 -0700714 case PTO_MODE:
715 QUIC_DVLOG(1) << ENDPOINT << "PTO mode";
716 ++stats_->pto_count;
717 ++consecutive_pto_count_;
718 pending_timer_transmission_count_ = max_probe_packets_per_pto_;
719 return PTO_MODE;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500720 }
721}
722
723void QuicSentPacketManager::RetransmitCryptoPackets() {
724 DCHECK_EQ(HANDSHAKE_MODE, GetRetransmissionMode());
725 ++consecutive_crypto_retransmission_count_;
726 bool packet_retransmitted = false;
727 QuicPacketNumber packet_number = unacked_packets_.GetLeastUnacked();
728 std::vector<QuicPacketNumber> crypto_retransmissions;
729 for (QuicUnackedPacketMap::const_iterator it = unacked_packets_.begin();
730 it != unacked_packets_.end(); ++it, ++packet_number) {
731 // Only retransmit frames which are in flight, and therefore have been sent.
fayangcff885a2019-10-22 07:39:04 -0700732 if (!it->in_flight || it->state != OUTSTANDING ||
QUICHE teama6ef0a62019-03-07 20:34:33 -0500733 !it->has_crypto_handshake ||
734 !unacked_packets_.HasRetransmittableFrames(*it)) {
735 continue;
736 }
737 packet_retransmitted = true;
fayangcff885a2019-10-22 07:39:04 -0700738 crypto_retransmissions.push_back(packet_number);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500739 ++pending_timer_transmission_count_;
740 }
741 DCHECK(packet_retransmitted) << "No crypto packets found to retransmit.";
fayangcff885a2019-10-22 07:39:04 -0700742 for (QuicPacketNumber retransmission : crypto_retransmissions) {
743 MarkForRetransmission(retransmission, HANDSHAKE_RETRANSMISSION);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500744 }
745}
746
747bool QuicSentPacketManager::MaybeRetransmitTailLossProbe() {
fayang62f867a2019-08-22 12:05:01 -0700748 DCHECK(!pto_enabled_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500749 if (pending_timer_transmission_count_ == 0) {
750 return false;
751 }
752 if (!MaybeRetransmitOldestPacket(TLP_RETRANSMISSION)) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500753 return false;
754 }
755 return true;
756}
757
758bool QuicSentPacketManager::MaybeRetransmitOldestPacket(TransmissionType type) {
759 QuicPacketNumber packet_number = unacked_packets_.GetLeastUnacked();
760 for (QuicUnackedPacketMap::const_iterator it = unacked_packets_.begin();
761 it != unacked_packets_.end(); ++it, ++packet_number) {
762 // Only retransmit frames which are in flight, and therefore have been sent.
fayangcff885a2019-10-22 07:39:04 -0700763 if (!it->in_flight || it->state != OUTSTANDING ||
QUICHE teama6ef0a62019-03-07 20:34:33 -0500764 !unacked_packets_.HasRetransmittableFrames(*it)) {
765 continue;
766 }
767 MarkForRetransmission(packet_number, type);
768 return true;
769 }
770 QUIC_DVLOG(1)
771 << "No retransmittable packets, so RetransmitOldestPacket failed.";
772 return false;
773}
774
775void QuicSentPacketManager::RetransmitRtoPackets() {
fayang62f867a2019-08-22 12:05:01 -0700776 DCHECK(!pto_enabled_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500777 QUIC_BUG_IF(pending_timer_transmission_count_ > 0)
778 << "Retransmissions already queued:" << pending_timer_transmission_count_;
779 // Mark two packets for retransmission.
780 QuicPacketNumber packet_number = unacked_packets_.GetLeastUnacked();
781 std::vector<QuicPacketNumber> retransmissions;
782 for (QuicUnackedPacketMap::const_iterator it = unacked_packets_.begin();
783 it != unacked_packets_.end(); ++it, ++packet_number) {
fayangcff885a2019-10-22 07:39:04 -0700784 if (it->state == OUTSTANDING &&
QUICHE teama6ef0a62019-03-07 20:34:33 -0500785 unacked_packets_.HasRetransmittableFrames(*it) &&
786 pending_timer_transmission_count_ < max_rto_packets_) {
fayange1e81d22020-01-06 11:41:34 -0800787 DCHECK(it->in_flight);
fayangcff885a2019-10-22 07:39:04 -0700788 retransmissions.push_back(packet_number);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500789 ++pending_timer_transmission_count_;
790 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500791 }
792 if (pending_timer_transmission_count_ > 0) {
793 if (consecutive_rto_count_ == 0) {
794 first_rto_transmission_ = unacked_packets_.largest_sent_packet() + 1;
795 }
796 ++consecutive_rto_count_;
797 }
fayangcff885a2019-10-22 07:39:04 -0700798 for (QuicPacketNumber retransmission : retransmissions) {
799 MarkForRetransmission(retransmission, RTO_RETRANSMISSION);
800 }
801 if (retransmissions.empty()) {
802 QUIC_BUG_IF(pending_timer_transmission_count_ != 0);
803 // No packets to be RTO retransmitted, raise up a credit to allow
804 // connection to send.
805 QUIC_CODE_COUNT(no_packets_to_be_rto_retransmitted);
806 pending_timer_transmission_count_ = 1;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500807 }
808}
809
fayangce0a3162019-08-15 09:05:36 -0700810void QuicSentPacketManager::MaybeSendProbePackets() {
811 if (pending_timer_transmission_count_ == 0) {
812 return;
813 }
fayang18ff23b2020-01-28 09:19:00 -0800814 PacketNumberSpace packet_number_space;
815 if (supports_multiple_packet_number_spaces()) {
816 // Find out the packet number space to send probe packets.
817 if (!GetEarliestPacketSentTimeForPto(&packet_number_space)
818 .IsInitialized()) {
819 QUIC_BUG << "earlist_sent_time not initialized when trying to send PTO "
820 "retransmissions";
821 return;
822 }
823 }
fayangce0a3162019-08-15 09:05:36 -0700824 QuicPacketNumber packet_number = unacked_packets_.GetLeastUnacked();
825 std::vector<QuicPacketNumber> probing_packets;
826 for (QuicUnackedPacketMap::const_iterator it = unacked_packets_.begin();
827 it != unacked_packets_.end(); ++it, ++packet_number) {
828 if (it->state == OUTSTANDING &&
fayang18ff23b2020-01-28 09:19:00 -0800829 unacked_packets_.HasRetransmittableFrames(*it) &&
830 (!supports_multiple_packet_number_spaces() ||
831 unacked_packets_.GetPacketNumberSpace(it->encryption_level) ==
832 packet_number_space)) {
fayange1e81d22020-01-06 11:41:34 -0800833 DCHECK(it->in_flight);
fayangce0a3162019-08-15 09:05:36 -0700834 probing_packets.push_back(packet_number);
835 if (probing_packets.size() == pending_timer_transmission_count_) {
836 break;
837 }
838 }
839 }
840
841 for (QuicPacketNumber retransmission : probing_packets) {
842 QUIC_DVLOG(1) << ENDPOINT << "Marking " << retransmission
843 << " for probing retransmission";
fayang73d0ac42019-10-31 12:45:31 -0700844 MarkForRetransmission(retransmission, PTO_RETRANSMISSION);
fayangce0a3162019-08-15 09:05:36 -0700845 }
846 // It is possible that there is not enough outstanding data for probing.
847}
848
849void QuicSentPacketManager::AdjustPendingTimerTransmissions() {
850 if (pending_timer_transmission_count_ < max_probe_packets_per_pto_) {
851 // There are packets sent already, clear credit.
852 pending_timer_transmission_count_ = 0;
853 return;
854 }
855 // No packet gets sent, leave 1 credit to allow data to be write eventually.
856 pending_timer_transmission_count_ = 1;
857}
858
fayang08a6c952019-09-18 14:29:45 -0700859void QuicSentPacketManager::EnableIetfPtoAndLossDetection() {
fayang5f135052019-08-22 17:59:40 -0700860 pto_enabled_ = true;
861 handshake_mode_disabled_ = true;
862}
863
fayang7085a6d2019-11-04 07:03:57 -0800864void QuicSentPacketManager::StartExponentialBackoffAfterNthPto(
865 size_t exponential_backoff_start_point) {
866 pto_exponential_backoff_start_point_ = exponential_backoff_start_point;
867}
868
QUICHE teama6ef0a62019-03-07 20:34:33 -0500869QuicSentPacketManager::RetransmissionTimeoutMode
870QuicSentPacketManager::GetRetransmissionMode() const {
fayang5f135052019-08-22 17:59:40 -0700871 DCHECK(unacked_packets_.HasInFlightPackets() ||
fayang63a19842020-01-23 02:51:28 -0800872 (handshake_mode_disabled_ && !handshake_finished_));
873 if (!handshake_mode_disabled_ && !handshake_finished_ &&
fayang5f135052019-08-22 17:59:40 -0700874 unacked_packets_.HasPendingCryptoPackets()) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500875 return HANDSHAKE_MODE;
876 }
877 if (loss_algorithm_->GetLossTimeout() != QuicTime::Zero()) {
878 return LOSS_MODE;
879 }
fayang62f867a2019-08-22 12:05:01 -0700880 if (pto_enabled_) {
fayangce0a3162019-08-15 09:05:36 -0700881 return PTO_MODE;
882 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500883 if (consecutive_tlp_count_ < max_tail_loss_probes_) {
ianswett7ddb34f2019-07-15 12:17:43 -0700884 if (unacked_packets_.HasUnackedRetransmittableFrames()) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500885 return TLP_MODE;
886 }
887 }
888 return RTO_MODE;
889}
890
891void QuicSentPacketManager::InvokeLossDetection(QuicTime time) {
892 if (!packets_acked_.empty()) {
893 DCHECK_LE(packets_acked_.front().packet_number,
894 packets_acked_.back().packet_number);
895 largest_newly_acked_ = packets_acked_.back().packet_number;
896 }
897 loss_algorithm_->DetectLosses(unacked_packets_, time, rtt_stats_,
898 largest_newly_acked_, packets_acked_,
899 &packets_lost_);
900 for (const LostPacket& packet : packets_lost_) {
wube330aa42020-02-27 07:49:09 -0800901 QuicTransmissionInfo* info =
902 unacked_packets_.GetMutableTransmissionInfo(packet.packet_number);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500903 ++stats_->packets_lost;
wube330aa42020-02-27 07:49:09 -0800904 if (time > info->sent_time) {
905 stats_->total_loss_detection_time =
906 stats_->total_loss_detection_time + (time - info->sent_time);
907 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500908 if (debug_delegate_ != nullptr) {
909 debug_delegate_->OnPacketLoss(packet.packet_number, LOSS_RETRANSMISSION,
910 time);
911 }
wube330aa42020-02-27 07:49:09 -0800912 unacked_packets_.RemoveFromInFlight(info);
913
QUICHE teama6ef0a62019-03-07 20:34:33 -0500914 MarkForRetransmission(packet.packet_number, LOSS_RETRANSMISSION);
915 }
916}
917
918bool QuicSentPacketManager::MaybeUpdateRTT(QuicPacketNumber largest_acked,
919 QuicTime::Delta ack_delay_time,
920 QuicTime ack_receive_time) {
921 // We rely on ack_delay_time to compute an RTT estimate, so we
922 // only update rtt when the largest observed gets acked.
923 if (!unacked_packets_.IsUnacked(largest_acked)) {
924 return false;
925 }
926 // We calculate the RTT based on the highest ACKed packet number, the lower
927 // packet numbers will include the ACK aggregation delay.
928 const QuicTransmissionInfo& transmission_info =
929 unacked_packets_.GetTransmissionInfo(largest_acked);
930 // Ensure the packet has a valid sent time.
931 if (transmission_info.sent_time == QuicTime::Zero()) {
932 QUIC_BUG << "Acked packet has zero sent time, largest_acked:"
933 << largest_acked;
934 return false;
935 }
936 if (transmission_info.sent_time > ack_receive_time) {
937 QUIC_CODE_COUNT(quic_receive_acked_before_sending);
938 }
939
940 QuicTime::Delta send_delta = ack_receive_time - transmission_info.sent_time;
941 rtt_stats_.UpdateRtt(send_delta, ack_delay_time, ack_receive_time);
942
943 return true;
944}
945
946QuicTime::Delta QuicSentPacketManager::TimeUntilSend(QuicTime now) const {
947 // The TLP logic is entirely contained within QuicSentPacketManager, so the
948 // send algorithm does not need to be consulted.
949 if (pending_timer_transmission_count_ > 0) {
950 return QuicTime::Delta::Zero();
951 }
952
953 if (using_pacing_) {
954 return pacing_sender_.TimeUntilSend(now,
955 unacked_packets_.bytes_in_flight());
956 }
957
958 return send_algorithm_->CanSend(unacked_packets_.bytes_in_flight())
959 ? QuicTime::Delta::Zero()
960 : QuicTime::Delta::Infinite();
961}
962
963const QuicTime QuicSentPacketManager::GetRetransmissionTime() const {
fayang5f135052019-08-22 17:59:40 -0700964 if (!unacked_packets_.HasInFlightPackets() &&
fayang63a19842020-01-23 02:51:28 -0800965 (!handshake_mode_disabled_ || handshake_finished_ ||
fayang5f135052019-08-22 17:59:40 -0700966 unacked_packets_.perspective() == Perspective::IS_SERVER)) {
967 // Do not set the timer if there is nothing in flight. However, to avoid
968 // handshake deadlock due to anti-amplification limit, client needs to set
969 // PTO timer when the handshake is not confirmed even there is nothing in
970 // flight.
971 return QuicTime::Zero();
972 }
973 if (pending_timer_transmission_count_ > 0) {
974 // Do not set the timer if there is any credit left.
QUICHE teama6ef0a62019-03-07 20:34:33 -0500975 return QuicTime::Zero();
976 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500977 switch (GetRetransmissionMode()) {
978 case HANDSHAKE_MODE:
979 return unacked_packets_.GetLastCryptoPacketSentTime() +
980 GetCryptoRetransmissionDelay();
981 case LOSS_MODE:
982 return loss_algorithm_->GetLossTimeout();
983 case TLP_MODE: {
fayang62f867a2019-08-22 12:05:01 -0700984 DCHECK(!pto_enabled_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500985 // TODO(ianswett): When CWND is available, it would be preferable to
986 // set the timer based on the earliest retransmittable packet.
987 // Base the updated timer on the send time of the last packet.
ianswett479fea32019-09-04 02:51:01 -0700988 const QuicTime sent_time =
989 unacked_packets_.GetLastInFlightPacketSentTime();
QUICHE teama6ef0a62019-03-07 20:34:33 -0500990 const QuicTime tlp_time = sent_time + GetTailLossProbeDelay();
991 // Ensure the TLP timer never gets set to a time in the past.
992 return std::max(clock_->ApproximateNow(), tlp_time);
993 }
994 case RTO_MODE: {
fayang62f867a2019-08-22 12:05:01 -0700995 DCHECK(!pto_enabled_);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500996 // The RTO is based on the first outstanding packet.
ianswett479fea32019-09-04 02:51:01 -0700997 const QuicTime sent_time =
998 unacked_packets_.GetLastInFlightPacketSentTime();
QUICHE teama6ef0a62019-03-07 20:34:33 -0500999 QuicTime rto_time = sent_time + GetRetransmissionDelay();
1000 // Wait for TLP packets to be acked before an RTO fires.
ianswett479fea32019-09-04 02:51:01 -07001001 QuicTime tlp_time = sent_time + GetTailLossProbeDelay();
QUICHE teama6ef0a62019-03-07 20:34:33 -05001002 return std::max(tlp_time, rto_time);
1003 }
fayangce0a3162019-08-15 09:05:36 -07001004 case PTO_MODE: {
fayang18ff23b2020-01-28 09:19:00 -08001005 if (!supports_multiple_packet_number_spaces()) {
fayang2ccfbcf2020-02-28 12:37:08 -08001006 if (arm_1st_pto_with_earliest_inflight_sent_time_ &&
1007 unacked_packets_.HasInFlightPackets() &&
1008 consecutive_pto_count_ == 0) {
1009 // Arm 1st PTO with earliest in flight sent time, and make sure at
1010 // least half RTT has been passed since last sent packet.
1011 return std::max(
1012 clock_->ApproximateNow(),
1013 std::max(unacked_packets_.GetFirstInFlightTransmissionInfo()
1014 ->sent_time +
1015 GetProbeTimeoutDelay(),
1016 unacked_packets_.GetLastInFlightPacketSentTime() +
1017 0.5 * rtt_stats_.SmoothedOrInitialRtt()));
1018 }
fayang18ff23b2020-01-28 09:19:00 -08001019 // Ensure PTO never gets set to a time in the past.
1020 return std::max(clock_->ApproximateNow(),
1021 unacked_packets_.GetLastInFlightPacketSentTime() +
1022 GetProbeTimeoutDelay());
1023 }
1024
1025 PacketNumberSpace packet_number_space;
fayang2ccfbcf2020-02-28 12:37:08 -08001026 // earliest_right_edge is the earliest sent time of the last in flight
1027 // packet of all packet number spaces.
1028 const QuicTime earliest_right_edge =
1029 GetEarliestPacketSentTimeForPto(&packet_number_space);
1030 if (arm_1st_pto_with_earliest_inflight_sent_time_ &&
1031 packet_number_space == APPLICATION_DATA &&
1032 consecutive_pto_count_ == 0) {
1033 const QuicTransmissionInfo* first_application_info =
1034 unacked_packets_.GetFirstInFlightTransmissionInfoOfSpace(
1035 APPLICATION_DATA);
1036 if (first_application_info != nullptr) {
1037 // Arm 1st PTO with earliest in flight sent time, and make sure at
1038 // least half RTT has been passed since last sent packet. Only do this
1039 // for application data.
1040 return std::max(
1041 clock_->ApproximateNow(),
1042 std::max(
1043 first_application_info->sent_time + GetProbeTimeoutDelay(),
1044 earliest_right_edge +
1045 0.5 * rtt_stats_.SmoothedOrInitialRtt()));
1046 }
1047 }
ianswett479fea32019-09-04 02:51:01 -07001048 return std::max(clock_->ApproximateNow(),
fayang2ccfbcf2020-02-28 12:37:08 -08001049 earliest_right_edge + GetProbeTimeoutDelay());
fayangce0a3162019-08-15 09:05:36 -07001050 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001051 }
1052 DCHECK(false);
1053 return QuicTime::Zero();
1054}
1055
1056const QuicTime::Delta QuicSentPacketManager::GetPathDegradingDelay() const {
1057 QuicTime::Delta delay = QuicTime::Delta::Zero();
1058 for (size_t i = 0; i < max_tail_loss_probes_; ++i) {
1059 delay = delay + GetTailLossProbeDelay(i);
1060 }
1061 for (size_t i = 0; i < kNumRetransmissionDelaysForPathDegradingDelay; ++i) {
1062 delay = delay + GetRetransmissionDelay(i);
1063 }
1064 return delay;
1065}
1066
1067const QuicTime::Delta QuicSentPacketManager::GetCryptoRetransmissionDelay()
1068 const {
1069 // This is equivalent to the TailLossProbeDelay, but slightly more aggressive
1070 // because crypto handshake messages don't incur a delayed ack time.
1071 QuicTime::Delta srtt = rtt_stats_.SmoothedOrInitialRtt();
1072 int64_t delay_ms;
1073 if (conservative_handshake_retransmits_) {
1074 // Using the delayed ack time directly could cause conservative handshake
1075 // retransmissions to actually be more aggressive than the default.
fkastenholz59c653b2019-07-15 09:55:53 -07001076 delay_ms = std::max(peer_max_ack_delay_.ToMilliseconds(),
QUICHE teama6ef0a62019-03-07 20:34:33 -05001077 static_cast<int64_t>(2 * srtt.ToMilliseconds()));
1078 } else {
1079 delay_ms = std::max(kMinHandshakeTimeoutMs,
1080 static_cast<int64_t>(1.5 * srtt.ToMilliseconds()));
1081 }
1082 return QuicTime::Delta::FromMilliseconds(
1083 delay_ms << consecutive_crypto_retransmission_count_);
1084}
1085
1086const QuicTime::Delta QuicSentPacketManager::GetTailLossProbeDelay(
1087 size_t consecutive_tlp_count) const {
1088 QuicTime::Delta srtt = rtt_stats_.SmoothedOrInitialRtt();
1089 if (enable_half_rtt_tail_loss_probe_ && consecutive_tlp_count == 0u) {
zhongyi1b2f7832019-06-14 13:31:34 -07001090 if (unacked_packets().HasUnackedStreamData()) {
1091 // Enable TLPR if there are pending data packets.
1092 return std::max(min_tlp_timeout_, srtt * 0.5);
1093 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001094 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001095 if (!unacked_packets_.HasMultipleInFlightPackets()) {
1096 // This expression really should be using the delayed ack time, but in TCP
1097 // MinRTO was traditionally set to 2x the delayed ack timer and this
1098 // expression assumed QUIC did the same.
1099 return std::max(2 * srtt, 1.5 * srtt + (min_rto_timeout_ * 0.5));
1100 }
1101 return std::max(min_tlp_timeout_, 2 * srtt);
1102}
1103
1104const QuicTime::Delta QuicSentPacketManager::GetRetransmissionDelay(
1105 size_t consecutive_rto_count) const {
1106 QuicTime::Delta retransmission_delay = QuicTime::Delta::Zero();
1107 if (rtt_stats_.smoothed_rtt().IsZero()) {
1108 // We are in the initial state, use default timeout values.
1109 retransmission_delay =
1110 QuicTime::Delta::FromMilliseconds(kDefaultRetransmissionTimeMs);
1111 } else {
1112 retransmission_delay =
1113 rtt_stats_.smoothed_rtt() + 4 * rtt_stats_.mean_deviation();
1114 if (retransmission_delay < min_rto_timeout_) {
1115 retransmission_delay = min_rto_timeout_;
1116 }
1117 }
1118
1119 // Calculate exponential back off.
1120 retransmission_delay =
1121 retransmission_delay *
1122 (1 << std::min<size_t>(consecutive_rto_count, kMaxRetransmissions));
1123
1124 if (retransmission_delay.ToMilliseconds() > kMaxRetransmissionTimeMs) {
1125 return QuicTime::Delta::FromMilliseconds(kMaxRetransmissionTimeMs);
1126 }
1127 return retransmission_delay;
1128}
1129
fayangce0a3162019-08-15 09:05:36 -07001130const QuicTime::Delta QuicSentPacketManager::GetProbeTimeoutDelay() const {
fayang62f867a2019-08-22 12:05:01 -07001131 DCHECK(pto_enabled_);
fayangce0a3162019-08-15 09:05:36 -07001132 if (rtt_stats_.smoothed_rtt().IsZero()) {
1133 if (rtt_stats_.initial_rtt().IsZero()) {
1134 return QuicTime::Delta::FromSeconds(1);
1135 }
1136 return 2 * rtt_stats_.initial_rtt();
1137 }
fayang4aa22402020-01-07 11:36:07 -08001138 QuicTime::Delta pto_delay =
fayangce0a3162019-08-15 09:05:36 -07001139 rtt_stats_.smoothed_rtt() +
fayang75db4342019-11-04 13:29:14 -08001140 std::max(pto_rttvar_multiplier_ * rtt_stats_.mean_deviation(),
ianswett8f90e512019-12-18 10:50:27 -08001141 kAlarmGranularity) +
fayang4c908f02019-11-01 07:26:17 -07001142 (ShouldAddMaxAckDelay() ? peer_max_ack_delay_ : QuicTime::Delta::Zero());
fayang4aa22402020-01-07 11:36:07 -08001143 pto_delay =
1144 pto_delay * (1 << (consecutive_pto_count_ -
1145 std::min(consecutive_pto_count_,
1146 pto_exponential_backoff_start_point_)));
1147 if (consecutive_pto_count_ < num_tlp_timeout_ptos_) {
1148 // Make first n PTOs similar to TLPs.
1149 if (pto_delay > 2 * rtt_stats_.smoothed_rtt()) {
1150 QUIC_CODE_COUNT(quic_delayed_pto);
1151 pto_delay = std::max(kAlarmGranularity, 2 * rtt_stats_.smoothed_rtt());
1152 } else {
1153 QUIC_CODE_COUNT(quic_faster_pto);
1154 }
1155 }
1156 return pto_delay;
fayangce0a3162019-08-15 09:05:36 -07001157}
1158
wub967ba572019-04-01 09:27:52 -07001159QuicTime::Delta QuicSentPacketManager::GetSlowStartDuration() const {
wubbe29b9e2019-11-24 06:56:04 -08001160 if (send_algorithm_->GetCongestionControlType() == kBBR ||
1161 send_algorithm_->GetCongestionControlType() == kBBRv2) {
1162 return stats_->slowstart_duration.GetTotalElapsedTime(
1163 clock_->ApproximateNow());
wub967ba572019-04-01 09:27:52 -07001164 }
wubbe29b9e2019-11-24 06:56:04 -08001165 return QuicTime::Delta::Infinite();
wub967ba572019-04-01 09:27:52 -07001166}
1167
vasilvvc48c8712019-03-11 13:38:16 -07001168std::string QuicSentPacketManager::GetDebugState() const {
QUICHE teama6ef0a62019-03-07 20:34:33 -05001169 return send_algorithm_->GetDebugState();
1170}
1171
QUICHE teama6ef0a62019-03-07 20:34:33 -05001172void QuicSentPacketManager::SetSendAlgorithm(
1173 CongestionControlType congestion_control_type) {
wub18773d62020-01-28 14:14:06 -08001174 if (GetQuicReloadableFlag(
1175 quic_set_send_algorithm_noop_if_cc_type_unchanged)) {
1176 if (send_algorithm_ && send_algorithm_->GetCongestionControlType() ==
1177 congestion_control_type) {
1178 QUIC_RELOADABLE_FLAG_COUNT_N(
1179 quic_set_send_algorithm_noop_if_cc_type_unchanged, 1, 2);
1180 return;
1181 }
1182 QUIC_RELOADABLE_FLAG_COUNT_N(
1183 quic_set_send_algorithm_noop_if_cc_type_unchanged, 2, 2);
1184 // Fallthrough to change the send algorithm.
1185 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001186 SetSendAlgorithm(SendAlgorithmInterface::Create(
QUICHE team73957f12019-04-18 16:21:52 -07001187 clock_, &rtt_stats_, &unacked_packets_, congestion_control_type, random_,
1188 stats_, initial_congestion_window_));
QUICHE teama6ef0a62019-03-07 20:34:33 -05001189}
1190
1191void QuicSentPacketManager::SetSendAlgorithm(
1192 SendAlgorithmInterface* send_algorithm) {
1193 send_algorithm_.reset(send_algorithm);
1194 pacing_sender_.set_sender(send_algorithm);
1195}
1196
1197void QuicSentPacketManager::OnConnectionMigration(AddressChangeType type) {
1198 if (type == PORT_CHANGE || type == IPV4_SUBNET_CHANGE) {
1199 // Rtt and cwnd do not need to be reset when the peer address change is
1200 // considered to be caused by NATs.
1201 return;
1202 }
1203 consecutive_rto_count_ = 0;
1204 consecutive_tlp_count_ = 0;
fayangce0a3162019-08-15 09:05:36 -07001205 consecutive_pto_count_ = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -05001206 rtt_stats_.OnConnectionMigration();
1207 send_algorithm_->OnConnectionMigration();
1208}
1209
1210void QuicSentPacketManager::OnAckFrameStart(QuicPacketNumber largest_acked,
1211 QuicTime::Delta ack_delay_time,
1212 QuicTime ack_receive_time) {
1213 DCHECK(packets_acked_.empty());
1214 DCHECK_LE(largest_acked, unacked_packets_.largest_sent_packet());
wub81c9b662020-02-14 09:08:07 -08001215 if (ack_delay_time > peer_max_ack_delay()) {
wub8ee29a02019-12-12 13:06:48 -08001216 ack_delay_time = peer_max_ack_delay();
1217 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001218 rtt_updated_ =
1219 MaybeUpdateRTT(largest_acked, ack_delay_time, ack_receive_time);
QUICHE teama6ef0a62019-03-07 20:34:33 -05001220 last_ack_frame_.ack_delay_time = ack_delay_time;
1221 acked_packets_iter_ = last_ack_frame_.packets.rbegin();
1222}
1223
1224void QuicSentPacketManager::OnAckRange(QuicPacketNumber start,
1225 QuicPacketNumber end) {
1226 if (!last_ack_frame_.largest_acked.IsInitialized() ||
1227 end > last_ack_frame_.largest_acked + 1) {
1228 // Largest acked increases.
1229 unacked_packets_.IncreaseLargestAcked(end - 1);
1230 last_ack_frame_.largest_acked = end - 1;
1231 }
1232 // Drop ack ranges which ack packets below least_unacked.
1233 QuicPacketNumber least_unacked = unacked_packets_.GetLeastUnacked();
1234 if (least_unacked.IsInitialized() && end <= least_unacked) {
1235 return;
1236 }
1237 start = std::max(start, least_unacked);
1238 do {
1239 QuicPacketNumber newly_acked_start = start;
1240 if (acked_packets_iter_ != last_ack_frame_.packets.rend()) {
1241 newly_acked_start = std::max(start, acked_packets_iter_->max());
1242 }
1243 for (QuicPacketNumber acked = end - 1; acked >= newly_acked_start;
1244 --acked) {
1245 // Check if end is above the current range. If so add newly acked packets
1246 // in descending order.
1247 packets_acked_.push_back(AckedPacket(acked, 0, QuicTime::Zero()));
1248 if (acked == FirstSendingPacketNumber()) {
1249 break;
1250 }
1251 }
1252 if (acked_packets_iter_ == last_ack_frame_.packets.rend() ||
1253 start > acked_packets_iter_->min()) {
1254 // Finish adding all newly acked packets.
1255 return;
1256 }
1257 end = std::min(end, acked_packets_iter_->min());
1258 ++acked_packets_iter_;
1259 } while (start < end);
1260}
1261
1262void QuicSentPacketManager::OnAckTimestamp(QuicPacketNumber packet_number,
1263 QuicTime timestamp) {
1264 last_ack_frame_.received_packet_times.push_back({packet_number, timestamp});
1265 for (AckedPacket& packet : packets_acked_) {
1266 if (packet.packet_number == packet_number) {
1267 packet.receive_timestamp = timestamp;
1268 return;
1269 }
1270 }
1271}
1272
fayang3eb82212019-04-16 12:05:46 -07001273AckResult QuicSentPacketManager::OnAckFrameEnd(
1274 QuicTime ack_receive_time,
fayangf8e918b2019-07-16 13:03:16 -07001275 QuicPacketNumber ack_packet_number,
fayang3eb82212019-04-16 12:05:46 -07001276 EncryptionLevel ack_decrypted_level) {
QUICHE teama6ef0a62019-03-07 20:34:33 -05001277 QuicByteCount prior_bytes_in_flight = unacked_packets_.bytes_in_flight();
1278 // Reverse packets_acked_ so that it is in ascending order.
wubc0a1df42019-11-15 08:49:59 -08001279 std::reverse(packets_acked_.begin(), packets_acked_.end());
QUICHE teama6ef0a62019-03-07 20:34:33 -05001280 for (AckedPacket& acked_packet : packets_acked_) {
1281 QuicTransmissionInfo* info =
1282 unacked_packets_.GetMutableTransmissionInfo(acked_packet.packet_number);
1283 if (!QuicUtils::IsAckable(info->state)) {
1284 if (info->state == ACKED) {
1285 QUIC_BUG << "Trying to ack an already acked packet: "
1286 << acked_packet.packet_number
1287 << ", last_ack_frame_: " << last_ack_frame_
1288 << ", least_unacked: " << unacked_packets_.GetLeastUnacked()
1289 << ", packets_acked_: " << packets_acked_;
1290 } else {
fayang3eb82212019-04-16 12:05:46 -07001291 QUIC_PEER_BUG << "Received "
dschinazief79a5f2019-10-04 10:32:54 -07001292 << EncryptionLevelToString(ack_decrypted_level)
fayang3eb82212019-04-16 12:05:46 -07001293 << " ack for unackable packet: "
QUICHE teama6ef0a62019-03-07 20:34:33 -05001294 << acked_packet.packet_number << " with state: "
1295 << QuicUtils::SentPacketStateToString(info->state);
fayang3eb82212019-04-16 12:05:46 -07001296 if (supports_multiple_packet_number_spaces()) {
1297 if (info->state == NEVER_SENT) {
1298 return UNSENT_PACKETS_ACKED;
1299 }
1300 return UNACKABLE_PACKETS_ACKED;
1301 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001302 }
1303 continue;
1304 }
fayang3eb82212019-04-16 12:05:46 -07001305 QUIC_DVLOG(1) << ENDPOINT << "Got an "
dschinazief79a5f2019-10-04 10:32:54 -07001306 << EncryptionLevelToString(ack_decrypted_level)
fayang19d2d5b2019-09-11 14:22:03 -07001307 << " ack for packet " << acked_packet.packet_number
1308 << " , state: "
1309 << QuicUtils::SentPacketStateToString(info->state);
fayang3eb82212019-04-16 12:05:46 -07001310 const PacketNumberSpace packet_number_space =
fayangbf3d2862019-06-20 14:13:44 -07001311 unacked_packets_.GetPacketNumberSpace(info->encryption_level);
fayang3eb82212019-04-16 12:05:46 -07001312 if (supports_multiple_packet_number_spaces() &&
1313 QuicUtils::GetPacketNumberSpace(ack_decrypted_level) !=
1314 packet_number_space) {
1315 return PACKETS_ACKED_IN_WRONG_PACKET_NUMBER_SPACE;
1316 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001317 last_ack_frame_.packets.Add(acked_packet.packet_number);
fayang2f2915d2020-01-24 06:47:15 -08001318 if (info->encryption_level == ENCRYPTION_FORWARD_SECURE) {
1319 one_rtt_packet_acked_ = true;
1320 }
QUICHE teamc264e362019-03-19 14:21:06 -07001321 largest_packet_peer_knows_is_acked_.UpdateMax(info->largest_acked);
QUICHE teamc279cec2019-03-22 06:51:48 -07001322 if (supports_multiple_packet_number_spaces()) {
fayang3eb82212019-04-16 12:05:46 -07001323 largest_packets_peer_knows_is_acked_[packet_number_space].UpdateMax(
1324 info->largest_acked);
QUICHE teamc279cec2019-03-22 06:51:48 -07001325 }
QUICHE teama6ef0a62019-03-07 20:34:33 -05001326 // If data is associated with the most recent transmission of this
1327 // packet, then inform the caller.
1328 if (info->in_flight) {
1329 acked_packet.bytes_acked = info->bytes_sent;
1330 } else {
1331 // Unackable packets are skipped earlier.
1332 largest_newly_acked_ = acked_packet.packet_number;
1333 }
fayangbf3d2862019-06-20 14:13:44 -07001334 unacked_packets_.MaybeUpdateLargestAckedOfPacketNumberSpace(
1335 packet_number_space, acked_packet.packet_number);
fayang19d2d5b2019-09-11 14:22:03 -07001336 MarkPacketHandled(acked_packet.packet_number, info, ack_receive_time,
QUICHE team9467db02019-05-30 09:38:45 -07001337 last_ack_frame_.ack_delay_time,
1338 acked_packet.receive_timestamp);
QUICHE teama6ef0a62019-03-07 20:34:33 -05001339 }
1340 const bool acked_new_packet = !packets_acked_.empty();
fayangf8e918b2019-07-16 13:03:16 -07001341 PostProcessNewlyAckedPackets(ack_packet_number, last_ack_frame_,
1342 ack_receive_time, rtt_updated_,
fayang3eb82212019-04-16 12:05:46 -07001343 prior_bytes_in_flight);
QUICHE teama6ef0a62019-03-07 20:34:33 -05001344
fayang3eb82212019-04-16 12:05:46 -07001345 return acked_new_packet ? PACKETS_NEWLY_ACKED : NO_PACKETS_NEWLY_ACKED;
QUICHE teama6ef0a62019-03-07 20:34:33 -05001346}
1347
1348void QuicSentPacketManager::SetDebugDelegate(DebugDelegate* debug_delegate) {
1349 debug_delegate_ = debug_delegate;
1350}
1351
1352void QuicSentPacketManager::OnApplicationLimited() {
1353 if (using_pacing_) {
1354 pacing_sender_.OnApplicationLimited();
1355 }
1356 send_algorithm_->OnApplicationLimited(unacked_packets_.bytes_in_flight());
1357 if (debug_delegate_ != nullptr) {
1358 debug_delegate_->OnApplicationLimited();
1359 }
1360}
1361
1362QuicTime QuicSentPacketManager::GetNextReleaseTime() const {
1363 return using_pacing_ ? pacing_sender_.ideal_next_packet_send_time()
1364 : QuicTime::Zero();
1365}
1366
1367void QuicSentPacketManager::SetInitialRtt(QuicTime::Delta rtt) {
1368 const QuicTime::Delta min_rtt =
1369 QuicTime::Delta::FromMicroseconds(kMinInitialRoundTripTimeUs);
1370 const QuicTime::Delta max_rtt =
1371 QuicTime::Delta::FromMicroseconds(kMaxInitialRoundTripTimeUs);
1372 rtt_stats_.set_initial_rtt(std::max(min_rtt, std::min(max_rtt, rtt)));
1373}
1374
QUICHE teamc279cec2019-03-22 06:51:48 -07001375void QuicSentPacketManager::EnableMultiplePacketNumberSpacesSupport() {
fayang18ff23b2020-01-28 09:19:00 -08001376 EnableIetfPtoAndLossDetection();
QUICHE teamc279cec2019-03-22 06:51:48 -07001377 unacked_packets_.EnableMultiplePacketNumberSpacesSupport();
1378}
1379
1380QuicPacketNumber QuicSentPacketManager::GetLargestAckedPacket(
1381 EncryptionLevel decrypted_packet_level) const {
1382 DCHECK(supports_multiple_packet_number_spaces());
1383 return unacked_packets_.GetLargestAckedOfPacketNumberSpace(
1384 QuicUtils::GetPacketNumberSpace(decrypted_packet_level));
1385}
1386
QUICHE teamc279cec2019-03-22 06:51:48 -07001387QuicPacketNumber QuicSentPacketManager::GetLargestPacketPeerKnowsIsAcked(
1388 EncryptionLevel decrypted_packet_level) const {
1389 DCHECK(supports_multiple_packet_number_spaces());
1390 return largest_packets_peer_knows_is_acked_[QuicUtils::GetPacketNumberSpace(
1391 decrypted_packet_level)];
1392}
1393
QUICHE teama6ef0a62019-03-07 20:34:33 -05001394#undef ENDPOINT // undef for jumbo builds
1395} // namespace quic