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