blob: f18235e8ce84c810a8d1d0cc5d4345586358676e [file] [log] [blame]
Andrea Bittau2a91aa32006-03-20 17:41:47 -08001/*
2 * net/dccp/ccids/ccid2.c
3 *
4 * Copyright (c) 2005, 2006 Andrea Bittau <a.bittau@cs.ucl.ac.uk>
5 *
6 * Changes to meet Linux coding standards, and DCCP infrastructure fixes.
7 *
8 * Copyright (c) 2006 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25/*
Gerrit Renker0e64e942006-10-24 16:17:51 -070026 * This implementation should follow RFC 4341
Andrea Bittau2a91aa32006-03-20 17:41:47 -080027 */
28
Andrea Bittau2a91aa32006-03-20 17:41:47 -080029#include "../ccid.h"
30#include "../dccp.h"
31#include "ccid2.h"
32
Gerrit Renker84116712006-11-20 18:26:03 -020033
34#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -080035static int ccid2_debug;
Gerrit Renker84116712006-11-20 18:26:03 -020036#define ccid2_pr_debug(format, a...) DCCP_PR_DEBUG(ccid2_debug, format, ##a)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080037
Andrea Bittau2a91aa32006-03-20 17:41:47 -080038static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
39{
40 int len = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080041 int pipe = 0;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080042 struct ccid2_seq *seqp = hctx->ccid2hctx_seqh;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080043
44 /* there is data in the chain */
45 if (seqp != hctx->ccid2hctx_seqt) {
46 seqp = seqp->ccid2s_prev;
47 len++;
48 if (!seqp->ccid2s_acked)
49 pipe++;
50
51 while (seqp != hctx->ccid2hctx_seqt) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080052 struct ccid2_seq *prev = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080053
Andrea Bittau2a91aa32006-03-20 17:41:47 -080054 len++;
55 if (!prev->ccid2s_acked)
56 pipe++;
57
58 /* packets are sent sequentially */
Gerrit Renker5e285992007-10-04 14:43:09 -070059 BUG_ON(dccp_delta_seqno(seqp->ccid2s_seq,
60 prev->ccid2s_seq ) >= 0);
Andrea Bittau29651cd2006-09-19 13:06:46 -070061 BUG_ON(time_before(seqp->ccid2s_sent,
62 prev->ccid2s_sent));
Andrea Bittau2a91aa32006-03-20 17:41:47 -080063
64 seqp = prev;
65 }
66 }
67
68 BUG_ON(pipe != hctx->ccid2hctx_pipe);
69 ccid2_pr_debug("len of chain=%d\n", len);
70
71 do {
72 seqp = seqp->ccid2s_prev;
73 len++;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080074 } while (seqp != hctx->ccid2hctx_seqh);
Andrea Bittau2a91aa32006-03-20 17:41:47 -080075
Andrea Bittau2a91aa32006-03-20 17:41:47 -080076 ccid2_pr_debug("total len=%d\n", len);
Andrea Bittau07978aa2006-09-19 13:13:37 -070077 BUG_ON(len != hctx->ccid2hctx_seqbufc * CCID2_SEQBUF_LEN);
Andrea Bittau2a91aa32006-03-20 17:41:47 -080078}
79#else
Gerrit Renker84116712006-11-20 18:26:03 -020080#define ccid2_pr_debug(format, a...)
81#define ccid2_hc_tx_check_sanity(hctx)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080082#endif
83
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070084static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hctx)
Andrea Bittau07978aa2006-09-19 13:13:37 -070085{
86 struct ccid2_seq *seqp;
87 int i;
88
89 /* check if we have space to preserve the pointer to the buffer */
90 if (hctx->ccid2hctx_seqbufc >= (sizeof(hctx->ccid2hctx_seqbuf) /
91 sizeof(struct ccid2_seq*)))
92 return -ENOMEM;
93
94 /* allocate buffer and initialize linked list */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070095 seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any());
Andrea Bittau07978aa2006-09-19 13:13:37 -070096 if (seqp == NULL)
97 return -ENOMEM;
98
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070099 for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) {
Andrea Bittau07978aa2006-09-19 13:13:37 -0700100 seqp[i].ccid2s_next = &seqp[i + 1];
101 seqp[i + 1].ccid2s_prev = &seqp[i];
102 }
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700103 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp;
104 seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
Andrea Bittau07978aa2006-09-19 13:13:37 -0700105
106 /* This is the first allocation. Initiate the head and tail. */
107 if (hctx->ccid2hctx_seqbufc == 0)
108 hctx->ccid2hctx_seqh = hctx->ccid2hctx_seqt = seqp;
109 else {
110 /* link the existing list with the one we just created */
111 hctx->ccid2hctx_seqh->ccid2s_next = seqp;
112 seqp->ccid2s_prev = hctx->ccid2hctx_seqh;
113
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700114 hctx->ccid2hctx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
115 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hctx->ccid2hctx_seqt;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700116 }
117
118 /* store the original pointer to the buffer so we can free it */
119 hctx->ccid2hctx_seqbuf[hctx->ccid2hctx_seqbufc] = seqp;
120 hctx->ccid2hctx_seqbufc++;
121
122 return 0;
123}
124
Gerrit Renker6b57c932006-11-28 19:55:06 -0200125static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800126{
Gerrit Renker6c583242007-10-04 14:42:19 -0700127 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800128
129 ccid2_pr_debug("pipe=%d cwnd=%d\n", hctx->ccid2hctx_pipe,
130 hctx->ccid2hctx_cwnd);
131
132 if (hctx->ccid2hctx_pipe < hctx->ccid2hctx_cwnd) {
133 /* OK we can send... make sure previous packet was sent off */
134 if (!hctx->ccid2hctx_sendwait) {
135 hctx->ccid2hctx_sendwait = 1;
136 return 0;
137 }
138 }
139
Andrea Bittau446dec32006-09-19 13:10:11 -0700140 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800141}
142
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200143static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800144{
145 struct dccp_sock *dp = dccp_sk(sk);
146 /*
147 * XXX I don't really agree with val != 2. If cwnd is 1, ack ratio
148 * should be 1... it shouldn't be allowed to become 2.
149 * -sorbo.
150 */
151 if (val != 2) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800152 const struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800153 int max = hctx->ccid2hctx_cwnd / 2;
154
155 /* round up */
156 if (hctx->ccid2hctx_cwnd & 1)
157 max++;
158
159 if (val > max)
160 val = max;
161 }
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200162 if (val > 0xFFFF) /* RFC 4340, 11.3 */
163 val = 0xFFFF;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800164
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200165 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800166 dp->dccps_l_ack_ratio = val;
167}
168
Gerrit Renkeree196c22007-10-04 14:41:55 -0700169static void ccid2_change_cwnd(struct ccid2_hc_tx_sock *hctx, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800170{
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800171 /* XXX do we need to change ack ratio? */
Gerrit Renkeree196c22007-10-04 14:41:55 -0700172 hctx->ccid2hctx_cwnd = val? : 1;
173 ccid2_pr_debug("changed cwnd to %u\n", hctx->ccid2hctx_cwnd);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800174}
175
Andrea Bittau593f16a2006-09-19 13:15:33 -0700176static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
177{
178 ccid2_pr_debug("change SRTT to %ld\n", val);
179 hctx->ccid2hctx_srtt = val;
180}
181
182static void ccid2_change_pipe(struct ccid2_hc_tx_sock *hctx, long val)
183{
184 hctx->ccid2hctx_pipe = val;
185}
186
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800187static void ccid2_start_rto_timer(struct sock *sk);
188
189static void ccid2_hc_tx_rto_expire(unsigned long data)
190{
191 struct sock *sk = (struct sock *)data;
192 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
193 long s;
194
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800195 bh_lock_sock(sk);
196 if (sock_owned_by_user(sk)) {
197 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
198 jiffies + HZ / 5);
199 goto out;
200 }
201
202 ccid2_pr_debug("RTO_EXPIRE\n");
203
204 ccid2_hc_tx_check_sanity(hctx);
205
206 /* back-off timer */
207 hctx->ccid2hctx_rto <<= 1;
208
209 s = hctx->ccid2hctx_rto / HZ;
210 if (s > 60)
211 hctx->ccid2hctx_rto = 60 * HZ;
212
213 ccid2_start_rto_timer(sk);
214
215 /* adjust pipe, cwnd etc */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700216 ccid2_change_pipe(hctx, 0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800217 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd >> 1;
218 if (hctx->ccid2hctx_ssthresh < 2)
219 hctx->ccid2hctx_ssthresh = 2;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700220 ccid2_change_cwnd(hctx, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800221
222 /* clear state about stuff we sent */
223 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
224 hctx->ccid2hctx_ssacks = 0;
225 hctx->ccid2hctx_acks = 0;
226 hctx->ccid2hctx_sent = 0;
227
228 /* clear ack ratio state. */
229 hctx->ccid2hctx_arsent = 0;
230 hctx->ccid2hctx_ackloss = 0;
231 hctx->ccid2hctx_rpseq = 0;
232 hctx->ccid2hctx_rpdupack = -1;
233 ccid2_change_l_ack_ratio(sk, 1);
234 ccid2_hc_tx_check_sanity(hctx);
235out:
236 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800237 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800238}
239
240static void ccid2_start_rto_timer(struct sock *sk)
241{
242 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
243
244 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
245
246 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
247 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
248 jiffies + hctx->ccid2hctx_rto);
249}
250
Gerrit Renker6b57c932006-11-28 19:55:06 -0200251static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800252{
253 struct dccp_sock *dp = dccp_sk(sk);
254 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700255 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800256 u64 seq;
257
258 ccid2_hc_tx_check_sanity(hctx);
259
260 BUG_ON(!hctx->ccid2hctx_sendwait);
261 hctx->ccid2hctx_sendwait = 0;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700262 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800263 BUG_ON(hctx->ccid2hctx_pipe < 0);
264
265 /* There is an issue. What if another packet is sent between
266 * packet_send() and packet_sent(). Then the sequence number would be
267 * wrong.
268 * -sorbo.
269 */
270 seq = dp->dccps_gss;
271
272 hctx->ccid2hctx_seqh->ccid2s_seq = seq;
273 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
274 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700275
276 next = hctx->ccid2hctx_seqh->ccid2s_next;
277 /* check if we need to alloc more space */
278 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700279 if (ccid2_hc_tx_alloc_seq(hctx)) {
280 DCCP_CRIT("packet history - out of memory!");
281 /* FIXME: find a more graceful way to bail out */
282 return;
283 }
Andrea Bittau07978aa2006-09-19 13:13:37 -0700284 next = hctx->ccid2hctx_seqh->ccid2s_next;
285 BUG_ON(next == hctx->ccid2hctx_seqt);
286 }
287 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800288
289 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
290 hctx->ccid2hctx_pipe);
291
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800292 hctx->ccid2hctx_sent++;
293
294 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
295 hctx->ccid2hctx_arsent++;
296 /* We had an ack loss in this window... */
297 if (hctx->ccid2hctx_ackloss) {
298 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800299 hctx->ccid2hctx_arsent = 0;
300 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800301 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800302 } else {
303 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800304 /* decrease ack ratio if enough packets were sent */
305 if (dp->dccps_l_ack_ratio > 1) {
306 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800307 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
308 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800309
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800310 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
311
312 if (hctx->ccid2hctx_arsent >= denom) {
313 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
314 hctx->ccid2hctx_arsent = 0;
315 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800316 } else {
317 /* we can't increase ack ratio further [1] */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800318 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
319 }
320 }
321
322 /* setup RTO timer */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800323 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800324 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800325
Andrea Bittau8d424f62006-09-19 13:12:44 -0700326#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800327 ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
Randy Dunlap234af482006-10-29 16:03:30 -0800328 ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800329 do {
330 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
331
332 while (seqp != hctx->ccid2hctx_seqh) {
333 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200334 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800335 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800336 seqp = seqp->ccid2s_next;
337 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800338 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800339 ccid2_pr_debug("=========\n");
340 ccid2_hc_tx_check_sanity(hctx);
341#endif
342}
343
344/* XXX Lame code duplication!
345 * returns -1 if none was found.
346 * else returns the next offset to use in the function call.
347 */
348static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
349 unsigned char **vec, unsigned char *veclen)
350{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900351 const struct dccp_hdr *dh = dccp_hdr(skb);
352 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
353 unsigned char *opt_ptr;
354 const unsigned char *opt_end = (unsigned char *)dh +
355 (dh->dccph_doff * 4);
356 unsigned char opt, len;
357 unsigned char *value;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800358
359 BUG_ON(offset < 0);
360 options += offset;
361 opt_ptr = options;
362 if (opt_ptr >= opt_end)
363 return -1;
364
365 while (opt_ptr != opt_end) {
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900366 opt = *opt_ptr++;
367 len = 0;
368 value = NULL;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800369
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900370 /* Check if this isn't a single byte option */
371 if (opt > DCCPO_MAX_RESERVED) {
372 if (opt_ptr == opt_end)
373 goto out_invalid_option;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800374
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900375 len = *opt_ptr++;
376 if (len < 3)
377 goto out_invalid_option;
378 /*
379 * Remove the type and len fields, leaving
380 * just the value size
381 */
382 len -= 2;
383 value = opt_ptr;
384 opt_ptr += len;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800385
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900386 if (opt_ptr > opt_end)
387 goto out_invalid_option;
388 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800389
390 switch (opt) {
391 case DCCPO_ACK_VECTOR_0:
392 case DCCPO_ACK_VECTOR_1:
393 *vec = value;
394 *veclen = len;
395 return offset + (opt_ptr - options);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800396 }
397 }
398
399 return -1;
400
401out_invalid_option:
Gerrit Renker59348b12006-11-20 18:39:23 -0200402 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800403 return -1;
404}
405
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800406static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800407{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800408 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
409
410 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
411 ccid2_pr_debug("deleted RTO timer\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800412}
413
414static inline void ccid2_new_ack(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900415 struct ccid2_seq *seqp,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800416 unsigned int *maxincr)
417{
418 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
419
420 /* slow start */
421 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
422 hctx->ccid2hctx_acks = 0;
423
424 /* We can increase cwnd at most maxincr [ack_ratio/2] */
425 if (*maxincr) {
426 /* increase every 2 acks */
427 hctx->ccid2hctx_ssacks++;
428 if (hctx->ccid2hctx_ssacks == 2) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700429 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd+1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800430 hctx->ccid2hctx_ssacks = 0;
431 *maxincr = *maxincr - 1;
432 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800433 } else {
434 /* increased cwnd enough for this single ack */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800435 hctx->ccid2hctx_ssacks = 0;
436 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800437 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800438 hctx->ccid2hctx_ssacks = 0;
439 hctx->ccid2hctx_acks++;
440
441 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700442 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800443 hctx->ccid2hctx_acks = 0;
444 }
445 }
446
447 /* update RTO */
448 if (hctx->ccid2hctx_srtt == -1 ||
Andrea Bittau29651cd2006-09-19 13:06:46 -0700449 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
450 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800451 int s;
452
453 /* first measurement */
454 if (hctx->ccid2hctx_srtt == -1) {
455 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200456 r, jiffies,
Randy Dunlap234af482006-10-29 16:03:30 -0800457 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau593f16a2006-09-19 13:15:33 -0700458 ccid2_change_srtt(hctx, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800459 hctx->ccid2hctx_rttvar = r >> 1;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800460 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800461 /* RTTVAR */
462 long tmp = hctx->ccid2hctx_srtt - r;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700463 long srtt;
464
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800465 if (tmp < 0)
466 tmp *= -1;
467
468 tmp >>= 2;
469 hctx->ccid2hctx_rttvar *= 3;
470 hctx->ccid2hctx_rttvar >>= 2;
471 hctx->ccid2hctx_rttvar += tmp;
472
473 /* SRTT */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700474 srtt = hctx->ccid2hctx_srtt;
475 srtt *= 7;
476 srtt >>= 3;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800477 tmp = r >> 3;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700478 srtt += tmp;
479 ccid2_change_srtt(hctx, srtt);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800480 }
481 s = hctx->ccid2hctx_rttvar << 2;
482 /* clock granularity is 1 when based on jiffies */
483 if (!s)
484 s = 1;
485 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
486
487 /* must be at least a second */
488 s = hctx->ccid2hctx_rto / HZ;
489 /* DCCP doesn't require this [but I like it cuz my code sux] */
490#if 1
491 if (s < 1)
492 hctx->ccid2hctx_rto = HZ;
493#endif
494 /* max 60 seconds */
495 if (s > 60)
496 hctx->ccid2hctx_rto = HZ * 60;
497
498 hctx->ccid2hctx_lastrtt = jiffies;
499
500 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200501 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
502 hctx->ccid2hctx_rto, HZ, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800503 hctx->ccid2hctx_sent = 0;
504 }
505
506 /* we got a new ack, so re-start RTO timer */
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800507 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800508 ccid2_start_rto_timer(sk);
509}
510
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800511static void ccid2_hc_tx_dec_pipe(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800512{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800513 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
514
Andrea Bittau593f16a2006-09-19 13:15:33 -0700515 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe-1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800516 BUG_ON(hctx->ccid2hctx_pipe < 0);
517
518 if (hctx->ccid2hctx_pipe == 0)
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800519 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800520}
521
Andrea Bittau374bcf32006-09-19 13:14:43 -0700522static void ccid2_congestion_event(struct ccid2_hc_tx_sock *hctx,
523 struct ccid2_seq *seqp)
524{
525 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
526 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
527 return;
528 }
529
530 hctx->ccid2hctx_last_cong = jiffies;
531
532 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd >> 1);
533 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd;
534 if (hctx->ccid2hctx_ssthresh < 2)
535 hctx->ccid2hctx_ssthresh = 2;
536}
537
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800538static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
539{
540 struct dccp_sock *dp = dccp_sk(sk);
541 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
542 u64 ackno, seqno;
543 struct ccid2_seq *seqp;
544 unsigned char *vector;
545 unsigned char veclen;
546 int offset = 0;
547 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800548 unsigned int maxincr = 0;
549
550 ccid2_hc_tx_check_sanity(hctx);
551 /* check reverse path congestion */
552 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
553
554 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
555 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
556 * -sorbo.
557 */
558 /* need to bootstrap */
559 if (hctx->ccid2hctx_rpdupack == -1) {
560 hctx->ccid2hctx_rpdupack = 0;
561 hctx->ccid2hctx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800562 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800563 /* check if packet is consecutive */
Gerrit Renker5e285992007-10-04 14:43:09 -0700564 if (dccp_delta_seqno(hctx->ccid2hctx_rpseq, seqno) == 1)
565 hctx->ccid2hctx_rpseq = seqno;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800566 /* it's a later packet */
567 else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
568 hctx->ccid2hctx_rpdupack++;
569
570 /* check if we got enough dupacks */
571 if (hctx->ccid2hctx_rpdupack >=
572 hctx->ccid2hctx_numdupack) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800573 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
574 hctx->ccid2hctx_rpseq = 0;
575
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200576 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800577 }
578 }
579 }
580
581 /* check forward path congestion */
582 /* still didn't send out new data packets */
583 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
584 return;
585
586 switch (DCCP_SKB_CB(skb)->dccpd_type) {
587 case DCCP_PKT_ACK:
588 case DCCP_PKT_DATAACK:
589 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800590 default:
591 return;
592 }
593
594 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Andrea Bittau32aac182006-11-16 14:28:40 -0200595 if (after48(ackno, hctx->ccid2hctx_high_ack))
596 hctx->ccid2hctx_high_ack = ackno;
597
598 seqp = hctx->ccid2hctx_seqt;
599 while (before48(seqp->ccid2s_seq, ackno)) {
600 seqp = seqp->ccid2s_next;
601 if (seqp == hctx->ccid2hctx_seqh) {
602 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
603 break;
604 }
605 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800606
607 /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
608 * this single ack. I round up.
609 * -sorbo.
610 */
611 maxincr = dp->dccps_l_ack_ratio >> 1;
612 maxincr++;
613
614 /* go through all ack vectors */
615 while ((offset = ccid2_ackvector(sk, skb, offset,
616 &vector, &veclen)) != -1) {
617 /* go through this ack vector */
618 while (veclen--) {
619 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200620 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800621
Randy Dunlap234af482006-10-29 16:03:30 -0800622 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
623 (unsigned long long)ackno,
624 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800625 /* if the seqno we are analyzing is larger than the
626 * current ackno, then move towards the tail of our
627 * seqnos.
628 */
629 while (after48(seqp->ccid2s_seq, ackno)) {
630 if (seqp == hctx->ccid2hctx_seqt) {
631 done = 1;
632 break;
633 }
634 seqp = seqp->ccid2s_prev;
635 }
636 if (done)
637 break;
638
639 /* check all seqnos in the range of the vector
640 * run length
641 */
642 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Andrea Bittau8e27e462006-09-19 13:05:35 -0700643 const u8 state = *vector &
644 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800645
646 /* new packet received or marked */
647 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
648 !seqp->ccid2s_acked) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200649 if (state ==
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800650 DCCP_ACKVEC_STATE_ECN_MARKED) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200651 ccid2_congestion_event(hctx,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700652 seqp);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800653 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800654 ccid2_new_ack(sk, seqp,
655 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800656
657 seqp->ccid2s_acked = 1;
658 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800659 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800660 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800661 }
662 if (seqp == hctx->ccid2hctx_seqt) {
663 done = 1;
664 break;
665 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200666 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800667 }
668 if (done)
669 break;
670
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200671 ackno = SUB48(ackno_end_rl, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800672 vector++;
673 }
674 if (done)
675 break;
676 }
677
678 /* The state about what is acked should be correct now
679 * Check for NUMDUPACK
680 */
Andrea Bittau32aac182006-11-16 14:28:40 -0200681 seqp = hctx->ccid2hctx_seqt;
682 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
683 seqp = seqp->ccid2s_next;
684 if (seqp == hctx->ccid2hctx_seqh) {
685 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
686 break;
687 }
688 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800689 done = 0;
690 while (1) {
691 if (seqp->ccid2s_acked) {
692 done++;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800693 if (done == hctx->ccid2hctx_numdupack)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800694 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800695 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800696 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800697 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800698 seqp = seqp->ccid2s_prev;
699 }
700
701 /* If there are at least 3 acknowledgements, anything unacknowledged
702 * below the last sequence number is considered lost
703 */
704 if (done == hctx->ccid2hctx_numdupack) {
705 struct ccid2_seq *last_acked = seqp;
706
707 /* check for lost packets */
708 while (1) {
709 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700710 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800711 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700712 /* XXX need to traverse from tail -> head in
713 * order to detect multiple congestion events in
714 * one ack vector.
715 */
716 ccid2_congestion_event(hctx, seqp);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800717 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800718 }
719 if (seqp == hctx->ccid2hctx_seqt)
720 break;
721 seqp = seqp->ccid2s_prev;
722 }
723
724 hctx->ccid2hctx_seqt = last_acked;
725 }
726
727 /* trim acked packets in tail */
728 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
729 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
730 break;
731
732 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
733 }
734
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800735 ccid2_hc_tx_check_sanity(hctx);
736}
737
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800738static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800739{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900740 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800741
Andrea Bittau374bcf32006-09-19 13:14:43 -0700742 ccid2_change_cwnd(hctx, 1);
Andrea Bittaud458c252006-09-19 13:07:20 -0700743 /* Initialize ssthresh to infinity. This means that we will exit the
744 * initial slow-start after the first packet loss. This is what we
745 * want.
746 */
747 hctx->ccid2hctx_ssthresh = ~0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800748 hctx->ccid2hctx_numdupack = 3;
749
750 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700751 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800752 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800753
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800754 hctx->ccid2hctx_rto = 3 * HZ;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700755 ccid2_change_srtt(hctx, -1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800756 hctx->ccid2hctx_rttvar = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800757 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700758 hctx->ccid2hctx_last_cong = jiffies;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800759 setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
760 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800761
762 ccid2_hc_tx_check_sanity(hctx);
763 return 0;
764}
765
766static void ccid2_hc_tx_exit(struct sock *sk)
767{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900768 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700769 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800770
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800771 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700772
773 for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
774 kfree(hctx->ccid2hctx_seqbuf[i]);
775 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800776}
777
778static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
779{
780 const struct dccp_sock *dp = dccp_sk(sk);
781 struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
782
783 switch (DCCP_SKB_CB(skb)->dccpd_type) {
784 case DCCP_PKT_DATA:
785 case DCCP_PKT_DATAACK:
786 hcrx->ccid2hcrx_data++;
787 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
788 dccp_send_ack(sk);
789 hcrx->ccid2hcrx_data = 0;
790 }
791 break;
792 }
793}
794
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800795static struct ccid_operations ccid2 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200796 .ccid_id = DCCPC_CCID2,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800797 .ccid_name = "ccid2",
798 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800799 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800800 .ccid_hc_tx_init = ccid2_hc_tx_init,
801 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
802 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
803 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
804 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800805 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800806 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
807};
808
Gerrit Renker84116712006-11-20 18:26:03 -0200809#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker042d18f2007-10-04 14:39:53 -0700810module_param(ccid2_debug, bool, 0444);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800811MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200812#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800813
814static __init int ccid2_module_init(void)
815{
816 return ccid_register(&ccid2);
817}
818module_init(ccid2_module_init);
819
820static __exit void ccid2_module_exit(void)
821{
822 ccid_unregister(&ccid2);
823}
824module_exit(ccid2_module_exit);
825
826MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800827MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800828MODULE_LICENSE("GPL");
829MODULE_ALIAS("net-dccp-ccid-2");