1 // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 3 * Binary Increase Congestion control for TCP 4 * Home page: 5 * http://netsrv.csc.ncsu.edu/twiki/bin/v 6 * This is from the implementation of BICTCP i 7 * Lison-Xu, Kahaled Harfoush, and Injong Rhee 8 * "Binary Increase Congestion Control for Fa 9 * Networks" in InfoComm 2004 10 * Available from: 11 * http://netsrv.csc.ncsu.edu/export/bitcp.pd 12 * 13 * Unless BIC is enabled and congestion window 14 * this behaves the same as the original Reno. 15 */ 16 17 #include <linux/mm.h> 18 #include <linux/module.h> 19 #include <net/tcp.h> 20 21 #define BICTCP_BETA_SCALE 1024 /* Sca 22 * max 23 */ 24 #define BICTCP_B 4 /* 25 * In 26 * go 27 */ 28 29 static int fast_convergence = 1; 30 static int max_increment = 16; 31 static int low_window = 14; 32 static int beta = 819; /* = 819/1024 33 static int initial_ssthresh; 34 static int smooth_part = 20; 35 36 module_param(fast_convergence, int, 0644); 37 MODULE_PARM_DESC(fast_convergence, "turn on/of 38 module_param(max_increment, int, 0644); 39 MODULE_PARM_DESC(max_increment, "Limit on incr 40 module_param(low_window, int, 0644); 41 MODULE_PARM_DESC(low_window, "lower bound on c 42 module_param(beta, int, 0644); 43 MODULE_PARM_DESC(beta, "beta for multiplicativ 44 module_param(initial_ssthresh, int, 0644); 45 MODULE_PARM_DESC(initial_ssthresh, "initial va 46 module_param(smooth_part, int, 0644); 47 MODULE_PARM_DESC(smooth_part, "log(B/(B*Smin)) 48 49 /* BIC TCP Parameters */ 50 struct bictcp { 51 u32 cnt; /* increase cw 52 u32 last_max_cwnd; /* last maximu 53 u32 last_cwnd; /* the last sn 54 u32 last_time; /* time when u 55 u32 epoch_start; /* beginning o 56 #define ACK_RATIO_SHIFT 4 57 u32 delayed_ack; /* estimate th 58 }; 59 60 static inline void bictcp_reset(struct bictcp 61 { 62 ca->cnt = 0; 63 ca->last_max_cwnd = 0; 64 ca->last_cwnd = 0; 65 ca->last_time = 0; 66 ca->epoch_start = 0; 67 ca->delayed_ack = 2 << ACK_RATIO_SHIFT 68 } 69 70 static void bictcp_init(struct sock *sk) 71 { 72 struct bictcp *ca = inet_csk_ca(sk); 73 74 bictcp_reset(ca); 75 76 if (initial_ssthresh) 77 tcp_sk(sk)->snd_ssthresh = ini 78 } 79 80 /* 81 * Compute congestion window to use. 82 */ 83 static inline void bictcp_update(struct bictcp 84 { 85 if (ca->last_cwnd == cwnd && 86 (s32)(tcp_jiffies32 - ca->last_tim 87 return; 88 89 ca->last_cwnd = cwnd; 90 ca->last_time = tcp_jiffies32; 91 92 if (ca->epoch_start == 0) /* record th 93 ca->epoch_start = tcp_jiffies3 94 95 /* start off normal */ 96 if (cwnd <= low_window) { 97 ca->cnt = cwnd; 98 return; 99 } 100 101 /* binary increase */ 102 if (cwnd < ca->last_max_cwnd) { 103 __u32 dist = (ca->last_max_c 104 / BICTCP_B; 105 106 if (dist > max_increment) 107 /* linear increase */ 108 ca->cnt = cwnd / max_i 109 else if (dist <= 1U) 110 /* binary search incre 111 ca->cnt = (cwnd * smoo 112 else 113 /* binary search incre 114 ca->cnt = cwnd / dist; 115 } else { 116 /* slow start AMD linear incre 117 if (cwnd < ca->last_max_cwnd + 118 /* slow start */ 119 ca->cnt = (cwnd * smoo 120 else if (cwnd < ca->last_max_c 121 /* slow start */ 122 ca->cnt = (cwnd * (BIC 123 / (cwnd - ca-> 124 else 125 /* linear increase */ 126 ca->cnt = cwnd / max_i 127 } 128 129 /* if in slow start or link utilizatio 130 if (ca->last_max_cwnd == 0) { 131 if (ca->cnt > 20) /* increase 132 ca->cnt = 20; 133 } 134 135 ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) 136 if (ca->cnt == 0) 137 ca->cnt = 1; 138 } 139 140 static void bictcp_cong_avoid(struct sock *sk, 141 { 142 struct tcp_sock *tp = tcp_sk(sk); 143 struct bictcp *ca = inet_csk_ca(sk); 144 145 if (!tcp_is_cwnd_limited(sk)) 146 return; 147 148 if (tcp_in_slow_start(tp)) { 149 acked = tcp_slow_start(tp, ack 150 if (!acked) 151 return; 152 } 153 bictcp_update(ca, tcp_snd_cwnd(tp)); 154 tcp_cong_avoid_ai(tp, ca->cnt, acked); 155 } 156 157 /* 158 * behave like Reno until low_window is r 159 * then increase congestion window slowly 160 */ 161 static u32 bictcp_recalc_ssthresh(struct sock 162 { 163 const struct tcp_sock *tp = tcp_sk(sk) 164 struct bictcp *ca = inet_csk_ca(sk); 165 166 ca->epoch_start = 0; /* end of epoc 167 168 /* Wmax and fast convergence */ 169 if (tcp_snd_cwnd(tp) < ca->last_max_cw 170 ca->last_max_cwnd = (tcp_snd_c 171 / (2 * BICTCP_BETA_SCA 172 else 173 ca->last_max_cwnd = tcp_snd_cw 174 175 if (tcp_snd_cwnd(tp) <= low_window) 176 return max(tcp_snd_cwnd(tp) >> 177 else 178 return max((tcp_snd_cwnd(tp) * 179 } 180 181 static void bictcp_state(struct sock *sk, u8 n 182 { 183 if (new_state == TCP_CA_Loss) 184 bictcp_reset(inet_csk_ca(sk)); 185 } 186 187 /* Track delayed acknowledgment ratio using sl 188 * ratio = (15*ratio + sample) / 16 189 */ 190 static void bictcp_acked(struct sock *sk, cons 191 { 192 const struct inet_connection_sock *ics 193 194 if (icsk->icsk_ca_state == TCP_CA_Open 195 struct bictcp *ca = inet_csk_c 196 197 ca->delayed_ack += sample->pkt 198 (ca->delayed_ack >> AC 199 } 200 } 201 202 static struct tcp_congestion_ops bictcp __read 203 .init = bictcp_init, 204 .ssthresh = bictcp_recalc_ssthre 205 .cong_avoid = bictcp_cong_avoid, 206 .set_state = bictcp_state, 207 .undo_cwnd = tcp_reno_undo_cwnd, 208 .pkts_acked = bictcp_acked, 209 .owner = THIS_MODULE, 210 .name = "bic", 211 }; 212 213 static int __init bictcp_register(void) 214 { 215 BUILD_BUG_ON(sizeof(struct bictcp) > I 216 return tcp_register_congestion_control 217 } 218 219 static void __exit bictcp_unregister(void) 220 { 221 tcp_unregister_congestion_control(&bic 222 } 223 224 module_init(bictcp_register); 225 module_exit(bictcp_unregister); 226 227 MODULE_AUTHOR("Stephen Hemminger"); 228 MODULE_LICENSE("GPL"); 229 MODULE_DESCRIPTION("BIC TCP"); 230
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.