blob: 7af3106c1f945ea21fccea78851e36285a94fbdf [file] [log] [blame]
Andrea Bittau2a91aa32006-03-20 17:41:47 -08001/*
Andrea Bittau2a91aa32006-03-20 17:41:47 -08002 * Copyright (c) 2005, 2006 Andrea Bittau <a.bittau@cs.ucl.ac.uk>
3 *
4 * Changes to meet Linux coding standards, and DCCP infrastructure fixes.
5 *
6 * Copyright (c) 2006 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23/*
Gerrit Renker0e64e942006-10-24 16:17:51 -070024 * This implementation should follow RFC 4341
Andrea Bittau2a91aa32006-03-20 17:41:47 -080025 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Gerrit Renkere8ef9672008-11-12 00:43:40 -080027#include "../feat.h"
Andrea Bittau2a91aa32006-03-20 17:41:47 -080028#include "../ccid.h"
29#include "../dccp.h"
30#include "ccid2.h"
31
Gerrit Renker84116712006-11-20 18:26:03 -020032
33#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -080034static int ccid2_debug;
Gerrit Renker84116712006-11-20 18:26:03 -020035#define ccid2_pr_debug(format, a...) DCCP_PR_DEBUG(ccid2_debug, format, ##a)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080036#else
Gerrit Renker84116712006-11-20 18:26:03 -020037#define ccid2_pr_debug(format, a...)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080038#endif
39
Gerrit Renker77d2dd92009-10-05 00:53:12 +000040static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hc)
Andrea Bittau07978aa2006-09-19 13:13:37 -070041{
42 struct ccid2_seq *seqp;
43 int i;
44
45 /* check if we have space to preserve the pointer to the buffer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000046 if (hc->tx_seqbufc >= (sizeof(hc->tx_seqbuf) /
47 sizeof(struct ccid2_seq *)))
Andrea Bittau07978aa2006-09-19 13:13:37 -070048 return -ENOMEM;
49
50 /* allocate buffer and initialize linked list */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070051 seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any());
Andrea Bittau07978aa2006-09-19 13:13:37 -070052 if (seqp == NULL)
53 return -ENOMEM;
54
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070055 for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) {
Andrea Bittau07978aa2006-09-19 13:13:37 -070056 seqp[i].ccid2s_next = &seqp[i + 1];
57 seqp[i + 1].ccid2s_prev = &seqp[i];
58 }
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070059 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp;
60 seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
Andrea Bittau07978aa2006-09-19 13:13:37 -070061
62 /* This is the first allocation. Initiate the head and tail. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000063 if (hc->tx_seqbufc == 0)
64 hc->tx_seqh = hc->tx_seqt = seqp;
Andrea Bittau07978aa2006-09-19 13:13:37 -070065 else {
66 /* link the existing list with the one we just created */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000067 hc->tx_seqh->ccid2s_next = seqp;
68 seqp->ccid2s_prev = hc->tx_seqh;
Andrea Bittau07978aa2006-09-19 13:13:37 -070069
Gerrit Renker77d2dd92009-10-05 00:53:12 +000070 hc->tx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
71 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hc->tx_seqt;
Andrea Bittau07978aa2006-09-19 13:13:37 -070072 }
73
74 /* store the original pointer to the buffer so we can free it */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000075 hc->tx_seqbuf[hc->tx_seqbufc] = seqp;
76 hc->tx_seqbufc++;
Andrea Bittau07978aa2006-09-19 13:13:37 -070077
78 return 0;
79}
80
Gerrit Renker6b57c932006-11-28 19:55:06 -020081static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080082{
Gerrit Renker77d2dd92009-10-05 00:53:12 +000083 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +020084
Gerrit Renker77d2dd92009-10-05 00:53:12 +000085 if (hc->tx_pipe < hc->tx_cwnd)
Gerrit Renker410e27a2008-09-09 13:27:22 +020086 return 0;
87
88 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -080089}
90
Gerrit Renkerdf054e12007-11-24 21:32:53 -020091static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080092{
93 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renkerb1c00fe2009-10-05 00:53:10 +000094 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->tx_cwnd, 2);
Gerrit Renkerd50ad162007-11-24 21:40:24 -020095
Andrea Bittau2a91aa32006-03-20 17:41:47 -080096 /*
Gerrit Renkerd50ad162007-11-24 21:40:24 -020097 * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
98 * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
99 * acceptable since this causes starvation/deadlock whenever cwnd < 2.
100 * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800101 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200102 if (val == 0 || val > max_ratio) {
103 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
104 val = max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800105 }
Gerrit Renkere8ef9672008-11-12 00:43:40 -0800106 if (val > DCCPF_ACK_RATIO_MAX)
107 val = DCCPF_ACK_RATIO_MAX;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800108
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200109 if (val == dp->dccps_l_ack_ratio)
110 return;
111
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200112 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800113 dp->dccps_l_ack_ratio = val;
114}
115
Gerrit Renker410e27a2008-09-09 13:27:22 +0200116static void ccid2_start_rto_timer(struct sock *sk);
117
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800118static void ccid2_hc_tx_rto_expire(unsigned long data)
119{
120 struct sock *sk = (struct sock *)data;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000121 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800122
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800123 bh_lock_sock(sk);
124 if (sock_owned_by_user(sk)) {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000125 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + HZ / 5);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800126 goto out;
127 }
128
129 ccid2_pr_debug("RTO_EXPIRE\n");
130
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800131 /* back-off timer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000132 hc->tx_rto <<= 1;
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000133 if (hc->tx_rto > DCCP_RTO_MAX)
134 hc->tx_rto = DCCP_RTO_MAX;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200135
136 ccid2_start_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800137
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800138 /* adjust pipe, cwnd etc */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000139 hc->tx_ssthresh = hc->tx_cwnd / 2;
140 if (hc->tx_ssthresh < 2)
141 hc->tx_ssthresh = 2;
Gerrit Renker67b67e32010-08-22 19:41:36 +0000142 hc->tx_cwnd = 1;
143 hc->tx_pipe = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800144
145 /* clear state about stuff we sent */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000146 hc->tx_seqt = hc->tx_seqh;
147 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800148
149 /* clear ack ratio state. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000150 hc->tx_rpseq = 0;
151 hc->tx_rpdupack = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800152 ccid2_change_l_ack_ratio(sk, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800153out:
154 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800155 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800156}
157
Gerrit Renker410e27a2008-09-09 13:27:22 +0200158static void ccid2_start_rto_timer(struct sock *sk)
159{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000160 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200161
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000162 ccid2_pr_debug("setting RTO timeout=%u\n", hc->tx_rto);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200163
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000164 BUG_ON(timer_pending(&hc->tx_rtotimer));
165 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200166}
167
168static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800169{
170 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000171 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700172 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800173
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000174 hc->tx_pipe++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800175
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000176 hc->tx_seqh->ccid2s_seq = dp->dccps_gss;
177 hc->tx_seqh->ccid2s_acked = 0;
178 hc->tx_seqh->ccid2s_sent = jiffies;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700179
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000180 next = hc->tx_seqh->ccid2s_next;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700181 /* check if we need to alloc more space */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000182 if (next == hc->tx_seqt) {
183 if (ccid2_hc_tx_alloc_seq(hc)) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700184 DCCP_CRIT("packet history - out of memory!");
185 /* FIXME: find a more graceful way to bail out */
186 return;
187 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000188 next = hc->tx_seqh->ccid2s_next;
189 BUG_ON(next == hc->tx_seqt);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700190 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000191 hc->tx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800192
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000193 ccid2_pr_debug("cwnd=%d pipe=%d\n", hc->tx_cwnd, hc->tx_pipe);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800194
Gerrit Renker900bfed2007-11-24 21:58:33 -0200195 /*
196 * FIXME: The code below is broken and the variables have been removed
197 * from the socket struct. The `ackloss' variable was always set to 0,
198 * and with arsent there are several problems:
199 * (i) it doesn't just count the number of Acks, but all sent packets;
200 * (ii) it is expressed in # of packets, not # of windows, so the
201 * comparison below uses the wrong formula: Appendix A of RFC 4341
202 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
203 * of data with no lost or marked Ack packets. If arsent were the # of
204 * consecutive Acks received without loss, then Ack Ratio needs to be
205 * decreased by 1 when
206 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
207 * where cwnd / R is the number of Acks received per window of data
208 * (cf. RFC 4341, App. A). The problems are that
209 * - arsent counts other packets as well;
210 * - the comparison uses a formula different from RFC 4341;
211 * - computing a cubic/quadratic equation each time is too complicated.
212 * Hence a different algorithm is needed.
213 */
214#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800215 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000216 hc->tx_arsent++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800217 /* We had an ack loss in this window... */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000218 if (hc->tx_ackloss) {
219 if (hc->tx_arsent >= hc->tx_cwnd) {
220 hc->tx_arsent = 0;
221 hc->tx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800222 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800223 } else {
224 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800225 /* decrease ack ratio if enough packets were sent */
226 if (dp->dccps_l_ack_ratio > 1) {
227 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800228 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
229 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800230
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000231 denom = hc->tx_cwnd * hc->tx_cwnd / denom;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800232
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000233 if (hc->tx_arsent >= denom) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800234 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000235 hc->tx_arsent = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800236 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800237 } else {
238 /* we can't increase ack ratio further [1] */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000239 hc->tx_arsent = 0; /* or maybe set it to cwnd*/
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800240 }
241 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200242#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800243
244 /* setup RTO timer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000245 if (!timer_pending(&hc->tx_rtotimer))
Gerrit Renker410e27a2008-09-09 13:27:22 +0200246 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800247
Andrea Bittau8d424f62006-09-19 13:12:44 -0700248#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800249 do {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000250 struct ccid2_seq *seqp = hc->tx_seqt;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800251
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000252 while (seqp != hc->tx_seqh) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800253 ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200254 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800255 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800256 seqp = seqp->ccid2s_next;
257 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800258 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800259 ccid2_pr_debug("=========\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800260#endif
261}
262
Gerrit Renker410e27a2008-09-09 13:27:22 +0200263/* XXX Lame code duplication!
264 * returns -1 if none was found.
265 * else returns the next offset to use in the function call.
Gerrit Renker14355622008-09-04 07:30:19 +0200266 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200267static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
268 unsigned char **vec, unsigned char *veclen)
Gerrit Renker14355622008-09-04 07:30:19 +0200269{
Gerrit Renker410e27a2008-09-09 13:27:22 +0200270 const struct dccp_hdr *dh = dccp_hdr(skb);
271 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
272 unsigned char *opt_ptr;
273 const unsigned char *opt_end = (unsigned char *)dh +
274 (dh->dccph_doff * 4);
275 unsigned char opt, len;
276 unsigned char *value;
Gerrit Renker14355622008-09-04 07:30:19 +0200277
Gerrit Renker410e27a2008-09-09 13:27:22 +0200278 BUG_ON(offset < 0);
279 options += offset;
280 opt_ptr = options;
281 if (opt_ptr >= opt_end)
282 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200283
Gerrit Renker410e27a2008-09-09 13:27:22 +0200284 while (opt_ptr != opt_end) {
285 opt = *opt_ptr++;
286 len = 0;
287 value = NULL;
Gerrit Renker14355622008-09-04 07:30:19 +0200288
Gerrit Renker410e27a2008-09-09 13:27:22 +0200289 /* Check if this isn't a single byte option */
290 if (opt > DCCPO_MAX_RESERVED) {
291 if (opt_ptr == opt_end)
292 goto out_invalid_option;
293
294 len = *opt_ptr++;
295 if (len < 3)
296 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200297 /*
Gerrit Renker410e27a2008-09-09 13:27:22 +0200298 * Remove the type and len fields, leaving
299 * just the value size
Gerrit Renker14355622008-09-04 07:30:19 +0200300 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200301 len -= 2;
302 value = opt_ptr;
303 opt_ptr += len;
Gerrit Renker14355622008-09-04 07:30:19 +0200304
Gerrit Renker410e27a2008-09-09 13:27:22 +0200305 if (opt_ptr > opt_end)
306 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200307 }
308
Gerrit Renker410e27a2008-09-09 13:27:22 +0200309 switch (opt) {
310 case DCCPO_ACK_VECTOR_0:
311 case DCCPO_ACK_VECTOR_1:
312 *vec = value;
313 *veclen = len;
314 return offset + (opt_ptr - options);
Gerrit Renker14355622008-09-04 07:30:19 +0200315 }
316 }
317
Gerrit Renker410e27a2008-09-09 13:27:22 +0200318 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200319
Gerrit Renker410e27a2008-09-09 13:27:22 +0200320out_invalid_option:
321 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
322 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200323}
324
Gerrit Renker410e27a2008-09-09 13:27:22 +0200325static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800326{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000327 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800328
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000329 sk_stop_timer(sk, &hc->tx_rtotimer);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200330 ccid2_pr_debug("deleted RTO timer\n");
331}
332
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000333/**
334 * ccid2_rtt_estimator - Sample RTT and compute RTO using RFC2988 algorithm
335 * This code is almost identical with TCP's tcp_rtt_estimator(), since
336 * - it has a higher sampling frequency (recommended by RFC 1323),
337 * - the RTO does not collapse into RTT due to RTTVAR going towards zero,
338 * - it is simple (cf. more complex proposals such as Eifel timer or research
339 * which suggests that the gain should be set according to window size),
340 * - in tests it was found to work well with CCID2 [gerrit].
341 */
342static void ccid2_rtt_estimator(struct sock *sk, const long mrtt)
343{
344 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
345 long m = mrtt ? : 1;
346
347 if (hc->tx_srtt == 0) {
348 /* First measurement m */
349 hc->tx_srtt = m << 3;
350 hc->tx_mdev = m << 1;
351
352 hc->tx_mdev_max = max(TCP_RTO_MIN, hc->tx_mdev);
353 hc->tx_rttvar = hc->tx_mdev_max;
354 hc->tx_rtt_seq = dccp_sk(sk)->dccps_gss;
355 } else {
356 /* Update scaled SRTT as SRTT += 1/8 * (m - SRTT) */
357 m -= (hc->tx_srtt >> 3);
358 hc->tx_srtt += m;
359
360 /* Similarly, update scaled mdev with regard to |m| */
361 if (m < 0) {
362 m = -m;
363 m -= (hc->tx_mdev >> 2);
364 /*
365 * This neutralises RTO increase when RTT < SRTT - mdev
366 * (see P. Sarolahti, A. Kuznetsov,"Congestion Control
367 * in Linux TCP", USENIX 2002, pp. 49-62).
368 */
369 if (m > 0)
370 m >>= 3;
371 } else {
372 m -= (hc->tx_mdev >> 2);
373 }
374 hc->tx_mdev += m;
375
376 if (hc->tx_mdev > hc->tx_mdev_max) {
377 hc->tx_mdev_max = hc->tx_mdev;
378 if (hc->tx_mdev_max > hc->tx_rttvar)
379 hc->tx_rttvar = hc->tx_mdev_max;
380 }
381
382 /*
383 * Decay RTTVAR at most once per flight, exploiting that
384 * 1) pipe <= cwnd <= Sequence_Window = W (RFC 4340, 7.5.2)
385 * 2) AWL = GSS-W+1 <= GAR <= GSS (RFC 4340, 7.5.1)
386 * GAR is a useful bound for FlightSize = pipe.
387 * AWL is probably too low here, as it over-estimates pipe.
388 */
389 if (after48(dccp_sk(sk)->dccps_gar, hc->tx_rtt_seq)) {
390 if (hc->tx_mdev_max < hc->tx_rttvar)
391 hc->tx_rttvar -= (hc->tx_rttvar -
392 hc->tx_mdev_max) >> 2;
393 hc->tx_rtt_seq = dccp_sk(sk)->dccps_gss;
394 hc->tx_mdev_max = TCP_RTO_MIN;
395 }
396 }
397
398 /*
399 * Set RTO from SRTT and RTTVAR
400 * As in TCP, 4 * RTTVAR >= TCP_RTO_MIN, giving a minimum RTO of 200 ms.
401 * This agrees with RFC 4341, 5:
402 * "Because DCCP does not retransmit data, DCCP does not require
403 * TCP's recommended minimum timeout of one second".
404 */
405 hc->tx_rto = (hc->tx_srtt >> 3) + hc->tx_rttvar;
406
407 if (hc->tx_rto > DCCP_RTO_MAX)
408 hc->tx_rto = DCCP_RTO_MAX;
409}
410
411static void ccid2_new_ack(struct sock *sk, struct ccid2_seq *seqp,
412 unsigned int *maxincr)
Gerrit Renker410e27a2008-09-09 13:27:22 +0200413{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000414 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200415
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000416 if (hc->tx_cwnd < hc->tx_ssthresh) {
417 if (*maxincr > 0 && ++hc->tx_packets_acked == 2) {
418 hc->tx_cwnd += 1;
419 *maxincr -= 1;
420 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800421 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000422 } else if (++hc->tx_packets_acked >= hc->tx_cwnd) {
423 hc->tx_cwnd += 1;
424 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800425 }
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000426 /*
427 * FIXME: RTT is sampled several times per acknowledgment (for each
428 * entry in the Ack Vector), instead of once per Ack (as in TCP SACK).
429 * This causes the RTT to be over-estimated, since the older entries
430 * in the Ack Vector have earlier sending times.
431 * The cleanest solution is to not use the ccid2s_sent field at all
432 * and instead use DCCP timestamps: requires changes in other places.
433 */
434 ccid2_rtt_estimator(sk, jiffies - seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800435}
436
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200437static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700438{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000439 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200440
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000441 if (time_before(seqp->ccid2s_sent, hc->tx_last_cong)) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700442 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
443 return;
444 }
445
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000446 hc->tx_last_cong = jiffies;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700447
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000448 hc->tx_cwnd = hc->tx_cwnd / 2 ? : 1U;
449 hc->tx_ssthresh = max(hc->tx_cwnd, 2U);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200450
451 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000452 if (dccp_sk(sk)->dccps_l_ack_ratio > hc->tx_cwnd)
453 ccid2_change_l_ack_ratio(sk, hc->tx_cwnd);
Gerrit Renkerc8bf4622008-09-04 07:30:19 +0200454}
455
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800456static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
457{
458 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000459 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800460 u64 ackno, seqno;
461 struct ccid2_seq *seqp;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200462 unsigned char *vector;
463 unsigned char veclen;
464 int offset = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800465 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800466 unsigned int maxincr = 0;
467
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800468 /* check reverse path congestion */
469 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
470
471 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
472 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
473 * -sorbo.
474 */
475 /* need to bootstrap */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000476 if (hc->tx_rpdupack == -1) {
477 hc->tx_rpdupack = 0;
478 hc->tx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800479 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800480 /* check if packet is consecutive */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000481 if (dccp_delta_seqno(hc->tx_rpseq, seqno) == 1)
482 hc->tx_rpseq = seqno;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800483 /* it's a later packet */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000484 else if (after48(seqno, hc->tx_rpseq)) {
485 hc->tx_rpdupack++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800486
487 /* check if we got enough dupacks */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000488 if (hc->tx_rpdupack >= NUMDUPACK) {
489 hc->tx_rpdupack = -1; /* XXX lame */
490 hc->tx_rpseq = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800491
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200492 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800493 }
494 }
495 }
496
497 /* check forward path congestion */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200498 /* still didn't send out new data packets */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000499 if (hc->tx_seqh == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800500 return;
501
Gerrit Renker410e27a2008-09-09 13:27:22 +0200502 switch (DCCP_SKB_CB(skb)->dccpd_type) {
503 case DCCP_PKT_ACK:
504 case DCCP_PKT_DATAACK:
505 break;
506 default:
507 return;
508 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800509
510 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000511 if (after48(ackno, hc->tx_high_ack))
512 hc->tx_high_ack = ackno;
Andrea Bittau32aac182006-11-16 14:28:40 -0200513
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000514 seqp = hc->tx_seqt;
Andrea Bittau32aac182006-11-16 14:28:40 -0200515 while (before48(seqp->ccid2s_seq, ackno)) {
516 seqp = seqp->ccid2s_next;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000517 if (seqp == hc->tx_seqh) {
518 seqp = hc->tx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200519 break;
520 }
521 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800522
Gerrit Renkera3020022007-11-24 22:10:29 -0200523 /*
524 * In slow-start, cwnd can increase up to a maximum of Ack Ratio/2
525 * packets per acknowledgement. Rounding up avoids that cwnd is not
526 * advanced when Ack Ratio is 1 and gives a slight edge otherwise.
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800527 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000528 if (hc->tx_cwnd < hc->tx_ssthresh)
Gerrit Renkera3020022007-11-24 22:10:29 -0200529 maxincr = DIV_ROUND_UP(dp->dccps_l_ack_ratio, 2);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800530
531 /* go through all ack vectors */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200532 while ((offset = ccid2_ackvector(sk, skb, offset,
533 &vector, &veclen)) != -1) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800534 /* go through this ack vector */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200535 while (veclen--) {
536 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
537 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800538
Gerrit Renker410e27a2008-09-09 13:27:22 +0200539 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800540 (unsigned long long)ackno,
Gerrit Renker410e27a2008-09-09 13:27:22 +0200541 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800542 /* if the seqno we are analyzing is larger than the
543 * current ackno, then move towards the tail of our
544 * seqnos.
545 */
546 while (after48(seqp->ccid2s_seq, ackno)) {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000547 if (seqp == hc->tx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800548 done = 1;
549 break;
550 }
551 seqp = seqp->ccid2s_prev;
552 }
553 if (done)
554 break;
555
556 /* check all seqnos in the range of the vector
557 * run length
558 */
559 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200560 const u8 state = *vector &
561 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800562
563 /* new packet received or marked */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200564 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800565 !seqp->ccid2s_acked) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200566 if (state ==
567 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200568 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700569 seqp);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200570 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800571 ccid2_new_ack(sk, seqp,
572 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800573
574 seqp->ccid2s_acked = 1;
575 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800576 (unsigned long long)seqp->ccid2s_seq);
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000577 hc->tx_pipe--;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800578 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000579 if (seqp == hc->tx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800580 done = 1;
581 break;
582 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200583 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800584 }
585 if (done)
586 break;
587
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200588 ackno = SUB48(ackno_end_rl, 1);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200589 vector++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800590 }
591 if (done)
592 break;
593 }
594
595 /* The state about what is acked should be correct now
596 * Check for NUMDUPACK
597 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000598 seqp = hc->tx_seqt;
599 while (before48(seqp->ccid2s_seq, hc->tx_high_ack)) {
Andrea Bittau32aac182006-11-16 14:28:40 -0200600 seqp = seqp->ccid2s_next;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000601 if (seqp == hc->tx_seqh) {
602 seqp = hc->tx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200603 break;
604 }
605 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800606 done = 0;
607 while (1) {
608 if (seqp->ccid2s_acked) {
609 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200610 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800611 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800612 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000613 if (seqp == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800614 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800615 seqp = seqp->ccid2s_prev;
616 }
617
618 /* If there are at least 3 acknowledgements, anything unacknowledged
619 * below the last sequence number is considered lost
620 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200621 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800622 struct ccid2_seq *last_acked = seqp;
623
624 /* check for lost packets */
625 while (1) {
626 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700627 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800628 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700629 /* XXX need to traverse from tail -> head in
630 * order to detect multiple congestion events in
631 * one ack vector.
632 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200633 ccid2_congestion_event(sk, seqp);
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000634 hc->tx_pipe--;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800635 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000636 if (seqp == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800637 break;
638 seqp = seqp->ccid2s_prev;
639 }
640
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000641 hc->tx_seqt = last_acked;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800642 }
643
644 /* trim acked packets in tail */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000645 while (hc->tx_seqt != hc->tx_seqh) {
646 if (!hc->tx_seqt->ccid2s_acked)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800647 break;
648
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000649 hc->tx_seqt = hc->tx_seqt->ccid2s_next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800650 }
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000651
652 /* restart RTO timer if not all outstanding data has been acked */
653 if (hc->tx_pipe == 0)
654 sk_stop_timer(sk, &hc->tx_rtotimer);
655 else
656 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800657}
658
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800659static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800660{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000661 struct ccid2_hc_tx_sock *hc = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200662 struct dccp_sock *dp = dccp_sk(sk);
663 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800664
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200665 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000666 hc->tx_ssthresh = ~0U;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800667
Gerrit Renker410e27a2008-09-09 13:27:22 +0200668 /*
669 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
670 * packets for new connections, following the rules from [RFC3390]".
671 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
672 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000673 hc->tx_cwnd = clamp(4380U / dp->dccps_mss_cache, 2U, 4U);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200674
675 /* Make sure that Ack Ratio is enabled and within bounds. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000676 max_ratio = DIV_ROUND_UP(hc->tx_cwnd, 2);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200677 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
678 dp->dccps_l_ack_ratio = max_ratio;
679
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800680 /* XXX init ~ to window size... */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000681 if (ccid2_hc_tx_alloc_seq(hc))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800682 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800683
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000684 hc->tx_rto = DCCP_TIMEOUT_INIT;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000685 hc->tx_rpdupack = -1;
686 hc->tx_last_cong = jiffies;
687 setup_timer(&hc->tx_rtotimer, ccid2_hc_tx_rto_expire,
Gerrit Renker410e27a2008-09-09 13:27:22 +0200688 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800689 return 0;
690}
691
692static void ccid2_hc_tx_exit(struct sock *sk)
693{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000694 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700695 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800696
Gerrit Renker410e27a2008-09-09 13:27:22 +0200697 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700698
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000699 for (i = 0; i < hc->tx_seqbufc; i++)
700 kfree(hc->tx_seqbuf[i]);
701 hc->tx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800702}
703
704static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
705{
706 const struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000707 struct ccid2_hc_rx_sock *hc = ccid2_hc_rx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800708
709 switch (DCCP_SKB_CB(skb)->dccpd_type) {
710 case DCCP_PKT_DATA:
711 case DCCP_PKT_DATAACK:
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000712 hc->rx_data++;
713 if (hc->rx_data >= dp->dccps_r_ack_ratio) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800714 dccp_send_ack(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000715 hc->rx_data = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800716 }
717 break;
718 }
719}
720
Gerrit Renkerddebc972009-01-04 21:42:53 -0800721struct ccid_operations ccid2_ops = {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200722 .ccid_id = DCCPC_CCID2,
723 .ccid_name = "TCP-like",
Gerrit Renker410e27a2008-09-09 13:27:22 +0200724 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
725 .ccid_hc_tx_init = ccid2_hc_tx_init,
726 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
727 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
728 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
729 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
730 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
731 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800732};
733
Gerrit Renker84116712006-11-20 18:26:03 -0200734#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker43264992008-08-23 13:28:27 +0200735module_param(ccid2_debug, bool, 0644);
Gerrit Renkerddebc972009-01-04 21:42:53 -0800736MODULE_PARM_DESC(ccid2_debug, "Enable CCID-2 debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200737#endif