blob: 6d3e883b48f66c63296679cf8f81a5fd8d481c35 [file] [log] [blame]
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001/*
2 * Plugable TCP congestion control support and newReno
3 * congestion control.
4 * Based on ideas from I/O scheduler suport and Web100.
5 *
6 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
7 */
8
9#include <linux/config.h>
10#include <linux/module.h>
11#include <linux/mm.h>
12#include <linux/types.h>
13#include <linux/list.h>
14#include <net/tcp.h>
15
16static DEFINE_SPINLOCK(tcp_cong_list_lock);
17static LIST_HEAD(tcp_cong_list);
18
19/* Simple linear search, don't expect many entries! */
20static struct tcp_congestion_ops *tcp_ca_find(const char *name)
21{
22 struct tcp_congestion_ops *e;
23
Stephen Hemminger5f8ef482005-06-23 20:37:36 -070024 list_for_each_entry_rcu(e, &tcp_cong_list, list) {
Stephen Hemminger317a76f2005-06-23 12:19:55 -070025 if (strcmp(e->name, name) == 0)
26 return e;
27 }
28
29 return NULL;
30}
31
32/*
33 * Attach new congestion control algorthim to the list
34 * of available options.
35 */
36int tcp_register_congestion_control(struct tcp_congestion_ops *ca)
37{
38 int ret = 0;
39
40 /* all algorithms must implement ssthresh and cong_avoid ops */
41 if (!ca->ssthresh || !ca->cong_avoid || !ca->min_cwnd) {
42 printk(KERN_ERR "TCP %s does not implement required ops\n",
43 ca->name);
44 return -EINVAL;
45 }
46
47 spin_lock(&tcp_cong_list_lock);
48 if (tcp_ca_find(ca->name)) {
49 printk(KERN_NOTICE "TCP %s already registered\n", ca->name);
50 ret = -EEXIST;
51 } else {
52 list_add_rcu(&ca->list, &tcp_cong_list);
53 printk(KERN_INFO "TCP %s registered\n", ca->name);
54 }
55 spin_unlock(&tcp_cong_list_lock);
56
57 return ret;
58}
59EXPORT_SYMBOL_GPL(tcp_register_congestion_control);
60
61/*
62 * Remove congestion control algorithm, called from
63 * the module's remove function. Module ref counts are used
64 * to ensure that this can't be done till all sockets using
65 * that method are closed.
66 */
67void tcp_unregister_congestion_control(struct tcp_congestion_ops *ca)
68{
69 spin_lock(&tcp_cong_list_lock);
70 list_del_rcu(&ca->list);
71 spin_unlock(&tcp_cong_list_lock);
72}
73EXPORT_SYMBOL_GPL(tcp_unregister_congestion_control);
74
75/* Assign choice of congestion control. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030076void tcp_init_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -070077{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030078 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070079 struct tcp_congestion_ops *ca;
80
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030081 if (icsk->icsk_ca_ops != &tcp_init_congestion_ops)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -070082 return;
83
Stephen Hemminger317a76f2005-06-23 12:19:55 -070084 rcu_read_lock();
85 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
86 if (try_module_get(ca->owner)) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030087 icsk->icsk_ca_ops = ca;
Stephen Hemminger317a76f2005-06-23 12:19:55 -070088 break;
89 }
90
91 }
92 rcu_read_unlock();
93
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030094 if (icsk->icsk_ca_ops->init)
95 icsk->icsk_ca_ops->init(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070096}
97
98/* Manage refcounts on socket close. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030099void tcp_cleanup_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700100{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300101 struct inet_connection_sock *icsk = inet_csk(sk);
102
103 if (icsk->icsk_ca_ops->release)
104 icsk->icsk_ca_ops->release(sk);
105 module_put(icsk->icsk_ca_ops->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700106}
107
108/* Used by sysctl to change default congestion control */
109int tcp_set_default_congestion_control(const char *name)
110{
111 struct tcp_congestion_ops *ca;
112 int ret = -ENOENT;
113
114 spin_lock(&tcp_cong_list_lock);
115 ca = tcp_ca_find(name);
116#ifdef CONFIG_KMOD
117 if (!ca) {
118 spin_unlock(&tcp_cong_list_lock);
119
120 request_module("tcp_%s", name);
121 spin_lock(&tcp_cong_list_lock);
122 ca = tcp_ca_find(name);
123 }
124#endif
125
126 if (ca) {
127 list_move(&ca->list, &tcp_cong_list);
128 ret = 0;
129 }
130 spin_unlock(&tcp_cong_list_lock);
131
132 return ret;
133}
134
135/* Get current default congestion control */
136void tcp_get_default_congestion_control(char *name)
137{
138 struct tcp_congestion_ops *ca;
139 /* We will always have reno... */
140 BUG_ON(list_empty(&tcp_cong_list));
141
142 rcu_read_lock();
143 ca = list_entry(tcp_cong_list.next, struct tcp_congestion_ops, list);
144 strncpy(name, ca->name, TCP_CA_NAME_MAX);
145 rcu_read_unlock();
146}
147
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700148/* Change congestion control for socket */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300149int tcp_set_congestion_control(struct sock *sk, const char *name)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700150{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300151 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700152 struct tcp_congestion_ops *ca;
153 int err = 0;
154
155 rcu_read_lock();
156 ca = tcp_ca_find(name);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300157 if (ca == icsk->icsk_ca_ops)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700158 goto out;
159
160 if (!ca)
161 err = -ENOENT;
162
163 else if (!try_module_get(ca->owner))
164 err = -EBUSY;
165
166 else {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300167 tcp_cleanup_congestion_control(sk);
168 icsk->icsk_ca_ops = ca;
169 if (icsk->icsk_ca_ops->init)
170 icsk->icsk_ca_ops->init(sk);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700171 }
172 out:
173 rcu_read_unlock();
174 return err;
175}
176
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700177/*
178 * TCP Reno congestion control
179 * This is special case used for fallback as well.
180 */
181/* This is Jacobson's slow start and congestion avoidance.
182 * SIGCOMM '88, p. 328.
183 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300184void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700185 int flag)
186{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300187 struct tcp_sock *tp = tcp_sk(sk);
188
Stephen Hemmingerf4805ed2005-11-10 16:53:30 -0800189 if (!tcp_is_cwnd_limited(sk, in_flight))
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700190 return;
191
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800192 /* In "safe" area, increase. */
193 if (tp->snd_cwnd <= tp->snd_ssthresh)
194 tcp_slow_start(tp);
195 else {
196 /* In dangerous area, increase slowly.
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700197 * In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd
198 */
199 if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
200 if (tp->snd_cwnd < tp->snd_cwnd_clamp)
201 tp->snd_cwnd++;
202 tp->snd_cwnd_cnt = 0;
203 } else
204 tp->snd_cwnd_cnt++;
205 }
206}
207EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid);
208
209/* Slow start threshold is half the congestion window (min 2) */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300210u32 tcp_reno_ssthresh(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700211{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300212 const struct tcp_sock *tp = tcp_sk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700213 return max(tp->snd_cwnd >> 1U, 2U);
214}
215EXPORT_SYMBOL_GPL(tcp_reno_ssthresh);
216
217/* Lower bound on congestion window. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300218u32 tcp_reno_min_cwnd(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700219{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300220 const struct tcp_sock *tp = tcp_sk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700221 return tp->snd_ssthresh/2;
222}
223EXPORT_SYMBOL_GPL(tcp_reno_min_cwnd);
224
225struct tcp_congestion_ops tcp_reno = {
226 .name = "reno",
227 .owner = THIS_MODULE,
228 .ssthresh = tcp_reno_ssthresh,
229 .cong_avoid = tcp_reno_cong_avoid,
230 .min_cwnd = tcp_reno_min_cwnd,
231};
232
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700233/* Initial congestion control used (until SYN)
234 * really reno under another name so we can tell difference
235 * during tcp_set_default_congestion_control
236 */
237struct tcp_congestion_ops tcp_init_congestion_ops = {
238 .name = "",
239 .owner = THIS_MODULE,
240 .ssthresh = tcp_reno_ssthresh,
241 .cong_avoid = tcp_reno_cong_avoid,
242 .min_cwnd = tcp_reno_min_cwnd,
243};
244EXPORT_SYMBOL_GPL(tcp_init_congestion_ops);