blob: 69dd2247132453a225cb9ed4e653117fef4f3a7d [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
Sergey Ivanushkinc30318d2019-10-17 10:16:27 +010018typedef struct nwreno_cfg_
19{
20 u32 ssthresh;
21} newreno_cfg_t;
22
23static newreno_cfg_t newreno_cfg = {
24 .ssthresh = 0x7FFFFFFFU,
25};
26
Florin Corasa3c32652019-07-03 17:47:22 -070027static void
Dave Barach68b0fb02017-02-28 15:15:56 -050028newreno_congestion (tcp_connection_t * tc)
29{
Dave Barach68b0fb02017-02-28 15:15:56 -050030 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
Florin Coras8b4114e2019-09-03 12:37:11 -070031 tc->cwnd = tc->ssthresh;
Dave Barach68b0fb02017-02-28 15:15:56 -050032}
33
Florin Corasa3c32652019-07-03 17:47:22 -070034static void
35newreno_loss (tcp_connection_t * tc)
36{
Florin Corasa3c32652019-07-03 17:47:22 -070037 tc->cwnd = tcp_loss_wnd (tc);
38}
39
40static void
Dave Barach68b0fb02017-02-28 15:15:56 -050041newreno_recovered (tcp_connection_t * tc)
42{
43 tc->cwnd = tc->ssthresh;
44}
45
Florin Corasa3c32652019-07-03 17:47:22 -070046static void
Florin Coras52814732019-06-12 15:38:19 -070047newreno_rcv_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Dave Barach68b0fb02017-02-28 15:15:56 -050048{
49 if (tcp_in_slowstart (tc))
50 {
51 tc->cwnd += clib_min (tc->snd_mss, tc->bytes_acked);
52 }
53 else
54 {
Florin Coras62166002018-04-18 16:40:55 -070055 /* tc->cwnd += clib_max ((tc->snd_mss * tc->snd_mss) / tc->cwnd, 1); */
Florin Coras2e31cc32018-09-25 14:00:34 -070056 tcp_cwnd_accumulate (tc, tc->cwnd, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -050057 }
58}
59
60void
Florin Coras52814732019-06-12 15:38:19 -070061newreno_rcv_cong_ack (tcp_connection_t * tc, tcp_cc_ack_t ack_type,
62 tcp_rate_sample_t * rs)
Dave Barach68b0fb02017-02-28 15:15:56 -050063{
64 if (ack_type == TCP_CC_DUPACK)
65 {
Florin Corasf03a59a2017-06-09 21:07:32 -070066 if (!tcp_opts_sack_permitted (tc))
67 tc->cwnd += tc->snd_mss;
Dave Barach68b0fb02017-02-28 15:15:56 -050068 }
69 else if (ack_type == TCP_CC_PARTIALACK)
70 {
Florin Coras93992a92017-05-24 18:03:56 -070071 /* RFC 6582 Sec. 3.2 */
72 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
73 {
74 /* Deflate the congestion window by the amount of new data
75 * acknowledged by the Cumulative Acknowledgment field.
76 * If the partial ACK acknowledges at least one SMSS of new data,
77 * then add back SMSS bytes to the congestion window. This
78 * artificially inflates the congestion window in order to reflect
79 * the additional segment that has left the network. This "partial
80 * window deflation" attempts to ensure that, when fast recovery
81 * eventually ends, approximately ssthresh amount of data will be
82 * outstanding in the network.*/
Dave Barach2c25a622017-06-26 11:35:07 -040083 tc->cwnd = (tc->cwnd > tc->bytes_acked + tc->snd_mss) ?
84 tc->cwnd - tc->bytes_acked : tc->snd_mss;
Florin Coras93992a92017-05-24 18:03:56 -070085 if (tc->bytes_acked > tc->snd_mss)
86 tc->cwnd += tc->snd_mss;
87 }
Dave Barach68b0fb02017-02-28 15:15:56 -050088 }
89}
90
Florin Corasa3c32652019-07-03 17:47:22 -070091static void
Dave Barach68b0fb02017-02-28 15:15:56 -050092newreno_conn_init (tcp_connection_t * tc)
93{
Sergey Ivanushkinc30318d2019-10-17 10:16:27 +010094 tc->ssthresh = newreno_cfg.ssthresh;
Dave Barach68b0fb02017-02-28 15:15:56 -050095 tc->cwnd = tcp_initial_cwnd (tc);
96}
97
Sergey Ivanushkinc30318d2019-10-17 10:16:27 +010098static uword
99newreno_unformat_config (unformat_input_t * input)
100{
101 u32 ssthresh = 0x7FFFFFFFU;
102
103 if (!input)
104 return 0;
105
106 unformat_skip_white_space (input);
107
108 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
109 {
110 if (unformat (input, "ssthresh %u", &ssthresh))
111 newreno_cfg.ssthresh = ssthresh;
112 else
113 return 0;
114 }
115 return 1;
116}
117
Dave Barach68b0fb02017-02-28 15:15:56 -0500118const static tcp_cc_algorithm_t tcp_newreno = {
Florin Corasaa01abb2018-11-12 09:13:10 -0800119 .name = "newreno",
Sergey Ivanushkinc30318d2019-10-17 10:16:27 +0100120 .unformat_cfg = newreno_unformat_config,
Dave Barach68b0fb02017-02-28 15:15:56 -0500121 .congestion = newreno_congestion,
Florin Corasa3c32652019-07-03 17:47:22 -0700122 .loss = newreno_loss,
Dave Barach68b0fb02017-02-28 15:15:56 -0500123 .recovered = newreno_recovered,
124 .rcv_ack = newreno_rcv_ack,
125 .rcv_cong_ack = newreno_rcv_cong_ack,
126 .init = newreno_conn_init
127};
128
129clib_error_t *
130newreno_init (vlib_main_t * vm)
131{
132 clib_error_t *error = 0;
133
134 tcp_cc_algo_register (TCP_CC_NEWRENO, &tcp_newreno);
135
136 return error;
137}
138
139VLIB_INIT_FUNCTION (newreno_init);
140
141/*
142 * fd.io coding-style-patch-verification: ON
143 *
144 * Local Variables:
145 * eval: (c-set-style "gnu")
146 * End:
147 */