[CCID2]: Replace pipe assignment-function with assignment
[pandora-kernel.git] / net / dccp / ccids / ccid2.c
1 /*
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 /*
26  * This implementation should follow RFC 4341
27  */
28
29 #include "../ccid.h"
30 #include "../dccp.h"
31 #include "ccid2.h"
32
33
34 #ifdef CONFIG_IP_DCCP_CCID2_DEBUG
35 static int ccid2_debug;
36 #define ccid2_pr_debug(format, a...)    DCCP_PR_DEBUG(ccid2_debug, format, ##a)
37
38 static 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 }
79 #else
80 #define ccid2_pr_debug(format, a...)
81 #define ccid2_hc_tx_check_sanity(hctx)
82 #endif
83
84 static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hctx)
85 {
86         struct ccid2_seq *seqp;
87         int i;
88
89         /* check if we have space to preserve the pointer to the buffer */
90         if (hctx->ccid2hctx_seqbufc >= (sizeof(hctx->ccid2hctx_seqbuf) /
91                                         sizeof(struct ccid2_seq*)))
92                 return -ENOMEM;
93
94         /* allocate buffer and initialize linked list */
95         seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any());
96         if (seqp == NULL)
97                 return -ENOMEM;
98
99         for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) {
100                 seqp[i].ccid2s_next = &seqp[i + 1];
101                 seqp[i + 1].ccid2s_prev = &seqp[i];
102         }
103         seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp;
104         seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
105
106         /* This is the first allocation.  Initiate the head and tail.  */
107         if (hctx->ccid2hctx_seqbufc == 0)
108                 hctx->ccid2hctx_seqh = hctx->ccid2hctx_seqt = seqp;
109         else {
110                 /* link the existing list with the one we just created */
111                 hctx->ccid2hctx_seqh->ccid2s_next = seqp;
112                 seqp->ccid2s_prev = hctx->ccid2hctx_seqh;
113
114                 hctx->ccid2hctx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1];
115                 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hctx->ccid2hctx_seqt;
116         }
117
118         /* store the original pointer to the buffer so we can free it */
119         hctx->ccid2hctx_seqbuf[hctx->ccid2hctx_seqbufc] = seqp;
120         hctx->ccid2hctx_seqbufc++;
121
122         return 0;
123 }
124
125 static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
126 {
127         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
128
129         ccid2_pr_debug("pipe=%d cwnd=%d\n", hctx->ccid2hctx_pipe,
130                        hctx->ccid2hctx_cwnd);
131
132         if (hctx->ccid2hctx_pipe < hctx->ccid2hctx_cwnd) {
133                 /* OK we can send... make sure previous packet was sent off */
134                 if (!hctx->ccid2hctx_sendwait) {
135                         hctx->ccid2hctx_sendwait = 1;
136                         return 0;
137                 }
138         }
139
140         return 1; /* XXX CCID should dequeue when ready instead of polling */
141 }
142
143 static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val)
144 {
145         struct dccp_sock *dp = dccp_sk(sk);
146         u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->ccid2hctx_cwnd, 2);
147
148         /*
149          * Ensure that Ack Ratio does not exceed ceil(cwnd/2), which is (2) from
150          * RFC 4341, 6.1.2. We ignore the statement that Ack Ratio 2 is always
151          * acceptable since this causes starvation/deadlock whenever cwnd < 2.
152          * The same problem arises when Ack Ratio is 0 (ie. Ack Ratio disabled).
153          */
154         if (val == 0 || val > max_ratio) {
155                 DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio);
156                 val = max_ratio;
157         }
158         if (val > 0xFFFF)               /* RFC 4340, 11.3 */
159                 val = 0xFFFF;
160
161         if (val == dp->dccps_l_ack_ratio)
162                 return;
163
164         ccid2_pr_debug("changing local ack ratio to %u\n", val);
165         dp->dccps_l_ack_ratio = val;
166 }
167
168 static void ccid2_change_srtt(struct ccid2_hc_tx_sock *hctx, long val)
169 {
170         ccid2_pr_debug("change SRTT to %ld\n", val);
171         hctx->ccid2hctx_srtt = val;
172 }
173
174 static void ccid2_start_rto_timer(struct sock *sk);
175
176 static void ccid2_hc_tx_rto_expire(unsigned long data)
177 {
178         struct sock *sk = (struct sock *)data;
179         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
180         long s;
181
182         bh_lock_sock(sk);
183         if (sock_owned_by_user(sk)) {
184                 sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
185                                jiffies + HZ / 5);
186                 goto out;
187         }
188
189         ccid2_pr_debug("RTO_EXPIRE\n");
190
191         ccid2_hc_tx_check_sanity(hctx);
192
193         /* back-off timer */
194         hctx->ccid2hctx_rto <<= 1;
195
196         s = hctx->ccid2hctx_rto / HZ;
197         if (s > 60)
198                 hctx->ccid2hctx_rto = 60 * HZ;
199
200         ccid2_start_rto_timer(sk);
201
202         /* adjust pipe, cwnd etc */
203         hctx->ccid2hctx_ssthresh = hctx->ccid2hctx_cwnd / 2;
204         if (hctx->ccid2hctx_ssthresh < 2)
205                 hctx->ccid2hctx_ssthresh = 2;
206         hctx->ccid2hctx_cwnd     = 1;
207         hctx->ccid2hctx_pipe     = 0;
208
209         /* clear state about stuff we sent */
210         hctx->ccid2hctx_seqt    = hctx->ccid2hctx_seqh;
211         hctx->ccid2hctx_ssacks  = 0;
212         hctx->ccid2hctx_acks    = 0;
213
214         /* clear ack ratio state. */
215         hctx->ccid2hctx_rpseq    = 0;
216         hctx->ccid2hctx_rpdupack = -1;
217         ccid2_change_l_ack_ratio(sk, 1);
218         ccid2_hc_tx_check_sanity(hctx);
219 out:
220         bh_unlock_sock(sk);
221         sock_put(sk);
222 }
223
224 static void ccid2_start_rto_timer(struct sock *sk)
225 {
226         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
227
228         ccid2_pr_debug("setting RTO timeout=%ld\n", hctx->ccid2hctx_rto);
229
230         BUG_ON(timer_pending(&hctx->ccid2hctx_rtotimer));
231         sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
232                        jiffies + hctx->ccid2hctx_rto);
233 }
234
235 static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len)
236 {
237         struct dccp_sock *dp = dccp_sk(sk);
238         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
239         struct ccid2_seq *next;
240         u64 seq;
241
242         ccid2_hc_tx_check_sanity(hctx);
243
244         BUG_ON(!hctx->ccid2hctx_sendwait);
245         hctx->ccid2hctx_sendwait = 0;
246         hctx->ccid2hctx_pipe++;
247
248         /* There is an issue.  What if another packet is sent between
249          * packet_send() and packet_sent().  Then the sequence number would be
250          * wrong.
251          * -sorbo.
252          */
253         seq = dp->dccps_gss;
254
255         hctx->ccid2hctx_seqh->ccid2s_seq   = seq;
256         hctx->ccid2hctx_seqh->ccid2s_acked = 0;
257         hctx->ccid2hctx_seqh->ccid2s_sent  = jiffies;
258
259         next = hctx->ccid2hctx_seqh->ccid2s_next;
260         /* check if we need to alloc more space */
261         if (next == hctx->ccid2hctx_seqt) {
262                 if (ccid2_hc_tx_alloc_seq(hctx)) {
263                         DCCP_CRIT("packet history - out of memory!");
264                         /* FIXME: find a more graceful way to bail out */
265                         return;
266                 }
267                 next = hctx->ccid2hctx_seqh->ccid2s_next;
268                 BUG_ON(next == hctx->ccid2hctx_seqt);
269         }
270         hctx->ccid2hctx_seqh = next;
271
272         ccid2_pr_debug("cwnd=%d pipe=%d\n", hctx->ccid2hctx_cwnd,
273                        hctx->ccid2hctx_pipe);
274
275         /*
276          * FIXME: The code below is broken and the variables have been removed
277          * from the socket struct. The `ackloss' variable was always set to 0,
278          * and with arsent there are several problems:
279          *  (i) it doesn't just count the number of Acks, but all sent packets;
280          *  (ii) it is expressed in # of packets, not # of windows, so the
281          *  comparison below uses the wrong formula: Appendix A of RFC 4341
282          *  comes up with the number K = cwnd / (R^2 - R) of consecutive windows
283          *  of data with no lost or marked Ack packets. If arsent were the # of
284          *  consecutive Acks received without loss, then Ack Ratio needs to be
285          *  decreased by 1 when
286          *            arsent >=  K * cwnd / R  =  cwnd^2 / (R^3 - R^2)
287          *  where cwnd / R is the number of Acks received per window of data
288          *  (cf. RFC 4341, App. A). The problems are that
289          *  - arsent counts other packets as well;
290          *  - the comparison uses a formula different from RFC 4341;
291          *  - computing a cubic/quadratic equation each time is too complicated.
292          *  Hence a different algorithm is needed.
293          */
294 #if 0
295         /* Ack Ratio.  Need to maintain a concept of how many windows we sent */
296         hctx->ccid2hctx_arsent++;
297         /* We had an ack loss in this window... */
298         if (hctx->ccid2hctx_ackloss) {
299                 if (hctx->ccid2hctx_arsent >= hctx->ccid2hctx_cwnd) {
300                         hctx->ccid2hctx_arsent  = 0;
301                         hctx->ccid2hctx_ackloss = 0;
302                 }
303         } else {
304                 /* No acks lost up to now... */
305                 /* decrease ack ratio if enough packets were sent */
306                 if (dp->dccps_l_ack_ratio > 1) {
307                         /* XXX don't calculate denominator each time */
308                         int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
309                                     dp->dccps_l_ack_ratio;
310
311                         denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
312
313                         if (hctx->ccid2hctx_arsent >= denom) {
314                                 ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
315                                 hctx->ccid2hctx_arsent = 0;
316                         }
317                 } else {
318                         /* we can't increase ack ratio further [1] */
319                         hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
320                 }
321         }
322 #endif
323
324         /* setup RTO timer */
325         if (!timer_pending(&hctx->ccid2hctx_rtotimer))
326                 ccid2_start_rto_timer(sk);
327
328 #ifdef CONFIG_IP_DCCP_CCID2_DEBUG
329         ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
330         ccid2_pr_debug("Sent: seq=%llu\n", (unsigned long long)seq);
331         do {
332                 struct ccid2_seq *seqp = hctx->ccid2hctx_seqt;
333
334                 while (seqp != hctx->ccid2hctx_seqh) {
335                         ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n",
336                                        (unsigned long long)seqp->ccid2s_seq,
337                                        seqp->ccid2s_acked, seqp->ccid2s_sent);
338                         seqp = seqp->ccid2s_next;
339                 }
340         } while (0);
341         ccid2_pr_debug("=========\n");
342         ccid2_hc_tx_check_sanity(hctx);
343 #endif
344 }
345
346 /* XXX Lame code duplication!
347  * returns -1 if none was found.
348  * else returns the next offset to use in the function call.
349  */
350 static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
351                            unsigned char **vec, unsigned char *veclen)
352 {
353         const struct dccp_hdr *dh = dccp_hdr(skb);
354         unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
355         unsigned char *opt_ptr;
356         const unsigned char *opt_end = (unsigned char *)dh +
357                                         (dh->dccph_doff * 4);
358         unsigned char opt, len;
359         unsigned char *value;
360
361         BUG_ON(offset < 0);
362         options += offset;
363         opt_ptr = options;
364         if (opt_ptr >= opt_end)
365                 return -1;
366
367         while (opt_ptr != opt_end) {
368                 opt   = *opt_ptr++;
369                 len   = 0;
370                 value = NULL;
371
372                 /* Check if this isn't a single byte option */
373                 if (opt > DCCPO_MAX_RESERVED) {
374                         if (opt_ptr == opt_end)
375                                 goto out_invalid_option;
376
377                         len = *opt_ptr++;
378                         if (len < 3)
379                                 goto out_invalid_option;
380                         /*
381                          * Remove the type and len fields, leaving
382                          * just the value size
383                          */
384                         len     -= 2;
385                         value   = opt_ptr;
386                         opt_ptr += len;
387
388                         if (opt_ptr > opt_end)
389                                 goto out_invalid_option;
390                 }
391
392                 switch (opt) {
393                 case DCCPO_ACK_VECTOR_0:
394                 case DCCPO_ACK_VECTOR_1:
395                         *vec    = value;
396                         *veclen = len;
397                         return offset + (opt_ptr - options);
398                 }
399         }
400
401         return -1;
402
403 out_invalid_option:
404         DCCP_BUG("Invalid option - this should not happen (previous parsing)!");
405         return -1;
406 }
407
408 static void ccid2_hc_tx_kill_rto_timer(struct sock *sk)
409 {
410         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
411
412         sk_stop_timer(sk, &hctx->ccid2hctx_rtotimer);
413         ccid2_pr_debug("deleted RTO timer\n");
414 }
415
416 static inline void ccid2_new_ack(struct sock *sk,
417                                  struct ccid2_seq *seqp,
418                                  unsigned int *maxincr)
419 {
420         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
421
422         /* slow start */
423         if (hctx->ccid2hctx_cwnd < hctx->ccid2hctx_ssthresh) {
424                 hctx->ccid2hctx_acks = 0;
425
426                 /* We can increase cwnd at most maxincr [ack_ratio/2] */
427                 if (*maxincr) {
428                         /* increase every 2 acks */
429                         hctx->ccid2hctx_ssacks++;
430                         if (hctx->ccid2hctx_ssacks == 2) {
431                                 hctx->ccid2hctx_cwnd++;
432                                 hctx->ccid2hctx_ssacks = 0;
433                                 *maxincr = *maxincr - 1;
434                         }
435                 } else {
436                         /* increased cwnd enough for this single ack */
437                         hctx->ccid2hctx_ssacks = 0;
438                 }
439         } else {
440                 hctx->ccid2hctx_ssacks = 0;
441                 hctx->ccid2hctx_acks++;
442
443                 if (hctx->ccid2hctx_acks >= hctx->ccid2hctx_cwnd) {
444                         hctx->ccid2hctx_cwnd++;
445                         hctx->ccid2hctx_acks = 0;
446                 }
447         }
448
449         /* update RTO */
450         if (hctx->ccid2hctx_srtt == -1 ||
451             time_after(jiffies, hctx->ccid2hctx_lastrtt + hctx->ccid2hctx_srtt)) {
452                 unsigned long r = (long)jiffies - (long)seqp->ccid2s_sent;
453                 int s;
454
455                 /* first measurement */
456                 if (hctx->ccid2hctx_srtt == -1) {
457                         ccid2_pr_debug("R: %lu Time=%lu seq=%llu\n",
458                                        r, jiffies,
459                                        (unsigned long long)seqp->ccid2s_seq);
460                         ccid2_change_srtt(hctx, r);
461                         hctx->ccid2hctx_rttvar = r >> 1;
462                 } else {
463                         /* RTTVAR */
464                         long tmp = hctx->ccid2hctx_srtt - r;
465                         long srtt;
466
467                         if (tmp < 0)
468                                 tmp *= -1;
469
470                         tmp >>= 2;
471                         hctx->ccid2hctx_rttvar *= 3;
472                         hctx->ccid2hctx_rttvar >>= 2;
473                         hctx->ccid2hctx_rttvar += tmp;
474
475                         /* SRTT */
476                         srtt = hctx->ccid2hctx_srtt;
477                         srtt *= 7;
478                         srtt >>= 3;
479                         tmp = r >> 3;
480                         srtt += tmp;
481                         ccid2_change_srtt(hctx, srtt);
482                 }
483                 s = hctx->ccid2hctx_rttvar << 2;
484                 /* clock granularity is 1 when based on jiffies */
485                 if (!s)
486                         s = 1;
487                 hctx->ccid2hctx_rto = hctx->ccid2hctx_srtt + s;
488
489                 /* must be at least a second */
490                 s = hctx->ccid2hctx_rto / HZ;
491                 /* DCCP doesn't require this [but I like it cuz my code sux] */
492 #if 1
493                 if (s < 1)
494                         hctx->ccid2hctx_rto = HZ;
495 #endif
496                 /* max 60 seconds */
497                 if (s > 60)
498                         hctx->ccid2hctx_rto = HZ * 60;
499
500                 hctx->ccid2hctx_lastrtt = jiffies;
501
502                 ccid2_pr_debug("srtt: %ld rttvar: %ld rto: %ld (HZ=%d) R=%lu\n",
503                                hctx->ccid2hctx_srtt, hctx->ccid2hctx_rttvar,
504                                hctx->ccid2hctx_rto, HZ, r);
505         }
506
507         /* we got a new ack, so re-start RTO timer */
508         ccid2_hc_tx_kill_rto_timer(sk);
509         ccid2_start_rto_timer(sk);
510 }
511
512 static void ccid2_hc_tx_dec_pipe(struct sock *sk)
513 {
514         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
515
516         if (hctx->ccid2hctx_pipe == 0)
517                 DCCP_BUG("pipe == 0");
518         else
519                 hctx->ccid2hctx_pipe--;
520
521         if (hctx->ccid2hctx_pipe == 0)
522                 ccid2_hc_tx_kill_rto_timer(sk);
523 }
524
525 static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp)
526 {
527         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
528
529         if (time_before(seqp->ccid2s_sent, hctx->ccid2hctx_last_cong)) {
530                 ccid2_pr_debug("Multiple losses in an RTT---treating as one\n");
531                 return;
532         }
533
534         hctx->ccid2hctx_last_cong = jiffies;
535
536         hctx->ccid2hctx_cwnd     = hctx->ccid2hctx_cwnd / 2 ? : 1U;
537         hctx->ccid2hctx_ssthresh = max(hctx->ccid2hctx_cwnd, 2U);
538
539         /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */
540         if (dccp_sk(sk)->dccps_l_ack_ratio > hctx->ccid2hctx_cwnd)
541                 ccid2_change_l_ack_ratio(sk, hctx->ccid2hctx_cwnd);
542 }
543
544 static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
545 {
546         struct dccp_sock *dp = dccp_sk(sk);
547         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
548         u64 ackno, seqno;
549         struct ccid2_seq *seqp;
550         unsigned char *vector;
551         unsigned char veclen;
552         int offset = 0;
553         int done = 0;
554         unsigned int maxincr = 0;
555
556         ccid2_hc_tx_check_sanity(hctx);
557         /* check reverse path congestion */
558         seqno = DCCP_SKB_CB(skb)->dccpd_seq;
559
560         /* XXX this whole "algorithm" is broken.  Need to fix it to keep track
561          * of the seqnos of the dupacks so that rpseq and rpdupack are correct
562          * -sorbo.
563          */
564         /* need to bootstrap */
565         if (hctx->ccid2hctx_rpdupack == -1) {
566                 hctx->ccid2hctx_rpdupack = 0;
567                 hctx->ccid2hctx_rpseq = seqno;
568         } else {
569                 /* check if packet is consecutive */
570                 if (dccp_delta_seqno(hctx->ccid2hctx_rpseq, seqno) == 1)
571                         hctx->ccid2hctx_rpseq = seqno;
572                 /* it's a later packet */
573                 else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
574                         hctx->ccid2hctx_rpdupack++;
575
576                         /* check if we got enough dupacks */
577                         if (hctx->ccid2hctx_rpdupack >= NUMDUPACK) {
578                                 hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
579                                 hctx->ccid2hctx_rpseq = 0;
580
581                                 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
582                         }
583                 }
584         }
585
586         /* check forward path congestion */
587         /* still didn't send out new data packets */
588         if (hctx->ccid2hctx_seqh == hctx->ccid2hctx_seqt)
589                 return;
590
591         switch (DCCP_SKB_CB(skb)->dccpd_type) {
592         case DCCP_PKT_ACK:
593         case DCCP_PKT_DATAACK:
594                 break;
595         default:
596                 return;
597         }
598
599         ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
600         if (after48(ackno, hctx->ccid2hctx_high_ack))
601                 hctx->ccid2hctx_high_ack = ackno;
602
603         seqp = hctx->ccid2hctx_seqt;
604         while (before48(seqp->ccid2s_seq, ackno)) {
605                 seqp = seqp->ccid2s_next;
606                 if (seqp == hctx->ccid2hctx_seqh) {
607                         seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
608                         break;
609                 }
610         }
611
612         /* If in slow-start, cwnd can increase at most Ack Ratio / 2 packets for
613          * this single ack.  I round up.
614          * -sorbo.
615          */
616         maxincr = dp->dccps_l_ack_ratio >> 1;
617         maxincr++;
618
619         /* go through all ack vectors */
620         while ((offset = ccid2_ackvector(sk, skb, offset,
621                                          &vector, &veclen)) != -1) {
622                 /* go through this ack vector */
623                 while (veclen--) {
624                         const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK;
625                         u64 ackno_end_rl = SUB48(ackno, rl);
626
627                         ccid2_pr_debug("ackvec start:%llu end:%llu\n",
628                                        (unsigned long long)ackno,
629                                        (unsigned long long)ackno_end_rl);
630                         /* if the seqno we are analyzing is larger than the
631                          * current ackno, then move towards the tail of our
632                          * seqnos.
633                          */
634                         while (after48(seqp->ccid2s_seq, ackno)) {
635                                 if (seqp == hctx->ccid2hctx_seqt) {
636                                         done = 1;
637                                         break;
638                                 }
639                                 seqp = seqp->ccid2s_prev;
640                         }
641                         if (done)
642                                 break;
643
644                         /* check all seqnos in the range of the vector
645                          * run length
646                          */
647                         while (between48(seqp->ccid2s_seq,ackno_end_rl,ackno)) {
648                                 const u8 state = *vector &
649                                                  DCCP_ACKVEC_STATE_MASK;
650
651                                 /* new packet received or marked */
652                                 if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED &&
653                                     !seqp->ccid2s_acked) {
654                                         if (state ==
655                                             DCCP_ACKVEC_STATE_ECN_MARKED) {
656                                                 ccid2_congestion_event(sk,
657                                                                        seqp);
658                                         } else
659                                                 ccid2_new_ack(sk, seqp,
660                                                               &maxincr);
661
662                                         seqp->ccid2s_acked = 1;
663                                         ccid2_pr_debug("Got ack for %llu\n",
664                                                        (unsigned long long)seqp->ccid2s_seq);
665                                         ccid2_hc_tx_dec_pipe(sk);
666                                 }
667                                 if (seqp == hctx->ccid2hctx_seqt) {
668                                         done = 1;
669                                         break;
670                                 }
671                                 seqp = seqp->ccid2s_prev;
672                         }
673                         if (done)
674                                 break;
675
676                         ackno = SUB48(ackno_end_rl, 1);
677                         vector++;
678                 }
679                 if (done)
680                         break;
681         }
682
683         /* The state about what is acked should be correct now
684          * Check for NUMDUPACK
685          */
686         seqp = hctx->ccid2hctx_seqt;
687         while (before48(seqp->ccid2s_seq, hctx->ccid2hctx_high_ack)) {
688                 seqp = seqp->ccid2s_next;
689                 if (seqp == hctx->ccid2hctx_seqh) {
690                         seqp = hctx->ccid2hctx_seqh->ccid2s_prev;
691                         break;
692                 }
693         }
694         done = 0;
695         while (1) {
696                 if (seqp->ccid2s_acked) {
697                         done++;
698                         if (done == NUMDUPACK)
699                                 break;
700                 }
701                 if (seqp == hctx->ccid2hctx_seqt)
702                         break;
703                 seqp = seqp->ccid2s_prev;
704         }
705
706         /* If there are at least 3 acknowledgements, anything unacknowledged
707          * below the last sequence number is considered lost
708          */
709         if (done == NUMDUPACK) {
710                 struct ccid2_seq *last_acked = seqp;
711
712                 /* check for lost packets */
713                 while (1) {
714                         if (!seqp->ccid2s_acked) {
715                                 ccid2_pr_debug("Packet lost: %llu\n",
716                                                (unsigned long long)seqp->ccid2s_seq);
717                                 /* XXX need to traverse from tail -> head in
718                                  * order to detect multiple congestion events in
719                                  * one ack vector.
720                                  */
721                                 ccid2_congestion_event(sk, seqp);
722                                 ccid2_hc_tx_dec_pipe(sk);
723                         }
724                         if (seqp == hctx->ccid2hctx_seqt)
725                                 break;
726                         seqp = seqp->ccid2s_prev;
727                 }
728
729                 hctx->ccid2hctx_seqt = last_acked;
730         }
731
732         /* trim acked packets in tail */
733         while (hctx->ccid2hctx_seqt != hctx->ccid2hctx_seqh) {
734                 if (!hctx->ccid2hctx_seqt->ccid2s_acked)
735                         break;
736
737                 hctx->ccid2hctx_seqt = hctx->ccid2hctx_seqt->ccid2s_next;
738         }
739
740         ccid2_hc_tx_check_sanity(hctx);
741 }
742
743 static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
744 {
745         struct ccid2_hc_tx_sock *hctx = ccid_priv(ccid);
746         struct dccp_sock *dp = dccp_sk(sk);
747         u32 max_ratio;
748
749         /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */
750         hctx->ccid2hctx_ssthresh  = ~0U;
751
752         /*
753          * RFC 4341, 5: "The cwnd parameter is initialized to at most four
754          * packets for new connections, following the rules from [RFC3390]".
755          * We need to convert the bytes of RFC3390 into the packets of RFC 4341.
756          */
757         hctx->ccid2hctx_cwnd = min(4U, max(2U, 4380U / dp->dccps_mss_cache));
758
759         /* Make sure that Ack Ratio is enabled and within bounds. */
760         max_ratio = DIV_ROUND_UP(hctx->ccid2hctx_cwnd, 2);
761         if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio)
762                 dp->dccps_l_ack_ratio = max_ratio;
763
764         /* XXX init ~ to window size... */
765         if (ccid2_hc_tx_alloc_seq(hctx))
766                 return -ENOMEM;
767
768         hctx->ccid2hctx_rto      = 3 * HZ;
769         ccid2_change_srtt(hctx, -1);
770         hctx->ccid2hctx_rttvar   = -1;
771         hctx->ccid2hctx_rpdupack = -1;
772         hctx->ccid2hctx_last_cong = jiffies;
773         setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire,
774                         (unsigned long)sk);
775
776         ccid2_hc_tx_check_sanity(hctx);
777         return 0;
778 }
779
780 static void ccid2_hc_tx_exit(struct sock *sk)
781 {
782         struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
783         int i;
784
785         ccid2_hc_tx_kill_rto_timer(sk);
786
787         for (i = 0; i < hctx->ccid2hctx_seqbufc; i++)
788                 kfree(hctx->ccid2hctx_seqbuf[i]);
789         hctx->ccid2hctx_seqbufc = 0;
790 }
791
792 static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
793 {
794         const struct dccp_sock *dp = dccp_sk(sk);
795         struct ccid2_hc_rx_sock *hcrx = ccid2_hc_rx_sk(sk);
796
797         switch (DCCP_SKB_CB(skb)->dccpd_type) {
798         case DCCP_PKT_DATA:
799         case DCCP_PKT_DATAACK:
800                 hcrx->ccid2hcrx_data++;
801                 if (hcrx->ccid2hcrx_data >= dp->dccps_r_ack_ratio) {
802                         dccp_send_ack(sk);
803                         hcrx->ccid2hcrx_data = 0;
804                 }
805                 break;
806         }
807 }
808
809 static struct ccid_operations ccid2 = {
810         .ccid_id                = DCCPC_CCID2,
811         .ccid_name              = "ccid2",
812         .ccid_owner             = THIS_MODULE,
813         .ccid_hc_tx_obj_size    = sizeof(struct ccid2_hc_tx_sock),
814         .ccid_hc_tx_init        = ccid2_hc_tx_init,
815         .ccid_hc_tx_exit        = ccid2_hc_tx_exit,
816         .ccid_hc_tx_send_packet = ccid2_hc_tx_send_packet,
817         .ccid_hc_tx_packet_sent = ccid2_hc_tx_packet_sent,
818         .ccid_hc_tx_packet_recv = ccid2_hc_tx_packet_recv,
819         .ccid_hc_rx_obj_size    = sizeof(struct ccid2_hc_rx_sock),
820         .ccid_hc_rx_packet_recv = ccid2_hc_rx_packet_recv,
821 };
822
823 #ifdef CONFIG_IP_DCCP_CCID2_DEBUG
824 module_param(ccid2_debug, bool, 0444);
825 MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
826 #endif
827
828 static __init int ccid2_module_init(void)
829 {
830         return ccid_register(&ccid2);
831 }
832 module_init(ccid2_module_init);
833
834 static __exit void ccid2_module_exit(void)
835 {
836         ccid_unregister(&ccid2);
837 }
838 module_exit(ccid2_module_exit);
839
840 MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
841 MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
842 MODULE_LICENSE("GPL");
843 MODULE_ALIAS("net-dccp-ccid-2");