blob: 747fa1c4e42e2d5488f3da964abbb1b09a7eef27 [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
Andrea Bittau593f16a2006-09-19 13:15:33 -0700168static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
169{
170 ccid2_pr_debug("change SRTT to %ld\n", val);
171 hctx->ccid2hctx_srtt = val;
172}
173
174static void ccid2_change_pipe(struct ccid2_hc_tx_sock *hctx, long val)
175{
176 hctx->ccid2hctx_pipe = val;
177}
178
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800179static void ccid2_start_rto_timer(struct sock *sk);
180
181static void ccid2_hc_tx_rto_expire(unsigned long data)
182{
183 struct sock *sk = (struct sock *)data;
184 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
185 long s;
186
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800187 bh_lock_sock(sk);
188 if (sock_owned_by_user(sk)) {
189 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
190 jiffies + HZ / 5);
191 goto out;
192 }
193
194 ccid2_pr_debug("RTO_EXPIRE\n");
195
196 ccid2_hc_tx_check_sanity(hctx);
197
198 /* back-off timer */
199 hctx->ccid2hctx_rto <<= 1;
200
201 s = hctx->ccid2hctx_rto / HZ;
202 if (s > 60)
203 hctx->ccid2hctx_rto = 60 * HZ;
204
205 ccid2_start_rto_timer(sk);
206
207 /* adjust pipe, cwnd etc */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700208 ccid2_change_pipe(hctx, 0);
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200209 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd / 2;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800210 if (hctx->ccid2hctx_ssthresh < 2)
211 hctx->ccid2hctx_ssthresh = 2;
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200212 hctx->ccid2hctx_cwnd = 1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800213
214 /* clear state about stuff we sent */
215 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
216 hctx->ccid2hctx_ssacks = 0;
217 hctx->ccid2hctx_acks = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800218
219 /* clear ack ratio state. */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800220 hctx->ccid2hctx_rpseq = 0;
221 hctx->ccid2hctx_rpdupack = -1;
222 ccid2_change_l_ack_ratio(sk, 1);
223 ccid2_hc_tx_check_sanity(hctx);
224out:
225 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800226 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800227}
228
229static void ccid2_start_rto_timer(struct sock *sk)
230{
231 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
232
233 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
234
235 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
236 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
237 jiffies + hctx->ccid2hctx_rto);
238}
239
Gerrit Renker6b57c932006-11-28 19:55:06 -0200240static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800241{
242 struct dccp_sock *dp = dccp_sk(sk);
243 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700244 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800245 u64 seq;
246
247 ccid2_hc_tx_check_sanity(hctx);
248
249 BUG_ON(!hctx->ccid2hctx_sendwait);
250 hctx->ccid2hctx_sendwait = 0;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700251 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe + 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800252 BUG_ON(hctx->ccid2hctx_pipe < 0);
253
254 /* There is an issue. What if another packet is sent between
255 * packet_send() and packet_sent(). Then the sequence number would be
256 * wrong.
257 * -sorbo.
258 */
259 seq = dp->dccps_gss;
260
261 hctx->ccid2hctx_seqh->ccid2s_seq = seq;
262 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
263 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700264
265 next = hctx->ccid2hctx_seqh->ccid2s_next;
266 /* check if we need to alloc more space */
267 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700268 if (ccid2_hc_tx_alloc_seq(hctx)) {
269 DCCP_CRIT("packet history - out of memory!");
270 /* FIXME: find a more graceful way to bail out */
271 return;
272 }
Andrea Bittau07978aa2006-09-19 13:13:37 -0700273 next = hctx->ccid2hctx_seqh->ccid2s_next;
274 BUG_ON(next == hctx->ccid2hctx_seqt);
275 }
276 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800277
278 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
279 hctx->ccid2hctx_pipe);
280
Gerrit Renker900bfed2007-11-24 21:58:33 -0200281 /*
282 * FIXME: The code below is broken and the variables have been removed
283 * from the socket struct. The `ackloss' variable was always set to 0,
284 * and with arsent there are several problems:
285 * (i) it doesn't just count the number of Acks, but all sent packets;
286 * (ii) it is expressed in # of packets, not # of windows, so the
287 * comparison below uses the wrong formula: Appendix A of RFC 4341
288 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
289 * of data with no lost or marked Ack packets. If arsent were the # of
290 * consecutive Acks received without loss, then Ack Ratio needs to be
291 * decreased by 1 when
292 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
293 * where cwnd / R is the number of Acks received per window of data
294 * (cf. RFC 4341, App. A). The problems are that
295 * - arsent counts other packets as well;
296 * - the comparison uses a formula different from RFC 4341;
297 * - computing a cubic/quadratic equation each time is too complicated.
298 * Hence a different algorithm is needed.
299 */
300#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800301 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
302 hctx->ccid2hctx_arsent++;
303 /* We had an ack loss in this window... */
304 if (hctx->ccid2hctx_ackloss) {
305 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800306 hctx->ccid2hctx_arsent = 0;
307 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800308 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800309 } else {
310 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800311 /* decrease ack ratio if enough packets were sent */
312 if (dp->dccps_l_ack_ratio > 1) {
313 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800314 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
315 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800316
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800317 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
318
319 if (hctx->ccid2hctx_arsent >= denom) {
320 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
321 hctx->ccid2hctx_arsent = 0;
322 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800323 } else {
324 /* we can't increase ack ratio further [1] */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800325 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
326 }
327 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200328#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800329
330 /* setup RTO timer */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800331 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800332 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800333
Andrea Bittau8d424f62006-09-19 13:12:44 -0700334#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800335 ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
Randy Dunlap234af482006-10-29 16:03:30 -0800336 ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800337 do {
338 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
339
340 while (seqp != hctx->ccid2hctx_seqh) {
341 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200342 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800343 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800344 seqp = seqp->ccid2s_next;
345 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800346 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800347 ccid2_pr_debug("=========\n");
348 ccid2_hc_tx_check_sanity(hctx);
349#endif
350}
351
352/* XXX Lame code duplication!
353 * returns -1 if none was found.
354 * else returns the next offset to use in the function call.
355 */
356static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
357 unsigned char **vec, unsigned char *veclen)
358{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900359 const struct dccp_hdr *dh = dccp_hdr(skb);
360 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
361 unsigned char *opt_ptr;
362 const unsigned char *opt_end = (unsigned char *)dh +
363 (dh->dccph_doff * 4);
364 unsigned char opt, len;
365 unsigned char *value;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800366
367 BUG_ON(offset < 0);
368 options += offset;
369 opt_ptr = options;
370 if (opt_ptr >= opt_end)
371 return -1;
372
373 while (opt_ptr != opt_end) {
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900374 opt = *opt_ptr++;
375 len = 0;
376 value = NULL;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800377
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900378 /* Check if this isn't a single byte option */
379 if (opt > DCCPO_MAX_RESERVED) {
380 if (opt_ptr == opt_end)
381 goto out_invalid_option;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800382
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900383 len = *opt_ptr++;
384 if (len < 3)
385 goto out_invalid_option;
386 /*
387 * Remove the type and len fields, leaving
388 * just the value size
389 */
390 len -= 2;
391 value = opt_ptr;
392 opt_ptr += len;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800393
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900394 if (opt_ptr > opt_end)
395 goto out_invalid_option;
396 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800397
398 switch (opt) {
399 case DCCPO_ACK_VECTOR_0:
400 case DCCPO_ACK_VECTOR_1:
401 *vec = value;
402 *veclen = len;
403 return offset + (opt_ptr - options);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800404 }
405 }
406
407 return -1;
408
409out_invalid_option:
Gerrit Renker59348b12006-11-20 18:39:23 -0200410 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800411 return -1;
412}
413
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800414static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800415{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800416 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
417
418 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
419 ccid2_pr_debug("deleted RTO timer\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800420}
421
422static inline void ccid2_new_ack(struct sock *sk,
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900423 struct ccid2_seq *seqp,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800424 unsigned int *maxincr)
425{
426 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
427
428 /* slow start */
429 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
430 hctx->ccid2hctx_acks = 0;
431
432 /* We can increase cwnd at most maxincr [ack_ratio/2] */
433 if (*maxincr) {
434 /* increase every 2 acks */
435 hctx->ccid2hctx_ssacks++;
436 if (hctx->ccid2hctx_ssacks == 2) {
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200437 hctx->ccid2hctx_cwnd++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800438 hctx->ccid2hctx_ssacks = 0;
439 *maxincr = *maxincr - 1;
440 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800441 } else {
442 /* increased cwnd enough for this single ack */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800443 hctx->ccid2hctx_ssacks = 0;
444 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800445 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800446 hctx->ccid2hctx_ssacks = 0;
447 hctx->ccid2hctx_acks++;
448
449 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200450 hctx->ccid2hctx_cwnd++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800451 hctx->ccid2hctx_acks = 0;
452 }
453 }
454
455 /* update RTO */
456 if (hctx->ccid2hctx_srtt == -1 ||
Andrea Bittau29651cd2006-09-19 13:06:46 -0700457 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
458 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800459 int s;
460
461 /* first measurement */
462 if (hctx->ccid2hctx_srtt == -1) {
463 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200464 r, jiffies,
Randy Dunlap234af482006-10-29 16:03:30 -0800465 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau593f16a2006-09-19 13:15:33 -0700466 ccid2_change_srtt(hctx, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800467 hctx->ccid2hctx_rttvar = r >> 1;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800468 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800469 /* RTTVAR */
470 long tmp = hctx->ccid2hctx_srtt - r;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700471 long srtt;
472
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800473 if (tmp < 0)
474 tmp *= -1;
475
476 tmp >>= 2;
477 hctx->ccid2hctx_rttvar *= 3;
478 hctx->ccid2hctx_rttvar >>= 2;
479 hctx->ccid2hctx_rttvar += tmp;
480
481 /* SRTT */
Andrea Bittau593f16a2006-09-19 13:15:33 -0700482 srtt = hctx->ccid2hctx_srtt;
483 srtt *= 7;
484 srtt >>= 3;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800485 tmp = r >> 3;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700486 srtt += tmp;
487 ccid2_change_srtt(hctx, srtt);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800488 }
489 s = hctx->ccid2hctx_rttvar << 2;
490 /* clock granularity is 1 when based on jiffies */
491 if (!s)
492 s = 1;
493 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
494
495 /* must be at least a second */
496 s = hctx->ccid2hctx_rto / HZ;
497 /* DCCP doesn't require this [but I like it cuz my code sux] */
498#if 1
499 if (s < 1)
500 hctx->ccid2hctx_rto = HZ;
501#endif
502 /* max 60 seconds */
503 if (s > 60)
504 hctx->ccid2hctx_rto = HZ * 60;
505
506 hctx->ccid2hctx_lastrtt = jiffies;
507
508 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200509 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
510 hctx->ccid2hctx_rto, HZ, r);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800511 }
512
513 /* we got a new ack, so re-start RTO timer */
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800514 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800515 ccid2_start_rto_timer(sk);
516}
517
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800518static void ccid2_hc_tx_dec_pipe(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800519{
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800520 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
521
Andrea Bittau593f16a2006-09-19 13:15:33 -0700522 ccid2_change_pipe(hctx, hctx->ccid2hctx_pipe-1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800523 BUG_ON(hctx->ccid2hctx_pipe < 0);
524
525 if (hctx->ccid2hctx_pipe == 0)
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800526 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800527}
528
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200529static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700530{
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200531 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
532
Andrea Bittau374bcf32006-09-19 13:14:43 -0700533 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
534 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
535 return;
536 }
537
538 hctx->ccid2hctx_last_cong = jiffies;
539
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200540 hctx->ccid2hctx_cwnd = hctx->ccid2hctx_cwnd / 2 ? : 1U;
541 hctx->ccid2hctx_ssthresh = max(hctx->ccid2hctx_cwnd, 2U);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200542
543 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
544 if (dccp_sk(sk)->dccps_l_ack_ratio > hctx->ccid2hctx_cwnd)
545 ccid2_change_l_ack_ratio(sk, hctx->ccid2hctx_cwnd);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700546}
547
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800548static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
549{
550 struct dccp_sock *dp = dccp_sk(sk);
551 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
552 u64 ackno, seqno;
553 struct ccid2_seq *seqp;
554 unsigned char *vector;
555 unsigned char veclen;
556 int offset = 0;
557 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800558 unsigned int maxincr = 0;
559
560 ccid2_hc_tx_check_sanity(hctx);
561 /* check reverse path congestion */
562 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
563
564 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
565 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
566 * -sorbo.
567 */
568 /* need to bootstrap */
569 if (hctx->ccid2hctx_rpdupack == -1) {
570 hctx->ccid2hctx_rpdupack = 0;
571 hctx->ccid2hctx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800572 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800573 /* check if packet is consecutive */
Gerrit Renker5e285992007-10-04 14:43:09 -0700574 if (dccp_delta_seqno(hctx->ccid2hctx_rpseq, seqno) == 1)
575 hctx->ccid2hctx_rpseq = seqno;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800576 /* it's a later packet */
577 else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
578 hctx->ccid2hctx_rpdupack++;
579
580 /* check if we got enough dupacks */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200581 if (hctx->ccid2hctx_rpdupack >= NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800582 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
583 hctx->ccid2hctx_rpseq = 0;
584
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200585 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800586 }
587 }
588 }
589
590 /* check forward path congestion */
591 /* still didn't send out new data packets */
592 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
593 return;
594
595 switch (DCCP_SKB_CB(skb)->dccpd_type) {
596 case DCCP_PKT_ACK:
597 case DCCP_PKT_DATAACK:
598 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800599 default:
600 return;
601 }
602
603 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Andrea Bittau32aac182006-11-16 14:28:40 -0200604 if (after48(ackno, hctx->ccid2hctx_high_ack))
605 hctx->ccid2hctx_high_ack = ackno;
606
607 seqp = hctx->ccid2hctx_seqt;
608 while (before48(seqp->ccid2s_seq, ackno)) {
609 seqp = seqp->ccid2s_next;
610 if (seqp == hctx->ccid2hctx_seqh) {
611 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
612 break;
613 }
614 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800615
616 /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
617 * this single ack. I round up.
618 * -sorbo.
619 */
620 maxincr = dp->dccps_l_ack_ratio >> 1;
621 maxincr++;
622
623 /* go through all ack vectors */
624 while ((offset = ccid2_ackvector(sk, skb, offset,
625 &vector, &veclen)) != -1) {
626 /* go through this ack vector */
627 while (veclen--) {
628 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200629 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800630
Randy Dunlap234af482006-10-29 16:03:30 -0800631 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
632 (unsigned long long)ackno,
633 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800634 /* if the seqno we are analyzing is larger than the
635 * current ackno, then move towards the tail of our
636 * seqnos.
637 */
638 while (after48(seqp->ccid2s_seq, ackno)) {
639 if (seqp == hctx->ccid2hctx_seqt) {
640 done = 1;
641 break;
642 }
643 seqp = seqp->ccid2s_prev;
644 }
645 if (done)
646 break;
647
648 /* check all seqnos in the range of the vector
649 * run length
650 */
651 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Andrea Bittau8e27e462006-09-19 13:05:35 -0700652 const u8 state = *vector &
653 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800654
655 /* new packet received or marked */
656 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
657 !seqp->ccid2s_acked) {
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200658 if (state ==
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800659 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200660 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700661 seqp);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800662 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800663 ccid2_new_ack(sk, seqp,
664 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800665
666 seqp->ccid2s_acked = 1;
667 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800668 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800669 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800670 }
671 if (seqp == hctx->ccid2hctx_seqt) {
672 done = 1;
673 break;
674 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200675 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800676 }
677 if (done)
678 break;
679
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200680 ackno = SUB48(ackno_end_rl, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800681 vector++;
682 }
683 if (done)
684 break;
685 }
686
687 /* The state about what is acked should be correct now
688 * Check for NUMDUPACK
689 */
Andrea Bittau32aac182006-11-16 14:28:40 -0200690 seqp = hctx->ccid2hctx_seqt;
691 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
692 seqp = seqp->ccid2s_next;
693 if (seqp == hctx->ccid2hctx_seqh) {
694 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
695 break;
696 }
697 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800698 done = 0;
699 while (1) {
700 if (seqp->ccid2s_acked) {
701 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200702 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800703 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800704 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800705 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800706 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800707 seqp = seqp->ccid2s_prev;
708 }
709
710 /* If there are at least 3 acknowledgements, anything unacknowledged
711 * below the last sequence number is considered lost
712 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200713 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800714 struct ccid2_seq *last_acked = seqp;
715
716 /* check for lost packets */
717 while (1) {
718 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700719 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800720 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700721 /* XXX need to traverse from tail -> head in
722 * order to detect multiple congestion events in
723 * one ack vector.
724 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200725 ccid2_congestion_event(sk, seqp);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800726 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800727 }
728 if (seqp == hctx->ccid2hctx_seqt)
729 break;
730 seqp = seqp->ccid2s_prev;
731 }
732
733 hctx->ccid2hctx_seqt = last_acked;
734 }
735
736 /* trim acked packets in tail */
737 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
738 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
739 break;
740
741 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
742 }
743
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800744 ccid2_hc_tx_check_sanity(hctx);
745}
746
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800747static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800748{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900749 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200750 struct dccp_sock *dp = dccp_sk(sk);
751 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800752
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200753 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Gerrit Renker3deeadd2007-11-24 22:05:51 -0200754 hctx->ccid2hctx_ssthresh = ~0U;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800755
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200756 /*
757 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
758 * packets for new connections, following the rules from [RFC3390]".
759 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
760 */
761 hctx->ccid2hctx_cwnd = min(4U, max(2U, 4380U / dp->dccps_mss_cache));
762
763 /* Make sure that Ack Ratio is enabled and within bounds. */
764 max_ratio = DIV_ROUND_UP(hctx->ccid2hctx_cwnd, 2);
765 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
766 dp->dccps_l_ack_ratio = max_ratio;
767
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800768 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700769 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800770 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800771
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800772 hctx->ccid2hctx_rto = 3 * HZ;
Andrea Bittau593f16a2006-09-19 13:15:33 -0700773 ccid2_change_srtt(hctx, -1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800774 hctx->ccid2hctx_rttvar = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800775 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700776 hctx->ccid2hctx_last_cong = jiffies;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800777 setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
778 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800779
780 ccid2_hc_tx_check_sanity(hctx);
781 return 0;
782}
783
784static void ccid2_hc_tx_exit(struct sock *sk)
785{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900786 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700787 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800788
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800789 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700790
791 for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
792 kfree(hctx->ccid2hctx_seqbuf[i]);
793 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800794}
795
796static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
797{
798 const struct dccp_sock *dp = dccp_sk(sk);
799 struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
800
801 switch (DCCP_SKB_CB(skb)->dccpd_type) {
802 case DCCP_PKT_DATA:
803 case DCCP_PKT_DATAACK:
804 hcrx->ccid2hcrx_data++;
805 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
806 dccp_send_ack(sk);
807 hcrx->ccid2hcrx_data = 0;
808 }
809 break;
810 }
811}
812
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800813static struct ccid_operations ccid2 = {
Ian McDonald3dd9a7c2006-09-22 14:26:44 +1200814 .ccid_id = DCCPC_CCID2,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800815 .ccid_name = "ccid2",
816 .ccid_owner = THIS_MODULE,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800817 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800818 .ccid_hc_tx_init = ccid2_hc_tx_init,
819 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
820 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
821 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
822 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800823 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800824 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
825};
826
Gerrit Renker84116712006-11-20 18:26:03 -0200827#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker042d18f2007-10-04 14:39:53 -0700828module_param(ccid2_debug, bool, 0444);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800829MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200830#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800831
832static __init int ccid2_module_init(void)
833{
834 return ccid_register(&ccid2);
835}
836module_init(ccid2_module_init);
837
838static __exit void ccid2_module_exit(void)
839{
840 ccid_unregister(&ccid2);
841}
842module_exit(ccid2_module_exit);
843
844MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800845MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800846MODULE_LICENSE("GPL");
847MODULE_ALIAS("net-dccp-ccid-2");