blob: 0cff637a4a51520de0c99aa48c8fec3dfa56f9fa [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 "ccid2.h"
29
Gerrit Renker84116712006-11-20 18:26:03 -020030
31#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -080032static int ccid2_debug;
Gerrit Renker84116712006-11-20 18:26:03 -020033#define ccid2_pr_debug(format, a...) DCCP_PR_DEBUG(ccid2_debug, format, ##a)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080034#else
Gerrit Renker84116712006-11-20 18:26:03 -020035#define ccid2_pr_debug(format, a...)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080036#endif
37
Gerrit Renker77d2dd92009-10-05 00:53:12 +000038static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hc)
Andrea Bittau07978aa2006-09-19 13:13:37 -070039{
40 struct ccid2_seq *seqp;
41 int i;
42
43 /* check if we have space to preserve the pointer to the buffer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000044 if (hc->tx_seqbufc >= (sizeof(hc->tx_seqbuf) /
45 sizeof(struct ccid2_seq *)))
Andrea Bittau07978aa2006-09-19 13:13:37 -070046 return -ENOMEM;
47
48 /* allocate buffer and initialize linked list */
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070049 seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any());
Andrea Bittau07978aa2006-09-19 13:13:37 -070050 if (seqp == NULL)
51 return -ENOMEM;
52
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070053 for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) {
Andrea Bittau07978aa2006-09-19 13:13:37 -070054 seqp[i].ccid2s_next = &seqp[i + 1];
55 seqp[i + 1].ccid2s_prev = &seqp[i];
56 }
Gerrit Renkercd1f7d32007-10-04 14:41:00 -070057 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp;
58 seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
Andrea Bittau07978aa2006-09-19 13:13:37 -070059
60 /* This is the first allocation. Initiate the head and tail. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000061 if (hc->tx_seqbufc == 0)
62 hc->tx_seqh = hc->tx_seqt = seqp;
Andrea Bittau07978aa2006-09-19 13:13:37 -070063 else {
64 /* link the existing list with the one we just created */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000065 hc->tx_seqh->ccid2s_next = seqp;
66 seqp->ccid2s_prev = hc->tx_seqh;
Andrea Bittau07978aa2006-09-19 13:13:37 -070067
Gerrit Renker77d2dd92009-10-05 00:53:12 +000068 hc->tx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
69 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hc->tx_seqt;
Andrea Bittau07978aa2006-09-19 13:13:37 -070070 }
71
72 /* store the original pointer to the buffer so we can free it */
Gerrit Renker77d2dd92009-10-05 00:53:12 +000073 hc->tx_seqbuf[hc->tx_seqbufc] = seqp;
74 hc->tx_seqbufc++;
Andrea Bittau07978aa2006-09-19 13:13:37 -070075
76 return 0;
77}
78
Gerrit Renker6b57c932006-11-28 19:55:06 -020079static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080080{
Gerrit Renker77d2dd92009-10-05 00:53:12 +000081 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +020082
Gerrit Renker77d2dd92009-10-05 00:53:12 +000083 if (hc->tx_pipe < hc->tx_cwnd)
Gerrit Renker410e27a2008-09-09 13:27:22 +020084 return 0;
85
86 return 1; /* XXX CCID should dequeue when ready instead of polling */
Andrea Bittau2a91aa32006-03-20 17:41:47 -080087}
88
Gerrit Renkerdf054e12007-11-24 21:32:53 -020089static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
Andrea Bittau2a91aa32006-03-20 17:41:47 -080090{
91 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renkerb1c00fe2009-10-05 00:53:10 +000092 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->tx_cwnd, 2);
Gerrit Renkerd50ad162007-11-24 21:40:24 -020093
Andrea Bittau2a91aa32006-03-20 17:41:47 -080094 /*
Gerrit Renkerd50ad162007-11-24 21:40:24 -020095 * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
96 * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
97 * acceptable since this causes starvation/deadlock whenever cwnd < 2.
98 * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
Andrea Bittau2a91aa32006-03-20 17:41:47 -080099 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200100 if (val == 0 || val > max_ratio) {
101 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
102 val = max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800103 }
Gerrit Renkere8ef9672008-11-12 00:43:40 -0800104 if (val > DCCPF_ACK_RATIO_MAX)
105 val = DCCPF_ACK_RATIO_MAX;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800106
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200107 if (val == dp->dccps_l_ack_ratio)
108 return;
109
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200110 ccid2_pr_debug("changing local ack ratio to %u\n", val);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800111 dp->dccps_l_ack_ratio = val;
112}
113
Gerrit Renker410e27a2008-09-09 13:27:22 +0200114static void ccid2_start_rto_timer(struct sock *sk);
115
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800116static void ccid2_hc_tx_rto_expire(unsigned long data)
117{
118 struct sock *sk = (struct sock *)data;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000119 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800120
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800121 bh_lock_sock(sk);
122 if (sock_owned_by_user(sk)) {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000123 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + HZ / 5);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800124 goto out;
125 }
126
127 ccid2_pr_debug("RTO_EXPIRE\n");
128
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800129 /* back-off timer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000130 hc->tx_rto <<= 1;
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000131 if (hc->tx_rto > DCCP_RTO_MAX)
132 hc->tx_rto = DCCP_RTO_MAX;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200133
134 ccid2_start_rto_timer(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800135
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800136 /* adjust pipe, cwnd etc */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000137 hc->tx_ssthresh = hc->tx_cwnd / 2;
138 if (hc->tx_ssthresh < 2)
139 hc->tx_ssthresh = 2;
Gerrit Renker67b67e32010-08-22 19:41:36 +0000140 hc->tx_cwnd = 1;
141 hc->tx_pipe = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800142
143 /* clear state about stuff we sent */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000144 hc->tx_seqt = hc->tx_seqh;
145 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800146
147 /* clear ack ratio state. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000148 hc->tx_rpseq = 0;
149 hc->tx_rpdupack = -1;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800150 ccid2_change_l_ack_ratio(sk, 1);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800151out:
152 bh_unlock_sock(sk);
Andrea Bittau77ff72d2006-03-20 17:57:52 -0800153 sock_put(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800154}
155
Gerrit Renker410e27a2008-09-09 13:27:22 +0200156static void ccid2_start_rto_timer(struct sock *sk)
157{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000158 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200159
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000160 ccid2_pr_debug("setting RTO timeout=%u\n", hc->tx_rto);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200161
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000162 BUG_ON(timer_pending(&hc->tx_rtotimer));
163 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200164}
165
166static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800167{
168 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000169 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700170 struct ccid2_seq *next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800171
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000172 hc->tx_pipe++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800173
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000174 hc->tx_seqh->ccid2s_seq = dp->dccps_gss;
175 hc->tx_seqh->ccid2s_acked = 0;
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000176 hc->tx_seqh->ccid2s_sent = ccid2_time_stamp;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700177
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000178 next = hc->tx_seqh->ccid2s_next;
Andrea Bittau07978aa2006-09-19 13:13:37 -0700179 /* check if we need to alloc more space */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000180 if (next == hc->tx_seqt) {
181 if (ccid2_hc_tx_alloc_seq(hc)) {
Gerrit Renker7d9e8932007-10-04 14:41:26 -0700182 DCCP_CRIT("packet history - out of memory!");
183 /* FIXME: find a more graceful way to bail out */
184 return;
185 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000186 next = hc->tx_seqh->ccid2s_next;
187 BUG_ON(next == hc->tx_seqt);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700188 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000189 hc->tx_seqh = next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800190
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000191 ccid2_pr_debug("cwnd=%d pipe=%d\n", hc->tx_cwnd, hc->tx_pipe);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800192
Gerrit Renker900bfed2007-11-24 21:58:33 -0200193 /*
194 * FIXME: The code below is broken and the variables have been removed
195 * from the socket struct. The `ackloss' variable was always set to 0,
196 * and with arsent there are several problems:
197 * (i) it doesn't just count the number of Acks, but all sent packets;
198 * (ii) it is expressed in # of packets, not # of windows, so the
199 * comparison below uses the wrong formula: Appendix A of RFC 4341
200 * comes up with the number K = cwnd / (R^2 - R) of consecutive windows
201 * of data with no lost or marked Ack packets. If arsent were the # of
202 * consecutive Acks received without loss, then Ack Ratio needs to be
203 * decreased by 1 when
204 * arsent >= K * cwnd / R = cwnd^2 / (R^3 - R^2)
205 * where cwnd / R is the number of Acks received per window of data
206 * (cf. RFC 4341, App. A). The problems are that
207 * - arsent counts other packets as well;
208 * - the comparison uses a formula different from RFC 4341;
209 * - computing a cubic/quadratic equation each time is too complicated.
210 * Hence a different algorithm is needed.
211 */
212#if 0
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800213 /* Ack Ratio. Need to maintain a concept of how many windows we sent */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000214 hc->tx_arsent++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800215 /* We had an ack loss in this window... */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000216 if (hc->tx_ackloss) {
217 if (hc->tx_arsent >= hc->tx_cwnd) {
218 hc->tx_arsent = 0;
219 hc->tx_ackloss = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800220 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800221 } else {
222 /* No acks lost up to now... */
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800223 /* decrease ack ratio if enough packets were sent */
224 if (dp->dccps_l_ack_ratio > 1) {
225 /* XXX don't calculate denominator each time */
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800226 int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
227 dp->dccps_l_ack_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800228
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000229 denom = hc->tx_cwnd * hc->tx_cwnd / denom;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800230
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000231 if (hc->tx_arsent >= denom) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800232 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000233 hc->tx_arsent = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800234 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800235 } else {
236 /* we can't increase ack ratio further [1] */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000237 hc->tx_arsent = 0; /* or maybe set it to cwnd*/
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800238 }
239 }
Gerrit Renker900bfed2007-11-24 21:58:33 -0200240#endif
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800241
242 /* setup RTO timer */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000243 if (!timer_pending(&hc->tx_rtotimer))
Gerrit Renker410e27a2008-09-09 13:27:22 +0200244 ccid2_start_rto_timer(sk);
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800245
Andrea Bittau8d424f62006-09-19 13:12:44 -0700246#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800247 do {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000248 struct ccid2_seq *seqp = hc->tx_seqt;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800249
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000250 while (seqp != hc->tx_seqh) {
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000251 ccid2_pr_debug("out seq=%llu acked=%d time=%u\n",
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200252 (unsigned long long)seqp->ccid2s_seq,
Randy Dunlap234af482006-10-29 16:03:30 -0800253 seqp->ccid2s_acked, seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800254 seqp = seqp->ccid2s_next;
255 }
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800256 } while (0);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800257 ccid2_pr_debug("=========\n");
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800258#endif
259}
260
Gerrit Renker410e27a2008-09-09 13:27:22 +0200261/* XXX Lame code duplication!
262 * returns -1 if none was found.
263 * else returns the next offset to use in the function call.
Gerrit Renker14355622008-09-04 07:30:19 +0200264 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200265static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
266 unsigned char **vec, unsigned char *veclen)
Gerrit Renker14355622008-09-04 07:30:19 +0200267{
Gerrit Renker410e27a2008-09-09 13:27:22 +0200268 const struct dccp_hdr *dh = dccp_hdr(skb);
269 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
270 unsigned char *opt_ptr;
271 const unsigned char *opt_end = (unsigned char *)dh +
272 (dh->dccph_doff * 4);
273 unsigned char opt, len;
274 unsigned char *value;
Gerrit Renker14355622008-09-04 07:30:19 +0200275
Gerrit Renker410e27a2008-09-09 13:27:22 +0200276 BUG_ON(offset < 0);
277 options += offset;
278 opt_ptr = options;
279 if (opt_ptr >= opt_end)
280 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200281
Gerrit Renker410e27a2008-09-09 13:27:22 +0200282 while (opt_ptr != opt_end) {
283 opt = *opt_ptr++;
284 len = 0;
285 value = NULL;
Gerrit Renker14355622008-09-04 07:30:19 +0200286
Gerrit Renker410e27a2008-09-09 13:27:22 +0200287 /* Check if this isn't a single byte option */
288 if (opt > DCCPO_MAX_RESERVED) {
289 if (opt_ptr == opt_end)
290 goto out_invalid_option;
291
292 len = *opt_ptr++;
293 if (len < 3)
294 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200295 /*
Gerrit Renker410e27a2008-09-09 13:27:22 +0200296 * Remove the type and len fields, leaving
297 * just the value size
Gerrit Renker14355622008-09-04 07:30:19 +0200298 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200299 len -= 2;
300 value = opt_ptr;
301 opt_ptr += len;
Gerrit Renker14355622008-09-04 07:30:19 +0200302
Gerrit Renker410e27a2008-09-09 13:27:22 +0200303 if (opt_ptr > opt_end)
304 goto out_invalid_option;
Gerrit Renker14355622008-09-04 07:30:19 +0200305 }
306
Gerrit Renker410e27a2008-09-09 13:27:22 +0200307 switch (opt) {
308 case DCCPO_ACK_VECTOR_0:
309 case DCCPO_ACK_VECTOR_1:
310 *vec = value;
311 *veclen = len;
312 return offset + (opt_ptr - options);
Gerrit Renker14355622008-09-04 07:30:19 +0200313 }
314 }
315
Gerrit Renker410e27a2008-09-09 13:27:22 +0200316 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200317
Gerrit Renker410e27a2008-09-09 13:27:22 +0200318out_invalid_option:
319 DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
320 return -1;
Gerrit Renker14355622008-09-04 07:30:19 +0200321}
322
Gerrit Renker410e27a2008-09-09 13:27:22 +0200323static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800324{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000325 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800326
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000327 sk_stop_timer(sk, &hc->tx_rtotimer);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200328 ccid2_pr_debug("deleted RTO timer\n");
329}
330
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000331/**
332 * ccid2_rtt_estimator - Sample RTT and compute RTO using RFC2988 algorithm
333 * This code is almost identical with TCP's tcp_rtt_estimator(), since
334 * - it has a higher sampling frequency (recommended by RFC 1323),
335 * - the RTO does not collapse into RTT due to RTTVAR going towards zero,
336 * - it is simple (cf. more complex proposals such as Eifel timer or research
337 * which suggests that the gain should be set according to window size),
338 * - in tests it was found to work well with CCID2 [gerrit].
339 */
340static void ccid2_rtt_estimator(struct sock *sk, const long mrtt)
341{
342 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
343 long m = mrtt ? : 1;
344
345 if (hc->tx_srtt == 0) {
346 /* First measurement m */
347 hc->tx_srtt = m << 3;
348 hc->tx_mdev = m << 1;
349
350 hc->tx_mdev_max = max(TCP_RTO_MIN, hc->tx_mdev);
351 hc->tx_rttvar = hc->tx_mdev_max;
352 hc->tx_rtt_seq = dccp_sk(sk)->dccps_gss;
353 } else {
354 /* Update scaled SRTT as SRTT += 1/8 * (m - SRTT) */
355 m -= (hc->tx_srtt >> 3);
356 hc->tx_srtt += m;
357
358 /* Similarly, update scaled mdev with regard to |m| */
359 if (m < 0) {
360 m = -m;
361 m -= (hc->tx_mdev >> 2);
362 /*
363 * This neutralises RTO increase when RTT < SRTT - mdev
364 * (see P. Sarolahti, A. Kuznetsov,"Congestion Control
365 * in Linux TCP", USENIX 2002, pp. 49-62).
366 */
367 if (m > 0)
368 m >>= 3;
369 } else {
370 m -= (hc->tx_mdev >> 2);
371 }
372 hc->tx_mdev += m;
373
374 if (hc->tx_mdev > hc->tx_mdev_max) {
375 hc->tx_mdev_max = hc->tx_mdev;
376 if (hc->tx_mdev_max > hc->tx_rttvar)
377 hc->tx_rttvar = hc->tx_mdev_max;
378 }
379
380 /*
381 * Decay RTTVAR at most once per flight, exploiting that
382 * 1) pipe <= cwnd <= Sequence_Window = W (RFC 4340, 7.5.2)
383 * 2) AWL = GSS-W+1 <= GAR <= GSS (RFC 4340, 7.5.1)
384 * GAR is a useful bound for FlightSize = pipe.
385 * AWL is probably too low here, as it over-estimates pipe.
386 */
387 if (after48(dccp_sk(sk)->dccps_gar, hc->tx_rtt_seq)) {
388 if (hc->tx_mdev_max < hc->tx_rttvar)
389 hc->tx_rttvar -= (hc->tx_rttvar -
390 hc->tx_mdev_max) >> 2;
391 hc->tx_rtt_seq = dccp_sk(sk)->dccps_gss;
392 hc->tx_mdev_max = TCP_RTO_MIN;
393 }
394 }
395
396 /*
397 * Set RTO from SRTT and RTTVAR
398 * As in TCP, 4 * RTTVAR >= TCP_RTO_MIN, giving a minimum RTO of 200 ms.
399 * This agrees with RFC 4341, 5:
400 * "Because DCCP does not retransmit data, DCCP does not require
401 * TCP's recommended minimum timeout of one second".
402 */
403 hc->tx_rto = (hc->tx_srtt >> 3) + hc->tx_rttvar;
404
405 if (hc->tx_rto > DCCP_RTO_MAX)
406 hc->tx_rto = DCCP_RTO_MAX;
407}
408
409static void ccid2_new_ack(struct sock *sk, struct ccid2_seq *seqp,
410 unsigned int *maxincr)
Gerrit Renker410e27a2008-09-09 13:27:22 +0200411{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000412 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200413
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000414 if (hc->tx_cwnd < hc->tx_ssthresh) {
415 if (*maxincr > 0 && ++hc->tx_packets_acked == 2) {
416 hc->tx_cwnd += 1;
417 *maxincr -= 1;
418 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800419 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000420 } else if (++hc->tx_packets_acked >= hc->tx_cwnd) {
421 hc->tx_cwnd += 1;
422 hc->tx_packets_acked = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800423 }
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000424 /*
425 * FIXME: RTT is sampled several times per acknowledgment (for each
426 * entry in the Ack Vector), instead of once per Ack (as in TCP SACK).
427 * This causes the RTT to be over-estimated, since the older entries
428 * in the Ack Vector have earlier sending times.
429 * The cleanest solution is to not use the ccid2s_sent field at all
430 * and instead use DCCP timestamps: requires changes in other places.
431 */
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000432 ccid2_rtt_estimator(sk, ccid2_time_stamp - seqp->ccid2s_sent);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800433}
434
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200435static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
Andrea Bittau374bcf32006-09-19 13:14:43 -0700436{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000437 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200438
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000439 if ((s32)(seqp->ccid2s_sent - hc->tx_last_cong) < 0) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700440 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
441 return;
442 }
443
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000444 hc->tx_last_cong = ccid2_time_stamp;
Andrea Bittau374bcf32006-09-19 13:14:43 -0700445
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000446 hc->tx_cwnd = hc->tx_cwnd / 2 ? : 1U;
447 hc->tx_ssthresh = max(hc->tx_cwnd, 2U);
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200448
449 /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000450 if (dccp_sk(sk)->dccps_l_ack_ratio > hc->tx_cwnd)
451 ccid2_change_l_ack_ratio(sk, hc->tx_cwnd);
Gerrit Renkerc8bf4622008-09-04 07:30:19 +0200452}
453
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800454static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
455{
456 struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000457 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800458 u64 ackno, seqno;
459 struct ccid2_seq *seqp;
Gerrit Renker410e27a2008-09-09 13:27:22 +0200460 unsigned char *vector;
461 unsigned char veclen;
462 int offset = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800463 int done = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800464 unsigned int maxincr = 0;
465
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800466 /* check reverse path congestion */
467 seqno = DCCP_SKB_CB(skb)->dccpd_seq;
468
469 /* XXX this whole "algorithm" is broken. Need to fix it to keep track
470 * of the seqnos of the dupacks so that rpseq and rpdupack are correct
471 * -sorbo.
472 */
473 /* need to bootstrap */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000474 if (hc->tx_rpdupack == -1) {
475 hc->tx_rpdupack = 0;
476 hc->tx_rpseq = seqno;
Arnaldo Carvalho de Meloc0c736d2006-03-20 22:05:37 -0800477 } else {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800478 /* check if packet is consecutive */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000479 if (dccp_delta_seqno(hc->tx_rpseq, seqno) == 1)
480 hc->tx_rpseq = seqno;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800481 /* it's a later packet */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000482 else if (after48(seqno, hc->tx_rpseq)) {
483 hc->tx_rpdupack++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800484
485 /* check if we got enough dupacks */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000486 if (hc->tx_rpdupack >= NUMDUPACK) {
487 hc->tx_rpdupack = -1; /* XXX lame */
488 hc->tx_rpseq = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800489
Gerrit Renkerdf054e12007-11-24 21:32:53 -0200490 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800491 }
492 }
493 }
494
495 /* check forward path congestion */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200496 /* still didn't send out new data packets */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000497 if (hc->tx_seqh == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800498 return;
499
Gerrit Renker410e27a2008-09-09 13:27:22 +0200500 switch (DCCP_SKB_CB(skb)->dccpd_type) {
501 case DCCP_PKT_ACK:
502 case DCCP_PKT_DATAACK:
503 break;
504 default:
505 return;
506 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800507
508 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000509 if (after48(ackno, hc->tx_high_ack))
510 hc->tx_high_ack = ackno;
Andrea Bittau32aac182006-11-16 14:28:40 -0200511
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000512 seqp = hc->tx_seqt;
Andrea Bittau32aac182006-11-16 14:28:40 -0200513 while (before48(seqp->ccid2s_seq, ackno)) {
514 seqp = seqp->ccid2s_next;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000515 if (seqp == hc->tx_seqh) {
516 seqp = hc->tx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200517 break;
518 }
519 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800520
Gerrit Renkera3020022007-11-24 22:10:29 -0200521 /*
522 * In slow-start, cwnd can increase up to a maximum of Ack Ratio/2
523 * packets per acknowledgement. Rounding up avoids that cwnd is not
524 * advanced when Ack Ratio is 1 and gives a slight edge otherwise.
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800525 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000526 if (hc->tx_cwnd < hc->tx_ssthresh)
Gerrit Renkera3020022007-11-24 22:10:29 -0200527 maxincr = DIV_ROUND_UP(dp->dccps_l_ack_ratio, 2);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800528
529 /* go through all ack vectors */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200530 while ((offset = ccid2_ackvector(sk, skb, offset,
531 &vector, &veclen)) != -1) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800532 /* go through this ack vector */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200533 while (veclen--) {
534 const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
535 u64 ackno_end_rl = SUB48(ackno, rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800536
Gerrit Renker410e27a2008-09-09 13:27:22 +0200537 ccid2_pr_debug("ackvec start:%llu end:%llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800538 (unsigned long long)ackno,
Gerrit Renker410e27a2008-09-09 13:27:22 +0200539 (unsigned long long)ackno_end_rl);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800540 /* if the seqno we are analyzing is larger than the
541 * current ackno, then move towards the tail of our
542 * seqnos.
543 */
544 while (after48(seqp->ccid2s_seq, ackno)) {
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000545 if (seqp == hc->tx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800546 done = 1;
547 break;
548 }
549 seqp = seqp->ccid2s_prev;
550 }
551 if (done)
552 break;
553
554 /* check all seqnos in the range of the vector
555 * run length
556 */
557 while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200558 const u8 state = *vector &
559 DCCP_ACKVEC_STATE_MASK;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800560
561 /* new packet received or marked */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200562 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800563 !seqp->ccid2s_acked) {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200564 if (state ==
565 DCCP_ACKVEC_STATE_ECN_MARKED) {
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200566 ccid2_congestion_event(sk,
Andrea Bittau374bcf32006-09-19 13:14:43 -0700567 seqp);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200568 } else
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800569 ccid2_new_ack(sk, seqp,
570 &maxincr);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800571
572 seqp->ccid2s_acked = 1;
573 ccid2_pr_debug("Got ack for %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800574 (unsigned long long)seqp->ccid2s_seq);
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000575 hc->tx_pipe--;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800576 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000577 if (seqp == hc->tx_seqt) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800578 done = 1;
579 break;
580 }
Gerrit Renker3de54892007-11-24 20:37:48 -0200581 seqp = seqp->ccid2s_prev;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800582 }
583 if (done)
584 break;
585
Gerrit Renkercfbbeab2007-11-24 20:43:59 -0200586 ackno = SUB48(ackno_end_rl, 1);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200587 vector++;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800588 }
589 if (done)
590 break;
591 }
592
593 /* The state about what is acked should be correct now
594 * Check for NUMDUPACK
595 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000596 seqp = hc->tx_seqt;
597 while (before48(seqp->ccid2s_seq, hc->tx_high_ack)) {
Andrea Bittau32aac182006-11-16 14:28:40 -0200598 seqp = seqp->ccid2s_next;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000599 if (seqp == hc->tx_seqh) {
600 seqp = hc->tx_seqh->ccid2s_prev;
Andrea Bittau32aac182006-11-16 14:28:40 -0200601 break;
602 }
603 }
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800604 done = 0;
605 while (1) {
606 if (seqp->ccid2s_acked) {
607 done++;
Gerrit Renker63df18a2007-11-24 22:04:35 -0200608 if (done == NUMDUPACK)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800609 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800610 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000611 if (seqp == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800612 break;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800613 seqp = seqp->ccid2s_prev;
614 }
615
616 /* If there are at least 3 acknowledgements, anything unacknowledged
617 * below the last sequence number is considered lost
618 */
Gerrit Renker63df18a2007-11-24 22:04:35 -0200619 if (done == NUMDUPACK) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800620 struct ccid2_seq *last_acked = seqp;
621
622 /* check for lost packets */
623 while (1) {
624 if (!seqp->ccid2s_acked) {
Andrea Bittau374bcf32006-09-19 13:14:43 -0700625 ccid2_pr_debug("Packet lost: %llu\n",
Randy Dunlap234af482006-10-29 16:03:30 -0800626 (unsigned long long)seqp->ccid2s_seq);
Andrea Bittau374bcf32006-09-19 13:14:43 -0700627 /* XXX need to traverse from tail -> head in
628 * order to detect multiple congestion events in
629 * one ack vector.
630 */
Gerrit Renkerd50ad162007-11-24 21:40:24 -0200631 ccid2_congestion_event(sk, seqp);
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000632 hc->tx_pipe--;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800633 }
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000634 if (seqp == hc->tx_seqt)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800635 break;
636 seqp = seqp->ccid2s_prev;
637 }
638
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000639 hc->tx_seqt = last_acked;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800640 }
641
642 /* trim acked packets in tail */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000643 while (hc->tx_seqt != hc->tx_seqh) {
644 if (!hc->tx_seqt->ccid2s_acked)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800645 break;
646
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000647 hc->tx_seqt = hc->tx_seqt->ccid2s_next;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800648 }
Gerrit Renkerc38c92a2010-08-22 19:41:39 +0000649
650 /* restart RTO timer if not all outstanding data has been acked */
651 if (hc->tx_pipe == 0)
652 sk_stop_timer(sk, &hc->tx_rtotimer);
653 else
654 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800655}
656
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800657static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800658{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000659 struct ccid2_hc_tx_sock *hc = ccid_priv(ccid);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200660 struct dccp_sock *dp = dccp_sk(sk);
661 u32 max_ratio;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800662
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200663 /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000664 hc->tx_ssthresh = ~0U;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800665
Gerrit Renker410e27a2008-09-09 13:27:22 +0200666 /*
667 * RFC 4341, 5: "The cwnd parameter is initialized to at most four
668 * packets for new connections, following the rules from [RFC3390]".
669 * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
670 */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000671 hc->tx_cwnd = clamp(4380U / dp->dccps_mss_cache, 2U, 4U);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200672
673 /* Make sure that Ack Ratio is enabled and within bounds. */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000674 max_ratio = DIV_ROUND_UP(hc->tx_cwnd, 2);
Gerrit Renkerb00d2bb2007-11-24 21:44:30 -0200675 if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
676 dp->dccps_l_ack_ratio = max_ratio;
677
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800678 /* XXX init ~ to window size... */
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000679 if (ccid2_hc_tx_alloc_seq(hc))
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800680 return -ENOMEM;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800681
Gerrit Renker231cc2a2010-08-22 19:41:40 +0000682 hc->tx_rto = DCCP_TIMEOUT_INIT;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000683 hc->tx_rpdupack = -1;
Gerrit Renkerd82b6f82010-08-29 19:23:10 +0000684 hc->tx_last_cong = ccid2_time_stamp;
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000685 setup_timer(&hc->tx_rtotimer, ccid2_hc_tx_rto_expire,
Gerrit Renker410e27a2008-09-09 13:27:22 +0200686 (unsigned long)sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800687 return 0;
688}
689
690static void ccid2_hc_tx_exit(struct sock *sk)
691{
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000692 struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700693 int i;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800694
Gerrit Renker410e27a2008-09-09 13:27:22 +0200695 ccid2_hc_tx_kill_rto_timer(sk);
Andrea Bittau07978aa2006-09-19 13:13:37 -0700696
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000697 for (i = 0; i < hc->tx_seqbufc; i++)
698 kfree(hc->tx_seqbuf[i]);
699 hc->tx_seqbufc = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800700}
701
702static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
703{
704 const struct dccp_sock *dp = dccp_sk(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000705 struct ccid2_hc_rx_sock *hc = ccid2_hc_rx_sk(sk);
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800706
707 switch (DCCP_SKB_CB(skb)->dccpd_type) {
708 case DCCP_PKT_DATA:
709 case DCCP_PKT_DATAACK:
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000710 hc->rx_data++;
711 if (hc->rx_data >= dp->dccps_r_ack_ratio) {
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800712 dccp_send_ack(sk);
Gerrit Renker77d2dd92009-10-05 00:53:12 +0000713 hc->rx_data = 0;
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800714 }
715 break;
716 }
717}
718
Gerrit Renkerddebc972009-01-04 21:42:53 -0800719struct ccid_operations ccid2_ops = {
Gerrit Renker410e27a2008-09-09 13:27:22 +0200720 .ccid_id = DCCPC_CCID2,
721 .ccid_name = "TCP-like",
Gerrit Renker410e27a2008-09-09 13:27:22 +0200722 .ccid_hc_tx_obj_size = sizeof(struct ccid2_hc_tx_sock),
723 .ccid_hc_tx_init = ccid2_hc_tx_init,
724 .ccid_hc_tx_exit = ccid2_hc_tx_exit,
725 .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
726 .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
727 .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
728 .ccid_hc_rx_obj_size = sizeof(struct ccid2_hc_rx_sock),
729 .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
Andrea Bittau2a91aa32006-03-20 17:41:47 -0800730};
731
Gerrit Renker84116712006-11-20 18:26:03 -0200732#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
Gerrit Renker43264992008-08-23 13:28:27 +0200733module_param(ccid2_debug, bool, 0644);
Gerrit Renkerddebc972009-01-04 21:42:53 -0800734MODULE_PARM_DESC(ccid2_debug, "Enable CCID-2 debug messages");
Gerrit Renker84116712006-11-20 18:26:03 -0200735#endif