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