Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #include <vnet/tcp/tcp.h> |
| 17 | |
Florin Coras | a3c3265 | 2019-07-03 17:47:22 -0700 | [diff] [blame] | 18 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 19 | newreno_congestion (tcp_connection_t * tc) |
| 20 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 21 | tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss); |
Florin Coras | 8b4114e | 2019-09-03 12:37:11 -0700 | [diff] [blame] | 22 | tc->cwnd = tc->ssthresh; |
| 23 | /* Post retransmit update cwnd to ssthresh and account for the |
| 24 | * three segments that have left the network and should've been |
| 25 | * buffered at the receiver XXX */ |
| 26 | if (!tcp_opts_sack_permitted (&tc->rcv_opts)) |
| 27 | tc->cwnd += 3 * tc->snd_mss; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 28 | } |
| 29 | |
Florin Coras | a3c3265 | 2019-07-03 17:47:22 -0700 | [diff] [blame] | 30 | static void |
| 31 | newreno_loss (tcp_connection_t * tc) |
| 32 | { |
| 33 | tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss); |
| 34 | tc->cwnd = tcp_loss_wnd (tc); |
| 35 | } |
| 36 | |
| 37 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 38 | newreno_recovered (tcp_connection_t * tc) |
| 39 | { |
| 40 | tc->cwnd = tc->ssthresh; |
| 41 | } |
| 42 | |
Florin Coras | a3c3265 | 2019-07-03 17:47:22 -0700 | [diff] [blame] | 43 | static void |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 44 | newreno_rcv_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 45 | { |
| 46 | if (tcp_in_slowstart (tc)) |
| 47 | { |
| 48 | tc->cwnd += clib_min (tc->snd_mss, tc->bytes_acked); |
| 49 | } |
| 50 | else |
| 51 | { |
Florin Coras | 6216600 | 2018-04-18 16:40:55 -0700 | [diff] [blame] | 52 | /* tc->cwnd += clib_max ((tc->snd_mss * tc->snd_mss) / tc->cwnd, 1); */ |
Florin Coras | 2e31cc3 | 2018-09-25 14:00:34 -0700 | [diff] [blame] | 53 | tcp_cwnd_accumulate (tc, tc->cwnd, tc->bytes_acked); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
| 57 | void |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 58 | newreno_rcv_cong_ack (tcp_connection_t * tc, tcp_cc_ack_t ack_type, |
| 59 | tcp_rate_sample_t * rs) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 60 | { |
| 61 | if (ack_type == TCP_CC_DUPACK) |
| 62 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 63 | if (!tcp_opts_sack_permitted (tc)) |
| 64 | tc->cwnd += tc->snd_mss; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 65 | } |
| 66 | else if (ack_type == TCP_CC_PARTIALACK) |
| 67 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 68 | /* RFC 6582 Sec. 3.2 */ |
| 69 | if (!tcp_opts_sack_permitted (&tc->rcv_opts)) |
| 70 | { |
| 71 | /* Deflate the congestion window by the amount of new data |
| 72 | * acknowledged by the Cumulative Acknowledgment field. |
| 73 | * If the partial ACK acknowledges at least one SMSS of new data, |
| 74 | * then add back SMSS bytes to the congestion window. This |
| 75 | * artificially inflates the congestion window in order to reflect |
| 76 | * the additional segment that has left the network. This "partial |
| 77 | * window deflation" attempts to ensure that, when fast recovery |
| 78 | * eventually ends, approximately ssthresh amount of data will be |
| 79 | * outstanding in the network.*/ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 80 | tc->cwnd = (tc->cwnd > tc->bytes_acked + tc->snd_mss) ? |
| 81 | tc->cwnd - tc->bytes_acked : tc->snd_mss; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 82 | if (tc->bytes_acked > tc->snd_mss) |
| 83 | tc->cwnd += tc->snd_mss; |
| 84 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | |
Florin Coras | a3c3265 | 2019-07-03 17:47:22 -0700 | [diff] [blame] | 88 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 89 | newreno_conn_init (tcp_connection_t * tc) |
| 90 | { |
| 91 | tc->ssthresh = tc->snd_wnd; |
| 92 | tc->cwnd = tcp_initial_cwnd (tc); |
| 93 | } |
| 94 | |
| 95 | const static tcp_cc_algorithm_t tcp_newreno = { |
Florin Coras | aa01abb | 2018-11-12 09:13:10 -0800 | [diff] [blame] | 96 | .name = "newreno", |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 97 | .congestion = newreno_congestion, |
Florin Coras | a3c3265 | 2019-07-03 17:47:22 -0700 | [diff] [blame] | 98 | .loss = newreno_loss, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 99 | .recovered = newreno_recovered, |
| 100 | .rcv_ack = newreno_rcv_ack, |
| 101 | .rcv_cong_ack = newreno_rcv_cong_ack, |
| 102 | .init = newreno_conn_init |
| 103 | }; |
| 104 | |
| 105 | clib_error_t * |
| 106 | newreno_init (vlib_main_t * vm) |
| 107 | { |
| 108 | clib_error_t *error = 0; |
| 109 | |
| 110 | tcp_cc_algo_register (TCP_CC_NEWRENO, &tcp_newreno); |
| 111 | |
| 112 | return error; |
| 113 | } |
| 114 | |
| 115 | VLIB_INIT_FUNCTION (newreno_init); |
| 116 | |
| 117 | /* |
| 118 | * fd.io coding-style-patch-verification: ON |
| 119 | * |
| 120 | * Local Variables: |
| 121 | * eval: (c-set-style "gnu") |
| 122 | * End: |
| 123 | */ |