blob: 7e37efb10523e659bfcc517abb2ceb996f47350c [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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 Corasa3c32652019-07-03 17:47:22 -070018static void
Dave Barach68b0fb02017-02-28 15:15:56 -050019newreno_congestion (tcp_connection_t * tc)
20{
Dave Barach68b0fb02017-02-28 15:15:56 -050021 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
22}
23
Florin Corasa3c32652019-07-03 17:47:22 -070024static void
25newreno_loss (tcp_connection_t * tc)
26{
27 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
28 tc->cwnd = tcp_loss_wnd (tc);
29}
30
31static void
Dave Barach68b0fb02017-02-28 15:15:56 -050032newreno_recovered (tcp_connection_t * tc)
33{
34 tc->cwnd = tc->ssthresh;
35}
36
Florin Corasa3c32652019-07-03 17:47:22 -070037static void
Florin Coras52814732019-06-12 15:38:19 -070038newreno_rcv_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Dave Barach68b0fb02017-02-28 15:15:56 -050039{
40 if (tcp_in_slowstart (tc))
41 {
42 tc->cwnd += clib_min (tc->snd_mss, tc->bytes_acked);
43 }
44 else
45 {
Florin Coras62166002018-04-18 16:40:55 -070046 /* tc->cwnd += clib_max ((tc->snd_mss * tc->snd_mss) / tc->cwnd, 1); */
Florin Coras2e31cc32018-09-25 14:00:34 -070047 tcp_cwnd_accumulate (tc, tc->cwnd, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -050048 }
49}
50
51void
Florin Coras52814732019-06-12 15:38:19 -070052newreno_rcv_cong_ack (tcp_connection_t * tc, tcp_cc_ack_t ack_type,
53 tcp_rate_sample_t * rs)
Dave Barach68b0fb02017-02-28 15:15:56 -050054{
55 if (ack_type == TCP_CC_DUPACK)
56 {
Florin Corasf03a59a2017-06-09 21:07:32 -070057 if (!tcp_opts_sack_permitted (tc))
58 tc->cwnd += tc->snd_mss;
Dave Barach68b0fb02017-02-28 15:15:56 -050059 }
60 else if (ack_type == TCP_CC_PARTIALACK)
61 {
Florin Coras93992a92017-05-24 18:03:56 -070062 /* RFC 6582 Sec. 3.2 */
63 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
64 {
65 /* Deflate the congestion window by the amount of new data
66 * acknowledged by the Cumulative Acknowledgment field.
67 * If the partial ACK acknowledges at least one SMSS of new data,
68 * then add back SMSS bytes to the congestion window. This
69 * artificially inflates the congestion window in order to reflect
70 * the additional segment that has left the network. This "partial
71 * window deflation" attempts to ensure that, when fast recovery
72 * eventually ends, approximately ssthresh amount of data will be
73 * outstanding in the network.*/
Dave Barach2c25a622017-06-26 11:35:07 -040074 tc->cwnd = (tc->cwnd > tc->bytes_acked + tc->snd_mss) ?
75 tc->cwnd - tc->bytes_acked : tc->snd_mss;
Florin Coras93992a92017-05-24 18:03:56 -070076 if (tc->bytes_acked > tc->snd_mss)
77 tc->cwnd += tc->snd_mss;
78 }
Dave Barach68b0fb02017-02-28 15:15:56 -050079 }
80}
81
Florin Corasa3c32652019-07-03 17:47:22 -070082static void
Dave Barach68b0fb02017-02-28 15:15:56 -050083newreno_conn_init (tcp_connection_t * tc)
84{
85 tc->ssthresh = tc->snd_wnd;
86 tc->cwnd = tcp_initial_cwnd (tc);
87}
88
89const static tcp_cc_algorithm_t tcp_newreno = {
Florin Corasaa01abb2018-11-12 09:13:10 -080090 .name = "newreno",
Dave Barach68b0fb02017-02-28 15:15:56 -050091 .congestion = newreno_congestion,
Florin Corasa3c32652019-07-03 17:47:22 -070092 .loss = newreno_loss,
Dave Barach68b0fb02017-02-28 15:15:56 -050093 .recovered = newreno_recovered,
94 .rcv_ack = newreno_rcv_ack,
95 .rcv_cong_ack = newreno_rcv_cong_ack,
96 .init = newreno_conn_init
97};
98
99clib_error_t *
100newreno_init (vlib_main_t * vm)
101{
102 clib_error_t *error = 0;
103
104 tcp_cc_algo_register (TCP_CC_NEWRENO, &tcp_newreno);
105
106 return error;
107}
108
109VLIB_INIT_FUNCTION (newreno_init);
110
111/*
112 * fd.io coding-style-patch-verification: ON
113 *
114 * Local Variables:
115 * eval: (c-set-style "gnu")
116 * End:
117 */