blob: fc36143774130c8949ecb58dc066b2c5f6271081 [file] [log] [blame]
Stephen Hemminger83803032005-06-23 12:23:25 -07001/*
2 * Binary Increase Congestion control for TCP
Sangtae Ha0bc8c7b2008-02-28 22:14:32 -08003 * Home page:
4 * http://netsrv.csc.ncsu.edu/twiki/bin/view/Main/BIC
Stephen Hemminger83803032005-06-23 12:23:25 -07005 * This is from the implementation of BICTCP in
6 * Lison-Xu, Kahaled Harfoush, and Injong Rhee.
7 * "Binary Increase Congestion Control for Fast, Long Distance
8 * Networks" in InfoComm 2004
9 * Available from:
Sangtae Ha0bc8c7b2008-02-28 22:14:32 -080010 * http://netsrv.csc.ncsu.edu/export/bitcp.pdf
Stephen Hemminger83803032005-06-23 12:23:25 -070011 *
12 * Unless BIC is enabled and congestion window is large
13 * this behaves the same as the original Reno.
14 */
15
Stephen Hemminger83803032005-06-23 12:23:25 -070016#include <linux/mm.h>
17#include <linux/module.h>
18#include <net/tcp.h>
19
Stephen Hemminger83803032005-06-23 12:23:25 -070020#define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
21 * max_cwnd = snd_cwnd * beta
22 */
23#define BICTCP_B 4 /*
24 * In binary search,
25 * go to point (max+min)/N
26 */
27
28static int fast_convergence = 1;
Stephen Hemminger450b5b12005-11-01 15:26:45 -080029static int max_increment = 16;
Stephen Hemminger83803032005-06-23 12:23:25 -070030static int low_window = 14;
31static int beta = 819; /* = 819/1024 (BICTCP_BETA_SCALE) */
David S. Miller66e1e3b2007-06-13 01:03:53 -070032static int initial_ssthresh;
Stephen Hemminger83803032005-06-23 12:23:25 -070033static int smooth_part = 20;
34
35module_param(fast_convergence, int, 0644);
36MODULE_PARM_DESC(fast_convergence, "turn on/off fast convergence");
37module_param(max_increment, int, 0644);
38MODULE_PARM_DESC(max_increment, "Limit on increment allowed during binary search");
39module_param(low_window, int, 0644);
40MODULE_PARM_DESC(low_window, "lower bound on congestion window (for TCP friendliness)");
41module_param(beta, int, 0644);
42MODULE_PARM_DESC(beta, "beta for multiplicative increase");
Stephen Hemminger83803032005-06-23 12:23:25 -070043module_param(initial_ssthresh, int, 0644);
44MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
45module_param(smooth_part, int, 0644);
46MODULE_PARM_DESC(smooth_part, "log(B/(B*Smin))/log(B/(B-1))+B, # of RTT from Wmax-B to Wmax");
47
Stephen Hemminger83803032005-06-23 12:23:25 -070048/* BIC TCP Parameters */
49struct bictcp {
50 u32 cnt; /* increase cwnd by 1 after ACKs */
stephen hemminger688d1942014-08-29 23:32:05 -070051 u32 last_max_cwnd; /* last maximum snd_cwnd */
Stephen Hemminger83803032005-06-23 12:23:25 -070052 u32 last_cwnd; /* the last snd_cwnd */
53 u32 last_time; /* time when updated last_cwnd */
Stephen Hemminger83803032005-06-23 12:23:25 -070054 u32 epoch_start; /* beginning of an epoch */
55#define ACK_RATIO_SHIFT 4
56 u32 delayed_ack; /* estimate the ratio of Packets/ACKs << 4 */
57};
58
59static inline void bictcp_reset(struct bictcp *ca)
60{
61 ca->cnt = 0;
62 ca->last_max_cwnd = 0;
Stephen Hemminger83803032005-06-23 12:23:25 -070063 ca->last_cwnd = 0;
64 ca->last_time = 0;
Stephen Hemminger83803032005-06-23 12:23:25 -070065 ca->epoch_start = 0;
66 ca->delayed_ack = 2 << ACK_RATIO_SHIFT;
67}
68
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030069static void bictcp_init(struct sock *sk)
Stephen Hemminger83803032005-06-23 12:23:25 -070070{
Neal Cardwellfc16dcd2012-01-18 17:47:58 +000071 struct bictcp *ca = inet_csk_ca(sk);
72
73 bictcp_reset(ca);
Neal Cardwellfc16dcd2012-01-18 17:47:58 +000074
Stephen Hemminger83803032005-06-23 12:23:25 -070075 if (initial_ssthresh)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030076 tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
Stephen Hemminger83803032005-06-23 12:23:25 -070077}
78
79/*
80 * Compute congestion window to use.
81 */
82static inline void bictcp_update(struct bictcp *ca, u32 cwnd)
83{
84 if (ca->last_cwnd == cwnd &&
Eric Dumazetac35f562017-05-16 14:00:06 -070085 (s32)(tcp_jiffies32 - ca->last_time) <= HZ / 32)
Stephen Hemminger83803032005-06-23 12:23:25 -070086 return;
87
88 ca->last_cwnd = cwnd;
Eric Dumazetac35f562017-05-16 14:00:06 -070089 ca->last_time = tcp_jiffies32;
Stephen Hemminger83803032005-06-23 12:23:25 -070090
91 if (ca->epoch_start == 0) /* record the beginning of an epoch */
Eric Dumazetac35f562017-05-16 14:00:06 -070092 ca->epoch_start = tcp_jiffies32;
Stephen Hemminger83803032005-06-23 12:23:25 -070093
94 /* start off normal */
95 if (cwnd <= low_window) {
96 ca->cnt = cwnd;
97 return;
98 }
99
100 /* binary increase */
101 if (cwnd < ca->last_max_cwnd) {
stephen hemminger688d1942014-08-29 23:32:05 -0700102 __u32 dist = (ca->last_max_cwnd - cwnd)
Stephen Hemminger83803032005-06-23 12:23:25 -0700103 / BICTCP_B;
104
105 if (dist > max_increment)
106 /* linear increase */
107 ca->cnt = cwnd / max_increment;
108 else if (dist <= 1U)
109 /* binary search increase */
110 ca->cnt = (cwnd * smooth_part) / BICTCP_B;
111 else
112 /* binary search increase */
113 ca->cnt = cwnd / dist;
114 } else {
115 /* slow start AMD linear increase */
116 if (cwnd < ca->last_max_cwnd + BICTCP_B)
117 /* slow start */
118 ca->cnt = (cwnd * smooth_part) / BICTCP_B;
119 else if (cwnd < ca->last_max_cwnd + max_increment*(BICTCP_B-1))
120 /* slow start */
121 ca->cnt = (cwnd * (BICTCP_B-1))
Stephen Hemminger42a39452005-10-05 12:09:31 -0700122 / (cwnd - ca->last_max_cwnd);
Stephen Hemminger83803032005-06-23 12:23:25 -0700123 else
124 /* linear increase */
125 ca->cnt = cwnd / max_increment;
126 }
127
128 /* if in slow start or link utilization is very low */
Neal Cardwellfc16dcd2012-01-18 17:47:58 +0000129 if (ca->last_max_cwnd == 0) {
Stephen Hemminger83803032005-06-23 12:23:25 -0700130 if (ca->cnt > 20) /* increase cwnd 5% per RTT */
131 ca->cnt = 20;
132 }
133
134 ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) / ca->delayed_ack;
135 if (ca->cnt == 0) /* cannot be zero */
136 ca->cnt = 1;
137}
138
Eric Dumazet24901552014-05-02 21:18:05 -0700139static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked)
Stephen Hemminger83803032005-06-23 12:23:25 -0700140{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300141 struct tcp_sock *tp = tcp_sk(sk);
142 struct bictcp *ca = inet_csk_ca(sk);
Stephen Hemminger83803032005-06-23 12:23:25 -0700143
Eric Dumazet24901552014-05-02 21:18:05 -0700144 if (!tcp_is_cwnd_limited(sk))
Stephen Hemminger83803032005-06-23 12:23:25 -0700145 return;
146
Yuchung Cheng071d5082015-07-09 13:16:29 -0700147 if (tcp_in_slow_start(tp))
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700148 tcp_slow_start(tp, acked);
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800149 else {
Stephen Hemminger83803032005-06-23 12:23:25 -0700150 bictcp_update(ca, tp->snd_cwnd);
Neal Cardwelle73ebb082015-01-28 20:01:35 -0500151 tcp_cong_avoid_ai(tp, ca->cnt, 1);
Stephen Hemminger83803032005-06-23 12:23:25 -0700152 }
Stephen Hemminger83803032005-06-23 12:23:25 -0700153}
154
155/*
156 * behave like Reno until low_window is reached,
157 * then increase congestion window slowly
158 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300159static u32 bictcp_recalc_ssthresh(struct sock *sk)
Stephen Hemminger83803032005-06-23 12:23:25 -0700160{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300161 const struct tcp_sock *tp = tcp_sk(sk);
162 struct bictcp *ca = inet_csk_ca(sk);
Stephen Hemminger83803032005-06-23 12:23:25 -0700163
164 ca->epoch_start = 0; /* end of epoch */
165
Stephen Hemminger83803032005-06-23 12:23:25 -0700166 /* Wmax and fast convergence */
167 if (tp->snd_cwnd < ca->last_max_cwnd && fast_convergence)
168 ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
169 / (2 * BICTCP_BETA_SCALE);
170 else
171 ca->last_max_cwnd = tp->snd_cwnd;
172
Stephen Hemminger83803032005-06-23 12:23:25 -0700173 if (tp->snd_cwnd <= low_window)
174 return max(tp->snd_cwnd >> 1U, 2U);
175 else
176 return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U);
177}
178
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300179static void bictcp_state(struct sock *sk, u8 new_state)
Stephen Hemminger83803032005-06-23 12:23:25 -0700180{
181 if (new_state == TCP_CA_Loss)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300182 bictcp_reset(inet_csk_ca(sk));
Stephen Hemminger83803032005-06-23 12:23:25 -0700183}
184
Stephen Hemminger05d05452005-12-13 23:13:13 -0800185/* Track delayed acknowledgment ratio using sliding window
Stephen Hemminger83803032005-06-23 12:23:25 -0700186 * ratio = (15*ratio + sample) / 16
187 */
Lawrence Brakmo756ee172016-05-11 10:02:13 -0700188static void bictcp_acked(struct sock *sk, const struct ack_sample *sample)
Stephen Hemminger83803032005-06-23 12:23:25 -0700189{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300190 const struct inet_connection_sock *icsk = inet_csk(sk);
191
Ilpo Järvinen35e86942007-05-31 10:16:47 +0300192 if (icsk->icsk_ca_state == TCP_CA_Open) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300193 struct bictcp *ca = inet_csk_ca(sk);
stephen hemminger688d1942014-08-29 23:32:05 -0700194
Lawrence Brakmo756ee172016-05-11 10:02:13 -0700195 ca->delayed_ack += sample->pkts_acked -
196 (ca->delayed_ack >> ACK_RATIO_SHIFT);
Stephen Hemminger83803032005-06-23 12:23:25 -0700197 }
198}
199
Stephen Hemmingera252beb2011-03-10 00:40:17 -0800200static struct tcp_congestion_ops bictcp __read_mostly = {
Stephen Hemminger83803032005-06-23 12:23:25 -0700201 .init = bictcp_init,
202 .ssthresh = bictcp_recalc_ssthresh,
203 .cong_avoid = bictcp_cong_avoid,
204 .set_state = bictcp_state,
Yuchung Chengf1722a12017-08-03 20:38:52 -0700205 .undo_cwnd = tcp_reno_undo_cwnd,
Stephen Hemminger83803032005-06-23 12:23:25 -0700206 .pkts_acked = bictcp_acked,
207 .owner = THIS_MODULE,
208 .name = "bic",
209};
210
211static int __init bictcp_register(void)
212{
Alexey Dobriyan65e3d722006-08-25 00:38:03 -0700213 BUILD_BUG_ON(sizeof(struct bictcp) > ICSK_CA_PRIV_SIZE);
Stephen Hemminger83803032005-06-23 12:23:25 -0700214 return tcp_register_congestion_control(&bictcp);
215}
216
217static void __exit bictcp_unregister(void)
218{
219 tcp_unregister_congestion_control(&bictcp);
220}
221
222module_init(bictcp_register);
223module_exit(bictcp_unregister);
224
225MODULE_AUTHOR("Stephen Hemminger");
226MODULE_LICENSE("GPL");
227MODULE_DESCRIPTION("BIC TCP");