blob: c9ea19a4d85e10b0ba8c5a2a4d8c27b2496bc79b [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 */
Gerrit Renkere8ef9672008-11-12 00:43:40 -080028#include "../feat.h"
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)
Gerrit Renker410e27a2008-09-09 13:27:22 +020037
38static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
39{
40 int len = 0;
41 int pipe = 0;
42 struct ccid2_seq *seqp = hctx->ccid2hctx_seqh;
43
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) {
52 struct ccid2_seq *prev = seqp->ccid2s_prev;
53
54 len++;
55 if (!prev->ccid2s_acked)
56 pipe++;
57
58 /* packets are sent sequentially */
59 BUG_ON(dccp_delta_seqno(seqp->ccid2s_seq,
60 prev->ccid2s_seq ) >= 0);
61 BUG_ON(time_before(seqp->ccid2s_sent,
62 prev->ccid2s_sent));
63
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++;
74 } while (seqp != hctx->ccid2hctx_seqh);
75
76 ccid2_pr_debug("total len=%d\n", len);
77 BUG_ON(len != hctx->ccid2hctx_seqbufc * CCID2_SEQBUF_LEN);
78}
Andrea Bittau2a91aa32006-03-20 17:41:47 -080079#else
Gerrit Renker84116712006-11-20 18:26:03 -020080#define ccid2_pr_debug(format, a...)
Gerrit Renker410e27a2008-09-09 13:27:22 +020081#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 */
Gerrit Renker410e27a2008-09-09 13:27:22 +020090 if (hctx->ccid2hctx_seqbufc >= (sizeof(hctx->ccid2hctx_seqbuf) /
91 sizeof(struct ccid2_seq*)))
Andrea Bittau07978aa2006-09-19 13:13:37 -070092 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. */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200107 if (hctx->ccid2hctx_seqbufc == 0)
108 hctx->ccid2hctx_seqh = hctx->ccid2hctx_seqt = seqp;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700109 else {
110 /* link the existing list with the one we just created */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200111 hctx->ccid2hctx_seqh->ccid2s_next = seqp;
112 seqp->ccid2s_prev = hctx->ccid2hctx_seqh;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700113
Gerrit Renker410e27a2008-09-09 13:27:22 +0200114 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 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200119 hctx->ccid2hctx_seqbuf[hctx->ccid2hctx_seqbufc] = seqp;
120 hctx->ccid2hctx_seqbufc++;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700121
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 Renker410e27a2008-09-09 13:27:22 +0200127 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
128
129 if (hctx->ccid2hctx_pipe < hctx->ccid2hctx_cwnd)
130 return 0;
131
132 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800133}
134
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200135static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800136{
137 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200138 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->ccid2hctx_cwnd, 2);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200139
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800140 /*
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200141 * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
142 * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
143 * acceptable since this causes starvation/deadlock whenever cwnd < 2.
144 * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800145 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200146 if (val == 0 || val > max_ratio) {
147 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
148 val = max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800149 }
Gerrit Renkere8ef9672008-11-12 00:43:40 -0800150 if (val > DCCPF_ACK_RATIO_MAX)
151 val = DCCPF_ACK_RATIO_MAX;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800152
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200153 if (val == dp->dccps_l_ack_ratio)
154 return;
155
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200156 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800157 dp->dccps_l_ack_ratio = val;
158}
159
Gerrit Renker410e27a2008-09-09 13:27:22 +0200160static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
161{
162 ccid2_pr_debug("change SRTT to %ld\n", val);
163 hctx->ccid2hctx_srtt = val;
164}
165
166static void ccid2_start_rto_timer(struct sock *sk);
167
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800168static void ccid2_hc_tx_rto_expire(unsigned long data)
169{
170 struct sock *sk = (struct sock *)data;
171 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200172 long s;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800173
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800174 bh_lock_sock(sk);
175 if (sock_owned_by_user(sk)) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200176 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
177 jiffies + HZ / 5);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800178 goto out;
179 }
180
181 ccid2_pr_debug("RTO_EXPIRE\n");
182
Gerrit Renker410e27a2008-09-09 13:27:22 +0200183 ccid2_hc_tx_check_sanity(hctx);
184
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800185 /* back-off timer */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200186 hctx->ccid2hctx_rto <<= 1;
187
188 s = hctx->ccid2hctx_rto / HZ;
189 if (s > 60)
190 hctx->ccid2hctx_rto = 60 * HZ;
191
192 ccid2_start_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800193
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800194 /* adjust pipe, cwnd etc */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200195 hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd / 2;
196 if (hctx->ccid2hctx_ssthresh < 2)
197 hctx->ccid2hctx_ssthresh = 2;
198 hctx->ccid2hctx_cwnd = 1;
199 hctx->ccid2hctx_pipe = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800200
201 /* clear state about stuff we sent */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200202 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqh;
203 hctx->ccid2hctx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800204
205 /* clear ack ratio state. */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200206 hctx->ccid2hctx_rpseq = 0;
207 hctx->ccid2hctx_rpdupack = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800208 ccid2_change_l_ack_ratio(sk, 1);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200209 ccid2_hc_tx_check_sanity(hctx);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800210out:
211 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800212 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800213}
214
Gerrit Renker410e27a2008-09-09 13:27:22 +0200215static void ccid2_start_rto_timer(struct sock *sk)
216{
217 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
218
219 ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
220
221 BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
222 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
223 jiffies + hctx->ccid2hctx_rto);
224}
225
226static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800227{
228 struct dccp_sock *dp = dccp_sk(sk);
229 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700230 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800231
Gerrit Renker410e27a2008-09-09 13:27:22 +0200232 hctx->ccid2hctx_pipe++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800233
Gerrit Renker410e27a2008-09-09 13:27:22 +0200234 hctx->ccid2hctx_seqh->ccid2s_seq = dp->dccps_gss;
235 hctx->ccid2hctx_seqh->ccid2s_acked = 0;
236 hctx->ccid2hctx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700237
Gerrit Renker410e27a2008-09-09 13:27:22 +0200238 next = hctx->ccid2hctx_seqh->ccid2s_next;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700239 /* check if we need to alloc more space */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200240 if (next == hctx->ccid2hctx_seqt) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700241 if (ccid2_hc_tx_alloc_seq(hctx)) {
242 DCCP_CRIT("packet history - out of memory!");
243 /* FIXME: find a more graceful way to bail out */
244 return;
245 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200246 next = hctx->ccid2hctx_seqh->ccid2s_next;
247 BUG_ON(next == hctx->ccid2hctx_seqt);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700248 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200249 hctx->ccid2hctx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800250
Gerrit Renker410e27a2008-09-09 13:27:22 +0200251 ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
252 hctx->ccid2hctx_pipe);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800253
Gerrit Renker900bfed2007-11-24 21:58:33 -0200254 /*
255 * FIXME: The code below is broken and the variables have been removed
256 * from the socket struct. The `ackloss' variable was always set to 0,
257 * and with arsent there are several problems:
258 * (i) it doesn't just count the number of Acks, but all sent packets;
259 * (ii) it is expressed in # of packets, not # of windows, so the
260 * comparison below uses the wrong formula: Appendix A of RFC 4341
261 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
262 * of data with no lost or marked Ack packets. If arsent were the # of
263 * consecutive Acks received without loss, then Ack Ratio needs to be
264 * decreased by 1 when
265 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
266 * where cwnd / R is the number of Acks received per window of data
267 * (cf. RFC 4341, App. A). The problems are that
268 * - arsent counts other packets as well;
269 * - the comparison uses a formula different from RFC 4341;
270 * - computing a cubic/quadratic equation each time is too complicated.
271 * Hence a different algorithm is needed.
272 */
273#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800274 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200275 hctx->ccid2hctx_arsent++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800276 /* We had an ack loss in this window... */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200277 if (hctx->ccid2hctx_ackloss) {
278 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
279 hctx->ccid2hctx_arsent = 0;
280 hctx->ccid2hctx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800281 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800282 } else {
283 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800284 /* decrease ack ratio if enough packets were sent */
285 if (dp->dccps_l_ack_ratio > 1) {
286 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800287 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
288 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800289
Gerrit Renker410e27a2008-09-09 13:27:22 +0200290 denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800291
Gerrit Renker410e27a2008-09-09 13:27:22 +0200292 if (hctx->ccid2hctx_arsent >= denom) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800293 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200294 hctx->ccid2hctx_arsent = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800295 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800296 } else {
297 /* we can't increase ack ratio further [1] */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200298 hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800299 }
300 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200301#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800302
303 /* setup RTO timer */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200304 if (!timer_pending(&hctx->ccid2hctx_rtotimer))
305 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800306
Andrea Bittau8d424f62006-09-19 13:12:44 -0700307#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800308 do {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200309 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800310
Gerrit Renker410e27a2008-09-09 13:27:22 +0200311 while (seqp != hctx->ccid2hctx_seqh) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800312 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200313 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800314 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800315 seqp = seqp->ccid2s_next;
316 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800317 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800318 ccid2_pr_debug("=========\n");
Gerrit Renker410e27a2008-09-09 13:27:22 +0200319 ccid2_hc_tx_check_sanity(hctx);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800320#endif
321}
322
Gerrit Renker410e27a2008-09-09 13:27:22 +0200323/* XXX Lame code duplication!
324 * returns -1 if none was found.
325 * else returns the next offset to use in the function call.
Gerrit Renker14355622008-09-04 07:30:19 +0200326 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200327static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
328 unsigned char **vec, unsigned char *veclen)
Gerrit Renker14355622008-09-04 07:30:19 +0200329{
Gerrit Renker410e27a2008-09-09 13:27:22 +0200330 const struct dccp_hdr *dh = dccp_hdr(skb);
331 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
332 unsigned char *opt_ptr;
333 const unsigned char *opt_end = (unsigned char *)dh +
334 (dh->dccph_doff * 4);
335 unsigned char opt, len;
336 unsigned char *value;
Gerrit Renker14355622008-09-04 07:30:19 +0200337
Gerrit Renker410e27a2008-09-09 13:27:22 +0200338 BUG_ON(offset < 0);
339 options += offset;
340 opt_ptr = options;
341 if (opt_ptr >= opt_end)
342 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200343
Gerrit Renker410e27a2008-09-09 13:27:22 +0200344 while (opt_ptr != opt_end) {
345 opt = *opt_ptr++;
346 len = 0;
347 value = NULL;
Gerrit Renker14355622008-09-04 07:30:19 +0200348
Gerrit Renker410e27a2008-09-09 13:27:22 +0200349 /* Check if this isn't a single byte option */
350 if (opt > DCCPO_MAX_RESERVED) {
351 if (opt_ptr == opt_end)
352 goto out_invalid_option;
353
354 len = *opt_ptr++;
355 if (len < 3)
356 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200357 /*
Gerrit Renker410e27a2008-09-09 13:27:22 +0200358 * Remove the type and len fields, leaving
359 * just the value size
Gerrit Renker14355622008-09-04 07:30:19 +0200360 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200361 len -= 2;
362 value = opt_ptr;
363 opt_ptr += len;
Gerrit Renker14355622008-09-04 07:30:19 +0200364
Gerrit Renker410e27a2008-09-09 13:27:22 +0200365 if (opt_ptr > opt_end)
366 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200367 }
368
Gerrit Renker410e27a2008-09-09 13:27:22 +0200369 switch (opt) {
370 case DCCPO_ACK_VECTOR_0:
371 case DCCPO_ACK_VECTOR_1:
372 *vec = value;
373 *veclen = len;
374 return offset + (opt_ptr - options);
Gerrit Renker14355622008-09-04 07:30:19 +0200375 }
376 }
377
Gerrit Renker410e27a2008-09-09 13:27:22 +0200378 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200379
Gerrit Renker410e27a2008-09-09 13:27:22 +0200380out_invalid_option:
381 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
382 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200383}
384
Gerrit Renker410e27a2008-09-09 13:27:22 +0200385static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800386{
387 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
388
Gerrit Renker410e27a2008-09-09 13:27:22 +0200389 sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
390 ccid2_pr_debug("deleted RTO timer\n");
391}
392
393static inline void ccid2_new_ack(struct sock *sk,
394 struct ccid2_seq *seqp,
395 unsigned int *maxincr)
396{
397 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
398
399 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
400 if (*maxincr > 0 && ++hctx->ccid2hctx_packets_acked == 2) {
401 hctx->ccid2hctx_cwnd += 1;
402 *maxincr -= 1;
403 hctx->ccid2hctx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800404 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200405 } else if (++hctx->ccid2hctx_packets_acked >= hctx->ccid2hctx_cwnd) {
406 hctx->ccid2hctx_cwnd += 1;
407 hctx->ccid2hctx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800408 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200409
410 /* update RTO */
411 if (hctx->ccid2hctx_srtt == -1 ||
412 time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
413 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
414 int s;
415
416 /* first measurement */
417 if (hctx->ccid2hctx_srtt == -1) {
418 ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
419 r, jiffies,
420 (unsigned long long)seqp->ccid2s_seq);
421 ccid2_change_srtt(hctx, r);
422 hctx->ccid2hctx_rttvar = r >> 1;
423 } else {
424 /* RTTVAR */
425 long tmp = hctx->ccid2hctx_srtt - r;
426 long srtt;
427
428 if (tmp < 0)
429 tmp *= -1;
430
431 tmp >>= 2;
432 hctx->ccid2hctx_rttvar *= 3;
433 hctx->ccid2hctx_rttvar >>= 2;
434 hctx->ccid2hctx_rttvar += tmp;
435
436 /* SRTT */
437 srtt = hctx->ccid2hctx_srtt;
438 srtt *= 7;
439 srtt >>= 3;
440 tmp = r >> 3;
441 srtt += tmp;
442 ccid2_change_srtt(hctx, srtt);
443 }
444 s = hctx->ccid2hctx_rttvar << 2;
445 /* clock granularity is 1 when based on jiffies */
446 if (!s)
447 s = 1;
448 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
449
450 /* must be at least a second */
451 s = hctx->ccid2hctx_rto / HZ;
452 /* DCCP doesn't require this [but I like it cuz my code sux] */
453#if 1
454 if (s < 1)
455 hctx->ccid2hctx_rto = HZ;
456#endif
457 /* max 60 seconds */
458 if (s > 60)
459 hctx->ccid2hctx_rto = HZ * 60;
460
461 hctx->ccid2hctx_lastrtt = jiffies;
462
463 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
464 hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
465 hctx->ccid2hctx_rto, HZ, r);
466 }
467
468 /* we got a new ack, so re-start RTO timer */
469 ccid2_hc_tx_kill_rto_timer(sk);
470 ccid2_start_rto_timer(sk);
471}
472
473static void ccid2_hc_tx_dec_pipe(struct sock *sk)
474{
475 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
476
477 if (hctx->ccid2hctx_pipe == 0)
478 DCCP_BUG("pipe == 0");
479 else
480 hctx->ccid2hctx_pipe--;
481
482 if (hctx->ccid2hctx_pipe == 0)
483 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800484}
485
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200486static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700487{
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200488 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
489
Gerrit Renker410e27a2008-09-09 13:27:22 +0200490 if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700491 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
492 return;
493 }
494
Gerrit Renker410e27a2008-09-09 13:27:22 +0200495 hctx->ccid2hctx_last_cong = jiffies;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700496
Gerrit Renker410e27a2008-09-09 13:27:22 +0200497 hctx->ccid2hctx_cwnd = hctx->ccid2hctx_cwnd / 2 ? : 1U;
498 hctx->ccid2hctx_ssthresh = max(hctx->ccid2hctx_cwnd, 2U);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200499
500 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200501 if (dccp_sk(sk)->dccps_l_ack_ratio > hctx->ccid2hctx_cwnd)
502 ccid2_change_l_ack_ratio(sk, hctx->ccid2hctx_cwnd);
Gerrit Renkerc8bf4622008-09-04 07:30:19 +0200503}
504
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800505static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
506{
507 struct dccp_sock *dp = dccp_sk(sk);
508 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
509 u64 ackno, seqno;
510 struct ccid2_seq *seqp;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200511 unsigned char *vector;
512 unsigned char veclen;
513 int offset = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800514 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800515 unsigned int maxincr = 0;
516
Gerrit Renker410e27a2008-09-09 13:27:22 +0200517 ccid2_hc_tx_check_sanity(hctx);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800518 /* check reverse path congestion */
519 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
520
521 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
522 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
523 * -sorbo.
524 */
525 /* need to bootstrap */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200526 if (hctx->ccid2hctx_rpdupack == -1) {
527 hctx->ccid2hctx_rpdupack = 0;
528 hctx->ccid2hctx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800529 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800530 /* check if packet is consecutive */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200531 if (dccp_delta_seqno(hctx->ccid2hctx_rpseq, seqno) == 1)
532 hctx->ccid2hctx_rpseq = seqno;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800533 /* it's a later packet */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200534 else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
535 hctx->ccid2hctx_rpdupack++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800536
537 /* check if we got enough dupacks */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200538 if (hctx->ccid2hctx_rpdupack >= NUMDUPACK) {
539 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
540 hctx->ccid2hctx_rpseq = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800541
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200542 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800543 }
544 }
545 }
546
547 /* check forward path congestion */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200548 /* still didn't send out new data packets */
549 if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800550 return;
551
Gerrit Renker410e27a2008-09-09 13:27:22 +0200552 switch (DCCP_SKB_CB(skb)->dccpd_type) {
553 case DCCP_PKT_ACK:
554 case DCCP_PKT_DATAACK:
555 break;
556 default:
557 return;
558 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800559
560 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200561 if (after48(ackno, hctx->ccid2hctx_high_ack))
562 hctx->ccid2hctx_high_ack = ackno;
Andrea Bittau32aac182006-11-16 14:28:40 -0200563
Gerrit Renker410e27a2008-09-09 13:27:22 +0200564 seqp = hctx->ccid2hctx_seqt;
Andrea Bittau32aac182006-11-16 14:28:40 -0200565 while (before48(seqp->ccid2s_seq, ackno)) {
566 seqp = seqp->ccid2s_next;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200567 if (seqp == hctx->ccid2hctx_seqh) {
568 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200569 break;
570 }
571 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800572
Gerrit Renkera3020022007-11-24 22:10:29 -0200573 /*
574 * In slow-start, cwnd can increase up to a maximum of Ack Ratio/2
575 * packets per acknowledgement. Rounding up avoids that cwnd is not
576 * advanced when Ack Ratio is 1 and gives a slight edge otherwise.
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800577 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200578 if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh)
Gerrit Renkera3020022007-11-24 22:10:29 -0200579 maxincr = DIV_ROUND_UP(dp->dccps_l_ack_ratio, 2);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800580
581 /* go through all ack vectors */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200582 while ((offset = ccid2_ackvector(sk, skb, offset,
583 &vector, &veclen)) != -1) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800584 /* go through this ack vector */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200585 while (veclen--) {
586 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
587 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800588
Gerrit Renker410e27a2008-09-09 13:27:22 +0200589 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800590 (unsigned long long)ackno,
Gerrit Renker410e27a2008-09-09 13:27:22 +0200591 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800592 /* if the seqno we are analyzing is larger than the
593 * current ackno, then move towards the tail of our
594 * seqnos.
595 */
596 while (after48(seqp->ccid2s_seq, ackno)) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200597 if (seqp == hctx->ccid2hctx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800598 done = 1;
599 break;
600 }
601 seqp = seqp->ccid2s_prev;
602 }
603 if (done)
604 break;
605
606 /* check all seqnos in the range of the vector
607 * run length
608 */
609 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200610 const u8 state = *vector &
611 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800612
613 /* new packet received or marked */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200614 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800615 !seqp->ccid2s_acked) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200616 if (state ==
617 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200618 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700619 seqp);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200620 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800621 ccid2_new_ack(sk, seqp,
622 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800623
624 seqp->ccid2s_acked = 1;
625 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800626 (unsigned long long)seqp->ccid2s_seq);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200627 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800628 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200629 if (seqp == hctx->ccid2hctx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800630 done = 1;
631 break;
632 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200633 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800634 }
635 if (done)
636 break;
637
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200638 ackno = SUB48(ackno_end_rl, 1);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200639 vector++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800640 }
641 if (done)
642 break;
643 }
644
645 /* The state about what is acked should be correct now
646 * Check for NUMDUPACK
647 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200648 seqp = hctx->ccid2hctx_seqt;
649 while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
Andrea Bittau32aac182006-11-16 14:28:40 -0200650 seqp = seqp->ccid2s_next;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200651 if (seqp == hctx->ccid2hctx_seqh) {
652 seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200653 break;
654 }
655 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800656 done = 0;
657 while (1) {
658 if (seqp->ccid2s_acked) {
659 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200660 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800661 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800662 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200663 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800664 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800665 seqp = seqp->ccid2s_prev;
666 }
667
668 /* If there are at least 3 acknowledgements, anything unacknowledged
669 * below the last sequence number is considered lost
670 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200671 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800672 struct ccid2_seq *last_acked = seqp;
673
674 /* check for lost packets */
675 while (1) {
676 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700677 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800678 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700679 /* XXX need to traverse from tail -> head in
680 * order to detect multiple congestion events in
681 * one ack vector.
682 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200683 ccid2_congestion_event(sk, seqp);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200684 ccid2_hc_tx_dec_pipe(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800685 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200686 if (seqp == hctx->ccid2hctx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800687 break;
688 seqp = seqp->ccid2s_prev;
689 }
690
Gerrit Renker410e27a2008-09-09 13:27:22 +0200691 hctx->ccid2hctx_seqt = last_acked;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800692 }
693
694 /* trim acked packets in tail */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200695 while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
696 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800697 break;
698
Gerrit Renker410e27a2008-09-09 13:27:22 +0200699 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800700 }
701
Gerrit Renker410e27a2008-09-09 13:27:22 +0200702 ccid2_hc_tx_check_sanity(hctx);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800703}
704
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800705static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800706{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900707 struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200708 struct dccp_sock *dp = dccp_sk(sk);
709 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800710
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200711 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200712 hctx->ccid2hctx_ssthresh = ~0U;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800713
Gerrit Renker410e27a2008-09-09 13:27:22 +0200714 /*
715 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
716 * packets for new connections, following the rules from [RFC3390]".
717 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
718 */
719 hctx->ccid2hctx_cwnd = clamp(4380U / dp->dccps_mss_cache, 2U, 4U);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200720
721 /* Make sure that Ack Ratio is enabled and within bounds. */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200722 max_ratio = DIV_ROUND_UP(hctx->ccid2hctx_cwnd, 2);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200723 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
724 dp->dccps_l_ack_ratio = max_ratio;
725
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800726 /* XXX init ~ to window size... */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -0700727 if (ccid2_hc_tx_alloc_seq(hctx))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800728 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800729
Gerrit Renker410e27a2008-09-09 13:27:22 +0200730 hctx->ccid2hctx_rto = 3 * HZ;
731 ccid2_change_srtt(hctx, -1);
732 hctx->ccid2hctx_rttvar = -1;
733 hctx->ccid2hctx_rpdupack = -1;
734 hctx->ccid2hctx_last_cong = jiffies;
735 setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
736 (unsigned long)sk);
737
738 ccid2_hc_tx_check_sanity(hctx);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800739 return 0;
740}
741
742static void ccid2_hc_tx_exit(struct sock *sk)
743{
YOSHIFUJI Hideakic9eaf172007-02-09 23:24:38 +0900744 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700745 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800746
Gerrit Renker410e27a2008-09-09 13:27:22 +0200747 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700748
Gerrit Renker410e27a2008-09-09 13:27:22 +0200749 for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
750 kfree(hctx->ccid2hctx_seqbuf[i]);
751 hctx->ccid2hctx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800752}
753
754static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
755{
756 const struct dccp_sock *dp = dccp_sk(sk);
757 struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
758
759 switch (DCCP_SKB_CB(skb)->dccpd_type) {
760 case DCCP_PKT_DATA:
761 case DCCP_PKT_DATAACK:
Gerrit Renker410e27a2008-09-09 13:27:22 +0200762 hcrx->ccid2hcrx_data++;
763 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800764 dccp_send_ack(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200765 hcrx->ccid2hcrx_data = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800766 }
767 break;
768 }
769}
770
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800771static struct ccid_operations ccid2 = {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200772 .ccid_id = DCCPC_CCID2,
773 .ccid_name = "TCP-like",
774 .ccid_owner = THIS_MODULE,
775 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
776 .ccid_hc_tx_init = ccid2_hc_tx_init,
777 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
778 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
779 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
780 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
781 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
782 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800783};
784
Gerrit Renker84116712006-11-20 18:26:03 -0200785#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker43264992008-08-23 13:28:27 +0200786module_param(ccid2_debug, bool, 0644);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800787MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200788#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800789
790static __init int ccid2_module_init(void)
791{
792 return ccid_register(&ccid2);
793}
794module_init(ccid2_module_init);
795
796static __exit void ccid2_module_exit(void)
797{
798 ccid_unregister(&ccid2);
799}
800module_exit(ccid2_module_exit);
801
802MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800803MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800804MODULE_LICENSE("GPL");
805MODULE_ALIAS("net-dccp-ccid-2");