blob: 2d1b7e30a73c469d462350090cbc98f8d331b4f1 [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
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800129 if (hctx->ccid2hctx_pipe < hctx->ccid2hctx_cwnd) {
130 /* OK we can send... make sure previous packet was sent off */
131 if (!hctx->ccid2hctx_sendwait) {
132 hctx->ccid2hctx_sendwait = 1;
133 return 0;
134 }
135 }
136
Andrea Bittau446dec32006-09-19 13:10:11 -0700137 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800138}
139
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200140static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800141{
142 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200143 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->ccid2hctx_cwnd, 2);
144
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800145 /*
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200146 * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
147 * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
148 * acceptable since this causes starvation/deadlock whenever cwnd < 2.
149 * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800150 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200151 if (val == 0 || val > max_ratio) {
152 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
153 val = max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800154 }
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200155 if (val > 0xFFFF) /* RFC 4340, 11.3 */
156 val = 0xFFFF;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800157
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200158 if (val == dp->dccps_l_ack_ratio)
159 return;
160
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200161 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800162 dp->dccps_l_ack_ratio = val;
163}
164
Andrea Bittau593f16a2006-09-19 13:15:33 -0700165static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
166{
167 ccid2_pr_debug("change SRTT to %ld\n", val);
168 hctx->ccid2hctx_srtt = val;
169}
170
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800171static void ccid2_start_rto_timer(struct sock *sk);
172
173static void ccid2_hc_tx_rto_expire(unsigned long data)
174{
175 struct sock *sk = (struct sock *)data;
176 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
177 long s;
178
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800179 bh_lock_sock(sk);
180 if (sock_owned_by_user(sk)) {
181 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
182 jiffies + HZ / 5);
183 goto out;
184 }
185
186 ccid2_pr_debug("RTO_EXPIRE\n");
187
188 ccid2_hc_tx_check_sanity(hctx);
189
190 /* back-off timer */
191 hctx->ccid2hctx_rto <<= 1;
192
193 s = hctx->ccid2hctx_rto / HZ;
194 if (s > 60)
195 hctx->ccid2hctx_rto = 60 * HZ;
196
197 ccid2_start_rto_timer(sk);
198
199 /* adjust pipe, cwnd etc */
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200200 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd / 2;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800201 if (hctx->ccid2hctx_ssthresh < 2)
202 hctx->ccid2hctx_ssthresh = 2;
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200203 hctx->ccid2hctx_cwnd = 1;
Gerrit Renker95b21d72007-11-24 22:06:52 -0200204 hctx->ccid2hctx_pipe = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800205
206 /* clear state about stuff we sent */
207 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
208 hctx->ccid2hctx_ssacks = 0;
209 hctx->ccid2hctx_acks = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800210
211 /* clear ack ratio state. */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800212 hctx->ccid2hctx_rpseq = 0;
213 hctx->ccid2hctx_rpdupack = -1;
214 ccid2_change_l_ack_ratio(sk, 1);
215 ccid2_hc_tx_check_sanity(hctx);
216out:
217 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800218 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800219}
220
221static void ccid2_start_rto_timer(struct sock *sk)
222{
223 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
224
225 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
226
227 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
228 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
229 jiffies + hctx->ccid2hctx_rto);
230}
231
Gerrit Renker6b57c932006-11-28 19:55:06 -0200232static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800233{
234 struct dccp_sock *dp = dccp_sk(sk);
235 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700236 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800237 u64 seq;
238
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800239 BUG_ON(!hctx->ccid2hctx_sendwait);
240 hctx->ccid2hctx_sendwait = 0;
Gerrit Renker95b21d72007-11-24 22:06:52 -0200241 hctx->ccid2hctx_pipe++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800242
243 /* There is an issue. What if another packet is sent between
244 * packet_send() and packet_sent(). Then the sequence number would be
245 * wrong.
246 * -sorbo.
247 */
248 seq = dp->dccps_gss;
249
250 hctx->ccid2hctx_seqh->ccid2s_seq = seq;
251 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
252 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700253
254 next = hctx->ccid2hctx_seqh->ccid2s_next;
255 /* check if we need to alloc more space */
256 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700257 if (ccid2_hc_tx_alloc_seq(hctx)) {
258 DCCP_CRIT("packet history - out of memory!");
259 /* FIXME: find a more graceful way to bail out */
260 return;
261 }
Andrea Bittau07978aa2006-09-19 13:13:37 -0700262 next = hctx->ccid2hctx_seqh->ccid2s_next;
263 BUG_ON(next == hctx->ccid2hctx_seqt);
264 }
265 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800266
267 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
268 hctx->ccid2hctx_pipe);
269
Gerrit Renker900bfed2007-11-24 21:58:33 -0200270 /*
271 * FIXME: The code below is broken and the variables have been removed
272 * from the socket struct. The `ackloss' variable was always set to 0,
273 * and with arsent there are several problems:
274 * (i) it doesn't just count the number of Acks, but all sent packets;
275 * (ii) it is expressed in # of packets, not # of windows, so the
276 * comparison below uses the wrong formula: Appendix A of RFC 4341
277 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
278 * of data with no lost or marked Ack packets. If arsent were the # of
279 * consecutive Acks received without loss, then Ack Ratio needs to be
280 * decreased by 1 when
281 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
282 * where cwnd / R is the number of Acks received per window of data
283 * (cf. RFC 4341, App. A). The problems are that
284 * - arsent counts other packets as well;
285 * - the comparison uses a formula different from RFC 4341;
286 * - computing a cubic/quadratic equation each time is too complicated.
287 * Hence a different algorithm is needed.
288 */
289#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800290 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
291 hctx->ccid2hctx_arsent++;
292 /* We had an ack loss in this window... */
293 if (hctx->ccid2hctx_ackloss) {
294 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800295 hctx->ccid2hctx_arsent = 0;
296 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800297 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800298 } else {
299 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800300 /* decrease ack ratio if enough packets were sent */
301 if (dp->dccps_l_ack_ratio > 1) {
302 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800303 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
304 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800305
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800306 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
307
308 if (hctx->ccid2hctx_arsent >= denom) {
309 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
310 hctx->ccid2hctx_arsent = 0;
311 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800312 } else {
313 /* we can't increase ack ratio further [1] */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800314 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
315 }
316 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200317#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800318
319 /* setup RTO timer */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800320 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800321 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800322
Andrea Bittau8d424f62006-09-19 13:12:44 -0700323#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Randy Dunlap234af482006-10-29 16:03:30 -0800324 ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800325 do {
326 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
327
328 while (seqp != hctx->ccid2hctx_seqh) {
329 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200330 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800331 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800332 seqp = seqp->ccid2s_next;
333 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800334 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800335 ccid2_pr_debug("=========\n");
336 ccid2_hc_tx_check_sanity(hctx);
337#endif
338}
339
340/* XXX Lame code duplication!
341 * returns -1 if none was found.
342 * else returns the next offset to use in the function call.
343 */
344static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
345 unsigned char **vec, unsigned char *veclen)
346{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900347 const struct dccp_hdr *dh = dccp_hdr(skb);
348 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
349 unsigned char *opt_ptr;
350 const unsigned char *opt_end = (unsigned char *)dh +
351 (dh->dccph_doff * 4);
352 unsigned char opt, len;
353 unsigned char *value;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800354
355 BUG_ON(offset < 0);
356 options += offset;
357 opt_ptr = options;
358 if (opt_ptr >= opt_end)
359 return -1;
360
361 while (opt_ptr != opt_end) {
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900362 opt = *opt_ptr++;
363 len = 0;
364 value = NULL;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800365
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900366 /* Check if this isn't a single byte option */
367 if (opt > DCCPO_MAX_RESERVED) {
368 if (opt_ptr == opt_end)
369 goto out_invalid_option;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800370
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900371 len = *opt_ptr++;
372 if (len < 3)
373 goto out_invalid_option;
374 /*
375 * Remove the type and len fields, leaving
376 * just the value size
377 */
378 len -= 2;
379 value = opt_ptr;
380 opt_ptr += len;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800381
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900382 if (opt_ptr > opt_end)
383 goto out_invalid_option;
384 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800385
386 switch (opt) {
387 case DCCPO_ACK_VECTOR_0:
388 case DCCPO_ACK_VECTOR_1:
389 *vec = value;
390 *veclen = len;
391 return offset + (opt_ptr - options);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800392 }
393 }
394
395 return -1;
396
397out_invalid_option:
Gerrit Renker59348b12006-11-20 18:39:23 -0200398 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800399 return -1;
400}
401
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800402static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800403{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800404 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
405
406 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
407 ccid2_pr_debug("deleted RTO timer\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800408}
409
410static inline void ccid2_new_ack(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900411 struct ccid2_seq *seqp,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800412 unsigned int *maxincr)
413{
414 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
415
416 /* slow start */
417 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
418 hctx->ccid2hctx_acks = 0;
419
420 /* We can increase cwnd at most maxincr [ack_ratio/2] */
421 if (*maxincr) {
422 /* increase every 2 acks */
423 hctx->ccid2hctx_ssacks++;
424 if (hctx->ccid2hctx_ssacks == 2) {
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200425 hctx->ccid2hctx_cwnd++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800426 hctx->ccid2hctx_ssacks = 0;
427 *maxincr = *maxincr - 1;
428 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800429 } else {
430 /* increased cwnd enough for this single ack */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800431 hctx->ccid2hctx_ssacks = 0;
432 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800433 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800434 hctx->ccid2hctx_ssacks = 0;
435 hctx->ccid2hctx_acks++;
436
437 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200438 hctx->ccid2hctx_cwnd++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800439 hctx->ccid2hctx_acks = 0;
440 }
441 }
442
443 /* update RTO */
444 if (hctx->ccid2hctx_srtt == -1 ||
Andrea Bittau29651cd2006-09-19 13:06:46 -0700445 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
446 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800447 int s;
448
449 /* first measurement */
450 if (hctx->ccid2hctx_srtt == -1) {
451 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200452 r, jiffies,
Randy Dunlap234af482006-10-29 16:03:30 -0800453 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau593f16a2006-09-19 13:15:33 -0700454 ccid2_change_srtt(hctx, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800455 hctx->ccid2hctx_rttvar = r >> 1;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800456 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800457 /* RTTVAR */
458 long tmp = hctx->ccid2hctx_srtt - r;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700459 long srtt;
460
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800461 if (tmp < 0)
462 tmp *= -1;
463
464 tmp >>= 2;
465 hctx->ccid2hctx_rttvar *= 3;
466 hctx->ccid2hctx_rttvar >>= 2;
467 hctx->ccid2hctx_rttvar += tmp;
468
469 /* SRTT */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700470 srtt = hctx->ccid2hctx_srtt;
471 srtt *= 7;
472 srtt >>= 3;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800473 tmp = r >> 3;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700474 srtt += tmp;
475 ccid2_change_srtt(hctx, srtt);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800476 }
477 s = hctx->ccid2hctx_rttvar << 2;
478 /* clock granularity is 1 when based on jiffies */
479 if (!s)
480 s = 1;
481 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
482
483 /* must be at least a second */
484 s = hctx->ccid2hctx_rto / HZ;
485 /* DCCP doesn't require this [but I like it cuz my code sux] */
486#if 1
487 if (s < 1)
488 hctx->ccid2hctx_rto = HZ;
489#endif
490 /* max 60 seconds */
491 if (s > 60)
492 hctx->ccid2hctx_rto = HZ * 60;
493
494 hctx->ccid2hctx_lastrtt = jiffies;
495
496 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200497 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
498 hctx->ccid2hctx_rto, HZ, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800499 }
500
501 /* we got a new ack, so re-start RTO timer */
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800502 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800503 ccid2_start_rto_timer(sk);
504}
505
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800506static void ccid2_hc_tx_dec_pipe(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800507{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800508 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
509
Gerrit Renker95b21d72007-11-24 22:06:52 -0200510 if (hctx->ccid2hctx_pipe == 0)
511 DCCP_BUG("pipe == 0");
512 else
513 hctx->ccid2hctx_pipe--;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800514
515 if (hctx->ccid2hctx_pipe == 0)
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800516 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800517}
518
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200519static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700520{
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200521 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
522
Andrea Bittau374bcf32006-09-19 13:14:43 -0700523 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
524 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
525 return;
526 }
527
528 hctx->ccid2hctx_last_cong = jiffies;
529
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200530 hctx->ccid2hctx_cwnd = hctx->ccid2hctx_cwnd / 2 ? : 1U;
531 hctx->ccid2hctx_ssthresh = max(hctx->ccid2hctx_cwnd, 2U);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200532
533 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
534 if (dccp_sk(sk)->dccps_l_ack_ratio > hctx->ccid2hctx_cwnd)
535 ccid2_change_l_ack_ratio(sk, hctx->ccid2hctx_cwnd);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700536}
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 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200571 if (hctx->ccid2hctx_rpdupack >= NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800572 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
573 hctx->ccid2hctx_rpseq = 0;
574
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200575 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800576 }
577 }
578 }
579
580 /* check forward path congestion */
581 /* still didn't send out new data packets */
582 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
583 return;
584
585 switch (DCCP_SKB_CB(skb)->dccpd_type) {
586 case DCCP_PKT_ACK:
587 case DCCP_PKT_DATAACK:
588 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800589 default:
590 return;
591 }
592
593 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Andrea Bittau32aac182006-11-16 14:28:40 -0200594 if (after48(ackno, hctx->ccid2hctx_high_ack))
595 hctx->ccid2hctx_high_ack = ackno;
596
597 seqp = hctx->ccid2hctx_seqt;
598 while (before48(seqp->ccid2s_seq, ackno)) {
599 seqp = seqp->ccid2s_next;
600 if (seqp == hctx->ccid2hctx_seqh) {
601 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
602 break;
603 }
604 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800605
606 /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
607 * this single ack. I round up.
608 * -sorbo.
609 */
610 maxincr = dp->dccps_l_ack_ratio >> 1;
611 maxincr++;
612
613 /* go through all ack vectors */
614 while ((offset = ccid2_ackvector(sk, skb, offset,
615 &vector, &veclen)) != -1) {
616 /* go through this ack vector */
617 while (veclen--) {
618 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200619 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800620
Randy Dunlap234af482006-10-29 16:03:30 -0800621 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
622 (unsigned long long)ackno,
623 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800624 /* if the seqno we are analyzing is larger than the
625 * current ackno, then move towards the tail of our
626 * seqnos.
627 */
628 while (after48(seqp->ccid2s_seq, ackno)) {
629 if (seqp == hctx->ccid2hctx_seqt) {
630 done = 1;
631 break;
632 }
633 seqp = seqp->ccid2s_prev;
634 }
635 if (done)
636 break;
637
638 /* check all seqnos in the range of the vector
639 * run length
640 */
641 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Andrea Bittau8e27e462006-09-19 13:05:35 -0700642 const u8 state = *vector &
643 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800644
645 /* new packet received or marked */
646 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
647 !seqp->ccid2s_acked) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200648 if (state ==
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800649 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200650 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700651 seqp);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800652 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800653 ccid2_new_ack(sk, seqp,
654 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800655
656 seqp->ccid2s_acked = 1;
657 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800658 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800659 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800660 }
661 if (seqp == hctx->ccid2hctx_seqt) {
662 done = 1;
663 break;
664 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200665 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800666 }
667 if (done)
668 break;
669
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200670 ackno = SUB48(ackno_end_rl, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800671 vector++;
672 }
673 if (done)
674 break;
675 }
676
677 /* The state about what is acked should be correct now
678 * Check for NUMDUPACK
679 */
Andrea Bittau32aac182006-11-16 14:28:40 -0200680 seqp = hctx->ccid2hctx_seqt;
681 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
682 seqp = seqp->ccid2s_next;
683 if (seqp == hctx->ccid2hctx_seqh) {
684 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
685 break;
686 }
687 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800688 done = 0;
689 while (1) {
690 if (seqp->ccid2s_acked) {
691 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200692 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800693 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800694 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800695 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800696 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800697 seqp = seqp->ccid2s_prev;
698 }
699
700 /* If there are at least 3 acknowledgements, anything unacknowledged
701 * below the last sequence number is considered lost
702 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200703 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800704 struct ccid2_seq *last_acked = seqp;
705
706 /* check for lost packets */
707 while (1) {
708 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700709 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800710 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700711 /* XXX need to traverse from tail -> head in
712 * order to detect multiple congestion events in
713 * one ack vector.
714 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200715 ccid2_congestion_event(sk, seqp);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800716 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800717 }
718 if (seqp == hctx->ccid2hctx_seqt)
719 break;
720 seqp = seqp->ccid2s_prev;
721 }
722
723 hctx->ccid2hctx_seqt = last_acked;
724 }
725
726 /* trim acked packets in tail */
727 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
728 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
729 break;
730
731 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
732 }
733
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800734 ccid2_hc_tx_check_sanity(hctx);
735}
736
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800737static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800738{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900739 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200740 struct dccp_sock *dp = dccp_sk(sk);
741 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800742
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200743 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200744 hctx->ccid2hctx_ssthresh = ~0U;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800745
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200746 /*
747 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
748 * packets for new connections, following the rules from [RFC3390]".
749 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
750 */
751 hctx->ccid2hctx_cwnd = min(4U, max(2U, 4380U / dp->dccps_mss_cache));
752
753 /* Make sure that Ack Ratio is enabled and within bounds. */
754 max_ratio = DIV_ROUND_UP(hctx->ccid2hctx_cwnd, 2);
755 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
756 dp->dccps_l_ack_ratio = max_ratio;
757
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800758 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700759 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800760 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800761
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800762 hctx->ccid2hctx_rto = 3 * HZ;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700763 ccid2_change_srtt(hctx, -1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800764 hctx->ccid2hctx_rttvar = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800765 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700766 hctx->ccid2hctx_last_cong = jiffies;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800767 setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
768 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800769
770 ccid2_hc_tx_check_sanity(hctx);
771 return 0;
772}
773
774static void ccid2_hc_tx_exit(struct sock *sk)
775{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900776 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700777 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800778
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800779 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700780
781 for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
782 kfree(hctx->ccid2hctx_seqbuf[i]);
783 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800784}
785
786static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
787{
788 const struct dccp_sock *dp = dccp_sk(sk);
789 struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
790
791 switch (DCCP_SKB_CB(skb)->dccpd_type) {
792 case DCCP_PKT_DATA:
793 case DCCP_PKT_DATAACK:
794 hcrx->ccid2hcrx_data++;
795 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
796 dccp_send_ack(sk);
797 hcrx->ccid2hcrx_data = 0;
798 }
799 break;
800 }
801}
802
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800803static struct ccid_operations ccid2 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200804 .ccid_id = DCCPC_CCID2,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800805 .ccid_name = "ccid2",
806 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800807 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800808 .ccid_hc_tx_init = ccid2_hc_tx_init,
809 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
810 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
811 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
812 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800813 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800814 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
815};
816
Gerrit Renker84116712006-11-20 18:26:03 -0200817#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker042d18f2007-10-04 14:39:53 -0700818module_param(ccid2_debug, bool, 0444);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800819MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200820#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800821
822static __init int ccid2_module_init(void)
823{
824 return ccid_register(&ccid2);
825}
826module_init(ccid2_module_init);
827
828static __exit void ccid2_module_exit(void)
829{
830 ccid_unregister(&ccid2);
831}
832module_exit(ccid2_module_exit);
833
834MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800835MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800836MODULE_LICENSE("GPL");
837MODULE_ALIAS("net-dccp-ccid-2");