Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 1 | /* |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 2 | * 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 Renker | 0e64e94 | 2006-10-24 16:17:51 -0700 | [diff] [blame] | 24 | * This implementation should follow RFC 4341 |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 25 | */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
Gerrit Renker | e8ef967 | 2008-11-12 00:43:40 -0800 | [diff] [blame] | 27 | #include "../feat.h" |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 28 | #include "../ccid.h" |
| 29 | #include "../dccp.h" |
| 30 | #include "ccid2.h" |
| 31 | |
Gerrit Renker | 8411671 | 2006-11-20 18:26:03 -0200 | [diff] [blame] | 32 | |
| 33 | #ifdef CONFIG_IP_DCCP_CCID2_DEBUG |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 34 | static int ccid2_debug; |
Gerrit Renker | 8411671 | 2006-11-20 18:26:03 -0200 | [diff] [blame] | 35 | #define ccid2_pr_debug(format, a...) DCCP_PR_DEBUG(ccid2_debug, format, ##a) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 36 | #else |
Gerrit Renker | 8411671 | 2006-11-20 18:26:03 -0200 | [diff] [blame] | 37 | #define ccid2_pr_debug(format, a...) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 38 | #endif |
| 39 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 40 | static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hc) |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 41 | { |
| 42 | struct ccid2_seq *seqp; |
| 43 | int i; |
| 44 | |
| 45 | /* check if we have space to preserve the pointer to the buffer */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 46 | if (hc->tx_seqbufc >= (sizeof(hc->tx_seqbuf) / |
| 47 | sizeof(struct ccid2_seq *))) |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 48 | return -ENOMEM; |
| 49 | |
| 50 | /* allocate buffer and initialize linked list */ |
Gerrit Renker | cd1f7d3 | 2007-10-04 14:41:00 -0700 | [diff] [blame] | 51 | seqp = kmalloc(CCID2_SEQBUF_LEN * sizeof(struct ccid2_seq), gfp_any()); |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 52 | if (seqp == NULL) |
| 53 | return -ENOMEM; |
| 54 | |
Gerrit Renker | cd1f7d3 | 2007-10-04 14:41:00 -0700 | [diff] [blame] | 55 | for (i = 0; i < (CCID2_SEQBUF_LEN - 1); i++) { |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 56 | seqp[i].ccid2s_next = &seqp[i + 1]; |
| 57 | seqp[i + 1].ccid2s_prev = &seqp[i]; |
| 58 | } |
Gerrit Renker | cd1f7d3 | 2007-10-04 14:41:00 -0700 | [diff] [blame] | 59 | seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = seqp; |
| 60 | seqp->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1]; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 61 | |
| 62 | /* This is the first allocation. Initiate the head and tail. */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 63 | if (hc->tx_seqbufc == 0) |
| 64 | hc->tx_seqh = hc->tx_seqt = seqp; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 65 | else { |
| 66 | /* link the existing list with the one we just created */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 67 | hc->tx_seqh->ccid2s_next = seqp; |
| 68 | seqp->ccid2s_prev = hc->tx_seqh; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 69 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 70 | hc->tx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1]; |
| 71 | seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hc->tx_seqt; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | /* store the original pointer to the buffer so we can free it */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 75 | hc->tx_seqbuf[hc->tx_seqbufc] = seqp; |
| 76 | hc->tx_seqbufc++; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
Gerrit Renker | 6b57c93 | 2006-11-28 19:55:06 -0200 | [diff] [blame] | 81 | static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 82 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 83 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 84 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 85 | if (hc->tx_pipe < hc->tx_cwnd) |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 86 | return 0; |
| 87 | |
| 88 | return 1; /* XXX CCID should dequeue when ready instead of polling */ |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 89 | } |
| 90 | |
Gerrit Renker | df054e1 | 2007-11-24 21:32:53 -0200 | [diff] [blame] | 91 | static void ccid2_change_l_ack_ratio(struct sock *sk, u32 val) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 92 | { |
| 93 | struct dccp_sock *dp = dccp_sk(sk); |
Gerrit Renker | b1c00fe | 2009-10-05 00:53:10 +0000 | [diff] [blame] | 94 | u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->tx_cwnd, 2); |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 95 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 96 | /* |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 97 | * 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 101 | */ |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 102 | if (val == 0 || val > max_ratio) { |
| 103 | DCCP_WARN("Limiting Ack Ratio (%u) to %u\n", val, max_ratio); |
| 104 | val = max_ratio; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 105 | } |
Gerrit Renker | e8ef967 | 2008-11-12 00:43:40 -0800 | [diff] [blame] | 106 | if (val > DCCPF_ACK_RATIO_MAX) |
| 107 | val = DCCPF_ACK_RATIO_MAX; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 108 | |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 109 | if (val == dp->dccps_l_ack_ratio) |
| 110 | return; |
| 111 | |
Gerrit Renker | df054e1 | 2007-11-24 21:32:53 -0200 | [diff] [blame] | 112 | ccid2_pr_debug("changing local ack ratio to %u\n", val); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 113 | dp->dccps_l_ack_ratio = val; |
| 114 | } |
| 115 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 116 | static void ccid2_start_rto_timer(struct sock *sk); |
| 117 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 118 | static void ccid2_hc_tx_rto_expire(unsigned long data) |
| 119 | { |
| 120 | struct sock *sk = (struct sock *)data; |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 121 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 122 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 123 | bh_lock_sock(sk); |
| 124 | if (sock_owned_by_user(sk)) { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 125 | sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + HZ / 5); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 126 | goto out; |
| 127 | } |
| 128 | |
| 129 | ccid2_pr_debug("RTO_EXPIRE\n"); |
| 130 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 131 | /* back-off timer */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 132 | hc->tx_rto <<= 1; |
Gerrit Renker | 231cc2a | 2010-08-22 19:41:40 +0000 | [diff] [blame] | 133 | if (hc->tx_rto > DCCP_RTO_MAX) |
| 134 | hc->tx_rto = DCCP_RTO_MAX; |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 135 | |
| 136 | ccid2_start_rto_timer(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 137 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 138 | /* adjust pipe, cwnd etc */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 139 | hc->tx_ssthresh = hc->tx_cwnd / 2; |
| 140 | if (hc->tx_ssthresh < 2) |
| 141 | hc->tx_ssthresh = 2; |
Gerrit Renker | 67b67e3 | 2010-08-22 19:41:36 +0000 | [diff] [blame] | 142 | hc->tx_cwnd = 1; |
| 143 | hc->tx_pipe = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 144 | |
| 145 | /* clear state about stuff we sent */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 146 | hc->tx_seqt = hc->tx_seqh; |
| 147 | hc->tx_packets_acked = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 148 | |
| 149 | /* clear ack ratio state. */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 150 | hc->tx_rpseq = 0; |
| 151 | hc->tx_rpdupack = -1; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 152 | ccid2_change_l_ack_ratio(sk, 1); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 153 | out: |
| 154 | bh_unlock_sock(sk); |
Andrea Bittau | 77ff72d | 2006-03-20 17:57:52 -0800 | [diff] [blame] | 155 | sock_put(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 156 | } |
| 157 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 158 | static void ccid2_start_rto_timer(struct sock *sk) |
| 159 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 160 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 161 | |
Gerrit Renker | 231cc2a | 2010-08-22 19:41:40 +0000 | [diff] [blame] | 162 | ccid2_pr_debug("setting RTO timeout=%u\n", hc->tx_rto); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 163 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 164 | BUG_ON(timer_pending(&hc->tx_rtotimer)); |
| 165 | sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, unsigned int len) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 169 | { |
| 170 | struct dccp_sock *dp = dccp_sk(sk); |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 171 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 172 | struct ccid2_seq *next; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 173 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 174 | hc->tx_pipe++; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 175 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 176 | hc->tx_seqh->ccid2s_seq = dp->dccps_gss; |
| 177 | hc->tx_seqh->ccid2s_acked = 0; |
| 178 | hc->tx_seqh->ccid2s_sent = jiffies; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 179 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 180 | next = hc->tx_seqh->ccid2s_next; |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 181 | /* check if we need to alloc more space */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 182 | if (next == hc->tx_seqt) { |
| 183 | if (ccid2_hc_tx_alloc_seq(hc)) { |
Gerrit Renker | 7d9e893 | 2007-10-04 14:41:26 -0700 | [diff] [blame] | 184 | DCCP_CRIT("packet history - out of memory!"); |
| 185 | /* FIXME: find a more graceful way to bail out */ |
| 186 | return; |
| 187 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 188 | next = hc->tx_seqh->ccid2s_next; |
| 189 | BUG_ON(next == hc->tx_seqt); |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 190 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 191 | hc->tx_seqh = next; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 192 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 193 | ccid2_pr_debug("cwnd=%d pipe=%d\n", hc->tx_cwnd, hc->tx_pipe); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 194 | |
Gerrit Renker | 900bfed | 2007-11-24 21:58:33 -0200 | [diff] [blame] | 195 | /* |
| 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 215 | /* Ack Ratio. Need to maintain a concept of how many windows we sent */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 216 | hc->tx_arsent++; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 217 | /* We had an ack loss in this window... */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 218 | if (hc->tx_ackloss) { |
| 219 | if (hc->tx_arsent >= hc->tx_cwnd) { |
| 220 | hc->tx_arsent = 0; |
| 221 | hc->tx_ackloss = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 222 | } |
Arnaldo Carvalho de Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 223 | } else { |
| 224 | /* No acks lost up to now... */ |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 225 | /* 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 Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 228 | int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio - |
| 229 | dp->dccps_l_ack_ratio; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 230 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 231 | denom = hc->tx_cwnd * hc->tx_cwnd / denom; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 232 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 233 | if (hc->tx_arsent >= denom) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 234 | ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1); |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 235 | hc->tx_arsent = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 236 | } |
Arnaldo Carvalho de Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 237 | } else { |
| 238 | /* we can't increase ack ratio further [1] */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 239 | hc->tx_arsent = 0; /* or maybe set it to cwnd*/ |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 240 | } |
| 241 | } |
Gerrit Renker | 900bfed | 2007-11-24 21:58:33 -0200 | [diff] [blame] | 242 | #endif |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 243 | |
| 244 | /* setup RTO timer */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 245 | if (!timer_pending(&hc->tx_rtotimer)) |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 246 | ccid2_start_rto_timer(sk); |
Arnaldo Carvalho de Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 247 | |
Andrea Bittau | 8d424f6 | 2006-09-19 13:12:44 -0700 | [diff] [blame] | 248 | #ifdef CONFIG_IP_DCCP_CCID2_DEBUG |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 249 | do { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 250 | struct ccid2_seq *seqp = hc->tx_seqt; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 251 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 252 | while (seqp != hc->tx_seqh) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 253 | ccid2_pr_debug("out seq=%llu acked=%d time=%lu\n", |
Arnaldo Carvalho de Melo | 8109b02 | 2006-12-10 16:01:18 -0200 | [diff] [blame] | 254 | (unsigned long long)seqp->ccid2s_seq, |
Randy Dunlap | 234af48 | 2006-10-29 16:03:30 -0800 | [diff] [blame] | 255 | seqp->ccid2s_acked, seqp->ccid2s_sent); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 256 | seqp = seqp->ccid2s_next; |
| 257 | } |
Arnaldo Carvalho de Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 258 | } while (0); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 259 | ccid2_pr_debug("=========\n"); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 260 | #endif |
| 261 | } |
| 262 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 263 | /* XXX Lame code duplication! |
| 264 | * returns -1 if none was found. |
| 265 | * else returns the next offset to use in the function call. |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 266 | */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 267 | static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset, |
| 268 | unsigned char **vec, unsigned char *veclen) |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 269 | { |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 270 | 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 Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 277 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 278 | BUG_ON(offset < 0); |
| 279 | options += offset; |
| 280 | opt_ptr = options; |
| 281 | if (opt_ptr >= opt_end) |
| 282 | return -1; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 283 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 284 | while (opt_ptr != opt_end) { |
| 285 | opt = *opt_ptr++; |
| 286 | len = 0; |
| 287 | value = NULL; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 288 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 289 | /* 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 Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 297 | /* |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 298 | * Remove the type and len fields, leaving |
| 299 | * just the value size |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 300 | */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 301 | len -= 2; |
| 302 | value = opt_ptr; |
| 303 | opt_ptr += len; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 304 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 305 | if (opt_ptr > opt_end) |
| 306 | goto out_invalid_option; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 307 | } |
| 308 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 309 | 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 Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 318 | return -1; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 319 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 320 | out_invalid_option: |
| 321 | DCCP_BUG("Invalid option - this should not happen (previous parsing)!"); |
| 322 | return -1; |
Gerrit Renker | 1435562 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 323 | } |
| 324 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 325 | static void ccid2_hc_tx_kill_rto_timer(struct sock *sk) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 326 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 327 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 328 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 329 | sk_stop_timer(sk, &hc->tx_rtotimer); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 330 | ccid2_pr_debug("deleted RTO timer\n"); |
| 331 | } |
| 332 | |
Gerrit Renker | 231cc2a | 2010-08-22 19:41:40 +0000 | [diff] [blame] | 333 | /** |
| 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 | */ |
| 342 | static 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 | |
| 411 | static void ccid2_new_ack(struct sock *sk, struct ccid2_seq *seqp, |
| 412 | unsigned int *maxincr) |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 413 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 414 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 415 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 416 | 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 421 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 422 | } else if (++hc->tx_packets_acked >= hc->tx_cwnd) { |
| 423 | hc->tx_cwnd += 1; |
| 424 | hc->tx_packets_acked = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 425 | } |
Gerrit Renker | 231cc2a | 2010-08-22 19:41:40 +0000 | [diff] [blame] | 426 | /* |
| 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 435 | } |
| 436 | |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 437 | static void ccid2_congestion_event(struct sock *sk, struct ccid2_seq *seqp) |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 438 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 439 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 440 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 441 | if (time_before(seqp->ccid2s_sent, hc->tx_last_cong)) { |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 442 | ccid2_pr_debug("Multiple losses in an RTT---treating as one\n"); |
| 443 | return; |
| 444 | } |
| 445 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 446 | hc->tx_last_cong = jiffies; |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 447 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 448 | hc->tx_cwnd = hc->tx_cwnd / 2 ? : 1U; |
| 449 | hc->tx_ssthresh = max(hc->tx_cwnd, 2U); |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 450 | |
| 451 | /* Avoid spurious timeouts resulting from Ack Ratio > cwnd */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 452 | if (dccp_sk(sk)->dccps_l_ack_ratio > hc->tx_cwnd) |
| 453 | ccid2_change_l_ack_ratio(sk, hc->tx_cwnd); |
Gerrit Renker | c8bf462 | 2008-09-04 07:30:19 +0200 | [diff] [blame] | 454 | } |
| 455 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 456 | static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb) |
| 457 | { |
| 458 | struct dccp_sock *dp = dccp_sk(sk); |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 459 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 460 | u64 ackno, seqno; |
| 461 | struct ccid2_seq *seqp; |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 462 | unsigned char *vector; |
| 463 | unsigned char veclen; |
| 464 | int offset = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 465 | int done = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 466 | unsigned int maxincr = 0; |
| 467 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 468 | /* 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 Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 476 | if (hc->tx_rpdupack == -1) { |
| 477 | hc->tx_rpdupack = 0; |
| 478 | hc->tx_rpseq = seqno; |
Arnaldo Carvalho de Melo | c0c736d | 2006-03-20 22:05:37 -0800 | [diff] [blame] | 479 | } else { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 480 | /* check if packet is consecutive */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 481 | if (dccp_delta_seqno(hc->tx_rpseq, seqno) == 1) |
| 482 | hc->tx_rpseq = seqno; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 483 | /* it's a later packet */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 484 | else if (after48(seqno, hc->tx_rpseq)) { |
| 485 | hc->tx_rpdupack++; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 486 | |
| 487 | /* check if we got enough dupacks */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 488 | if (hc->tx_rpdupack >= NUMDUPACK) { |
| 489 | hc->tx_rpdupack = -1; /* XXX lame */ |
| 490 | hc->tx_rpseq = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 491 | |
Gerrit Renker | df054e1 | 2007-11-24 21:32:53 -0200 | [diff] [blame] | 492 | ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | /* check forward path congestion */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 498 | /* still didn't send out new data packets */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 499 | if (hc->tx_seqh == hc->tx_seqt) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 500 | return; |
| 501 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 502 | 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 509 | |
| 510 | ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq; |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 511 | if (after48(ackno, hc->tx_high_ack)) |
| 512 | hc->tx_high_ack = ackno; |
Andrea Bittau | 32aac18 | 2006-11-16 14:28:40 -0200 | [diff] [blame] | 513 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 514 | seqp = hc->tx_seqt; |
Andrea Bittau | 32aac18 | 2006-11-16 14:28:40 -0200 | [diff] [blame] | 515 | while (before48(seqp->ccid2s_seq, ackno)) { |
| 516 | seqp = seqp->ccid2s_next; |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 517 | if (seqp == hc->tx_seqh) { |
| 518 | seqp = hc->tx_seqh->ccid2s_prev; |
Andrea Bittau | 32aac18 | 2006-11-16 14:28:40 -0200 | [diff] [blame] | 519 | break; |
| 520 | } |
| 521 | } |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 522 | |
Gerrit Renker | a302002 | 2007-11-24 22:10:29 -0200 | [diff] [blame] | 523 | /* |
| 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 527 | */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 528 | if (hc->tx_cwnd < hc->tx_ssthresh) |
Gerrit Renker | a302002 | 2007-11-24 22:10:29 -0200 | [diff] [blame] | 529 | maxincr = DIV_ROUND_UP(dp->dccps_l_ack_ratio, 2); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 530 | |
| 531 | /* go through all ack vectors */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 532 | while ((offset = ccid2_ackvector(sk, skb, offset, |
| 533 | &vector, &veclen)) != -1) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 534 | /* go through this ack vector */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 535 | while (veclen--) { |
| 536 | const u8 rl = *vector & DCCP_ACKVEC_LEN_MASK; |
| 537 | u64 ackno_end_rl = SUB48(ackno, rl); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 538 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 539 | ccid2_pr_debug("ackvec start:%llu end:%llu\n", |
Randy Dunlap | 234af48 | 2006-10-29 16:03:30 -0800 | [diff] [blame] | 540 | (unsigned long long)ackno, |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 541 | (unsigned long long)ackno_end_rl); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 542 | /* 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 Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 547 | if (seqp == hc->tx_seqt) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 548 | 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 Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 560 | const u8 state = *vector & |
| 561 | DCCP_ACKVEC_STATE_MASK; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 562 | |
| 563 | /* new packet received or marked */ |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 564 | if (state != DCCP_ACKVEC_STATE_NOT_RECEIVED && |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 565 | !seqp->ccid2s_acked) { |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 566 | if (state == |
| 567 | DCCP_ACKVEC_STATE_ECN_MARKED) { |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 568 | ccid2_congestion_event(sk, |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 569 | seqp); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 570 | } else |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 571 | ccid2_new_ack(sk, seqp, |
| 572 | &maxincr); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 573 | |
| 574 | seqp->ccid2s_acked = 1; |
| 575 | ccid2_pr_debug("Got ack for %llu\n", |
Randy Dunlap | 234af48 | 2006-10-29 16:03:30 -0800 | [diff] [blame] | 576 | (unsigned long long)seqp->ccid2s_seq); |
Gerrit Renker | c38c92a | 2010-08-22 19:41:39 +0000 | [diff] [blame] | 577 | hc->tx_pipe--; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 578 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 579 | if (seqp == hc->tx_seqt) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 580 | done = 1; |
| 581 | break; |
| 582 | } |
Gerrit Renker | 3de5489 | 2007-11-24 20:37:48 -0200 | [diff] [blame] | 583 | seqp = seqp->ccid2s_prev; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 584 | } |
| 585 | if (done) |
| 586 | break; |
| 587 | |
Gerrit Renker | cfbbeab | 2007-11-24 20:43:59 -0200 | [diff] [blame] | 588 | ackno = SUB48(ackno_end_rl, 1); |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 589 | vector++; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 590 | } |
| 591 | if (done) |
| 592 | break; |
| 593 | } |
| 594 | |
| 595 | /* The state about what is acked should be correct now |
| 596 | * Check for NUMDUPACK |
| 597 | */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 598 | seqp = hc->tx_seqt; |
| 599 | while (before48(seqp->ccid2s_seq, hc->tx_high_ack)) { |
Andrea Bittau | 32aac18 | 2006-11-16 14:28:40 -0200 | [diff] [blame] | 600 | seqp = seqp->ccid2s_next; |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 601 | if (seqp == hc->tx_seqh) { |
| 602 | seqp = hc->tx_seqh->ccid2s_prev; |
Andrea Bittau | 32aac18 | 2006-11-16 14:28:40 -0200 | [diff] [blame] | 603 | break; |
| 604 | } |
| 605 | } |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 606 | done = 0; |
| 607 | while (1) { |
| 608 | if (seqp->ccid2s_acked) { |
| 609 | done++; |
Gerrit Renker | 63df18a | 2007-11-24 22:04:35 -0200 | [diff] [blame] | 610 | if (done == NUMDUPACK) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 611 | break; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 612 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 613 | if (seqp == hc->tx_seqt) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 614 | break; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 615 | 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 Renker | 63df18a | 2007-11-24 22:04:35 -0200 | [diff] [blame] | 621 | if (done == NUMDUPACK) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 622 | struct ccid2_seq *last_acked = seqp; |
| 623 | |
| 624 | /* check for lost packets */ |
| 625 | while (1) { |
| 626 | if (!seqp->ccid2s_acked) { |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 627 | ccid2_pr_debug("Packet lost: %llu\n", |
Randy Dunlap | 234af48 | 2006-10-29 16:03:30 -0800 | [diff] [blame] | 628 | (unsigned long long)seqp->ccid2s_seq); |
Andrea Bittau | 374bcf3 | 2006-09-19 13:14:43 -0700 | [diff] [blame] | 629 | /* XXX need to traverse from tail -> head in |
| 630 | * order to detect multiple congestion events in |
| 631 | * one ack vector. |
| 632 | */ |
Gerrit Renker | d50ad16 | 2007-11-24 21:40:24 -0200 | [diff] [blame] | 633 | ccid2_congestion_event(sk, seqp); |
Gerrit Renker | c38c92a | 2010-08-22 19:41:39 +0000 | [diff] [blame] | 634 | hc->tx_pipe--; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 635 | } |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 636 | if (seqp == hc->tx_seqt) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 637 | break; |
| 638 | seqp = seqp->ccid2s_prev; |
| 639 | } |
| 640 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 641 | hc->tx_seqt = last_acked; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | /* trim acked packets in tail */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 645 | while (hc->tx_seqt != hc->tx_seqh) { |
| 646 | if (!hc->tx_seqt->ccid2s_acked) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 647 | break; |
| 648 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 649 | hc->tx_seqt = hc->tx_seqt->ccid2s_next; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 650 | } |
Gerrit Renker | c38c92a | 2010-08-22 19:41:39 +0000 | [diff] [blame] | 651 | |
| 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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 657 | } |
| 658 | |
Arnaldo Carvalho de Melo | 91f0ebf | 2006-03-20 19:21:44 -0800 | [diff] [blame] | 659 | static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 660 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 661 | struct ccid2_hc_tx_sock *hc = ccid_priv(ccid); |
Gerrit Renker | b00d2bb | 2007-11-24 21:44:30 -0200 | [diff] [blame] | 662 | struct dccp_sock *dp = dccp_sk(sk); |
| 663 | u32 max_ratio; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 664 | |
Gerrit Renker | b00d2bb | 2007-11-24 21:44:30 -0200 | [diff] [blame] | 665 | /* RFC 4341, 5: initialise ssthresh to arbitrarily high (max) value */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 666 | hc->tx_ssthresh = ~0U; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 667 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 668 | /* |
| 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 Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 673 | hc->tx_cwnd = clamp(4380U / dp->dccps_mss_cache, 2U, 4U); |
Gerrit Renker | b00d2bb | 2007-11-24 21:44:30 -0200 | [diff] [blame] | 674 | |
| 675 | /* Make sure that Ack Ratio is enabled and within bounds. */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 676 | max_ratio = DIV_ROUND_UP(hc->tx_cwnd, 2); |
Gerrit Renker | b00d2bb | 2007-11-24 21:44:30 -0200 | [diff] [blame] | 677 | if (dp->dccps_l_ack_ratio == 0 || dp->dccps_l_ack_ratio > max_ratio) |
| 678 | dp->dccps_l_ack_ratio = max_ratio; |
| 679 | |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 680 | /* XXX init ~ to window size... */ |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 681 | if (ccid2_hc_tx_alloc_seq(hc)) |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 682 | return -ENOMEM; |
Arnaldo Carvalho de Melo | 91f0ebf | 2006-03-20 19:21:44 -0800 | [diff] [blame] | 683 | |
Gerrit Renker | 231cc2a | 2010-08-22 19:41:40 +0000 | [diff] [blame] | 684 | hc->tx_rto = DCCP_TIMEOUT_INIT; |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 685 | hc->tx_rpdupack = -1; |
| 686 | hc->tx_last_cong = jiffies; |
| 687 | setup_timer(&hc->tx_rtotimer, ccid2_hc_tx_rto_expire, |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 688 | (unsigned long)sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 689 | return 0; |
| 690 | } |
| 691 | |
| 692 | static void ccid2_hc_tx_exit(struct sock *sk) |
| 693 | { |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 694 | struct ccid2_hc_tx_sock *hc = ccid2_hc_tx_sk(sk); |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 695 | int i; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 696 | |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 697 | ccid2_hc_tx_kill_rto_timer(sk); |
Andrea Bittau | 07978aa | 2006-09-19 13:13:37 -0700 | [diff] [blame] | 698 | |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 699 | for (i = 0; i < hc->tx_seqbufc; i++) |
| 700 | kfree(hc->tx_seqbuf[i]); |
| 701 | hc->tx_seqbufc = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | static void ccid2_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb) |
| 705 | { |
| 706 | const struct dccp_sock *dp = dccp_sk(sk); |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 707 | struct ccid2_hc_rx_sock *hc = ccid2_hc_rx_sk(sk); |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 708 | |
| 709 | switch (DCCP_SKB_CB(skb)->dccpd_type) { |
| 710 | case DCCP_PKT_DATA: |
| 711 | case DCCP_PKT_DATAACK: |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 712 | hc->rx_data++; |
| 713 | if (hc->rx_data >= dp->dccps_r_ack_ratio) { |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 714 | dccp_send_ack(sk); |
Gerrit Renker | 77d2dd9 | 2009-10-05 00:53:12 +0000 | [diff] [blame] | 715 | hc->rx_data = 0; |
Andrea Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 716 | } |
| 717 | break; |
| 718 | } |
| 719 | } |
| 720 | |
Gerrit Renker | ddebc97 | 2009-01-04 21:42:53 -0800 | [diff] [blame] | 721 | struct ccid_operations ccid2_ops = { |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 722 | .ccid_id = DCCPC_CCID2, |
| 723 | .ccid_name = "TCP-like", |
Gerrit Renker | 410e27a | 2008-09-09 13:27:22 +0200 | [diff] [blame] | 724 | .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 Bittau | 2a91aa3 | 2006-03-20 17:41:47 -0800 | [diff] [blame] | 732 | }; |
| 733 | |
Gerrit Renker | 8411671 | 2006-11-20 18:26:03 -0200 | [diff] [blame] | 734 | #ifdef CONFIG_IP_DCCP_CCID2_DEBUG |
Gerrit Renker | 4326499 | 2008-08-23 13:28:27 +0200 | [diff] [blame] | 735 | module_param(ccid2_debug, bool, 0644); |
Gerrit Renker | ddebc97 | 2009-01-04 21:42:53 -0800 | [diff] [blame] | 736 | MODULE_PARM_DESC(ccid2_debug, "Enable CCID-2 debug messages"); |
Gerrit Renker | 8411671 | 2006-11-20 18:26:03 -0200 | [diff] [blame] | 737 | #endif |