blob: 3e4fa6b6f251645cbd55d2f83893e670a89eabfd [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 * BUGS:
29 * - sequence number wrapping
Andrea Bittau2a91aa32006-03-20 17:41:47 -080030 */
31
Andrea Bittau2a91aa32006-03-20 17:41:47 -080032#include "../ccid.h"
33#include "../dccp.h"
34#include "ccid2.h"
35
Gerrit Renker84116712006-11-20 18:26:03 -020036
37#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -080038static int ccid2_debug;
Gerrit Renker84116712006-11-20 18:26:03 -020039#define ccid2_pr_debug(format, a...) DCCP_PR_DEBUG(ccid2_debug, format, ##a)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080040
Andrea Bittau2a91aa32006-03-20 17:41:47 -080041static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
42{
43 int len = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080044 int pipe = 0;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080045 struct ccid2_seq *seqp = hctx->ccid2hctx_seqh;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080046
47 /* there is data in the chain */
48 if (seqp != hctx->ccid2hctx_seqt) {
49 seqp = seqp->ccid2s_prev;
50 len++;
51 if (!seqp->ccid2s_acked)
52 pipe++;
53
54 while (seqp != hctx->ccid2hctx_seqt) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080055 struct ccid2_seq *prev = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -080056
Andrea Bittau2a91aa32006-03-20 17:41:47 -080057 len++;
58 if (!prev->ccid2s_acked)
59 pipe++;
60
61 /* packets are sent sequentially */
62 BUG_ON(seqp->ccid2s_seq <= prev->ccid2s_seq);
Andrea Bittau29651cd2006-09-19 13:06:46 -070063 BUG_ON(time_before(seqp->ccid2s_sent,
64 prev->ccid2s_sent));
Andrea Bittau2a91aa32006-03-20 17:41:47 -080065
66 seqp = prev;
67 }
68 }
69
70 BUG_ON(pipe != hctx->ccid2hctx_pipe);
71 ccid2_pr_debug("len of chain=%d\n", len);
72
73 do {
74 seqp = seqp->ccid2s_prev;
75 len++;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -080076 } while (seqp != hctx->ccid2hctx_seqh);
Andrea Bittau2a91aa32006-03-20 17:41:47 -080077
Andrea Bittau2a91aa32006-03-20 17:41:47 -080078 ccid2_pr_debug("total len=%d\n", len);
Andrea Bittau07978aa2006-09-19 13:13:37 -070079 BUG_ON(len != hctx->ccid2hctx_seqbufc * CCID2_SEQBUF_LEN);
Andrea Bittau2a91aa32006-03-20 17:41:47 -080080}
81#else
Gerrit Renker84116712006-11-20 18:26:03 -020082#define ccid2_pr_debug(format, a...)
83#define ccid2_hc_tx_check_sanity(hctx)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080084#endif
85
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070086static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hctx)
Andrea Bittau07978aa2006-09-19 13:13:37 -070087{
88 struct ccid2_seq *seqp;
89 int i;
90
91 /* check if we have space to preserve the pointer to the buffer */
92 if (hctx->ccid2hctx_seqbufc >= (sizeof(hctx->ccid2hctx_seqbuf) /
93 sizeof(struct ccid2_seq*)))
94 return -ENOMEM;
95
96 /* allocate buffer and initialize linked list */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070097 seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any());
Andrea Bittau07978aa2006-09-19 13:13:37 -070098 if (seqp == NULL)
99 return -ENOMEM;
100
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700101 for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) {
Andrea Bittau07978aa2006-09-19 13:13:37 -0700102 seqp[i].ccid2s_next = &seqp[i + 1];
103 seqp[i + 1].ccid2s_prev = &seqp[i];
104 }
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700105 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp;
106 seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
Andrea Bittau07978aa2006-09-19 13:13:37 -0700107
108 /* This is the first allocation. Initiate the head and tail. */
109 if (hctx->ccid2hctx_seqbufc == 0)
110 hctx->ccid2hctx_seqh = hctx->ccid2hctx_seqt = seqp;
111 else {
112 /* link the existing list with the one we just created */
113 hctx->ccid2hctx_seqh->ccid2s_next = seqp;
114 seqp->ccid2s_prev = hctx->ccid2hctx_seqh;
115
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700116 hctx->ccid2hctx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
117 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hctx->ccid2hctx_seqt;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700118 }
119
120 /* store the original pointer to the buffer so we can free it */
121 hctx->ccid2hctx_seqbuf[hctx->ccid2hctx_seqbufc] = seqp;
122 hctx->ccid2hctx_seqbufc++;
123
124 return 0;
125}
126
Gerrit Renker6b57c932006-11-28 19:55:06 -0200127static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800128{
129 struct ccid2_hc_tx_sock *hctx;
130
131 switch (DCCP_SKB_CB(skb)->dccpd_type) {
132 case 0: /* XXX data packets from userland come through like this */
133 case DCCP_PKT_DATA:
134 case DCCP_PKT_DATAACK:
135 break;
136 /* No congestion control on other packets */
137 default:
138 return 0;
139 }
140
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900141 hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800142
143 ccid2_pr_debug("pipe=%d cwnd=%d\n", hctx->ccid2hctx_pipe,
144 hctx->ccid2hctx_cwnd);
145
146 if (hctx->ccid2hctx_pipe < hctx->ccid2hctx_cwnd) {
147 /* OK we can send... make sure previous packet was sent off */
148 if (!hctx->ccid2hctx_sendwait) {
149 hctx->ccid2hctx_sendwait = 1;
150 return 0;
151 }
152 }
153
Andrea Bittau446dec32006-09-19 13:10:11 -0700154 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800155}
156
157static void ccid2_change_l_ack_ratio(struct sock *sk, int val)
158{
159 struct dccp_sock *dp = dccp_sk(sk);
160 /*
161 * XXX I don't really agree with val != 2. If cwnd is 1, ack ratio
162 * should be 1... it shouldn't be allowed to become 2.
163 * -sorbo.
164 */
165 if (val != 2) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800166 const struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800167 int max = hctx->ccid2hctx_cwnd / 2;
168
169 /* round up */
170 if (hctx->ccid2hctx_cwnd & 1)
171 max++;
172
173 if (val > max)
174 val = max;
175 }
176
177 ccid2_pr_debug("changing local ack ratio to %d\n", val);
178 WARN_ON(val <= 0);
179 dp->dccps_l_ack_ratio = val;
180}
181
Andrea Bittau374bcf32006-09-19 13:14:43 -0700182static void ccid2_change_cwnd(struct ccid2_hc_tx_sock *hctx, int val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800183{
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800184 if (val == 0)
185 val = 1;
186
187 /* XXX do we need to change ack ratio? */
188 ccid2_pr_debug("change cwnd to %d\n", val);
189
190 BUG_ON(val < 1);
191 hctx->ccid2hctx_cwnd = val;
192}
193
Andrea Bittau593f16a2006-09-19 13:15:33 -0700194static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
195{
196 ccid2_pr_debug("change SRTT to %ld\n", val);
197 hctx->ccid2hctx_srtt = val;
198}
199
200static void ccid2_change_pipe(struct ccid2_hc_tx_sock *hctx, long val)
201{
202 hctx->ccid2hctx_pipe = val;
203}
204
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800205static void ccid2_start_rto_timer(struct sock *sk);
206
207static void ccid2_hc_tx_rto_expire(unsigned long data)
208{
209 struct sock *sk = (struct sock *)data;
210 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
211 long s;
212
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800213 bh_lock_sock(sk);
214 if (sock_owned_by_user(sk)) {
215 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
216 jiffies + HZ / 5);
217 goto out;
218 }
219
220 ccid2_pr_debug("RTO_EXPIRE\n");
221
222 ccid2_hc_tx_check_sanity(hctx);
223
224 /* back-off timer */
225 hctx->ccid2hctx_rto <<= 1;
226
227 s = hctx->ccid2hctx_rto / HZ;
228 if (s > 60)
229 hctx->ccid2hctx_rto = 60 * HZ;
230
231 ccid2_start_rto_timer(sk);
232
233 /* adjust pipe, cwnd etc */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700234 ccid2_change_pipe(hctx, 0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800235 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd >> 1;
236 if (hctx->ccid2hctx_ssthresh < 2)
237 hctx->ccid2hctx_ssthresh = 2;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700238 ccid2_change_cwnd(hctx, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800239
240 /* clear state about stuff we sent */
241 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
242 hctx->ccid2hctx_ssacks = 0;
243 hctx->ccid2hctx_acks = 0;
244 hctx->ccid2hctx_sent = 0;
245
246 /* clear ack ratio state. */
247 hctx->ccid2hctx_arsent = 0;
248 hctx->ccid2hctx_ackloss = 0;
249 hctx->ccid2hctx_rpseq = 0;
250 hctx->ccid2hctx_rpdupack = -1;
251 ccid2_change_l_ack_ratio(sk, 1);
252 ccid2_hc_tx_check_sanity(hctx);
253out:
254 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800255 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800256}
257
258static void ccid2_start_rto_timer(struct sock *sk)
259{
260 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
261
262 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
263
264 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
265 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
266 jiffies + hctx->ccid2hctx_rto);
267}
268
Gerrit Renker6b57c932006-11-28 19:55:06 -0200269static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800270{
271 struct dccp_sock *dp = dccp_sk(sk);
272 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700273 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800274 u64 seq;
275
276 ccid2_hc_tx_check_sanity(hctx);
277
278 BUG_ON(!hctx->ccid2hctx_sendwait);
279 hctx->ccid2hctx_sendwait = 0;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700280 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800281 BUG_ON(hctx->ccid2hctx_pipe < 0);
282
283 /* There is an issue. What if another packet is sent between
284 * packet_send() and packet_sent(). Then the sequence number would be
285 * wrong.
286 * -sorbo.
287 */
288 seq = dp->dccps_gss;
289
290 hctx->ccid2hctx_seqh->ccid2s_seq = seq;
291 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
292 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700293
294 next = hctx->ccid2hctx_seqh->ccid2s_next;
295 /* check if we need to alloc more space */
296 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700297 if (ccid2_hc_tx_alloc_seq(hctx)) {
298 DCCP_CRIT("packet history - out of memory!");
299 /* FIXME: find a more graceful way to bail out */
300 return;
301 }
Andrea Bittau07978aa2006-09-19 13:13:37 -0700302 next = hctx->ccid2hctx_seqh->ccid2s_next;
303 BUG_ON(next == hctx->ccid2hctx_seqt);
304 }
305 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800306
307 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
308 hctx->ccid2hctx_pipe);
309
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800310 hctx->ccid2hctx_sent++;
311
312 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
313 hctx->ccid2hctx_arsent++;
314 /* We had an ack loss in this window... */
315 if (hctx->ccid2hctx_ackloss) {
316 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800317 hctx->ccid2hctx_arsent = 0;
318 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800319 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800320 } else {
321 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800322 /* decrease ack ratio if enough packets were sent */
323 if (dp->dccps_l_ack_ratio > 1) {
324 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800325 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
326 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800327
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800328 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
329
330 if (hctx->ccid2hctx_arsent >= denom) {
331 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
332 hctx->ccid2hctx_arsent = 0;
333 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800334 } else {
335 /* we can't increase ack ratio further [1] */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800336 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
337 }
338 }
339
340 /* setup RTO timer */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800341 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800342 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800343
Andrea Bittau8d424f62006-09-19 13:12:44 -0700344#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800345 ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
Randy Dunlap234af482006-10-29 16:03:30 -0800346 ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800347 do {
348 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
349
350 while (seqp != hctx->ccid2hctx_seqh) {
351 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200352 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800353 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800354 seqp = seqp->ccid2s_next;
355 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800356 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800357 ccid2_pr_debug("=========\n");
358 ccid2_hc_tx_check_sanity(hctx);
359#endif
360}
361
362/* XXX Lame code duplication!
363 * returns -1 if none was found.
364 * else returns the next offset to use in the function call.
365 */
366static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
367 unsigned char **vec, unsigned char *veclen)
368{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900369 const struct dccp_hdr *dh = dccp_hdr(skb);
370 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
371 unsigned char *opt_ptr;
372 const unsigned char *opt_end = (unsigned char *)dh +
373 (dh->dccph_doff * 4);
374 unsigned char opt, len;
375 unsigned char *value;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800376
377 BUG_ON(offset < 0);
378 options += offset;
379 opt_ptr = options;
380 if (opt_ptr >= opt_end)
381 return -1;
382
383 while (opt_ptr != opt_end) {
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900384 opt = *opt_ptr++;
385 len = 0;
386 value = NULL;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800387
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900388 /* Check if this isn't a single byte option */
389 if (opt > DCCPO_MAX_RESERVED) {
390 if (opt_ptr == opt_end)
391 goto out_invalid_option;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800392
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900393 len = *opt_ptr++;
394 if (len < 3)
395 goto out_invalid_option;
396 /*
397 * Remove the type and len fields, leaving
398 * just the value size
399 */
400 len -= 2;
401 value = opt_ptr;
402 opt_ptr += len;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800403
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900404 if (opt_ptr > opt_end)
405 goto out_invalid_option;
406 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800407
408 switch (opt) {
409 case DCCPO_ACK_VECTOR_0:
410 case DCCPO_ACK_VECTOR_1:
411 *vec = value;
412 *veclen = len;
413 return offset + (opt_ptr - options);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800414 }
415 }
416
417 return -1;
418
419out_invalid_option:
Gerrit Renker59348b12006-11-20 18:39:23 -0200420 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800421 return -1;
422}
423
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800424static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800425{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800426 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
427
428 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
429 ccid2_pr_debug("deleted RTO timer\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800430}
431
432static inline void ccid2_new_ack(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900433 struct ccid2_seq *seqp,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800434 unsigned int *maxincr)
435{
436 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
437
438 /* slow start */
439 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
440 hctx->ccid2hctx_acks = 0;
441
442 /* We can increase cwnd at most maxincr [ack_ratio/2] */
443 if (*maxincr) {
444 /* increase every 2 acks */
445 hctx->ccid2hctx_ssacks++;
446 if (hctx->ccid2hctx_ssacks == 2) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700447 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd+1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800448 hctx->ccid2hctx_ssacks = 0;
449 *maxincr = *maxincr - 1;
450 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800451 } else {
452 /* increased cwnd enough for this single ack */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800453 hctx->ccid2hctx_ssacks = 0;
454 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800455 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800456 hctx->ccid2hctx_ssacks = 0;
457 hctx->ccid2hctx_acks++;
458
459 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700460 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800461 hctx->ccid2hctx_acks = 0;
462 }
463 }
464
465 /* update RTO */
466 if (hctx->ccid2hctx_srtt == -1 ||
Andrea Bittau29651cd2006-09-19 13:06:46 -0700467 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
468 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800469 int s;
470
471 /* first measurement */
472 if (hctx->ccid2hctx_srtt == -1) {
473 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200474 r, jiffies,
Randy Dunlap234af482006-10-29 16:03:30 -0800475 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau593f16a2006-09-19 13:15:33 -0700476 ccid2_change_srtt(hctx, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800477 hctx->ccid2hctx_rttvar = r >> 1;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800478 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800479 /* RTTVAR */
480 long tmp = hctx->ccid2hctx_srtt - r;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700481 long srtt;
482
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800483 if (tmp < 0)
484 tmp *= -1;
485
486 tmp >>= 2;
487 hctx->ccid2hctx_rttvar *= 3;
488 hctx->ccid2hctx_rttvar >>= 2;
489 hctx->ccid2hctx_rttvar += tmp;
490
491 /* SRTT */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700492 srtt = hctx->ccid2hctx_srtt;
493 srtt *= 7;
494 srtt >>= 3;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800495 tmp = r >> 3;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700496 srtt += tmp;
497 ccid2_change_srtt(hctx, srtt);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800498 }
499 s = hctx->ccid2hctx_rttvar << 2;
500 /* clock granularity is 1 when based on jiffies */
501 if (!s)
502 s = 1;
503 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
504
505 /* must be at least a second */
506 s = hctx->ccid2hctx_rto / HZ;
507 /* DCCP doesn't require this [but I like it cuz my code sux] */
508#if 1
509 if (s < 1)
510 hctx->ccid2hctx_rto = HZ;
511#endif
512 /* max 60 seconds */
513 if (s > 60)
514 hctx->ccid2hctx_rto = HZ * 60;
515
516 hctx->ccid2hctx_lastrtt = jiffies;
517
518 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200519 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
520 hctx->ccid2hctx_rto, HZ, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800521 hctx->ccid2hctx_sent = 0;
522 }
523
524 /* we got a new ack, so re-start RTO timer */
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800525 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800526 ccid2_start_rto_timer(sk);
527}
528
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800529static void ccid2_hc_tx_dec_pipe(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800530{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800531 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
532
Andrea Bittau593f16a2006-09-19 13:15:33 -0700533 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe-1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800534 BUG_ON(hctx->ccid2hctx_pipe < 0);
535
536 if (hctx->ccid2hctx_pipe == 0)
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800537 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800538}
539
Andrea Bittau374bcf32006-09-19 13:14:43 -0700540static void ccid2_congestion_event(struct ccid2_hc_tx_sock *hctx,
541 struct ccid2_seq *seqp)
542{
543 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
544 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
545 return;
546 }
547
548 hctx->ccid2hctx_last_cong = jiffies;
549
550 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd >> 1);
551 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd;
552 if (hctx->ccid2hctx_ssthresh < 2)
553 hctx->ccid2hctx_ssthresh = 2;
554}
555
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800556static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
557{
558 struct dccp_sock *dp = dccp_sk(sk);
559 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
560 u64 ackno, seqno;
561 struct ccid2_seq *seqp;
562 unsigned char *vector;
563 unsigned char veclen;
564 int offset = 0;
565 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800566 unsigned int maxincr = 0;
567
568 ccid2_hc_tx_check_sanity(hctx);
569 /* check reverse path congestion */
570 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
571
572 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
573 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
574 * -sorbo.
575 */
576 /* need to bootstrap */
577 if (hctx->ccid2hctx_rpdupack == -1) {
578 hctx->ccid2hctx_rpdupack = 0;
579 hctx->ccid2hctx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800580 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800581 /* check if packet is consecutive */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800582 if ((hctx->ccid2hctx_rpseq + 1) == seqno)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800583 hctx->ccid2hctx_rpseq++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800584 /* it's a later packet */
585 else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
586 hctx->ccid2hctx_rpdupack++;
587
588 /* check if we got enough dupacks */
589 if (hctx->ccid2hctx_rpdupack >=
590 hctx->ccid2hctx_numdupack) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800591 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
592 hctx->ccid2hctx_rpseq = 0;
593
594 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio << 1);
595 }
596 }
597 }
598
599 /* check forward path congestion */
600 /* still didn't send out new data packets */
601 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
602 return;
603
604 switch (DCCP_SKB_CB(skb)->dccpd_type) {
605 case DCCP_PKT_ACK:
606 case DCCP_PKT_DATAACK:
607 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800608 default:
609 return;
610 }
611
612 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Andrea Bittau32aac182006-11-16 14:28:40 -0200613 if (after48(ackno, hctx->ccid2hctx_high_ack))
614 hctx->ccid2hctx_high_ack = ackno;
615
616 seqp = hctx->ccid2hctx_seqt;
617 while (before48(seqp->ccid2s_seq, ackno)) {
618 seqp = seqp->ccid2s_next;
619 if (seqp == hctx->ccid2hctx_seqh) {
620 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
621 break;
622 }
623 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800624
625 /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
626 * this single ack. I round up.
627 * -sorbo.
628 */
629 maxincr = dp->dccps_l_ack_ratio >> 1;
630 maxincr++;
631
632 /* go through all ack vectors */
633 while ((offset = ccid2_ackvector(sk, skb, offset,
634 &vector, &veclen)) != -1) {
635 /* go through this ack vector */
636 while (veclen--) {
637 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
638 u64 ackno_end_rl;
639
640 dccp_set_seqno(&ackno_end_rl, ackno - rl);
Randy Dunlap234af482006-10-29 16:03:30 -0800641 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
642 (unsigned long long)ackno,
643 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800644 /* if the seqno we are analyzing is larger than the
645 * current ackno, then move towards the tail of our
646 * seqnos.
647 */
648 while (after48(seqp->ccid2s_seq, ackno)) {
649 if (seqp == hctx->ccid2hctx_seqt) {
650 done = 1;
651 break;
652 }
653 seqp = seqp->ccid2s_prev;
654 }
655 if (done)
656 break;
657
658 /* check all seqnos in the range of the vector
659 * run length
660 */
661 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Andrea Bittau8e27e462006-09-19 13:05:35 -0700662 const u8 state = *vector &
663 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800664
665 /* new packet received or marked */
666 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
667 !seqp->ccid2s_acked) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200668 if (state ==
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800669 DCCP_ACKVEC_STATE_ECN_MARKED) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200670 ccid2_congestion_event(hctx,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700671 seqp);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800672 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800673 ccid2_new_ack(sk, seqp,
674 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800675
676 seqp->ccid2s_acked = 1;
677 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800678 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800679 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800680 }
681 if (seqp == hctx->ccid2hctx_seqt) {
682 done = 1;
683 break;
684 }
685 seqp = seqp->ccid2s_next;
686 }
687 if (done)
688 break;
689
690
691 dccp_set_seqno(&ackno, ackno_end_rl - 1);
692 vector++;
693 }
694 if (done)
695 break;
696 }
697
698 /* The state about what is acked should be correct now
699 * Check for NUMDUPACK
700 */
Andrea Bittau32aac182006-11-16 14:28:40 -0200701 seqp = hctx->ccid2hctx_seqt;
702 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
703 seqp = seqp->ccid2s_next;
704 if (seqp == hctx->ccid2hctx_seqh) {
705 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
706 break;
707 }
708 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800709 done = 0;
710 while (1) {
711 if (seqp->ccid2s_acked) {
712 done++;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800713 if (done == hctx->ccid2hctx_numdupack)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800714 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800715 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800716 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800717 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800718 seqp = seqp->ccid2s_prev;
719 }
720
721 /* If there are at least 3 acknowledgements, anything unacknowledged
722 * below the last sequence number is considered lost
723 */
724 if (done == hctx->ccid2hctx_numdupack) {
725 struct ccid2_seq *last_acked = seqp;
726
727 /* check for lost packets */
728 while (1) {
729 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700730 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800731 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700732 /* XXX need to traverse from tail -> head in
733 * order to detect multiple congestion events in
734 * one ack vector.
735 */
736 ccid2_congestion_event(hctx, seqp);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800737 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800738 }
739 if (seqp == hctx->ccid2hctx_seqt)
740 break;
741 seqp = seqp->ccid2s_prev;
742 }
743
744 hctx->ccid2hctx_seqt = last_acked;
745 }
746
747 /* trim acked packets in tail */
748 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
749 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
750 break;
751
752 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
753 }
754
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800755 ccid2_hc_tx_check_sanity(hctx);
756}
757
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800758static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800759{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900760 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800761
Andrea Bittau374bcf32006-09-19 13:14:43 -0700762 ccid2_change_cwnd(hctx, 1);
Andrea Bittaud458c252006-09-19 13:07:20 -0700763 /* Initialize ssthresh to infinity. This means that we will exit the
764 * initial slow-start after the first packet loss. This is what we
765 * want.
766 */
767 hctx->ccid2hctx_ssthresh = ~0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800768 hctx->ccid2hctx_numdupack = 3;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700769 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800770
771 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700772 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800773 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800774
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800775 hctx->ccid2hctx_sent = 0;
776 hctx->ccid2hctx_rto = 3 * HZ;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700777 ccid2_change_srtt(hctx, -1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800778 hctx->ccid2hctx_rttvar = -1;
779 hctx->ccid2hctx_lastrtt = 0;
780 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700781 hctx->ccid2hctx_last_cong = jiffies;
Andrea Bittau32aac182006-11-16 14:28:40 -0200782 hctx->ccid2hctx_high_ack = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800783
784 hctx->ccid2hctx_rtotimer.function = &ccid2_hc_tx_rto_expire;
785 hctx->ccid2hctx_rtotimer.data = (unsigned long)sk;
786 init_timer(&hctx->ccid2hctx_rtotimer);
787
788 ccid2_hc_tx_check_sanity(hctx);
789 return 0;
790}
791
792static void ccid2_hc_tx_exit(struct sock *sk)
793{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900794 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700795 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800796
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800797 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700798
799 for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
800 kfree(hctx->ccid2hctx_seqbuf[i]);
801 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800802}
803
804static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
805{
806 const struct dccp_sock *dp = dccp_sk(sk);
807 struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
808
809 switch (DCCP_SKB_CB(skb)->dccpd_type) {
810 case DCCP_PKT_DATA:
811 case DCCP_PKT_DATAACK:
812 hcrx->ccid2hcrx_data++;
813 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
814 dccp_send_ack(sk);
815 hcrx->ccid2hcrx_data = 0;
816 }
817 break;
818 }
819}
820
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800821static struct ccid_operations ccid2 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200822 .ccid_id = DCCPC_CCID2,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800823 .ccid_name = "ccid2",
824 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800825 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800826 .ccid_hc_tx_init = ccid2_hc_tx_init,
827 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
828 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
829 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
830 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800831 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800832 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
833};
834
Gerrit Renker84116712006-11-20 18:26:03 -0200835#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker042d18f2007-10-04 14:39:53 -0700836module_param(ccid2_debug, bool, 0444);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800837MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200838#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800839
840static __init int ccid2_module_init(void)
841{
842 return ccid_register(&ccid2);
843}
844module_init(ccid2_module_init);
845
846static __exit void ccid2_module_exit(void)
847{
848 ccid_unregister(&ccid2);
849}
850module_exit(ccid2_module_exit);
851
852MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800853MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800854MODULE_LICENSE("GPL");
855MODULE_ALIAS("net-dccp-ccid-2");