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