blob: a3c42cd00b00b3b03335222590150052a058ad98 [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);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200146 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->ccid2hctx_cwnd, 2);
147
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800148 /*
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200149 * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
150 * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
151 * acceptable since this causes starvation/deadlock whenever cwnd < 2.
152 * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800153 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200154 if (val == 0 || val > max_ratio) {
155 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
156 val = max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800157 }
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200158 if (val > 0xFFFF) /* RFC 4340, 11.3 */
159 val = 0xFFFF;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800160
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200161 if (val == dp->dccps_l_ack_ratio)
162 return;
163
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200164 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800165 dp->dccps_l_ack_ratio = val;
166}
167
Gerrit Renkeree196c22007-10-04 14:41:55 -0700168static void ccid2_change_cwnd(struct ccid2_hc_tx_sock *hctx, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800169{
Gerrit Renkeree196c22007-10-04 14:41:55 -0700170 hctx->ccid2hctx_cwnd = val? : 1;
171 ccid2_pr_debug("changed cwnd to %u\n", hctx->ccid2hctx_cwnd);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800172}
173
Andrea Bittau593f16a2006-09-19 13:15:33 -0700174static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
175{
176 ccid2_pr_debug("change SRTT to %ld\n", val);
177 hctx->ccid2hctx_srtt = val;
178}
179
180static void ccid2_change_pipe(struct ccid2_hc_tx_sock *hctx, long val)
181{
182 hctx->ccid2hctx_pipe = val;
183}
184
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800185static void ccid2_start_rto_timer(struct sock *sk);
186
187static void ccid2_hc_tx_rto_expire(unsigned long data)
188{
189 struct sock *sk = (struct sock *)data;
190 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
191 long s;
192
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800193 bh_lock_sock(sk);
194 if (sock_owned_by_user(sk)) {
195 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
196 jiffies + HZ / 5);
197 goto out;
198 }
199
200 ccid2_pr_debug("RTO_EXPIRE\n");
201
202 ccid2_hc_tx_check_sanity(hctx);
203
204 /* back-off timer */
205 hctx->ccid2hctx_rto <<= 1;
206
207 s = hctx->ccid2hctx_rto / HZ;
208 if (s > 60)
209 hctx->ccid2hctx_rto = 60 * HZ;
210
211 ccid2_start_rto_timer(sk);
212
213 /* adjust pipe, cwnd etc */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700214 ccid2_change_pipe(hctx, 0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800215 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd >> 1;
216 if (hctx->ccid2hctx_ssthresh < 2)
217 hctx->ccid2hctx_ssthresh = 2;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700218 ccid2_change_cwnd(hctx, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800219
220 /* clear state about stuff we sent */
221 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
222 hctx->ccid2hctx_ssacks = 0;
223 hctx->ccid2hctx_acks = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800224
225 /* clear ack ratio state. */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800226 hctx->ccid2hctx_rpseq = 0;
227 hctx->ccid2hctx_rpdupack = -1;
228 ccid2_change_l_ack_ratio(sk, 1);
229 ccid2_hc_tx_check_sanity(hctx);
230out:
231 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800232 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800233}
234
235static void ccid2_start_rto_timer(struct sock *sk)
236{
237 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
238
239 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
240
241 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
242 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
243 jiffies + hctx->ccid2hctx_rto);
244}
245
Gerrit Renker6b57c932006-11-28 19:55:06 -0200246static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800247{
248 struct dccp_sock *dp = dccp_sk(sk);
249 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700250 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800251 u64 seq;
252
253 ccid2_hc_tx_check_sanity(hctx);
254
255 BUG_ON(!hctx->ccid2hctx_sendwait);
256 hctx->ccid2hctx_sendwait = 0;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700257 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800258 BUG_ON(hctx->ccid2hctx_pipe < 0);
259
260 /* There is an issue. What if another packet is sent between
261 * packet_send() and packet_sent(). Then the sequence number would be
262 * wrong.
263 * -sorbo.
264 */
265 seq = dp->dccps_gss;
266
267 hctx->ccid2hctx_seqh->ccid2s_seq = seq;
268 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
269 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700270
271 next = hctx->ccid2hctx_seqh->ccid2s_next;
272 /* check if we need to alloc more space */
273 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700274 if (ccid2_hc_tx_alloc_seq(hctx)) {
275 DCCP_CRIT("packet history - out of memory!");
276 /* FIXME: find a more graceful way to bail out */
277 return;
278 }
Andrea Bittau07978aa2006-09-19 13:13:37 -0700279 next = hctx->ccid2hctx_seqh->ccid2s_next;
280 BUG_ON(next == hctx->ccid2hctx_seqt);
281 }
282 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800283
284 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
285 hctx->ccid2hctx_pipe);
286
Gerrit Renker900bfed2007-11-24 21:58:33 -0200287 /*
288 * FIXME: The code below is broken and the variables have been removed
289 * from the socket struct. The `ackloss' variable was always set to 0,
290 * and with arsent there are several problems:
291 * (i) it doesn't just count the number of Acks, but all sent packets;
292 * (ii) it is expressed in # of packets, not # of windows, so the
293 * comparison below uses the wrong formula: Appendix A of RFC 4341
294 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
295 * of data with no lost or marked Ack packets. If arsent were the # of
296 * consecutive Acks received without loss, then Ack Ratio needs to be
297 * decreased by 1 when
298 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
299 * where cwnd / R is the number of Acks received per window of data
300 * (cf. RFC 4341, App. A). The problems are that
301 * - arsent counts other packets as well;
302 * - the comparison uses a formula different from RFC 4341;
303 * - computing a cubic/quadratic equation each time is too complicated.
304 * Hence a different algorithm is needed.
305 */
306#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800307 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
308 hctx->ccid2hctx_arsent++;
309 /* We had an ack loss in this window... */
310 if (hctx->ccid2hctx_ackloss) {
311 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800312 hctx->ccid2hctx_arsent = 0;
313 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800314 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800315 } else {
316 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800317 /* decrease ack ratio if enough packets were sent */
318 if (dp->dccps_l_ack_ratio > 1) {
319 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800320 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
321 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800322
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800323 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
324
325 if (hctx->ccid2hctx_arsent >= denom) {
326 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
327 hctx->ccid2hctx_arsent = 0;
328 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800329 } else {
330 /* we can't increase ack ratio further [1] */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800331 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
332 }
333 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200334#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800335
336 /* setup RTO timer */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800337 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800338 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800339
Andrea Bittau8d424f62006-09-19 13:12:44 -0700340#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800341 ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
Randy Dunlap234af482006-10-29 16:03:30 -0800342 ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800343 do {
344 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
345
346 while (seqp != hctx->ccid2hctx_seqh) {
347 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200348 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800349 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800350 seqp = seqp->ccid2s_next;
351 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800352 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800353 ccid2_pr_debug("=========\n");
354 ccid2_hc_tx_check_sanity(hctx);
355#endif
356}
357
358/* XXX Lame code duplication!
359 * returns -1 if none was found.
360 * else returns the next offset to use in the function call.
361 */
362static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
363 unsigned char **vec, unsigned char *veclen)
364{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900365 const struct dccp_hdr *dh = dccp_hdr(skb);
366 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
367 unsigned char *opt_ptr;
368 const unsigned char *opt_end = (unsigned char *)dh +
369 (dh->dccph_doff * 4);
370 unsigned char opt, len;
371 unsigned char *value;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800372
373 BUG_ON(offset < 0);
374 options += offset;
375 opt_ptr = options;
376 if (opt_ptr >= opt_end)
377 return -1;
378
379 while (opt_ptr != opt_end) {
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900380 opt = *opt_ptr++;
381 len = 0;
382 value = NULL;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800383
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900384 /* Check if this isn't a single byte option */
385 if (opt > DCCPO_MAX_RESERVED) {
386 if (opt_ptr == opt_end)
387 goto out_invalid_option;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800388
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900389 len = *opt_ptr++;
390 if (len < 3)
391 goto out_invalid_option;
392 /*
393 * Remove the type and len fields, leaving
394 * just the value size
395 */
396 len -= 2;
397 value = opt_ptr;
398 opt_ptr += len;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800399
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900400 if (opt_ptr > opt_end)
401 goto out_invalid_option;
402 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800403
404 switch (opt) {
405 case DCCPO_ACK_VECTOR_0:
406 case DCCPO_ACK_VECTOR_1:
407 *vec = value;
408 *veclen = len;
409 return offset + (opt_ptr - options);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800410 }
411 }
412
413 return -1;
414
415out_invalid_option:
Gerrit Renker59348b12006-11-20 18:39:23 -0200416 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800417 return -1;
418}
419
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800420static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800421{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800422 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
423
424 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
425 ccid2_pr_debug("deleted RTO timer\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800426}
427
428static inline void ccid2_new_ack(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900429 struct ccid2_seq *seqp,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800430 unsigned int *maxincr)
431{
432 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
433
434 /* slow start */
435 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
436 hctx->ccid2hctx_acks = 0;
437
438 /* We can increase cwnd at most maxincr [ack_ratio/2] */
439 if (*maxincr) {
440 /* increase every 2 acks */
441 hctx->ccid2hctx_ssacks++;
442 if (hctx->ccid2hctx_ssacks == 2) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700443 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd+1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800444 hctx->ccid2hctx_ssacks = 0;
445 *maxincr = *maxincr - 1;
446 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800447 } else {
448 /* increased cwnd enough for this single ack */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800449 hctx->ccid2hctx_ssacks = 0;
450 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800451 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800452 hctx->ccid2hctx_ssacks = 0;
453 hctx->ccid2hctx_acks++;
454
455 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700456 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800457 hctx->ccid2hctx_acks = 0;
458 }
459 }
460
461 /* update RTO */
462 if (hctx->ccid2hctx_srtt == -1 ||
Andrea Bittau29651cd2006-09-19 13:06:46 -0700463 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
464 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800465 int s;
466
467 /* first measurement */
468 if (hctx->ccid2hctx_srtt == -1) {
469 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200470 r, jiffies,
Randy Dunlap234af482006-10-29 16:03:30 -0800471 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau593f16a2006-09-19 13:15:33 -0700472 ccid2_change_srtt(hctx, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800473 hctx->ccid2hctx_rttvar = r >> 1;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800474 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800475 /* RTTVAR */
476 long tmp = hctx->ccid2hctx_srtt - r;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700477 long srtt;
478
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800479 if (tmp < 0)
480 tmp *= -1;
481
482 tmp >>= 2;
483 hctx->ccid2hctx_rttvar *= 3;
484 hctx->ccid2hctx_rttvar >>= 2;
485 hctx->ccid2hctx_rttvar += tmp;
486
487 /* SRTT */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700488 srtt = hctx->ccid2hctx_srtt;
489 srtt *= 7;
490 srtt >>= 3;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800491 tmp = r >> 3;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700492 srtt += tmp;
493 ccid2_change_srtt(hctx, srtt);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800494 }
495 s = hctx->ccid2hctx_rttvar << 2;
496 /* clock granularity is 1 when based on jiffies */
497 if (!s)
498 s = 1;
499 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
500
501 /* must be at least a second */
502 s = hctx->ccid2hctx_rto / HZ;
503 /* DCCP doesn't require this [but I like it cuz my code sux] */
504#if 1
505 if (s < 1)
506 hctx->ccid2hctx_rto = HZ;
507#endif
508 /* max 60 seconds */
509 if (s > 60)
510 hctx->ccid2hctx_rto = HZ * 60;
511
512 hctx->ccid2hctx_lastrtt = jiffies;
513
514 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200515 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
516 hctx->ccid2hctx_rto, HZ, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800517 }
518
519 /* we got a new ack, so re-start RTO timer */
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800520 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800521 ccid2_start_rto_timer(sk);
522}
523
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800524static void ccid2_hc_tx_dec_pipe(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800525{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800526 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
527
Andrea Bittau593f16a2006-09-19 13:15:33 -0700528 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe-1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800529 BUG_ON(hctx->ccid2hctx_pipe < 0);
530
531 if (hctx->ccid2hctx_pipe == 0)
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800532 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800533}
534
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200535static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700536{
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200537 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
538
Andrea Bittau374bcf32006-09-19 13:14:43 -0700539 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
540 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
541 return;
542 }
543
544 hctx->ccid2hctx_last_cong = jiffies;
545
546 ccid2_change_cwnd(hctx, hctx->ccid2hctx_cwnd >> 1);
547 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd;
548 if (hctx->ccid2hctx_ssthresh < 2)
549 hctx->ccid2hctx_ssthresh = 2;
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200550
551 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
552 if (dccp_sk(sk)->dccps_l_ack_ratio > hctx->ccid2hctx_cwnd)
553 ccid2_change_l_ack_ratio(sk, hctx->ccid2hctx_cwnd);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700554}
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 */
Gerrit Renker5e285992007-10-04 14:43:09 -0700582 if (dccp_delta_seqno(hctx->ccid2hctx_rpseq, seqno) == 1)
583 hctx->ccid2hctx_rpseq = seqno;
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 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200589 if (hctx->ccid2hctx_rpdupack >= NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800590 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
591 hctx->ccid2hctx_rpseq = 0;
592
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200593 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800594 }
595 }
596 }
597
598 /* check forward path congestion */
599 /* still didn't send out new data packets */
600 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
601 return;
602
603 switch (DCCP_SKB_CB(skb)->dccpd_type) {
604 case DCCP_PKT_ACK:
605 case DCCP_PKT_DATAACK:
606 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800607 default:
608 return;
609 }
610
611 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Andrea Bittau32aac182006-11-16 14:28:40 -0200612 if (after48(ackno, hctx->ccid2hctx_high_ack))
613 hctx->ccid2hctx_high_ack = ackno;
614
615 seqp = hctx->ccid2hctx_seqt;
616 while (before48(seqp->ccid2s_seq, ackno)) {
617 seqp = seqp->ccid2s_next;
618 if (seqp == hctx->ccid2hctx_seqh) {
619 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
620 break;
621 }
622 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800623
624 /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
625 * this single ack. I round up.
626 * -sorbo.
627 */
628 maxincr = dp->dccps_l_ack_ratio >> 1;
629 maxincr++;
630
631 /* go through all ack vectors */
632 while ((offset = ccid2_ackvector(sk, skb, offset,
633 &vector, &veclen)) != -1) {
634 /* go through this ack vector */
635 while (veclen--) {
636 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200637 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800638
Randy Dunlap234af482006-10-29 16:03:30 -0800639 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
640 (unsigned long long)ackno,
641 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800642 /* if the seqno we are analyzing is larger than the
643 * current ackno, then move towards the tail of our
644 * seqnos.
645 */
646 while (after48(seqp->ccid2s_seq, ackno)) {
647 if (seqp == hctx->ccid2hctx_seqt) {
648 done = 1;
649 break;
650 }
651 seqp = seqp->ccid2s_prev;
652 }
653 if (done)
654 break;
655
656 /* check all seqnos in the range of the vector
657 * run length
658 */
659 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Andrea Bittau8e27e462006-09-19 13:05:35 -0700660 const u8 state = *vector &
661 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800662
663 /* new packet received or marked */
664 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
665 !seqp->ccid2s_acked) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200666 if (state ==
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800667 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200668 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700669 seqp);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800670 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800671 ccid2_new_ack(sk, seqp,
672 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800673
674 seqp->ccid2s_acked = 1;
675 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800676 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800677 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800678 }
679 if (seqp == hctx->ccid2hctx_seqt) {
680 done = 1;
681 break;
682 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200683 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800684 }
685 if (done)
686 break;
687
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200688 ackno = SUB48(ackno_end_rl, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800689 vector++;
690 }
691 if (done)
692 break;
693 }
694
695 /* The state about what is acked should be correct now
696 * Check for NUMDUPACK
697 */
Andrea Bittau32aac182006-11-16 14:28:40 -0200698 seqp = hctx->ccid2hctx_seqt;
699 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
700 seqp = seqp->ccid2s_next;
701 if (seqp == hctx->ccid2hctx_seqh) {
702 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
703 break;
704 }
705 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800706 done = 0;
707 while (1) {
708 if (seqp->ccid2s_acked) {
709 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200710 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800711 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800712 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800713 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800714 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800715 seqp = seqp->ccid2s_prev;
716 }
717
718 /* If there are at least 3 acknowledgements, anything unacknowledged
719 * below the last sequence number is considered lost
720 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200721 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800722 struct ccid2_seq *last_acked = seqp;
723
724 /* check for lost packets */
725 while (1) {
726 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700727 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800728 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700729 /* XXX need to traverse from tail -> head in
730 * order to detect multiple congestion events in
731 * one ack vector.
732 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200733 ccid2_congestion_event(sk, seqp);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800734 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800735 }
736 if (seqp == hctx->ccid2hctx_seqt)
737 break;
738 seqp = seqp->ccid2s_prev;
739 }
740
741 hctx->ccid2hctx_seqt = last_acked;
742 }
743
744 /* trim acked packets in tail */
745 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
746 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
747 break;
748
749 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
750 }
751
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800752 ccid2_hc_tx_check_sanity(hctx);
753}
754
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800755static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800756{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900757 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200758 struct dccp_sock *dp = dccp_sk(sk);
759 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800760
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200761 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Andrea Bittaud458c252006-09-19 13:07:20 -0700762 hctx->ccid2hctx_ssthresh = ~0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800763
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200764 /*
765 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
766 * packets for new connections, following the rules from [RFC3390]".
767 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
768 */
769 hctx->ccid2hctx_cwnd = min(4U, max(2U, 4380U / dp->dccps_mss_cache));
770
771 /* Make sure that Ack Ratio is enabled and within bounds. */
772 max_ratio = DIV_ROUND_UP(hctx->ccid2hctx_cwnd, 2);
773 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
774 dp->dccps_l_ack_ratio = max_ratio;
775
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800776 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700777 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800778 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800779
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800780 hctx->ccid2hctx_rto = 3 * HZ;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700781 ccid2_change_srtt(hctx, -1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800782 hctx->ccid2hctx_rttvar = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800783 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700784 hctx->ccid2hctx_last_cong = jiffies;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800785 setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
786 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800787
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");