blob: c45575177bade740d0b0136f5d8b24f7717a00c2 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2016 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/congestion_control/bbr_sender.h"
6
7#include <algorithm>
8#include <sstream>
vasilvv872e7a32019-03-12 16:42:44 -07009#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -050010
11#include "net/third_party/quiche/src/quic/core/congestion_control/rtt_stats.h"
12#include "net/third_party/quiche/src/quic/core/crypto/crypto_protocol.h"
wub967ba572019-04-01 09:27:52 -070013#include "net/third_party/quiche/src/quic/core/quic_time.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014#include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h"
15#include "net/third_party/quiche/src/quic/platform/api/quic_fallthrough.h"
16#include "net/third_party/quiche/src/quic/platform/api/quic_flag_utils.h"
17#include "net/third_party/quiche/src/quic/platform/api/quic_flags.h"
18#include "net/third_party/quiche/src/quic/platform/api/quic_logging.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050019
20namespace quic {
21
22namespace {
23// Constants based on TCP defaults.
24// The minimum CWND to ensure delayed acks don't reduce bandwidth measurements.
25// Does not inflate the pacing rate.
26const QuicByteCount kDefaultMinimumCongestionWindow = 4 * kMaxSegmentSize;
27
28// The gain used for the STARTUP, equal to 2/ln(2).
29const float kDefaultHighGain = 2.885f;
30// The newly derived gain for STARTUP, equal to 4 * ln(2)
31const float kDerivedHighGain = 2.773f;
32// The newly derived CWND gain for STARTUP, 2.
wub5b352f12019-05-07 11:45:26 -070033const float kDerivedHighCWNDGain = 2.0f;
QUICHE teama6ef0a62019-03-07 20:34:33 -050034// The gain used in STARTUP after loss has been detected.
35// 1.5 is enough to allow for 25% exogenous loss and still observe a 25% growth
36// in measured bandwidth.
37const float kStartupAfterLossGain = 1.5f;
38// The cycle of gains used during the PROBE_BW stage.
39const float kPacingGain[] = {1.25, 0.75, 1, 1, 1, 1, 1, 1};
40
41// The length of the gain cycle.
42const size_t kGainCycleLength = sizeof(kPacingGain) / sizeof(kPacingGain[0]);
43// The size of the bandwidth filter window, in round-trips.
44const QuicRoundTripCount kBandwidthWindowSize = kGainCycleLength + 2;
45
46// The time after which the current min_rtt value expires.
47const QuicTime::Delta kMinRttExpiry = QuicTime::Delta::FromSeconds(10);
48// The minimum time the connection can spend in PROBE_RTT mode.
49const QuicTime::Delta kProbeRttTime = QuicTime::Delta::FromMilliseconds(200);
50// If the bandwidth does not increase by the factor of |kStartupGrowthTarget|
51// within |kRoundTripsWithoutGrowthBeforeExitingStartup| rounds, the connection
52// will exit the STARTUP mode.
53const float kStartupGrowthTarget = 1.25;
54const QuicRoundTripCount kRoundTripsWithoutGrowthBeforeExitingStartup = 3;
55// Coefficient of target congestion window to use when basing PROBE_RTT on BDP.
56const float kModerateProbeRttMultiplier = 0.75;
57// Coefficient to determine if a new RTT is sufficiently similar to min_rtt that
58// we don't need to enter PROBE_RTT.
59const float kSimilarMinRttThreshold = 1.125;
60
61} // namespace
62
63BbrSender::DebugState::DebugState(const BbrSender& sender)
64 : mode(sender.mode_),
65 max_bandwidth(sender.max_bandwidth_.GetBest()),
66 round_trip_count(sender.round_trip_count_),
67 gain_cycle_index(sender.cycle_current_offset_),
68 congestion_window(sender.congestion_window_),
69 is_at_full_bandwidth(sender.is_at_full_bandwidth_),
70 bandwidth_at_last_round(sender.bandwidth_at_last_round_),
71 rounds_without_bandwidth_gain(sender.rounds_without_bandwidth_gain_),
72 min_rtt(sender.min_rtt_),
73 min_rtt_timestamp(sender.min_rtt_timestamp_),
74 recovery_state(sender.recovery_state_),
75 recovery_window(sender.recovery_window_),
76 last_sample_is_app_limited(sender.last_sample_is_app_limited_),
77 end_of_app_limited_phase(sender.sampler_.end_of_app_limited_phase()) {}
78
79BbrSender::DebugState::DebugState(const DebugState& state) = default;
80
wub967ba572019-04-01 09:27:52 -070081BbrSender::BbrSender(QuicTime now,
82 const RttStats* rtt_stats,
QUICHE teama6ef0a62019-03-07 20:34:33 -050083 const QuicUnackedPacketMap* unacked_packets,
84 QuicPacketCount initial_tcp_congestion_window,
85 QuicPacketCount max_tcp_congestion_window,
wub967ba572019-04-01 09:27:52 -070086 QuicRandom* random,
87 QuicConnectionStats* stats)
QUICHE teama6ef0a62019-03-07 20:34:33 -050088 : rtt_stats_(rtt_stats),
89 unacked_packets_(unacked_packets),
90 random_(random),
wub967ba572019-04-01 09:27:52 -070091 stats_(stats),
QUICHE teama6ef0a62019-03-07 20:34:33 -050092 mode_(STARTUP),
93 round_trip_count_(0),
94 max_bandwidth_(kBandwidthWindowSize, QuicBandwidth::Zero(), 0),
95 max_ack_height_(kBandwidthWindowSize, 0, 0),
96 aggregation_epoch_start_time_(QuicTime::Zero()),
97 aggregation_epoch_bytes_(0),
98 min_rtt_(QuicTime::Delta::Zero()),
99 min_rtt_timestamp_(QuicTime::Zero()),
100 congestion_window_(initial_tcp_congestion_window * kDefaultTCPMSS),
101 initial_congestion_window_(initial_tcp_congestion_window *
102 kDefaultTCPMSS),
103 max_congestion_window_(max_tcp_congestion_window * kDefaultTCPMSS),
104 min_congestion_window_(kDefaultMinimumCongestionWindow),
105 high_gain_(kDefaultHighGain),
106 high_cwnd_gain_(kDefaultHighGain),
107 drain_gain_(1.f / kDefaultHighGain),
108 pacing_rate_(QuicBandwidth::Zero()),
109 pacing_gain_(1),
110 congestion_window_gain_(1),
111 congestion_window_gain_constant_(
danzh88e3e052019-06-13 11:47:18 -0700112 static_cast<float>(GetQuicFlag(FLAGS_quic_bbr_cwnd_gain))),
QUICHE teama6ef0a62019-03-07 20:34:33 -0500113 num_startup_rtts_(kRoundTripsWithoutGrowthBeforeExitingStartup),
114 exit_startup_on_loss_(false),
115 cycle_current_offset_(0),
116 last_cycle_start_(QuicTime::Zero()),
117 is_at_full_bandwidth_(false),
118 rounds_without_bandwidth_gain_(0),
119 bandwidth_at_last_round_(QuicBandwidth::Zero()),
120 exiting_quiescence_(false),
121 exit_probe_rtt_at_(QuicTime::Zero()),
122 probe_rtt_round_passed_(false),
123 last_sample_is_app_limited_(false),
124 has_non_app_limited_sample_(false),
125 flexible_app_limited_(false),
126 recovery_state_(NOT_IN_RECOVERY),
127 recovery_window_(max_congestion_window_),
128 is_app_limited_recovery_(false),
129 slower_startup_(false),
130 rate_based_startup_(false),
131 startup_rate_reduction_multiplier_(0),
132 startup_bytes_lost_(0),
133 enable_ack_aggregation_during_startup_(false),
134 expire_ack_aggregation_in_startup_(false),
135 drain_to_target_(false),
136 probe_rtt_based_on_bdp_(false),
137 probe_rtt_skipped_if_similar_rtt_(false),
138 probe_rtt_disabled_if_app_limited_(false),
139 app_limited_since_last_probe_rtt_(false),
wub03637f52019-05-30 10:52:20 -0700140 min_rtt_since_last_probe_rtt_(QuicTime::Delta::Infinite()) {
wub967ba572019-04-01 09:27:52 -0700141 if (stats_) {
142 stats_->slowstart_count = 0;
143 stats_->slowstart_start_time = QuicTime::Zero();
144 }
145 EnterStartupMode(now);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500146}
147
148BbrSender::~BbrSender() {}
149
150void BbrSender::SetInitialCongestionWindowInPackets(
151 QuicPacketCount congestion_window) {
152 if (mode_ == STARTUP) {
153 initial_congestion_window_ = congestion_window * kDefaultTCPMSS;
154 congestion_window_ = congestion_window * kDefaultTCPMSS;
155 }
156}
157
158bool BbrSender::InSlowStart() const {
159 return mode_ == STARTUP;
160}
161
162void BbrSender::OnPacketSent(QuicTime sent_time,
163 QuicByteCount bytes_in_flight,
164 QuicPacketNumber packet_number,
165 QuicByteCount bytes,
166 HasRetransmittableData is_retransmittable) {
wub967ba572019-04-01 09:27:52 -0700167 if (stats_ && InSlowStart()) {
168 ++stats_->slowstart_packets_sent;
169 stats_->slowstart_bytes_sent += bytes;
170 }
171
QUICHE teama6ef0a62019-03-07 20:34:33 -0500172 last_sent_packet_ = packet_number;
173
174 if (bytes_in_flight == 0 && sampler_.is_app_limited()) {
175 exiting_quiescence_ = true;
176 }
177
178 if (!aggregation_epoch_start_time_.IsInitialized()) {
179 aggregation_epoch_start_time_ = sent_time;
180 }
181
182 sampler_.OnPacketSent(sent_time, packet_number, bytes, bytes_in_flight,
183 is_retransmittable);
184}
185
186bool BbrSender::CanSend(QuicByteCount bytes_in_flight) {
187 return bytes_in_flight < GetCongestionWindow();
188}
189
190QuicBandwidth BbrSender::PacingRate(QuicByteCount bytes_in_flight) const {
191 if (pacing_rate_.IsZero()) {
192 return high_gain_ * QuicBandwidth::FromBytesAndTimeDelta(
193 initial_congestion_window_, GetMinRtt());
194 }
195 return pacing_rate_;
196}
197
198QuicBandwidth BbrSender::BandwidthEstimate() const {
199 return max_bandwidth_.GetBest();
200}
201
202QuicByteCount BbrSender::GetCongestionWindow() const {
203 if (mode_ == PROBE_RTT) {
204 return ProbeRttCongestionWindow();
205 }
206
207 if (InRecovery() && !(rate_based_startup_ && mode_ == STARTUP)) {
208 return std::min(congestion_window_, recovery_window_);
209 }
210
211 return congestion_window_;
212}
213
214QuicByteCount BbrSender::GetSlowStartThreshold() const {
215 return 0;
216}
217
218bool BbrSender::InRecovery() const {
219 return recovery_state_ != NOT_IN_RECOVERY;
220}
221
222bool BbrSender::ShouldSendProbingPacket() const {
223 if (pacing_gain_ <= 1) {
224 return false;
225 }
226
227 // TODO(b/77975811): If the pipe is highly under-utilized, consider not
228 // sending a probing transmission, because the extra bandwidth is not needed.
229 // If flexible_app_limited is enabled, check if the pipe is sufficiently full.
230 if (flexible_app_limited_) {
231 return !IsPipeSufficientlyFull();
232 } else {
233 return true;
234 }
235}
236
237bool BbrSender::IsPipeSufficientlyFull() const {
238 // See if we need more bytes in flight to see more bandwidth.
239 if (mode_ == STARTUP) {
240 // STARTUP exits if it doesn't observe a 25% bandwidth increase, so the CWND
241 // must be more than 25% above the target.
242 return unacked_packets_->bytes_in_flight() >=
243 GetTargetCongestionWindow(1.5);
244 }
245 if (pacing_gain_ > 1) {
246 // Super-unity PROBE_BW doesn't exit until 1.25 * BDP is achieved.
247 return unacked_packets_->bytes_in_flight() >=
248 GetTargetCongestionWindow(pacing_gain_);
249 }
250 // If bytes_in_flight are above the target congestion window, it should be
251 // possible to observe the same or more bandwidth if it's available.
252 return unacked_packets_->bytes_in_flight() >= GetTargetCongestionWindow(1.1);
253}
254
255void BbrSender::SetFromConfig(const QuicConfig& config,
256 Perspective perspective) {
257 if (config.HasClientRequestedIndependentOption(kLRTT, perspective)) {
258 exit_startup_on_loss_ = true;
259 }
260 if (config.HasClientRequestedIndependentOption(k1RTT, perspective)) {
261 num_startup_rtts_ = 1;
262 }
263 if (config.HasClientRequestedIndependentOption(k2RTT, perspective)) {
264 num_startup_rtts_ = 2;
265 }
266 if (config.HasClientRequestedIndependentOption(kBBRS, perspective)) {
267 slower_startup_ = true;
268 }
269 if (config.HasClientRequestedIndependentOption(kBBR3, perspective)) {
270 drain_to_target_ = true;
271 }
272 if (config.HasClientRequestedIndependentOption(kBBS1, perspective)) {
273 rate_based_startup_ = true;
274 }
275 if (GetQuicReloadableFlag(quic_bbr_startup_rate_reduction) &&
276 config.HasClientRequestedIndependentOption(kBBS4, perspective)) {
277 rate_based_startup_ = true;
278 // Hits 1.25x pacing multiplier when ~2/3 CWND is lost.
279 startup_rate_reduction_multiplier_ = 1;
280 }
281 if (GetQuicReloadableFlag(quic_bbr_startup_rate_reduction) &&
282 config.HasClientRequestedIndependentOption(kBBS5, perspective)) {
283 rate_based_startup_ = true;
284 // Hits 1.25x pacing multiplier when ~1/3 CWND is lost.
285 startup_rate_reduction_multiplier_ = 2;
286 }
287 if (config.HasClientRequestedIndependentOption(kBBR4, perspective)) {
288 max_ack_height_.SetWindowLength(2 * kBandwidthWindowSize);
289 }
290 if (config.HasClientRequestedIndependentOption(kBBR5, perspective)) {
291 max_ack_height_.SetWindowLength(4 * kBandwidthWindowSize);
292 }
293 if (GetQuicReloadableFlag(quic_bbr_less_probe_rtt) &&
294 config.HasClientRequestedIndependentOption(kBBR6, perspective)) {
295 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_less_probe_rtt, 1, 3);
296 probe_rtt_based_on_bdp_ = true;
297 }
298 if (GetQuicReloadableFlag(quic_bbr_less_probe_rtt) &&
299 config.HasClientRequestedIndependentOption(kBBR7, perspective)) {
300 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_less_probe_rtt, 2, 3);
301 probe_rtt_skipped_if_similar_rtt_ = true;
302 }
303 if (GetQuicReloadableFlag(quic_bbr_less_probe_rtt) &&
304 config.HasClientRequestedIndependentOption(kBBR8, perspective)) {
305 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_less_probe_rtt, 3, 3);
306 probe_rtt_disabled_if_app_limited_ = true;
307 }
308 if (GetQuicReloadableFlag(quic_bbr_flexible_app_limited) &&
309 config.HasClientRequestedIndependentOption(kBBR9, perspective)) {
310 QUIC_RELOADABLE_FLAG_COUNT(quic_bbr_flexible_app_limited);
311 flexible_app_limited_ = true;
312 }
313 if (GetQuicReloadableFlag(quic_bbr_slower_startup3) &&
314 config.HasClientRequestedIndependentOption(kBBQ1, perspective)) {
315 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_slower_startup3, 1, 4);
316 set_high_gain(kDerivedHighGain);
317 set_high_cwnd_gain(kDerivedHighGain);
318 set_drain_gain(1.f / kDerivedHighGain);
319 }
320 if (GetQuicReloadableFlag(quic_bbr_slower_startup3) &&
321 config.HasClientRequestedIndependentOption(kBBQ2, perspective)) {
322 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_slower_startup3, 2, 4);
323 set_high_cwnd_gain(kDerivedHighCWNDGain);
324 }
325 if (GetQuicReloadableFlag(quic_bbr_slower_startup3) &&
326 config.HasClientRequestedIndependentOption(kBBQ3, perspective)) {
327 QUIC_RELOADABLE_FLAG_COUNT_N(quic_bbr_slower_startup3, 3, 4);
328 enable_ack_aggregation_during_startup_ = true;
329 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500330 if (GetQuicReloadableFlag(quic_bbr_slower_startup4) &&
331 config.HasClientRequestedIndependentOption(kBBQ5, perspective)) {
332 QUIC_RELOADABLE_FLAG_COUNT(quic_bbr_slower_startup4);
333 expire_ack_aggregation_in_startup_ = true;
334 }
335 if (config.HasClientRequestedIndependentOption(kMIN1, perspective)) {
336 min_congestion_window_ = kMaxSegmentSize;
337 }
338}
339
340void BbrSender::AdjustNetworkParameters(QuicBandwidth bandwidth,
fayangf1b99dc2019-05-14 06:29:18 -0700341 QuicTime::Delta rtt,
342 bool allow_cwnd_to_decrease) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500343 if (!bandwidth.IsZero()) {
344 max_bandwidth_.Update(bandwidth, round_trip_count_);
345 }
346 if (!rtt.IsZero() && (min_rtt_ > rtt || min_rtt_.IsZero())) {
347 min_rtt_ = rtt;
348 }
fayangbe83ecd2019-04-26 13:58:09 -0700349 if (GetQuicReloadableFlag(quic_fix_bbr_cwnd_in_bandwidth_resumption) &&
350 mode_ == STARTUP) {
fayangc050d7a2019-05-17 11:20:38 -0700351 if (bandwidth.IsZero()) {
352 // Ignore bad bandwidth samples.
353 QUIC_RELOADABLE_FLAG_COUNT_N(quic_fix_bbr_cwnd_in_bandwidth_resumption, 3,
354 3);
355 return;
356 }
fayangbe83ecd2019-04-26 13:58:09 -0700357 const QuicByteCount new_cwnd =
fayangf1b99dc2019-05-14 06:29:18 -0700358 std::max(kMinInitialCongestionWindow * kDefaultTCPMSS,
359 std::min(kMaxInitialCongestionWindow * kDefaultTCPMSS,
360 bandwidth * rtt_stats_->SmoothedOrInitialRtt()));
fayang14650e42019-06-04 10:30:33 -0700361 if (!rtt_stats_->smoothed_rtt().IsZero()) {
362 QUIC_CODE_COUNT(quic_smoothed_rtt_available);
363 } else if (rtt_stats_->initial_rtt() !=
364 QuicTime::Delta::FromMilliseconds(kInitialRttMs)) {
365 QUIC_CODE_COUNT(quic_client_initial_rtt_available);
366 } else {
367 QUIC_CODE_COUNT(quic_default_initial_rtt);
368 }
fayangbe83ecd2019-04-26 13:58:09 -0700369 if (new_cwnd > congestion_window_) {
fayanged966432019-04-29 06:50:05 -0700370 QUIC_RELOADABLE_FLAG_COUNT_N(quic_fix_bbr_cwnd_in_bandwidth_resumption, 1,
fayangc050d7a2019-05-17 11:20:38 -0700371 3);
fayanged966432019-04-29 06:50:05 -0700372 } else {
373 QUIC_RELOADABLE_FLAG_COUNT_N(quic_fix_bbr_cwnd_in_bandwidth_resumption, 2,
fayangc050d7a2019-05-17 11:20:38 -0700374 3);
fayangbe83ecd2019-04-26 13:58:09 -0700375 }
fayangc050d7a2019-05-17 11:20:38 -0700376 if (new_cwnd < congestion_window_ && !allow_cwnd_to_decrease) {
377 // Only decrease cwnd if allow_cwnd_to_decrease is true.
fayangf1b99dc2019-05-14 06:29:18 -0700378 return;
379 }
fayang8cafde02019-06-04 06:21:04 -0700380 if (GetQuicReloadableFlag(quic_conservative_cwnd_and_pacing_gains)) {
381 // Decreases cwnd gain and pacing gain. Please note, if pacing_rate_ has
382 // been calculated, it cannot decrease in STARTUP phase.
383 QUIC_RELOADABLE_FLAG_COUNT(quic_conservative_cwnd_and_pacing_gains);
384 set_high_gain(kDerivedHighCWNDGain);
385 set_high_cwnd_gain(kDerivedHighCWNDGain);
386 }
fayangf1b99dc2019-05-14 06:29:18 -0700387 congestion_window_ = new_cwnd;
fayangbe83ecd2019-04-26 13:58:09 -0700388 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500389}
390
391void BbrSender::OnCongestionEvent(bool /*rtt_updated*/,
392 QuicByteCount prior_in_flight,
393 QuicTime event_time,
394 const AckedPacketVector& acked_packets,
395 const LostPacketVector& lost_packets) {
396 const QuicByteCount total_bytes_acked_before = sampler_.total_bytes_acked();
397
398 bool is_round_start = false;
399 bool min_rtt_expired = false;
400
401 DiscardLostPackets(lost_packets);
402
403 // Input the new data into the BBR model of the connection.
404 QuicByteCount excess_acked = 0;
405 if (!acked_packets.empty()) {
406 QuicPacketNumber last_acked_packet = acked_packets.rbegin()->packet_number;
407 is_round_start = UpdateRoundTripCounter(last_acked_packet);
408 min_rtt_expired = UpdateBandwidthAndMinRtt(event_time, acked_packets);
409 UpdateRecoveryState(last_acked_packet, !lost_packets.empty(),
410 is_round_start);
411
412 const QuicByteCount bytes_acked =
413 sampler_.total_bytes_acked() - total_bytes_acked_before;
414
415 excess_acked = UpdateAckAggregationBytes(event_time, bytes_acked);
416 }
417
418 // Handle logic specific to PROBE_BW mode.
419 if (mode_ == PROBE_BW) {
420 UpdateGainCyclePhase(event_time, prior_in_flight, !lost_packets.empty());
421 }
422
423 // Handle logic specific to STARTUP and DRAIN modes.
424 if (is_round_start && !is_at_full_bandwidth_) {
425 CheckIfFullBandwidthReached();
426 }
427 MaybeExitStartupOrDrain(event_time);
428
429 // Handle logic specific to PROBE_RTT.
430 MaybeEnterOrExitProbeRtt(event_time, is_round_start, min_rtt_expired);
431
432 // Calculate number of packets acked and lost.
433 QuicByteCount bytes_acked =
434 sampler_.total_bytes_acked() - total_bytes_acked_before;
435 QuicByteCount bytes_lost = 0;
436 for (const auto& packet : lost_packets) {
437 bytes_lost += packet.bytes_lost;
438 }
439
440 // After the model is updated, recalculate the pacing rate and congestion
441 // window.
442 CalculatePacingRate();
443 CalculateCongestionWindow(bytes_acked, excess_acked);
444 CalculateRecoveryWindow(bytes_acked, bytes_lost);
445
446 // Cleanup internal state.
447 sampler_.RemoveObsoletePackets(unacked_packets_->GetLeastUnacked());
448}
449
450CongestionControlType BbrSender::GetCongestionControlType() const {
451 return kBBR;
452}
453
454QuicTime::Delta BbrSender::GetMinRtt() const {
455 return !min_rtt_.IsZero() ? min_rtt_ : rtt_stats_->initial_rtt();
456}
457
458QuicByteCount BbrSender::GetTargetCongestionWindow(float gain) const {
459 QuicByteCount bdp = GetMinRtt() * BandwidthEstimate();
460 QuicByteCount congestion_window = gain * bdp;
461
462 // BDP estimate will be zero if no bandwidth samples are available yet.
463 if (congestion_window == 0) {
464 congestion_window = gain * initial_congestion_window_;
465 }
466
467 return std::max(congestion_window, min_congestion_window_);
468}
469
470QuicByteCount BbrSender::ProbeRttCongestionWindow() const {
471 if (probe_rtt_based_on_bdp_) {
472 return GetTargetCongestionWindow(kModerateProbeRttMultiplier);
473 }
474 return min_congestion_window_;
475}
476
wub967ba572019-04-01 09:27:52 -0700477void BbrSender::EnterStartupMode(QuicTime now) {
478 if (stats_) {
479 ++stats_->slowstart_count;
480 DCHECK_EQ(stats_->slowstart_start_time, QuicTime::Zero()) << mode_;
481 stats_->slowstart_start_time = now;
482 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500483 mode_ = STARTUP;
484 pacing_gain_ = high_gain_;
485 congestion_window_gain_ = high_cwnd_gain_;
486}
487
488void BbrSender::EnterProbeBandwidthMode(QuicTime now) {
489 mode_ = PROBE_BW;
490 congestion_window_gain_ = congestion_window_gain_constant_;
491
492 // Pick a random offset for the gain cycle out of {0, 2..7} range. 1 is
493 // excluded because in that case increased gain and decreased gain would not
494 // follow each other.
495 cycle_current_offset_ = random_->RandUint64() % (kGainCycleLength - 1);
496 if (cycle_current_offset_ >= 1) {
497 cycle_current_offset_ += 1;
498 }
499
500 last_cycle_start_ = now;
501 pacing_gain_ = kPacingGain[cycle_current_offset_];
502}
503
504void BbrSender::DiscardLostPackets(const LostPacketVector& lost_packets) {
505 for (const LostPacket& packet : lost_packets) {
506 sampler_.OnPacketLost(packet.packet_number);
wub967ba572019-04-01 09:27:52 -0700507 if (mode_ == STARTUP) {
508 if (stats_) {
509 ++stats_->slowstart_packets_lost;
510 stats_->slowstart_bytes_lost += packet.bytes_lost;
511 }
512 if (startup_rate_reduction_multiplier_ != 0) {
513 startup_bytes_lost_ += packet.bytes_lost;
514 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500515 }
516 }
517}
518
519bool BbrSender::UpdateRoundTripCounter(QuicPacketNumber last_acked_packet) {
520 if (!current_round_trip_end_.IsInitialized() ||
521 last_acked_packet > current_round_trip_end_) {
522 round_trip_count_++;
523 current_round_trip_end_ = last_sent_packet_;
wub967ba572019-04-01 09:27:52 -0700524 if (stats_ && InSlowStart()) {
525 ++stats_->slowstart_num_rtts;
526 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500527 return true;
528 }
529
530 return false;
531}
532
533bool BbrSender::UpdateBandwidthAndMinRtt(
534 QuicTime now,
535 const AckedPacketVector& acked_packets) {
536 QuicTime::Delta sample_min_rtt = QuicTime::Delta::Infinite();
537 for (const auto& packet : acked_packets) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500538 BandwidthSample bandwidth_sample =
539 sampler_.OnPacketAcknowledged(now, packet.packet_number);
wub03637f52019-05-30 10:52:20 -0700540 if (!bandwidth_sample.state_at_send.is_valid) {
wubfb4e2132019-04-05 12:30:09 -0700541 // From the sampler's perspective, the packet has never been sent, or the
542 // packet has been acked or marked as lost previously.
543 continue;
544 }
545
wub254545c2019-04-04 13:56:52 -0700546 last_sample_is_app_limited_ = bandwidth_sample.state_at_send.is_app_limited;
547 has_non_app_limited_sample_ |=
548 !bandwidth_sample.state_at_send.is_app_limited;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500549 if (!bandwidth_sample.rtt.IsZero()) {
550 sample_min_rtt = std::min(sample_min_rtt, bandwidth_sample.rtt);
551 }
552
wub254545c2019-04-04 13:56:52 -0700553 if (!bandwidth_sample.state_at_send.is_app_limited ||
QUICHE teama6ef0a62019-03-07 20:34:33 -0500554 bandwidth_sample.bandwidth > BandwidthEstimate()) {
555 max_bandwidth_.Update(bandwidth_sample.bandwidth, round_trip_count_);
556 }
557 }
558
559 // If none of the RTT samples are valid, return immediately.
560 if (sample_min_rtt.IsInfinite()) {
561 return false;
562 }
563 min_rtt_since_last_probe_rtt_ =
564 std::min(min_rtt_since_last_probe_rtt_, sample_min_rtt);
565
566 // Do not expire min_rtt if none was ever available.
567 bool min_rtt_expired =
568 !min_rtt_.IsZero() && (now > (min_rtt_timestamp_ + kMinRttExpiry));
569
570 if (min_rtt_expired || sample_min_rtt < min_rtt_ || min_rtt_.IsZero()) {
571 QUIC_DVLOG(2) << "Min RTT updated, old value: " << min_rtt_
572 << ", new value: " << sample_min_rtt
573 << ", current time: " << now.ToDebuggingValue();
574
575 if (min_rtt_expired && ShouldExtendMinRttExpiry()) {
576 min_rtt_expired = false;
577 } else {
578 min_rtt_ = sample_min_rtt;
579 }
580 min_rtt_timestamp_ = now;
581 // Reset since_last_probe_rtt fields.
582 min_rtt_since_last_probe_rtt_ = QuicTime::Delta::Infinite();
583 app_limited_since_last_probe_rtt_ = false;
584 }
585 DCHECK(!min_rtt_.IsZero());
586
587 return min_rtt_expired;
588}
589
590bool BbrSender::ShouldExtendMinRttExpiry() const {
591 if (probe_rtt_disabled_if_app_limited_ && app_limited_since_last_probe_rtt_) {
592 // Extend the current min_rtt if we've been app limited recently.
593 return true;
594 }
595 const bool min_rtt_increased_since_last_probe =
596 min_rtt_since_last_probe_rtt_ > min_rtt_ * kSimilarMinRttThreshold;
597 if (probe_rtt_skipped_if_similar_rtt_ && app_limited_since_last_probe_rtt_ &&
598 !min_rtt_increased_since_last_probe) {
599 // Extend the current min_rtt if we've been app limited recently and an rtt
600 // has been measured in that time that's less than 12.5% more than the
601 // current min_rtt.
602 return true;
603 }
604 return false;
605}
606
607void BbrSender::UpdateGainCyclePhase(QuicTime now,
608 QuicByteCount prior_in_flight,
609 bool has_losses) {
610 const QuicByteCount bytes_in_flight = unacked_packets_->bytes_in_flight();
611 // In most cases, the cycle is advanced after an RTT passes.
612 bool should_advance_gain_cycling = now - last_cycle_start_ > GetMinRtt();
613
614 // If the pacing gain is above 1.0, the connection is trying to probe the
615 // bandwidth by increasing the number of bytes in flight to at least
616 // pacing_gain * BDP. Make sure that it actually reaches the target, as long
617 // as there are no losses suggesting that the buffers are not able to hold
618 // that much.
619 if (pacing_gain_ > 1.0 && !has_losses &&
620 prior_in_flight < GetTargetCongestionWindow(pacing_gain_)) {
621 should_advance_gain_cycling = false;
622 }
623
624 // If pacing gain is below 1.0, the connection is trying to drain the extra
625 // queue which could have been incurred by probing prior to it. If the number
626 // of bytes in flight falls down to the estimated BDP value earlier, conclude
627 // that the queue has been successfully drained and exit this cycle early.
628 if (pacing_gain_ < 1.0 && bytes_in_flight <= GetTargetCongestionWindow(1)) {
629 should_advance_gain_cycling = true;
630 }
631
632 if (should_advance_gain_cycling) {
633 cycle_current_offset_ = (cycle_current_offset_ + 1) % kGainCycleLength;
634 last_cycle_start_ = now;
635 // Stay in low gain mode until the target BDP is hit.
636 // Low gain mode will be exited immediately when the target BDP is achieved.
637 if (drain_to_target_ && pacing_gain_ < 1 &&
638 kPacingGain[cycle_current_offset_] == 1 &&
639 bytes_in_flight > GetTargetCongestionWindow(1)) {
640 return;
641 }
642 pacing_gain_ = kPacingGain[cycle_current_offset_];
643 }
644}
645
646void BbrSender::CheckIfFullBandwidthReached() {
647 if (last_sample_is_app_limited_) {
648 return;
649 }
650
651 QuicBandwidth target = bandwidth_at_last_round_ * kStartupGrowthTarget;
652 if (BandwidthEstimate() >= target) {
653 bandwidth_at_last_round_ = BandwidthEstimate();
654 rounds_without_bandwidth_gain_ = 0;
655 if (expire_ack_aggregation_in_startup_) {
656 // Expire old excess delivery measurements now that bandwidth increased.
657 max_ack_height_.Reset(0, round_trip_count_);
658 }
659 return;
660 }
661
662 rounds_without_bandwidth_gain_++;
663 if ((rounds_without_bandwidth_gain_ >= num_startup_rtts_) ||
664 (exit_startup_on_loss_ && InRecovery())) {
665 DCHECK(has_non_app_limited_sample_);
666 is_at_full_bandwidth_ = true;
667 }
668}
669
670void BbrSender::MaybeExitStartupOrDrain(QuicTime now) {
671 if (mode_ == STARTUP && is_at_full_bandwidth_) {
wub967ba572019-04-01 09:27:52 -0700672 OnExitStartup(now);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500673 mode_ = DRAIN;
674 pacing_gain_ = drain_gain_;
675 congestion_window_gain_ = high_cwnd_gain_;
676 }
677 if (mode_ == DRAIN &&
678 unacked_packets_->bytes_in_flight() <= GetTargetCongestionWindow(1)) {
679 EnterProbeBandwidthMode(now);
680 }
681}
682
wub967ba572019-04-01 09:27:52 -0700683void BbrSender::OnExitStartup(QuicTime now) {
684 DCHECK_EQ(mode_, STARTUP);
685 if (stats_) {
686 DCHECK_NE(stats_->slowstart_start_time, QuicTime::Zero());
687 if (now > stats_->slowstart_start_time) {
688 stats_->slowstart_duration =
689 now - stats_->slowstart_start_time + stats_->slowstart_duration;
690 }
691 stats_->slowstart_start_time = QuicTime::Zero();
692 }
693}
694
QUICHE teama6ef0a62019-03-07 20:34:33 -0500695void BbrSender::MaybeEnterOrExitProbeRtt(QuicTime now,
696 bool is_round_start,
697 bool min_rtt_expired) {
698 if (min_rtt_expired && !exiting_quiescence_ && mode_ != PROBE_RTT) {
wub967ba572019-04-01 09:27:52 -0700699 if (InSlowStart()) {
700 OnExitStartup(now);
701 }
QUICHE teama6ef0a62019-03-07 20:34:33 -0500702 mode_ = PROBE_RTT;
703 pacing_gain_ = 1;
704 // Do not decide on the time to exit PROBE_RTT until the |bytes_in_flight|
705 // is at the target small value.
706 exit_probe_rtt_at_ = QuicTime::Zero();
707 }
708
709 if (mode_ == PROBE_RTT) {
710 sampler_.OnAppLimited();
711
712 if (exit_probe_rtt_at_ == QuicTime::Zero()) {
713 // If the window has reached the appropriate size, schedule exiting
714 // PROBE_RTT. The CWND during PROBE_RTT is kMinimumCongestionWindow, but
715 // we allow an extra packet since QUIC checks CWND before sending a
716 // packet.
717 if (unacked_packets_->bytes_in_flight() <
dschinazi66dea072019-04-09 11:41:06 -0700718 ProbeRttCongestionWindow() + kMaxOutgoingPacketSize) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500719 exit_probe_rtt_at_ = now + kProbeRttTime;
720 probe_rtt_round_passed_ = false;
721 }
722 } else {
723 if (is_round_start) {
724 probe_rtt_round_passed_ = true;
725 }
726 if (now >= exit_probe_rtt_at_ && probe_rtt_round_passed_) {
727 min_rtt_timestamp_ = now;
728 if (!is_at_full_bandwidth_) {
wub967ba572019-04-01 09:27:52 -0700729 EnterStartupMode(now);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500730 } else {
731 EnterProbeBandwidthMode(now);
732 }
733 }
734 }
735 }
736
737 exiting_quiescence_ = false;
738}
739
740void BbrSender::UpdateRecoveryState(QuicPacketNumber last_acked_packet,
741 bool has_losses,
742 bool is_round_start) {
743 // Exit recovery when there are no losses for a round.
744 if (has_losses) {
745 end_recovery_at_ = last_sent_packet_;
746 }
747
748 switch (recovery_state_) {
749 case NOT_IN_RECOVERY:
750 // Enter conservation on the first loss.
751 if (has_losses) {
752 recovery_state_ = CONSERVATION;
753 // This will cause the |recovery_window_| to be set to the correct
754 // value in CalculateRecoveryWindow().
755 recovery_window_ = 0;
756 // Since the conservation phase is meant to be lasting for a whole
757 // round, extend the current round as if it were started right now.
758 current_round_trip_end_ = last_sent_packet_;
759 if (GetQuicReloadableFlag(quic_bbr_app_limited_recovery) &&
760 last_sample_is_app_limited_) {
761 QUIC_RELOADABLE_FLAG_COUNT(quic_bbr_app_limited_recovery);
762 is_app_limited_recovery_ = true;
763 }
764 }
765 break;
766
767 case CONSERVATION:
768 if (is_round_start) {
769 recovery_state_ = GROWTH;
770 }
771 QUIC_FALLTHROUGH_INTENDED;
772
773 case GROWTH:
774 // Exit recovery if appropriate.
775 if (!has_losses && last_acked_packet > end_recovery_at_) {
776 recovery_state_ = NOT_IN_RECOVERY;
777 is_app_limited_recovery_ = false;
778 }
779
780 break;
781 }
782 if (recovery_state_ != NOT_IN_RECOVERY && is_app_limited_recovery_) {
783 sampler_.OnAppLimited();
784 }
785}
786
787// TODO(ianswett): Move this logic into BandwidthSampler.
788QuicByteCount BbrSender::UpdateAckAggregationBytes(
789 QuicTime ack_time,
790 QuicByteCount newly_acked_bytes) {
791 // Compute how many bytes are expected to be delivered, assuming max bandwidth
792 // is correct.
793 QuicByteCount expected_bytes_acked =
794 max_bandwidth_.GetBest() * (ack_time - aggregation_epoch_start_time_);
795 // Reset the current aggregation epoch as soon as the ack arrival rate is less
796 // than or equal to the max bandwidth.
797 if (aggregation_epoch_bytes_ <= expected_bytes_acked) {
798 // Reset to start measuring a new aggregation epoch.
799 aggregation_epoch_bytes_ = newly_acked_bytes;
800 aggregation_epoch_start_time_ = ack_time;
801 return 0;
802 }
803
804 // Compute how many extra bytes were delivered vs max bandwidth.
805 // Include the bytes most recently acknowledged to account for stretch acks.
806 aggregation_epoch_bytes_ += newly_acked_bytes;
807 max_ack_height_.Update(aggregation_epoch_bytes_ - expected_bytes_acked,
808 round_trip_count_);
809 return aggregation_epoch_bytes_ - expected_bytes_acked;
810}
811
812void BbrSender::CalculatePacingRate() {
813 if (BandwidthEstimate().IsZero()) {
814 return;
815 }
816
817 QuicBandwidth target_rate = pacing_gain_ * BandwidthEstimate();
818 if (is_at_full_bandwidth_) {
819 pacing_rate_ = target_rate;
820 return;
821 }
822
823 // Pace at the rate of initial_window / RTT as soon as RTT measurements are
824 // available.
825 if (pacing_rate_.IsZero() && !rtt_stats_->min_rtt().IsZero()) {
826 pacing_rate_ = QuicBandwidth::FromBytesAndTimeDelta(
827 initial_congestion_window_, rtt_stats_->min_rtt());
828 return;
829 }
830 // Slow the pacing rate in STARTUP once loss has ever been detected.
831 const bool has_ever_detected_loss = end_recovery_at_.IsInitialized();
832 if (slower_startup_ && has_ever_detected_loss &&
833 has_non_app_limited_sample_) {
834 pacing_rate_ = kStartupAfterLossGain * BandwidthEstimate();
835 return;
836 }
837
838 // Slow the pacing rate in STARTUP by the bytes_lost / CWND.
839 if (startup_rate_reduction_multiplier_ != 0 && has_ever_detected_loss &&
840 has_non_app_limited_sample_) {
841 pacing_rate_ =
842 (1 - (startup_bytes_lost_ * startup_rate_reduction_multiplier_ * 1.0f /
843 congestion_window_)) *
844 target_rate;
845 // Ensure the pacing rate doesn't drop below the startup growth target times
846 // the bandwidth estimate.
847 pacing_rate_ =
848 std::max(pacing_rate_, kStartupGrowthTarget * BandwidthEstimate());
849 return;
850 }
851
852 // Do not decrease the pacing rate during startup.
853 pacing_rate_ = std::max(pacing_rate_, target_rate);
854}
855
856void BbrSender::CalculateCongestionWindow(QuicByteCount bytes_acked,
857 QuicByteCount excess_acked) {
858 if (mode_ == PROBE_RTT) {
859 return;
860 }
861
862 QuicByteCount target_window =
863 GetTargetCongestionWindow(congestion_window_gain_);
864 if (is_at_full_bandwidth_) {
865 // Add the max recently measured ack aggregation to CWND.
866 target_window += max_ack_height_.GetBest();
867 } else if (enable_ack_aggregation_during_startup_) {
868 // Add the most recent excess acked. Because CWND never decreases in
869 // STARTUP, this will automatically create a very localized max filter.
870 target_window += excess_acked;
871 }
872
873 // Instead of immediately setting the target CWND as the new one, BBR grows
874 // the CWND towards |target_window| by only increasing it |bytes_acked| at a
875 // time.
876 const bool add_bytes_acked =
877 !GetQuicReloadableFlag(quic_bbr_no_bytes_acked_in_startup_recovery) ||
878 !InRecovery();
879 if (is_at_full_bandwidth_) {
880 congestion_window_ =
881 std::min(target_window, congestion_window_ + bytes_acked);
882 } else if (add_bytes_acked &&
883 (congestion_window_ < target_window ||
884 sampler_.total_bytes_acked() < initial_congestion_window_)) {
885 // If the connection is not yet out of startup phase, do not decrease the
886 // window.
887 congestion_window_ = congestion_window_ + bytes_acked;
888 }
889
890 // Enforce the limits on the congestion window.
891 congestion_window_ = std::max(congestion_window_, min_congestion_window_);
892 congestion_window_ = std::min(congestion_window_, max_congestion_window_);
893}
894
895void BbrSender::CalculateRecoveryWindow(QuicByteCount bytes_acked,
896 QuicByteCount bytes_lost) {
897 if (rate_based_startup_ && mode_ == STARTUP) {
898 return;
899 }
900
901 if (recovery_state_ == NOT_IN_RECOVERY) {
902 return;
903 }
904
905 // Set up the initial recovery window.
906 if (recovery_window_ == 0) {
907 recovery_window_ = unacked_packets_->bytes_in_flight() + bytes_acked;
908 recovery_window_ = std::max(min_congestion_window_, recovery_window_);
909 return;
910 }
911
912 // Remove losses from the recovery window, while accounting for a potential
913 // integer underflow.
914 recovery_window_ = recovery_window_ >= bytes_lost
915 ? recovery_window_ - bytes_lost
916 : kMaxSegmentSize;
917
918 // In CONSERVATION mode, just subtracting losses is sufficient. In GROWTH,
919 // release additional |bytes_acked| to achieve a slow-start-like behavior.
920 if (recovery_state_ == GROWTH) {
921 recovery_window_ += bytes_acked;
922 }
923
924 // Sanity checks. Ensure that we always allow to send at least an MSS or
925 // |bytes_acked| in response, whichever is larger.
926 recovery_window_ = std::max(
927 recovery_window_, unacked_packets_->bytes_in_flight() + bytes_acked);
928 if (GetQuicReloadableFlag(quic_bbr_one_mss_conservation)) {
929 recovery_window_ =
930 std::max(recovery_window_,
931 unacked_packets_->bytes_in_flight() + kMaxSegmentSize);
932 }
933 recovery_window_ = std::max(min_congestion_window_, recovery_window_);
934}
935
vasilvvc48c8712019-03-11 13:38:16 -0700936std::string BbrSender::GetDebugState() const {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500937 std::ostringstream stream;
938 stream << ExportDebugState();
939 return stream.str();
940}
941
942void BbrSender::OnApplicationLimited(QuicByteCount bytes_in_flight) {
943 if (bytes_in_flight >= GetCongestionWindow()) {
944 return;
945 }
946 if (flexible_app_limited_ && IsPipeSufficientlyFull()) {
947 return;
948 }
949
950 app_limited_since_last_probe_rtt_ = true;
951 sampler_.OnAppLimited();
952 QUIC_DVLOG(2) << "Becoming application limited. Last sent packet: "
953 << last_sent_packet_ << ", CWND: " << GetCongestionWindow();
954}
955
956BbrSender::DebugState BbrSender::ExportDebugState() const {
957 return DebugState(*this);
958}
959
vasilvvc48c8712019-03-11 13:38:16 -0700960static std::string ModeToString(BbrSender::Mode mode) {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500961 switch (mode) {
962 case BbrSender::STARTUP:
963 return "STARTUP";
964 case BbrSender::DRAIN:
965 return "DRAIN";
966 case BbrSender::PROBE_BW:
967 return "PROBE_BW";
968 case BbrSender::PROBE_RTT:
969 return "PROBE_RTT";
970 }
971 return "???";
972}
973
974std::ostream& operator<<(std::ostream& os, const BbrSender::Mode& mode) {
975 os << ModeToString(mode);
976 return os;
977}
978
979std::ostream& operator<<(std::ostream& os, const BbrSender::DebugState& state) {
980 os << "Mode: " << ModeToString(state.mode) << std::endl;
981 os << "Maximum bandwidth: " << state.max_bandwidth << std::endl;
982 os << "Round trip counter: " << state.round_trip_count << std::endl;
983 os << "Gain cycle index: " << static_cast<int>(state.gain_cycle_index)
984 << std::endl;
985 os << "Congestion window: " << state.congestion_window << " bytes"
986 << std::endl;
987
988 if (state.mode == BbrSender::STARTUP) {
989 os << "(startup) Bandwidth at last round: " << state.bandwidth_at_last_round
990 << std::endl;
991 os << "(startup) Rounds without gain: "
992 << state.rounds_without_bandwidth_gain << std::endl;
993 }
994
995 os << "Minimum RTT: " << state.min_rtt << std::endl;
996 os << "Minimum RTT timestamp: " << state.min_rtt_timestamp.ToDebuggingValue()
997 << std::endl;
998
999 os << "Last sample is app-limited: "
1000 << (state.last_sample_is_app_limited ? "yes" : "no");
1001
1002 return os;
1003}
1004
1005} // namespace quic