QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // 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> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 8 | #include <string> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 9 | |
| 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" |
dschinazi | 56fb53e | 2019-06-21 15:30:04 -0700 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/core/proto/cached_network_parameters_proto.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/core/quic_connection_stats.h" |
wub | 967ba57 | 2019-04-01 09:27:52 -0700 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/quic/core/quic_types.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 16 | #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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 22 | |
| 23 | namespace quic { |
| 24 | |
| 25 | namespace { |
| 26 | static const int64_t kDefaultRetransmissionTimeMs = 500; |
| 27 | static const int64_t kMaxRetransmissionTimeMs = 60000; |
| 28 | // Maximum number of exponential backoffs used for RTO timeouts. |
| 29 | static const size_t kMaxRetransmissions = 10; |
| 30 | // Maximum number of packets retransmitted upon an RTO. |
| 31 | static const size_t kMaxRetransmissionsOnTimeout = 2; |
| 32 | // The path degrading delay is the sum of this number of consecutive RTO delays. |
| 33 | const 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. |
| 37 | static 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. |
| 41 | static const size_t kDefaultMaxTailLossProbes = 2; |
| 42 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 43 | // Returns true of retransmissions of the specified type should retransmit |
| 44 | // the frames directly (as opposed to resulting in a loss notification). |
| 45 | inline bool ShouldForceRetransmission(TransmissionType transmission_type) { |
| 46 | return transmission_type == HANDSHAKE_RETRANSMISSION || |
| 47 | transmission_type == TLP_RETRANSMISSION || |
| 48 | transmission_type == PROBING_RETRANSMISSION || |
fayang | 73d0ac4 | 2019-10-31 12:45:31 -0700 | [diff] [blame] | 49 | transmission_type == RTO_RETRANSMISSION || |
| 50 | transmission_type == PTO_RETRANSMISSION; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 51 | } |
| 52 | |
fayang | 4ba5598 | 2019-05-13 05:53:22 -0700 | [diff] [blame] | 53 | // 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. |
| 56 | static const uint32_t kConservativeUnpacedBurst = 2; |
| 57 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 58 | } // namespace |
| 59 | |
| 60 | #define ENDPOINT \ |
| 61 | (unacked_packets_.perspective() == Perspective::IS_SERVER ? "Server: " \ |
| 62 | : "Client: ") |
| 63 | |
| 64 | QuicSentPacketManager::QuicSentPacketManager( |
| 65 | Perspective perspective, |
| 66 | const QuicClock* clock, |
QUICHE team | 73957f1 | 2019-04-18 16:21:52 -0700 | [diff] [blame] | 67 | QuicRandom* random, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 68 | QuicConnectionStats* stats, |
fayang | 3be090d | 2020-02-11 14:05:08 -0800 | [diff] [blame] | 69 | CongestionControlType congestion_control_type) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 70 | : unacked_packets_(perspective), |
| 71 | clock_(clock), |
QUICHE team | 73957f1 | 2019-04-18 16:21:52 -0700 | [diff] [blame] | 72 | random_(random), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 73 | stats_(stats), |
| 74 | debug_delegate_(nullptr), |
| 75 | network_change_visitor_(nullptr), |
| 76 | initial_congestion_window_(kInitialCongestionWindow), |
wub | 37ec596 | 2019-04-03 09:02:51 -0700 | [diff] [blame] | 77 | loss_algorithm_(GetInitialLossAlgorithm()), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 78 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 92 | largest_mtu_acked_(0), |
fayang | 63a1984 | 2020-01-23 02:51:28 -0800 | [diff] [blame] | 93 | handshake_finished_(false), |
fkastenholz | 59c653b | 2019-07-15 09:55:53 -0700 | [diff] [blame] | 94 | peer_max_ack_delay_( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 95 | QuicTime::Delta::FromMilliseconds(kDefaultDelayedAckTimeMs)), |
| 96 | rtt_updated_(false), |
QUICHE team | 9929cc4 | 2019-03-13 08:17:43 -0700 | [diff] [blame] | 97 | acked_packets_iter_(last_ack_frame_.packets.rbegin()), |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 98 | pto_enabled_(false), |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 99 | max_probe_packets_per_pto_(2), |
| 100 | consecutive_pto_count_(0), |
fayang | 19d2d5b | 2019-09-11 14:22:03 -0700 | [diff] [blame] | 101 | handshake_mode_disabled_(false), |
fayang | 4c908f0 | 2019-11-01 07:26:17 -0700 | [diff] [blame] | 102 | skip_packet_number_for_pto_(false), |
| 103 | always_include_max_ack_delay_for_pto_timeout_(true), |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 104 | pto_exponential_backoff_start_point_(0), |
fayang | 75db434 | 2019-11-04 13:29:14 -0800 | [diff] [blame] | 105 | pto_rttvar_multiplier_(4), |
fayang | 4aa2240 | 2020-01-07 11:36:07 -0800 | [diff] [blame] | 106 | num_tlp_timeout_ptos_(0), |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 107 | one_rtt_packet_acked_(false), |
fayang | 2ccfbcf | 2020-02-28 12:37:08 -0800 | [diff] [blame^] | 108 | one_rtt_packet_sent_(false), |
| 109 | arm_1st_pto_with_earliest_inflight_sent_time_(false) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 110 | SetSendAlgorithm(congestion_control_type); |
| 111 | } |
| 112 | |
wub | 37ec596 | 2019-04-03 09:02:51 -0700 | [diff] [blame] | 113 | LossDetectionInterface* QuicSentPacketManager::GetInitialLossAlgorithm() { |
fayang | bf3d286 | 2019-06-20 14:13:44 -0700 | [diff] [blame] | 114 | return &uber_loss_algorithm_; |
wub | 37ec596 | 2019-04-03 09:02:51 -0700 | [diff] [blame] | 115 | } |
| 116 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 117 | QuicSentPacketManager::~QuicSentPacketManager() {} |
| 118 | |
| 119 | void 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 | } |
ianswett | 43eefae | 2019-08-02 12:27:15 -0700 | [diff] [blame] | 132 | if (config.HasReceivedMaxAckDelayMs()) { |
| 133 | peer_max_ack_delay_ = |
| 134 | QuicTime::Delta::FromMilliseconds(config.ReceivedMaxAckDelayMs()); |
| 135 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 136 | if (config.HasClientSentConnectionOption(kMAD0, perspective)) { |
| 137 | rtt_stats_.set_ignore_max_ack_delay(true); |
| 138 | } |
| 139 | if (config.HasClientSentConnectionOption(kMAD1, perspective)) { |
ianswett | 43eefae | 2019-08-02 12:27:15 -0700 | [diff] [blame] | 140 | rtt_stats_.set_initial_max_ack_delay(peer_max_ack_delay_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 141 | } |
ianswett | ad65ab9 | 2019-10-28 07:19:07 -0700 | [diff] [blame] | 142 | if (config.HasClientSentConnectionOption(kMAD2, perspective)) { |
| 143 | // Set the minimum to the alarm granularity. |
ianswett | 8f90e51 | 2019-12-18 10:50:27 -0800 | [diff] [blame] | 144 | min_tlp_timeout_ = kAlarmGranularity; |
ianswett | ad65ab9 | 2019-10-28 07:19:07 -0700 | [diff] [blame] | 145 | } |
| 146 | if (config.HasClientSentConnectionOption(kMAD3, perspective)) { |
| 147 | // Set the minimum to the alarm granularity. |
ianswett | 8f90e51 | 2019-12-18 10:50:27 -0800 | [diff] [blame] | 148 | min_rto_timeout_ = kAlarmGranularity; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 149 | } |
| 150 | |
fayang | 961eaa0 | 2020-01-10 13:04:22 -0800 | [diff] [blame] | 151 | 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; |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
fayang | 91ab42f | 2020-01-13 17:18:48 -0800 | [diff] [blame] | 159 | if (config.HasClientSentConnectionOption(kPTOS, perspective)) { |
fayang | 4c908f0 | 2019-11-01 07:26:17 -0700 | [diff] [blame] | 160 | 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 | |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 169 | if (pto_enabled_) { |
| 170 | if (config.HasClientSentConnectionOption(kPTOA, perspective)) { |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 171 | always_include_max_ack_delay_for_pto_timeout_ = false; |
| 172 | } |
| 173 | if (config.HasClientSentConnectionOption(kPEB1, perspective)) { |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 174 | StartExponentialBackoffAfterNthPto(1); |
| 175 | } |
| 176 | if (config.HasClientSentConnectionOption(kPEB2, perspective)) { |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 177 | StartExponentialBackoffAfterNthPto(2); |
| 178 | } |
fayang | 75db434 | 2019-11-04 13:29:14 -0800 | [diff] [blame] | 179 | if (config.HasClientSentConnectionOption(kPVS1, perspective)) { |
fayang | 75db434 | 2019-11-04 13:29:14 -0800 | [diff] [blame] | 180 | pto_rttvar_multiplier_ = 2; |
| 181 | } |
fayang | 4aa2240 | 2020-01-07 11:36:07 -0800 | [diff] [blame] | 182 | 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 | } |
fayang | 2ccfbcf | 2020-02-28 12:37:08 -0800 | [diff] [blame^] | 190 | 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 | } |
fayang | 4c908f0 | 2019-11-01 07:26:17 -0700 | [diff] [blame] | 195 | } |
| 196 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 197 | // Configure congestion control. |
| 198 | if (config.HasClientRequestedIndependentOption(kTBBR, perspective)) { |
| 199 | SetSendAlgorithm(kBBR); |
| 200 | } |
wub | a9a43cb | 2019-07-17 15:22:42 -0700 | [diff] [blame] | 201 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 207 | 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 | } |
wub | a9a43cb | 2019-07-17 15:22:42 -0700 | [diff] [blame] | 217 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 218 | // 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 | } |
fayang | 402103c | 2020-01-10 13:36:24 -0800 | [diff] [blame] | 237 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 242 | |
danzh | 88e3e05 | 2019-06-13 11:47:18 -0700 | [diff] [blame] | 243 | using_pacing_ = !GetQuicFlag(FLAGS_quic_disable_pacing_for_perf_tests); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 244 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 245 | 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. |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 261 | if (config.HasClientRequestedIndependentOption(kILD0, perspective)) { |
fayang | 3be090d | 2020-02-11 14:05:08 -0800 | [diff] [blame] | 262 | uber_loss_algorithm_.SetReorderingShift(kDefaultIetfLossDelayShift); |
| 263 | uber_loss_algorithm_.DisableAdaptiveReorderingThreshold(); |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 264 | } |
| 265 | if (config.HasClientRequestedIndependentOption(kILD1, perspective)) { |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 266 | uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift); |
fayang | 3be090d | 2020-02-11 14:05:08 -0800 | [diff] [blame] | 267 | uber_loss_algorithm_.DisableAdaptiveReorderingThreshold(); |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 268 | } |
| 269 | if (config.HasClientRequestedIndependentOption(kILD2, perspective)) { |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 270 | uber_loss_algorithm_.EnableAdaptiveReorderingThreshold(); |
fayang | 3be090d | 2020-02-11 14:05:08 -0800 | [diff] [blame] | 271 | uber_loss_algorithm_.SetReorderingShift(kDefaultIetfLossDelayShift); |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 272 | } |
| 273 | if (config.HasClientRequestedIndependentOption(kILD3, perspective)) { |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 274 | uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift); |
| 275 | uber_loss_algorithm_.EnableAdaptiveReorderingThreshold(); |
| 276 | } |
| 277 | if (config.HasClientRequestedIndependentOption(kILD4, perspective)) { |
fayang | a590b75 | 2020-01-13 06:37:35 -0800 | [diff] [blame] | 278 | uber_loss_algorithm_.SetReorderingShift(kDefaultLossDelayShift); |
| 279 | uber_loss_algorithm_.EnableAdaptiveReorderingThreshold(); |
| 280 | uber_loss_algorithm_.EnableAdaptiveTimeThreshold(); |
fayang | b0c7b4b | 2019-09-12 06:45:24 -0700 | [diff] [blame] | 281 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 282 | 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 | |
| 292 | void 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 team | b4e187c | 2019-11-14 06:22:50 -0800 | [diff] [blame] | 301 | // 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 306 | } |
| 307 | |
fayang | f1b99dc | 2019-05-14 06:29:18 -0700 | [diff] [blame] | 308 | void QuicSentPacketManager::AdjustNetworkParameters( |
QUICHE team | fdcfe3b | 2019-11-06 10:54:25 -0800 | [diff] [blame] | 309 | const SendAlgorithmInterface::NetworkParams& params) { |
QUICHE team | b4e187c | 2019-11-14 06:22:50 -0800 | [diff] [blame] | 310 | const QuicBandwidth& bandwidth = params.bandwidth; |
| 311 | const QuicTime::Delta& rtt = params.rtt; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 312 | if (!rtt.IsZero()) { |
| 313 | SetInitialRtt(rtt); |
| 314 | } |
fayang | be83ecd | 2019-04-26 13:58:09 -0700 | [diff] [blame] | 315 | const QuicByteCount old_cwnd = send_algorithm_->GetCongestionWindow(); |
fayang | 6c2d64f | 2019-05-20 17:12:05 -0700 | [diff] [blame] | 316 | if (GetQuicReloadableFlag(quic_conservative_bursts) && using_pacing_ && |
| 317 | !bandwidth.IsZero()) { |
fayang | 4ba5598 | 2019-05-13 05:53:22 -0700 | [diff] [blame] | 318 | QUIC_RELOADABLE_FLAG_COUNT(quic_conservative_bursts); |
| 319 | pacing_sender_.SetBurstTokens(kConservativeUnpacedBurst); |
| 320 | } |
QUICHE team | b4e187c | 2019-11-14 06:22:50 -0800 | [diff] [blame] | 321 | send_algorithm_->AdjustNetworkParameters(params); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 322 | if (debug_delegate_ != nullptr) { |
fayang | be83ecd | 2019-04-26 13:58:09 -0700 | [diff] [blame] | 323 | debug_delegate_->OnAdjustNetworkParameters( |
fayang | ef9c8f9 | 2019-04-29 13:35:13 -0700 | [diff] [blame] | 324 | bandwidth, rtt.IsZero() ? rtt_stats_.SmoothedOrInitialRtt() : rtt, |
| 325 | old_cwnd, send_algorithm_->GetCongestionWindow()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
| 329 | void QuicSentPacketManager::SetHandshakeConfirmed() { |
fayang | 63a1984 | 2020-01-23 02:51:28 -0800 | [diff] [blame] | 330 | if (!handshake_finished_) { |
| 331 | handshake_finished_ = true; |
vasilvv | 975c235 | 2019-10-03 16:53:57 -0400 | [diff] [blame] | 332 | NeuterHandshakePackets(); |
| 333 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 334 | } |
| 335 | |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 336 | void QuicSentPacketManager::PostProcessNewlyAckedPackets( |
fayang | f8e918b | 2019-07-16 13:03:16 -0700 | [diff] [blame] | 337 | QuicPacketNumber ack_packet_number, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 338 | const QuicAckFrame& ack_frame, |
| 339 | QuicTime ack_receive_time, |
| 340 | bool rtt_updated, |
| 341 | QuicByteCount prior_bytes_in_flight) { |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 342 | unacked_packets_.NotifyAggregatedStreamFrameAcked( |
| 343 | last_ack_frame_.ack_delay_time); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 344 | 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; |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 377 | consecutive_pto_count_ = 0; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 378 | consecutive_crypto_retransmission_count_ = 0; |
| 379 | } |
| 380 | |
| 381 | if (debug_delegate_ != nullptr) { |
fayang | f8e918b | 2019-07-16 13:03:16 -0700 | [diff] [blame] | 382 | debug_delegate_->OnIncomingAck(ack_packet_number, ack_frame, |
| 383 | ack_receive_time, LargestAcked(ack_frame), |
| 384 | rtt_updated, GetLeastUnacked()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 385 | } |
| 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 | |
| 392 | void 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 | |
| 413 | void 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(); |
ianswett | 898306b | 2019-04-23 11:05:57 -0700 | [diff] [blame] | 418 | for (QuicUnackedPacketMap::iterator it = unacked_packets_.begin(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 419 | it != unacked_packets_.end(); ++it, ++packet_number) { |
| 420 | if ((retransmission_type == ALL_UNACKED_RETRANSMISSION || |
ianswett | 898306b | 2019-04-23 11:05:57 -0700 | [diff] [blame] | 421 | it->encryption_level == ENCRYPTION_ZERO_RTT)) { |
ianswett | 0400465 | 2019-09-03 18:46:57 -0700 | [diff] [blame] | 422 | if (it->in_flight) { |
ianswett | 898306b | 2019-04-23 11:05:57 -0700 | [diff] [blame] | 423 | // 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 430 | } |
| 431 | } |
ianswett | 898306b | 2019-04-23 11:05:57 -0700 | [diff] [blame] | 432 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | void QuicSentPacketManager::NeuterUnencryptedPackets() { |
wub | f4ab965 | 2020-02-20 14:45:43 -0800 | [diff] [blame] | 440 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | void QuicSentPacketManager::NeuterHandshakePackets() { |
wub | f4ab965 | 2020-02-20 14:45:43 -0800 | [diff] [blame] | 451 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 459 | } |
| 460 | |
fayang | 4c908f0 | 2019-11-01 07:26:17 -0700 | [diff] [blame] | 461 | bool 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 | |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 492 | QuicTime 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)); |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 499 | if (!ShouldArmPtoForApplicationData() && i == APPLICATION_DATA) { |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 500 | continue; |
| 501 | } |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 502 | if (!sent_time.IsInitialized() || (earliest_sent_time.IsInitialized() && |
| 503 | earliest_sent_time <= sent_time)) { |
| 504 | continue; |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 505 | } |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 506 | earliest_sent_time = sent_time; |
| 507 | *packet_number_space = static_cast<PacketNumberSpace>(i); |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 508 | } |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 509 | |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 510 | return earliest_sent_time; |
| 511 | } |
| 512 | |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 513 | bool 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 526 | void QuicSentPacketManager::MarkForRetransmission( |
| 527 | QuicPacketNumber packet_number, |
| 528 | TransmissionType transmission_type) { |
| 529 | QuicTransmissionInfo* transmission_info = |
| 530 | unacked_packets_.GetMutableTransmissionInfo(packet_number); |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 531 | // 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 535 | !unacked_packets_.HasRetransmittableFrames(*transmission_info)) |
dschinazi | ef79a5f | 2019-10-04 10:32:54 -0700 | [diff] [blame] | 536 | << "transmission_type: " << TransmissionTypeToString(transmission_type); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 537 | // Handshake packets should never be sent as probing retransmissions. |
fayang | 73d0ac4 | 2019-10-31 12:45:31 -0700 | [diff] [blame] | 538 | DCHECK(!transmission_info->has_crypto_handshake || |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 539 | transmission_type != PROBING_RETRANSMISSION); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 540 | |
| 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 | |
| 548 | void QuicSentPacketManager::HandleRetransmission( |
| 549 | TransmissionType transmission_type, |
| 550 | QuicTransmissionInfo* transmission_info) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 551 | 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 | |
| 581 | void 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 591 | void QuicSentPacketManager::MarkPacketHandled(QuicPacketNumber packet_number, |
| 592 | QuicTransmissionInfo* info, |
fayang | 19d2d5b | 2019-09-11 14:22:03 -0700 | [diff] [blame] | 593 | QuicTime ack_receive_time, |
QUICHE team | 9467db0 | 2019-05-30 09:38:45 -0700 | [diff] [blame] | 594 | QuicTime::Delta ack_delay_time, |
| 595 | QuicTime receive_timestamp) { |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 596 | // 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 601 | } else { |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 602 | 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); |
fayang | cc4ea6a | 2019-10-25 08:44:03 -0700 | [diff] [blame] | 611 | RecordOneSpuriousRetransmission(*info); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 612 | } |
| 613 | } |
fayang | cc4ea6a | 2019-10-25 08:44:03 -0700 | [diff] [blame] | 614 | if (info->state == LOST) { |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 615 | // Record as a spurious loss as a packet previously declared lost gets |
| 616 | // acked. |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 617 | 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); |
wub | 02831dc | 2020-02-28 12:00:54 -0800 | [diff] [blame] | 631 | ++stats_->packet_spuriously_detected_lost; |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 632 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 633 | |
| 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 | |
| 644 | bool QuicSentPacketManager::OnPacketSent( |
| 645 | SerializedPacket* serialized_packet, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 646 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 654 | 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 | |
fayang | 9a0e1bd | 2020-02-19 13:13:04 -0800 | [diff] [blame] | 669 | if (serialized_packet->encryption_level == ENCRYPTION_FORWARD_SECURE) { |
| 670 | one_rtt_packet_sent_ = true; |
| 671 | } |
| 672 | |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 673 | unacked_packets_.AddSentPacket(serialized_packet, transmission_type, |
| 674 | sent_time, in_flight); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 675 | // Reset the retransmission timer anytime a pending packet is sent. |
| 676 | return in_flight; |
| 677 | } |
| 678 | |
fayang | 67f8227 | 2019-08-14 16:08:45 -0700 | [diff] [blame] | 679 | QuicSentPacketManager::RetransmissionTimeoutMode |
| 680 | QuicSentPacketManager::OnRetransmissionTimeout() { |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 681 | DCHECK(unacked_packets_.HasInFlightPackets() || |
fayang | 63a1984 | 2020-01-23 02:51:28 -0800 | [diff] [blame] | 682 | (handshake_mode_disabled_ && !handshake_finished_)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 683 | 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: |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 691 | DCHECK(!handshake_mode_disabled_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 692 | ++stats_->crypto_retransmit_count; |
| 693 | RetransmitCryptoPackets(); |
fayang | 67f8227 | 2019-08-14 16:08:45 -0700 | [diff] [blame] | 694 | return HANDSHAKE_MODE; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 695 | 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); |
fayang | 67f8227 | 2019-08-14 16:08:45 -0700 | [diff] [blame] | 701 | return LOSS_MODE; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 702 | } |
| 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. |
fayang | 67f8227 | 2019-08-14 16:08:45 -0700 | [diff] [blame] | 709 | return TLP_MODE; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 710 | case RTO_MODE: |
| 711 | ++stats_->rto_count; |
| 712 | RetransmitRtoPackets(); |
fayang | 67f8227 | 2019-08-14 16:08:45 -0700 | [diff] [blame] | 713 | return RTO_MODE; |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 714 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 720 | } |
| 721 | } |
| 722 | |
| 723 | void 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. |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 732 | if (!it->in_flight || it->state != OUTSTANDING || |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 733 | !it->has_crypto_handshake || |
| 734 | !unacked_packets_.HasRetransmittableFrames(*it)) { |
| 735 | continue; |
| 736 | } |
| 737 | packet_retransmitted = true; |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 738 | crypto_retransmissions.push_back(packet_number); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 739 | ++pending_timer_transmission_count_; |
| 740 | } |
| 741 | DCHECK(packet_retransmitted) << "No crypto packets found to retransmit."; |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 742 | for (QuicPacketNumber retransmission : crypto_retransmissions) { |
| 743 | MarkForRetransmission(retransmission, HANDSHAKE_RETRANSMISSION); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 744 | } |
| 745 | } |
| 746 | |
| 747 | bool QuicSentPacketManager::MaybeRetransmitTailLossProbe() { |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 748 | DCHECK(!pto_enabled_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 749 | if (pending_timer_transmission_count_ == 0) { |
| 750 | return false; |
| 751 | } |
| 752 | if (!MaybeRetransmitOldestPacket(TLP_RETRANSMISSION)) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 753 | return false; |
| 754 | } |
| 755 | return true; |
| 756 | } |
| 757 | |
| 758 | bool 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. |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 763 | if (!it->in_flight || it->state != OUTSTANDING || |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 764 | !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 | |
| 775 | void QuicSentPacketManager::RetransmitRtoPackets() { |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 776 | DCHECK(!pto_enabled_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 777 | 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) { |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 784 | if (it->state == OUTSTANDING && |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 785 | unacked_packets_.HasRetransmittableFrames(*it) && |
| 786 | pending_timer_transmission_count_ < max_rto_packets_) { |
fayang | e1e81d2 | 2020-01-06 11:41:34 -0800 | [diff] [blame] | 787 | DCHECK(it->in_flight); |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 788 | retransmissions.push_back(packet_number); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 789 | ++pending_timer_transmission_count_; |
| 790 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 791 | } |
| 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 | } |
fayang | cff885a | 2019-10-22 07:39:04 -0700 | [diff] [blame] | 798 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 807 | } |
| 808 | } |
| 809 | |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 810 | void QuicSentPacketManager::MaybeSendProbePackets() { |
| 811 | if (pending_timer_transmission_count_ == 0) { |
| 812 | return; |
| 813 | } |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 814 | 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 | } |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 824 | 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 && |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 829 | unacked_packets_.HasRetransmittableFrames(*it) && |
| 830 | (!supports_multiple_packet_number_spaces() || |
| 831 | unacked_packets_.GetPacketNumberSpace(it->encryption_level) == |
| 832 | packet_number_space)) { |
fayang | e1e81d2 | 2020-01-06 11:41:34 -0800 | [diff] [blame] | 833 | DCHECK(it->in_flight); |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 834 | 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"; |
fayang | 73d0ac4 | 2019-10-31 12:45:31 -0700 | [diff] [blame] | 844 | MarkForRetransmission(retransmission, PTO_RETRANSMISSION); |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 845 | } |
| 846 | // It is possible that there is not enough outstanding data for probing. |
| 847 | } |
| 848 | |
| 849 | void 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 | |
fayang | 08a6c95 | 2019-09-18 14:29:45 -0700 | [diff] [blame] | 859 | void QuicSentPacketManager::EnableIetfPtoAndLossDetection() { |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 860 | pto_enabled_ = true; |
| 861 | handshake_mode_disabled_ = true; |
| 862 | } |
| 863 | |
fayang | 7085a6d | 2019-11-04 07:03:57 -0800 | [diff] [blame] | 864 | void QuicSentPacketManager::StartExponentialBackoffAfterNthPto( |
| 865 | size_t exponential_backoff_start_point) { |
| 866 | pto_exponential_backoff_start_point_ = exponential_backoff_start_point; |
| 867 | } |
| 868 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 869 | QuicSentPacketManager::RetransmissionTimeoutMode |
| 870 | QuicSentPacketManager::GetRetransmissionMode() const { |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 871 | DCHECK(unacked_packets_.HasInFlightPackets() || |
fayang | 63a1984 | 2020-01-23 02:51:28 -0800 | [diff] [blame] | 872 | (handshake_mode_disabled_ && !handshake_finished_)); |
| 873 | if (!handshake_mode_disabled_ && !handshake_finished_ && |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 874 | unacked_packets_.HasPendingCryptoPackets()) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 875 | return HANDSHAKE_MODE; |
| 876 | } |
| 877 | if (loss_algorithm_->GetLossTimeout() != QuicTime::Zero()) { |
| 878 | return LOSS_MODE; |
| 879 | } |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 880 | if (pto_enabled_) { |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 881 | return PTO_MODE; |
| 882 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 883 | if (consecutive_tlp_count_ < max_tail_loss_probes_) { |
ianswett | 7ddb34f | 2019-07-15 12:17:43 -0700 | [diff] [blame] | 884 | if (unacked_packets_.HasUnackedRetransmittableFrames()) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 885 | return TLP_MODE; |
| 886 | } |
| 887 | } |
| 888 | return RTO_MODE; |
| 889 | } |
| 890 | |
| 891 | void 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_) { |
wub | e330aa4 | 2020-02-27 07:49:09 -0800 | [diff] [blame] | 901 | QuicTransmissionInfo* info = |
| 902 | unacked_packets_.GetMutableTransmissionInfo(packet.packet_number); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 903 | ++stats_->packets_lost; |
wub | e330aa4 | 2020-02-27 07:49:09 -0800 | [diff] [blame] | 904 | if (time > info->sent_time) { |
| 905 | stats_->total_loss_detection_time = |
| 906 | stats_->total_loss_detection_time + (time - info->sent_time); |
| 907 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 908 | if (debug_delegate_ != nullptr) { |
| 909 | debug_delegate_->OnPacketLoss(packet.packet_number, LOSS_RETRANSMISSION, |
| 910 | time); |
| 911 | } |
wub | e330aa4 | 2020-02-27 07:49:09 -0800 | [diff] [blame] | 912 | unacked_packets_.RemoveFromInFlight(info); |
| 913 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 914 | MarkForRetransmission(packet.packet_number, LOSS_RETRANSMISSION); |
| 915 | } |
| 916 | } |
| 917 | |
| 918 | bool 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 | |
| 946 | QuicTime::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 | |
| 963 | const QuicTime QuicSentPacketManager::GetRetransmissionTime() const { |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 964 | if (!unacked_packets_.HasInFlightPackets() && |
fayang | 63a1984 | 2020-01-23 02:51:28 -0800 | [diff] [blame] | 965 | (!handshake_mode_disabled_ || handshake_finished_ || |
fayang | 5f13505 | 2019-08-22 17:59:40 -0700 | [diff] [blame] | 966 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 975 | return QuicTime::Zero(); |
| 976 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 977 | 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: { |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 984 | DCHECK(!pto_enabled_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 985 | // 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. |
ianswett | 479fea3 | 2019-09-04 02:51:01 -0700 | [diff] [blame] | 988 | const QuicTime sent_time = |
| 989 | unacked_packets_.GetLastInFlightPacketSentTime(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 990 | 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: { |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 995 | DCHECK(!pto_enabled_); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 996 | // The RTO is based on the first outstanding packet. |
ianswett | 479fea3 | 2019-09-04 02:51:01 -0700 | [diff] [blame] | 997 | const QuicTime sent_time = |
| 998 | unacked_packets_.GetLastInFlightPacketSentTime(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 999 | QuicTime rto_time = sent_time + GetRetransmissionDelay(); |
| 1000 | // Wait for TLP packets to be acked before an RTO fires. |
ianswett | 479fea3 | 2019-09-04 02:51:01 -0700 | [diff] [blame] | 1001 | QuicTime tlp_time = sent_time + GetTailLossProbeDelay(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1002 | return std::max(tlp_time, rto_time); |
| 1003 | } |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1004 | case PTO_MODE: { |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 1005 | if (!supports_multiple_packet_number_spaces()) { |
fayang | 2ccfbcf | 2020-02-28 12:37:08 -0800 | [diff] [blame^] | 1006 | 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 | } |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 1019 | // 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; |
fayang | 2ccfbcf | 2020-02-28 12:37:08 -0800 | [diff] [blame^] | 1026 | // 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 | } |
ianswett | 479fea3 | 2019-09-04 02:51:01 -0700 | [diff] [blame] | 1048 | return std::max(clock_->ApproximateNow(), |
fayang | 2ccfbcf | 2020-02-28 12:37:08 -0800 | [diff] [blame^] | 1049 | earliest_right_edge + GetProbeTimeoutDelay()); |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1050 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1051 | } |
| 1052 | DCHECK(false); |
| 1053 | return QuicTime::Zero(); |
| 1054 | } |
| 1055 | |
| 1056 | const 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 | |
| 1067 | const 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. |
fkastenholz | 59c653b | 2019-07-15 09:55:53 -0700 | [diff] [blame] | 1076 | delay_ms = std::max(peer_max_ack_delay_.ToMilliseconds(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1077 | 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 | |
| 1086 | const 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) { |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 1090 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1094 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1095 | 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 | |
| 1104 | const 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 | |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1130 | const QuicTime::Delta QuicSentPacketManager::GetProbeTimeoutDelay() const { |
fayang | 62f867a | 2019-08-22 12:05:01 -0700 | [diff] [blame] | 1131 | DCHECK(pto_enabled_); |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1132 | 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 | } |
fayang | 4aa2240 | 2020-01-07 11:36:07 -0800 | [diff] [blame] | 1138 | QuicTime::Delta pto_delay = |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1139 | rtt_stats_.smoothed_rtt() + |
fayang | 75db434 | 2019-11-04 13:29:14 -0800 | [diff] [blame] | 1140 | std::max(pto_rttvar_multiplier_ * rtt_stats_.mean_deviation(), |
ianswett | 8f90e51 | 2019-12-18 10:50:27 -0800 | [diff] [blame] | 1141 | kAlarmGranularity) + |
fayang | 4c908f0 | 2019-11-01 07:26:17 -0700 | [diff] [blame] | 1142 | (ShouldAddMaxAckDelay() ? peer_max_ack_delay_ : QuicTime::Delta::Zero()); |
fayang | 4aa2240 | 2020-01-07 11:36:07 -0800 | [diff] [blame] | 1143 | 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; |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1157 | } |
| 1158 | |
wub | 967ba57 | 2019-04-01 09:27:52 -0700 | [diff] [blame] | 1159 | QuicTime::Delta QuicSentPacketManager::GetSlowStartDuration() const { |
wub | be29b9e | 2019-11-24 06:56:04 -0800 | [diff] [blame] | 1160 | if (send_algorithm_->GetCongestionControlType() == kBBR || |
| 1161 | send_algorithm_->GetCongestionControlType() == kBBRv2) { |
| 1162 | return stats_->slowstart_duration.GetTotalElapsedTime( |
| 1163 | clock_->ApproximateNow()); |
wub | 967ba57 | 2019-04-01 09:27:52 -0700 | [diff] [blame] | 1164 | } |
wub | be29b9e | 2019-11-24 06:56:04 -0800 | [diff] [blame] | 1165 | return QuicTime::Delta::Infinite(); |
wub | 967ba57 | 2019-04-01 09:27:52 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1168 | std::string QuicSentPacketManager::GetDebugState() const { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1169 | return send_algorithm_->GetDebugState(); |
| 1170 | } |
| 1171 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1172 | void QuicSentPacketManager::SetSendAlgorithm( |
| 1173 | CongestionControlType congestion_control_type) { |
wub | 18773d6 | 2020-01-28 14:14:06 -0800 | [diff] [blame] | 1174 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1186 | SetSendAlgorithm(SendAlgorithmInterface::Create( |
QUICHE team | 73957f1 | 2019-04-18 16:21:52 -0700 | [diff] [blame] | 1187 | clock_, &rtt_stats_, &unacked_packets_, congestion_control_type, random_, |
| 1188 | stats_, initial_congestion_window_)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | void QuicSentPacketManager::SetSendAlgorithm( |
| 1192 | SendAlgorithmInterface* send_algorithm) { |
| 1193 | send_algorithm_.reset(send_algorithm); |
| 1194 | pacing_sender_.set_sender(send_algorithm); |
| 1195 | } |
| 1196 | |
| 1197 | void 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; |
fayang | ce0a316 | 2019-08-15 09:05:36 -0700 | [diff] [blame] | 1205 | consecutive_pto_count_ = 0; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1206 | rtt_stats_.OnConnectionMigration(); |
| 1207 | send_algorithm_->OnConnectionMigration(); |
| 1208 | } |
| 1209 | |
| 1210 | void 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()); |
wub | 81c9b66 | 2020-02-14 09:08:07 -0800 | [diff] [blame] | 1215 | if (ack_delay_time > peer_max_ack_delay()) { |
wub | 8ee29a0 | 2019-12-12 13:06:48 -0800 | [diff] [blame] | 1216 | ack_delay_time = peer_max_ack_delay(); |
| 1217 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1218 | rtt_updated_ = |
| 1219 | MaybeUpdateRTT(largest_acked, ack_delay_time, ack_receive_time); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1220 | last_ack_frame_.ack_delay_time = ack_delay_time; |
| 1221 | acked_packets_iter_ = last_ack_frame_.packets.rbegin(); |
| 1222 | } |
| 1223 | |
| 1224 | void 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 | |
| 1262 | void 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 | |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1273 | AckResult QuicSentPacketManager::OnAckFrameEnd( |
| 1274 | QuicTime ack_receive_time, |
fayang | f8e918b | 2019-07-16 13:03:16 -0700 | [diff] [blame] | 1275 | QuicPacketNumber ack_packet_number, |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1276 | EncryptionLevel ack_decrypted_level) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1277 | QuicByteCount prior_bytes_in_flight = unacked_packets_.bytes_in_flight(); |
| 1278 | // Reverse packets_acked_ so that it is in ascending order. |
wub | c0a1df4 | 2019-11-15 08:49:59 -0800 | [diff] [blame] | 1279 | std::reverse(packets_acked_.begin(), packets_acked_.end()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1280 | 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 { |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1291 | QUIC_PEER_BUG << "Received " |
dschinazi | ef79a5f | 2019-10-04 10:32:54 -0700 | [diff] [blame] | 1292 | << EncryptionLevelToString(ack_decrypted_level) |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1293 | << " ack for unackable packet: " |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1294 | << acked_packet.packet_number << " with state: " |
| 1295 | << QuicUtils::SentPacketStateToString(info->state); |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1296 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1302 | } |
| 1303 | continue; |
| 1304 | } |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1305 | QUIC_DVLOG(1) << ENDPOINT << "Got an " |
dschinazi | ef79a5f | 2019-10-04 10:32:54 -0700 | [diff] [blame] | 1306 | << EncryptionLevelToString(ack_decrypted_level) |
fayang | 19d2d5b | 2019-09-11 14:22:03 -0700 | [diff] [blame] | 1307 | << " ack for packet " << acked_packet.packet_number |
| 1308 | << " , state: " |
| 1309 | << QuicUtils::SentPacketStateToString(info->state); |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1310 | const PacketNumberSpace packet_number_space = |
fayang | bf3d286 | 2019-06-20 14:13:44 -0700 | [diff] [blame] | 1311 | unacked_packets_.GetPacketNumberSpace(info->encryption_level); |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1312 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1317 | last_ack_frame_.packets.Add(acked_packet.packet_number); |
fayang | 2f2915d | 2020-01-24 06:47:15 -0800 | [diff] [blame] | 1318 | if (info->encryption_level == ENCRYPTION_FORWARD_SECURE) { |
| 1319 | one_rtt_packet_acked_ = true; |
| 1320 | } |
QUICHE team | c264e36 | 2019-03-19 14:21:06 -0700 | [diff] [blame] | 1321 | largest_packet_peer_knows_is_acked_.UpdateMax(info->largest_acked); |
QUICHE team | c279cec | 2019-03-22 06:51:48 -0700 | [diff] [blame] | 1322 | if (supports_multiple_packet_number_spaces()) { |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1323 | largest_packets_peer_knows_is_acked_[packet_number_space].UpdateMax( |
| 1324 | info->largest_acked); |
QUICHE team | c279cec | 2019-03-22 06:51:48 -0700 | [diff] [blame] | 1325 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1326 | // 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 | } |
fayang | bf3d286 | 2019-06-20 14:13:44 -0700 | [diff] [blame] | 1334 | unacked_packets_.MaybeUpdateLargestAckedOfPacketNumberSpace( |
| 1335 | packet_number_space, acked_packet.packet_number); |
fayang | 19d2d5b | 2019-09-11 14:22:03 -0700 | [diff] [blame] | 1336 | MarkPacketHandled(acked_packet.packet_number, info, ack_receive_time, |
QUICHE team | 9467db0 | 2019-05-30 09:38:45 -0700 | [diff] [blame] | 1337 | last_ack_frame_.ack_delay_time, |
| 1338 | acked_packet.receive_timestamp); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1339 | } |
| 1340 | const bool acked_new_packet = !packets_acked_.empty(); |
fayang | f8e918b | 2019-07-16 13:03:16 -0700 | [diff] [blame] | 1341 | PostProcessNewlyAckedPackets(ack_packet_number, last_ack_frame_, |
| 1342 | ack_receive_time, rtt_updated_, |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1343 | prior_bytes_in_flight); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1344 | |
fayang | 3eb8221 | 2019-04-16 12:05:46 -0700 | [diff] [blame] | 1345 | return acked_new_packet ? PACKETS_NEWLY_ACKED : NO_PACKETS_NEWLY_ACKED; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1346 | } |
| 1347 | |
| 1348 | void QuicSentPacketManager::SetDebugDelegate(DebugDelegate* debug_delegate) { |
| 1349 | debug_delegate_ = debug_delegate; |
| 1350 | } |
| 1351 | |
| 1352 | void 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 | |
| 1362 | QuicTime QuicSentPacketManager::GetNextReleaseTime() const { |
| 1363 | return using_pacing_ ? pacing_sender_.ideal_next_packet_send_time() |
| 1364 | : QuicTime::Zero(); |
| 1365 | } |
| 1366 | |
| 1367 | void 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 team | c279cec | 2019-03-22 06:51:48 -0700 | [diff] [blame] | 1375 | void QuicSentPacketManager::EnableMultiplePacketNumberSpacesSupport() { |
fayang | 18ff23b | 2020-01-28 09:19:00 -0800 | [diff] [blame] | 1376 | EnableIetfPtoAndLossDetection(); |
QUICHE team | c279cec | 2019-03-22 06:51:48 -0700 | [diff] [blame] | 1377 | unacked_packets_.EnableMultiplePacketNumberSpacesSupport(); |
| 1378 | } |
| 1379 | |
| 1380 | QuicPacketNumber 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 team | c279cec | 2019-03-22 06:51:48 -0700 | [diff] [blame] | 1387 | QuicPacketNumber 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1394 | #undef ENDPOINT // undef for jumbo builds |
| 1395 | } // namespace quic |