Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #include <vppinfra/sparse_vec.h> |
| 17 | #include <vnet/tcp/tcp_packet.h> |
| 18 | #include <vnet/tcp/tcp.h> |
| 19 | #include <vnet/session/session.h> |
| 20 | #include <math.h> |
| 21 | |
| 22 | static char *tcp_error_strings[] = { |
| 23 | #define tcp_error(n,s) s, |
| 24 | #include <vnet/tcp/tcp_error.def> |
| 25 | #undef tcp_error |
| 26 | }; |
| 27 | |
| 28 | /* All TCP nodes have the same outgoing arcs */ |
| 29 | #define foreach_tcp_state_next \ |
| 30 | _ (DROP, "error-drop") \ |
| 31 | _ (TCP4_OUTPUT, "tcp4-output") \ |
| 32 | _ (TCP6_OUTPUT, "tcp6-output") |
| 33 | |
| 34 | typedef enum _tcp_established_next |
| 35 | { |
| 36 | #define _(s,n) TCP_ESTABLISHED_NEXT_##s, |
| 37 | foreach_tcp_state_next |
| 38 | #undef _ |
| 39 | TCP_ESTABLISHED_N_NEXT, |
| 40 | } tcp_established_next_t; |
| 41 | |
| 42 | typedef enum _tcp_rcv_process_next |
| 43 | { |
| 44 | #define _(s,n) TCP_RCV_PROCESS_NEXT_##s, |
| 45 | foreach_tcp_state_next |
| 46 | #undef _ |
| 47 | TCP_RCV_PROCESS_N_NEXT, |
| 48 | } tcp_rcv_process_next_t; |
| 49 | |
| 50 | typedef enum _tcp_syn_sent_next |
| 51 | { |
| 52 | #define _(s,n) TCP_SYN_SENT_NEXT_##s, |
| 53 | foreach_tcp_state_next |
| 54 | #undef _ |
| 55 | TCP_SYN_SENT_N_NEXT, |
| 56 | } tcp_syn_sent_next_t; |
| 57 | |
| 58 | typedef enum _tcp_listen_next |
| 59 | { |
| 60 | #define _(s,n) TCP_LISTEN_NEXT_##s, |
| 61 | foreach_tcp_state_next |
| 62 | #undef _ |
| 63 | TCP_LISTEN_N_NEXT, |
| 64 | } tcp_listen_next_t; |
| 65 | |
| 66 | /* Generic, state independent indices */ |
| 67 | typedef enum _tcp_state_next |
| 68 | { |
| 69 | #define _(s,n) TCP_NEXT_##s, |
| 70 | foreach_tcp_state_next |
| 71 | #undef _ |
| 72 | TCP_STATE_N_NEXT, |
| 73 | } tcp_state_next_t; |
| 74 | |
| 75 | #define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \ |
| 76 | : TCP_NEXT_TCP6_OUTPUT) |
| 77 | |
| 78 | vlib_node_registration_t tcp4_established_node; |
| 79 | vlib_node_registration_t tcp6_established_node; |
| 80 | |
| 81 | /** |
| 82 | * Validate segment sequence number. As per RFC793: |
| 83 | * |
| 84 | * Segment Receive Test |
| 85 | * Length Window |
| 86 | * ------- ------- ------------------------------------------- |
| 87 | * 0 0 SEG.SEQ = RCV.NXT |
| 88 | * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
| 89 | * >0 0 not acceptable |
| 90 | * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
| 91 | * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND |
| 92 | * |
| 93 | * This ultimately consists in checking if segment falls within the window. |
| 94 | * The one important difference compared to RFC793 is that we use rcv_las, |
| 95 | * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the |
| 96 | * peer's reference when computing our receive window. |
| 97 | * |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 98 | * This: |
| 99 | * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las) |
| 100 | * however, is too strict when we have retransmits. Instead we just check that |
| 101 | * the seq is not beyond the right edge and that the end of the segment is not |
| 102 | * less than the left edge. |
| 103 | * |
| 104 | * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so |
| 105 | * use rcv_nxt in the right edge window test instead of rcv_las. |
| 106 | * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 107 | */ |
| 108 | always_inline u8 |
| 109 | tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq) |
| 110 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 111 | return (seq_geq (end_seq, tc->rcv_las) |
| 112 | && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 113 | } |
| 114 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 115 | /** |
| 116 | * Parse TCP header options. |
| 117 | * |
| 118 | * @param th TCP header |
| 119 | * @param to TCP options data structure to be populated |
| 120 | * @return -1 if parsing failed |
| 121 | */ |
| 122 | int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 123 | tcp_options_parse (tcp_header_t * th, tcp_options_t * to) |
| 124 | { |
| 125 | const u8 *data; |
| 126 | u8 opt_len, opts_len, kind; |
| 127 | int j; |
| 128 | sack_block_t b; |
| 129 | |
| 130 | opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t); |
| 131 | data = (const u8 *) (th + 1); |
| 132 | |
| 133 | /* Zero out all flags but those set in SYN */ |
| 134 | to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE); |
| 135 | |
| 136 | for (; opts_len > 0; opts_len -= opt_len, data += opt_len) |
| 137 | { |
| 138 | kind = data[0]; |
| 139 | |
| 140 | /* Get options length */ |
| 141 | if (kind == TCP_OPTION_EOL) |
| 142 | break; |
| 143 | else if (kind == TCP_OPTION_NOOP) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 144 | { |
| 145 | opt_len = 1; |
| 146 | continue; |
| 147 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 148 | else |
| 149 | { |
| 150 | /* broken options */ |
| 151 | if (opts_len < 2) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 152 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 153 | opt_len = data[1]; |
| 154 | |
| 155 | /* weird option length */ |
| 156 | if (opt_len < 2 || opt_len > opts_len) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 157 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | /* Parse options */ |
| 161 | switch (kind) |
| 162 | { |
| 163 | case TCP_OPTION_MSS: |
| 164 | if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th)) |
| 165 | { |
| 166 | to->flags |= TCP_OPTS_FLAG_MSS; |
| 167 | to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2)); |
| 168 | } |
| 169 | break; |
| 170 | case TCP_OPTION_WINDOW_SCALE: |
| 171 | if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th)) |
| 172 | { |
| 173 | to->flags |= TCP_OPTS_FLAG_WSCALE; |
| 174 | to->wscale = data[2]; |
| 175 | if (to->wscale > TCP_MAX_WND_SCALE) |
| 176 | { |
| 177 | clib_warning ("Illegal window scaling value: %d", |
| 178 | to->wscale); |
| 179 | to->wscale = TCP_MAX_WND_SCALE; |
| 180 | } |
| 181 | } |
| 182 | break; |
| 183 | case TCP_OPTION_TIMESTAMP: |
| 184 | if (opt_len == TCP_OPTION_LEN_TIMESTAMP) |
| 185 | { |
| 186 | to->flags |= TCP_OPTS_FLAG_TSTAMP; |
| 187 | to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2)); |
| 188 | to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6)); |
| 189 | } |
| 190 | break; |
| 191 | case TCP_OPTION_SACK_PERMITTED: |
| 192 | if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th)) |
| 193 | to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED; |
| 194 | break; |
| 195 | case TCP_OPTION_SACK_BLOCK: |
| 196 | /* If SACK permitted was not advertised or a SYN, break */ |
| 197 | if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th)) |
| 198 | break; |
| 199 | |
| 200 | /* If too short or not correctly formatted, break */ |
| 201 | if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK)) |
| 202 | break; |
| 203 | |
| 204 | to->flags |= TCP_OPTS_FLAG_SACK; |
| 205 | to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK; |
| 206 | vec_reset_length (to->sacks); |
| 207 | for (j = 0; j < to->n_sack_blocks; j++) |
| 208 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 209 | b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j)); |
| 210 | b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 211 | vec_add1 (to->sacks, b); |
| 212 | } |
| 213 | break; |
| 214 | default: |
| 215 | /* Nothing to see here */ |
| 216 | continue; |
| 217 | } |
| 218 | } |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 219 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 220 | } |
| 221 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 222 | /** |
| 223 | * RFC1323: Check against wrapped sequence numbers (PAWS). If we have |
| 224 | * timestamp to echo and it's less than tsval_recent, drop segment |
| 225 | * but still send an ACK in order to retain TCP's mechanism for detecting |
| 226 | * and recovering from half-open connections |
| 227 | * |
| 228 | * Or at least that's what the theory says. It seems that this might not work |
| 229 | * very well with packet reordering and fast retransmit. XXX |
| 230 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 231 | always_inline int |
| 232 | tcp_segment_check_paws (tcp_connection_t * tc) |
| 233 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 234 | return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent |
| 235 | && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /** |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 239 | * Update tsval recent |
| 240 | */ |
| 241 | always_inline void |
| 242 | tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end) |
| 243 | { |
| 244 | /* |
| 245 | * RFC1323: If Last.ACK.sent falls within the range of sequence numbers |
| 246 | * of an incoming segment: |
| 247 | * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN |
| 248 | * then the TSval from the segment is copied to TS.Recent; |
| 249 | * otherwise, the TSval is ignored. |
| 250 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 251 | if (tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 252 | && seq_leq (seq, tc->rcv_las) && seq_leq (tc->rcv_las, seq_end)) |
| 253 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 254 | ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 255 | tc->tsval_recent = tc->rcv_opts.tsval; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 256 | tc->tsval_recent_age = tcp_time_now (); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 261 | * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19 |
| 262 | * |
| 263 | * It first verifies if segment has a wrapped sequence number (PAWS) and then |
| 264 | * does the processing associated to the first four steps (ignoring security |
| 265 | * and precedence): sequence number, rst bit and syn bit checks. |
| 266 | * |
| 267 | * @return 0 if segments passes validation. |
| 268 | */ |
| 269 | static int |
| 270 | tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0, |
| 271 | vlib_buffer_t * b0, tcp_header_t * th0, u32 * next0) |
| 272 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 273 | if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0))) |
| 274 | return -1; |
| 275 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 276 | if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts))) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 277 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 278 | clib_warning ("options parse error"); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 279 | return -1; |
| 280 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 281 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 282 | if (tcp_segment_check_paws (tc0)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 283 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 284 | if (CLIB_DEBUG > 2) |
| 285 | { |
| 286 | clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2); |
| 287 | clib_warning ("seq %u seq_end %u ack %u", |
| 288 | vnet_buffer (b0)->tcp.seq_number - tc0->irs, |
| 289 | vnet_buffer (b0)->tcp.seq_end - tc0->irs, |
| 290 | vnet_buffer (b0)->tcp.ack_number - tc0->iss); |
| 291 | } |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 292 | TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number, |
| 293 | vnet_buffer (b0)->tcp.seq_end); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 294 | |
| 295 | /* If it just so happens that a segment updates tsval_recent for a |
| 296 | * segment over 24 days old, invalidate tsval_recent. */ |
| 297 | if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE, |
| 298 | tcp_time_now ())) |
| 299 | { |
| 300 | /* Age isn't reset until we get a valid tsval (bsd inspired) */ |
| 301 | tc0->tsval_recent = 0; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 302 | clib_warning ("paws failed - really old segment. REALLY?"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 303 | } |
| 304 | else |
| 305 | { |
| 306 | /* Drop after ack if not rst */ |
| 307 | if (!tcp_rst (th0)) |
| 308 | { |
| 309 | tcp_make_ack (tc0, b0); |
| 310 | *next0 = tcp_next_output (tc0->c_is_ip4); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 311 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 312 | return -1; |
| 313 | } |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | /* 1st: check sequence number */ |
| 318 | if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number, |
| 319 | vnet_buffer (b0)->tcp.seq_end)) |
| 320 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 321 | /* If our window is 0 and the packet is in sequence, let it pass |
| 322 | * through for ack processing. It should be dropped later.*/ |
| 323 | if (tc0->rcv_wnd == 0 |
| 324 | && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 325 | { |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 326 | /* TODO Should segment be tagged? */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 327 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 328 | else |
| 329 | { |
| 330 | /* If not RST, send dup ack */ |
| 331 | if (!tcp_rst (th0)) |
| 332 | { |
| 333 | tcp_make_ack (tc0, b0); |
| 334 | *next0 = tcp_next_output (tc0->c_is_ip4); |
| 335 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0); |
| 336 | } |
| 337 | return -1; |
| 338 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | /* 2nd: check the RST bit */ |
| 342 | if (tcp_rst (th0)) |
| 343 | { |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 344 | tcp_connection_reset (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 345 | return -1; |
| 346 | } |
| 347 | |
| 348 | /* 3rd: check security and precedence (skip) */ |
| 349 | |
| 350 | /* 4th: check the SYN bit */ |
| 351 | if (tcp_syn (th0)) |
| 352 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 353 | /* TODO implement RFC 5961 */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 354 | if (tc0->state == TCP_STATE_SYN_RCVD) |
| 355 | { |
| 356 | tcp_make_synack (tc0, b0); |
| 357 | TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0); |
| 358 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 359 | else |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 360 | { |
| 361 | tcp_make_ack (tc0, b0); |
| 362 | TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0); |
| 363 | } |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 364 | *next0 = tcp_next_output (tc0->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 365 | return -1; |
| 366 | } |
| 367 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 368 | /* If segment in window, save timestamp */ |
| 369 | tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number, |
| 370 | vnet_buffer (b0)->tcp.seq_end); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 371 | return 0; |
| 372 | } |
| 373 | |
| 374 | always_inline int |
| 375 | tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0) |
| 376 | { |
| 377 | /* SND.UNA =< SEG.ACK =< SND.NXT */ |
| 378 | return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number) |
| 379 | && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt)); |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298 |
| 384 | * |
| 385 | * Note that although the original article, srtt and rttvar are scaled |
| 386 | * to minimize round-off errors, here we don't. Instead, we rely on |
| 387 | * better precision time measurements. |
| 388 | * |
| 389 | * TODO support us rtt resolution |
| 390 | */ |
| 391 | static void |
| 392 | tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt) |
| 393 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 394 | int err, diff; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 395 | |
| 396 | if (tc->srtt != 0) |
| 397 | { |
| 398 | err = mrtt - tc->srtt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 399 | |
| 400 | /* XXX Drop in RTT results in RTTVAR increase and bigger RTO. |
| 401 | * The increase should be bound */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 402 | tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1); |
| 403 | diff = (clib_abs (err) - (int) tc->rttvar) >> 2; |
| 404 | tc->rttvar = clib_max ((int) tc->rttvar + diff, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 405 | } |
| 406 | else |
| 407 | { |
| 408 | /* First measurement. */ |
| 409 | tc->srtt = mrtt; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 410 | tc->rttvar = mrtt >> 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 411 | } |
| 412 | } |
| 413 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 414 | void |
| 415 | tcp_update_rto (tcp_connection_t * tc) |
| 416 | { |
| 417 | tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 418 | tc->rto = clib_max (tc->rto, TCP_RTO_MIN); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 421 | /** Update RTT estimate and RTO timer |
| 422 | * |
| 423 | * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK |
| 424 | * timing. Middle boxes are known to fiddle with TCP options so we |
| 425 | * should give higher priority to ACK timing. |
| 426 | * |
| 427 | * return 1 if valid rtt 0 otherwise |
| 428 | */ |
| 429 | static int |
| 430 | tcp_update_rtt (tcp_connection_t * tc, u32 ack) |
| 431 | { |
| 432 | u32 mrtt = 0; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 433 | u8 rtx_acked; |
| 434 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 435 | /* Determine if only rtx bytes are acked. */ |
| 436 | rtx_acked = tcp_in_cong_recovery (tc) || !tc->bytes_acked; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 437 | |
| 438 | /* Karn's rule, part 1. Don't use retransmitted segments to estimate |
| 439 | * RTT because they're ambiguous. */ |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 440 | if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq) && !rtx_acked) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 441 | { |
| 442 | mrtt = tcp_time_now () - tc->rtt_ts; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 443 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 444 | /* As per RFC7323 TSecr can be used for RTTM only if the segment advances |
| 445 | * snd_una, i.e., the left side of the send window: |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 446 | * seq_lt (tc->snd_una, ack). */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 447 | else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr |
| 448 | && tc->bytes_acked) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 449 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 450 | mrtt = tcp_time_now () - tc->rcv_opts.tsecr; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 451 | } |
| 452 | |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 453 | /* Allow measuring of a new RTT */ |
| 454 | tc->rtt_ts = 0; |
| 455 | |
| 456 | /* If ACK moves left side of the wnd make sure boff is 0, even if mrtt is |
| 457 | * not valid */ |
| 458 | if (tc->bytes_acked) |
| 459 | tc->rto_boff = 0; |
| 460 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 461 | /* Ignore dubious measurements */ |
| 462 | if (mrtt == 0 || mrtt > TCP_RTT_MAX) |
| 463 | return 0; |
| 464 | |
| 465 | tcp_estimate_rtt (tc, mrtt); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 466 | tcp_update_rto (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 467 | |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 468 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Dequeue bytes that have been acked and while at it update RTT estimates. |
| 473 | */ |
| 474 | static void |
| 475 | tcp_dequeue_acked (tcp_connection_t * tc, u32 ack) |
| 476 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 477 | /* Dequeue the newly ACKed add SACKed bytes */ |
| 478 | stream_session_dequeue_drop (&tc->connection, |
| 479 | tc->bytes_acked + tc->sack_sb.snd_una_adv); |
| 480 | |
| 481 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 482 | |
| 483 | /* Update rtt and rto */ |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 484 | tcp_update_rtt (tc, ack); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 485 | |
| 486 | /* If everything has been acked, stop retransmit timer |
| 487 | * otherwise update. */ |
| 488 | tcp_retransmit_timer_update (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 489 | } |
| 490 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 491 | /** |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 492 | * Check if duplicate ack as per RFC5681 Sec. 2 |
| 493 | */ |
| 494 | static u8 |
| 495 | tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd, |
| 496 | u32 prev_snd_una) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 497 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 498 | return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 499 | && seq_gt (tc->snd_una_max, tc->snd_una) |
| 500 | && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 501 | && (prev_snd_wnd == tc->snd_wnd)); |
| 502 | } |
| 503 | |
| 504 | /** |
| 505 | * Checks if ack is a congestion control event. |
| 506 | */ |
| 507 | static u8 |
| 508 | tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b, |
| 509 | u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack) |
| 510 | { |
| 511 | /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are |
| 512 | * defined to be 'duplicate' */ |
| 513 | *is_dack = tc->sack_sb.last_sacked_bytes |
| 514 | || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una); |
| 515 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 516 | return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | void |
| 520 | scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole) |
| 521 | { |
| 522 | sack_scoreboard_hole_t *next, *prev; |
| 523 | |
| 524 | if (hole->next != TCP_INVALID_SACK_HOLE_INDEX) |
| 525 | { |
| 526 | next = pool_elt_at_index (sb->holes, hole->next); |
| 527 | next->prev = hole->prev; |
| 528 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 529 | else |
| 530 | { |
| 531 | sb->tail = hole->prev; |
| 532 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 533 | |
| 534 | if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX) |
| 535 | { |
| 536 | prev = pool_elt_at_index (sb->holes, hole->prev); |
| 537 | prev->next = hole->next; |
| 538 | } |
| 539 | else |
| 540 | { |
| 541 | sb->head = hole->next; |
| 542 | } |
| 543 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 544 | if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole) |
| 545 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 546 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 547 | /* Poison the entry */ |
| 548 | if (CLIB_DEBUG > 0) |
| 549 | memset (hole, 0xfe, sizeof (*hole)); |
| 550 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 551 | pool_put (sb->holes, hole); |
| 552 | } |
| 553 | |
| 554 | sack_scoreboard_hole_t * |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 555 | scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 556 | u32 start, u32 end) |
| 557 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 558 | sack_scoreboard_hole_t *hole, *next, *prev; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 559 | u32 hole_index; |
| 560 | |
| 561 | pool_get (sb->holes, hole); |
| 562 | memset (hole, 0, sizeof (*hole)); |
| 563 | |
| 564 | hole->start = start; |
| 565 | hole->end = end; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 566 | hole_index = scoreboard_hole_index (sb, hole); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 567 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 568 | prev = scoreboard_get_hole (sb, prev_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 569 | if (prev) |
| 570 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 571 | hole->prev = prev_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 572 | hole->next = prev->next; |
| 573 | |
| 574 | if ((next = scoreboard_next_hole (sb, hole))) |
| 575 | next->prev = hole_index; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 576 | else |
| 577 | sb->tail = hole_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 578 | |
| 579 | prev->next = hole_index; |
| 580 | } |
| 581 | else |
| 582 | { |
| 583 | sb->head = hole_index; |
| 584 | hole->prev = TCP_INVALID_SACK_HOLE_INDEX; |
| 585 | hole->next = TCP_INVALID_SACK_HOLE_INDEX; |
| 586 | } |
| 587 | |
| 588 | return hole; |
| 589 | } |
| 590 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 591 | void |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 592 | scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 593 | { |
| 594 | sack_scoreboard_hole_t *hole, *prev; |
| 595 | u32 bytes = 0, blks = 0; |
| 596 | |
| 597 | sb->lost_bytes = 0; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 598 | sb->sacked_bytes = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 599 | hole = scoreboard_last_hole (sb); |
| 600 | if (!hole) |
| 601 | return; |
| 602 | |
| 603 | if (seq_gt (sb->high_sacked, hole->end)) |
| 604 | { |
| 605 | bytes = sb->high_sacked - hole->end; |
| 606 | blks = 1; |
| 607 | } |
| 608 | |
| 609 | while ((prev = scoreboard_prev_hole (sb, hole)) |
| 610 | && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss |
| 611 | && blks < TCP_DUPACK_THRESHOLD)) |
| 612 | { |
| 613 | bytes += hole->start - prev->end; |
| 614 | blks++; |
| 615 | hole = prev; |
| 616 | } |
| 617 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 618 | while (hole) |
| 619 | { |
| 620 | sb->lost_bytes += scoreboard_hole_bytes (hole); |
| 621 | hole->is_lost = 1; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 622 | prev = hole; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 623 | hole = scoreboard_prev_hole (sb, hole); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 624 | if (hole) |
| 625 | bytes += prev->start - hole->end; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 626 | } |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 627 | sb->sacked_bytes = bytes; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | /** |
| 631 | * Figure out the next hole to retransmit |
| 632 | * |
| 633 | * Follows logic proposed in RFC6675 Sec. 4, NextSeg() |
| 634 | */ |
| 635 | sack_scoreboard_hole_t * |
| 636 | scoreboard_next_rxt_hole (sack_scoreboard_t * sb, |
| 637 | sack_scoreboard_hole_t * start, |
| 638 | u8 have_sent_1_smss, |
| 639 | u8 * can_rescue, u8 * snd_limited) |
| 640 | { |
| 641 | sack_scoreboard_hole_t *hole = 0; |
| 642 | |
| 643 | hole = start ? start : scoreboard_first_hole (sb); |
| 644 | while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost) |
| 645 | hole = scoreboard_next_hole (sb, hole); |
| 646 | |
| 647 | /* Nothing, return */ |
| 648 | if (!hole) |
| 649 | { |
| 650 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | /* Rule (1): if higher than rxt, less than high_sacked and lost */ |
| 655 | if (hole->is_lost && seq_lt (hole->start, sb->high_sacked)) |
| 656 | { |
| 657 | sb->cur_rxt_hole = scoreboard_hole_index (sb, hole); |
| 658 | } |
| 659 | else |
| 660 | { |
| 661 | /* Rule (2): output takes care of transmitting new data */ |
| 662 | if (!have_sent_1_smss) |
| 663 | { |
| 664 | hole = 0; |
| 665 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 666 | } |
| 667 | /* Rule (3): if hole not lost */ |
| 668 | else if (seq_lt (hole->start, sb->high_sacked)) |
| 669 | { |
| 670 | *snd_limited = 1; |
| 671 | sb->cur_rxt_hole = scoreboard_hole_index (sb, hole); |
| 672 | } |
| 673 | /* Rule (4): if hole beyond high_sacked */ |
| 674 | else |
| 675 | { |
| 676 | ASSERT (seq_geq (hole->start, sb->high_sacked)); |
| 677 | *snd_limited = 1; |
| 678 | *can_rescue = 1; |
| 679 | /* HighRxt MUST NOT be updated */ |
| 680 | return 0; |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | if (hole && seq_lt (sb->high_rxt, hole->start)) |
| 685 | sb->high_rxt = hole->start; |
| 686 | |
| 687 | return hole; |
| 688 | } |
| 689 | |
| 690 | void |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 691 | scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 692 | { |
| 693 | sack_scoreboard_hole_t *hole; |
| 694 | hole = scoreboard_first_hole (sb); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 695 | if (hole) |
| 696 | { |
| 697 | seq = seq_gt (seq, hole->start) ? seq : hole->start; |
| 698 | sb->cur_rxt_hole = sb->head; |
| 699 | } |
| 700 | sb->high_rxt = seq; |
| 701 | } |
| 702 | |
| 703 | /** |
| 704 | * Test that scoreboard is sane after recovery |
| 705 | * |
| 706 | * Returns 1 if scoreboard is empty or if first hole beyond |
| 707 | * snd_una. |
| 708 | */ |
| 709 | u8 |
| 710 | tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc) |
| 711 | { |
| 712 | sack_scoreboard_hole_t *hole; |
| 713 | hole = scoreboard_first_hole (&tc->sack_sb); |
| 714 | return (!hole || seq_geq (hole->start, tc->snd_una)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 718 | tcp_rcv_sacks (tcp_connection_t * tc, u32 ack) |
| 719 | { |
| 720 | sack_scoreboard_t *sb = &tc->sack_sb; |
| 721 | sack_block_t *blk, tmp; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 722 | sack_scoreboard_hole_t *hole, *next_hole, *last_hole; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 723 | u32 blk_index = 0, old_sacked_bytes, hole_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 724 | int i, j; |
| 725 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 726 | sb->last_sacked_bytes = 0; |
| 727 | sb->snd_una_adv = 0; |
| 728 | old_sacked_bytes = sb->sacked_bytes; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 729 | sb->last_bytes_delivered = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 730 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 731 | if (!tcp_opts_sack (&tc->rcv_opts) |
| 732 | && sb->head == TCP_INVALID_SACK_HOLE_INDEX) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 733 | return; |
| 734 | |
| 735 | /* Remove invalid blocks */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 736 | blk = tc->rcv_opts.sacks; |
| 737 | while (blk < vec_end (tc->rcv_opts.sacks)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 738 | { |
| 739 | if (seq_lt (blk->start, blk->end) |
| 740 | && seq_gt (blk->start, tc->snd_una) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 741 | && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 742 | { |
| 743 | blk++; |
| 744 | continue; |
| 745 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 746 | vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 747 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 748 | |
| 749 | /* Add block for cumulative ack */ |
| 750 | if (seq_gt (ack, tc->snd_una)) |
| 751 | { |
| 752 | tmp.start = tc->snd_una; |
| 753 | tmp.end = ack; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 754 | vec_add1 (tc->rcv_opts.sacks, tmp); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 755 | } |
| 756 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 757 | if (vec_len (tc->rcv_opts.sacks) == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 758 | return; |
| 759 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 760 | tcp_scoreboard_trace_add (tc, ack); |
| 761 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 762 | /* Make sure blocks are ordered */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 763 | for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++) |
| 764 | for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++) |
| 765 | if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 766 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 767 | tmp = tc->rcv_opts.sacks[i]; |
| 768 | tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j]; |
| 769 | tc->rcv_opts.sacks[j] = tmp; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 770 | } |
| 771 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 772 | if (sb->head == TCP_INVALID_SACK_HOLE_INDEX) |
| 773 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 774 | /* If no holes, insert the first that covers all outstanding bytes */ |
| 775 | last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX, |
| 776 | tc->snd_una, tc->snd_una_max); |
| 777 | sb->tail = scoreboard_hole_index (sb, last_hole); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 778 | tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1]; |
| 779 | sb->high_sacked = tmp.end; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 780 | } |
| 781 | else |
| 782 | { |
| 783 | /* If we have holes but snd_una_max is beyond the last hole, update |
| 784 | * last hole end */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 785 | tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1]; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 786 | last_hole = scoreboard_last_hole (sb); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 787 | if (seq_gt (tc->snd_una_max, last_hole->end)) |
| 788 | { |
| 789 | if (seq_geq (last_hole->start, sb->high_sacked)) |
| 790 | { |
| 791 | last_hole->end = tc->snd_una_max; |
| 792 | } |
| 793 | /* New hole after high sacked block */ |
| 794 | else if (seq_lt (sb->high_sacked, tc->snd_una_max)) |
| 795 | { |
| 796 | scoreboard_insert_hole (sb, sb->tail, sb->high_sacked, |
| 797 | tc->snd_una_max); |
| 798 | } |
| 799 | } |
| 800 | /* Keep track of max byte sacked for when the last hole |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 801 | * is acked */ |
| 802 | if (seq_gt (tmp.end, sb->high_sacked)) |
| 803 | sb->high_sacked = tmp.end; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | /* Walk the holes with the SACK blocks */ |
| 807 | hole = pool_elt_at_index (sb->holes, sb->head); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 808 | while (hole && blk_index < vec_len (tc->rcv_opts.sacks)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 809 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 810 | blk = &tc->rcv_opts.sacks[blk_index]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 811 | if (seq_leq (blk->start, hole->start)) |
| 812 | { |
| 813 | /* Block covers hole. Remove hole */ |
| 814 | if (seq_geq (blk->end, hole->end)) |
| 815 | { |
| 816 | next_hole = scoreboard_next_hole (sb, hole); |
| 817 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 818 | /* Byte accounting: snd_una needs to be advanced */ |
| 819 | if (blk->end == ack) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 820 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 821 | if (next_hole) |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 822 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 823 | if (seq_lt (ack, next_hole->start)) |
| 824 | sb->snd_una_adv = next_hole->start - ack; |
| 825 | sb->last_bytes_delivered += |
| 826 | next_hole->start - hole->end; |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 827 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 828 | else |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 829 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 830 | ASSERT (seq_geq (sb->high_sacked, ack)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 831 | sb->snd_una_adv = sb->high_sacked - ack; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 832 | sb->last_bytes_delivered += sb->high_sacked - hole->end; |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 836 | scoreboard_remove_hole (sb, hole); |
| 837 | hole = next_hole; |
| 838 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 839 | /* Partial 'head' overlap */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 840 | else |
| 841 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 842 | if (seq_gt (blk->end, hole->start)) |
| 843 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 844 | hole->start = blk->end; |
| 845 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 846 | blk_index++; |
| 847 | } |
| 848 | } |
| 849 | else |
| 850 | { |
| 851 | /* Hole must be split */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 852 | if (seq_lt (blk->end, hole->end)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 853 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 854 | hole_index = scoreboard_hole_index (sb, hole); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 855 | next_hole = scoreboard_insert_hole (sb, hole_index, blk->end, |
| 856 | hole->end); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 857 | |
| 858 | /* Pool might've moved */ |
| 859 | hole = scoreboard_get_hole (sb, hole_index); |
| 860 | hole->end = blk->start; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 861 | blk_index++; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 862 | ASSERT (hole->next == scoreboard_hole_index (sb, next_hole)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 863 | } |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 864 | else if (seq_lt (blk->start, hole->end)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 865 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 866 | hole->end = blk->start; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 867 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 868 | hole = scoreboard_next_hole (sb, hole); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 869 | } |
| 870 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 871 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 872 | scoreboard_update_bytes (tc, sb); |
| 873 | sb->last_sacked_bytes = sb->sacked_bytes |
| 874 | - (old_sacked_bytes - sb->last_bytes_delivered); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 875 | ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 876 | ASSERT (sb->sacked_bytes == 0 |
| 877 | || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack)); |
| 878 | ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max |
| 879 | - seq_max (tc->snd_una, ack)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 880 | ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc) |
| 881 | || sb->holes[sb->head].start == ack + sb->snd_una_adv); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 882 | } |
| 883 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 884 | /** |
| 885 | * Try to update snd_wnd based on feedback received from peer. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 886 | * |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 887 | * If successful, and new window is 'effectively' 0, activate persist |
| 888 | * timer. |
| 889 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 890 | static void |
| 891 | tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd) |
| 892 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 893 | /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set |
| 894 | * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 895 | if (seq_lt (tc->snd_wl1, seq) |
| 896 | || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 897 | { |
| 898 | tc->snd_wnd = snd_wnd; |
| 899 | tc->snd_wl1 = seq; |
| 900 | tc->snd_wl2 = ack; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 901 | TCP_EVT_DBG (TCP_EVT_SND_WND, tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 902 | |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 903 | if (tc->snd_wnd < tc->snd_mss) |
| 904 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 905 | /* Set persist timer if not set and we just got 0 wnd */ |
| 906 | if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST) |
| 907 | && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)) |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 908 | tcp_persist_timer_set (tc); |
| 909 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 910 | else |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 911 | { |
| 912 | tcp_persist_timer_reset (tc); |
| 913 | if (!tcp_in_recovery (tc) && tc->rto_boff > 0) |
| 914 | { |
| 915 | tc->rto_boff = 0; |
| 916 | tcp_update_rto (tc); |
| 917 | } |
| 918 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 919 | } |
| 920 | } |
| 921 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 922 | void |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 923 | tcp_cc_init_congestion (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 924 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 925 | tcp_fastrecovery_on (tc); |
| 926 | tc->snd_congestion = tc->snd_una_max; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 927 | tc->cc_algo->congestion (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 928 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 929 | } |
| 930 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 931 | static void |
| 932 | tcp_cc_recovery_exit (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 933 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 934 | /* Deflate rto */ |
| 935 | tcp_update_rto (tc); |
| 936 | tc->rto_boff = 0; |
| 937 | tc->snd_rxt_ts = 0; |
| 938 | tcp_recovery_off (tc); |
| 939 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 940 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 941 | void |
| 942 | tcp_cc_fastrecovery_exit (tcp_connection_t * tc) |
| 943 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 944 | tc->cc_algo->recovered (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 945 | tc->snd_rxt_bytes = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 946 | tc->rcv_dupacks = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 947 | tcp_fastrecovery_off (tc); |
| 948 | tcp_fastrecovery_1_smss_off (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | static void |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 952 | tcp_cc_congestion_undo (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 953 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 954 | tc->cwnd = tc->prev_cwnd; |
| 955 | tc->ssthresh = tc->prev_ssthresh; |
| 956 | tc->snd_nxt = tc->snd_una_max; |
| 957 | tc->rcv_dupacks = 0; |
| 958 | if (tcp_in_recovery (tc)) |
| 959 | tcp_cc_recovery_exit (tc); |
| 960 | ASSERT (tc->rto_boff == 0); |
| 961 | /* TODO extend for fastrecovery */ |
| 962 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 963 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 964 | static u8 |
| 965 | tcp_cc_is_spurious_retransmit (tcp_connection_t * tc) |
| 966 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 967 | return (tcp_in_recovery (tc) |
| 968 | && tc->snd_rxt_ts |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 969 | && tcp_opts_tstamp (&tc->rcv_opts) |
| 970 | && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts)); |
| 971 | } |
| 972 | |
| 973 | int |
| 974 | tcp_cc_recover (tcp_connection_t * tc) |
| 975 | { |
| 976 | ASSERT (tcp_in_cong_recovery (tc)); |
| 977 | if (tcp_cc_is_spurious_retransmit (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 978 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 979 | tcp_cc_congestion_undo (tc); |
| 980 | return 1; |
| 981 | } |
| 982 | |
| 983 | if (tcp_in_recovery (tc)) |
| 984 | tcp_cc_recovery_exit (tc); |
| 985 | else if (tcp_in_fastrecovery (tc)) |
| 986 | tcp_cc_fastrecovery_exit (tc); |
| 987 | |
| 988 | ASSERT (tc->rto_boff == 0); |
| 989 | ASSERT (!tcp_in_cong_recovery (tc)); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 990 | ASSERT (tcp_scoreboard_is_sane_post_recovery (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 991 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3); |
| 992 | return 0; |
| 993 | } |
| 994 | |
| 995 | static void |
| 996 | tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b) |
| 997 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 998 | ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 999 | |
| 1000 | /* Congestion avoidance */ |
| 1001 | tc->cc_algo->rcv_ack (tc); |
| 1002 | tc->tsecr_last_ack = tc->rcv_opts.tsecr; |
| 1003 | |
| 1004 | /* If a cumulative ack, make sure dupacks is 0 */ |
| 1005 | tc->rcv_dupacks = 0; |
| 1006 | |
| 1007 | /* When dupacks hits the threshold we only enter fast retransmit if |
| 1008 | * cumulative ack covers more than snd_congestion. Should snd_una |
| 1009 | * wrap this test may fail under otherwise valid circumstances. |
| 1010 | * Therefore, proactively update snd_congestion when wrap detected. */ |
| 1011 | if (PREDICT_FALSE |
| 1012 | (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked) |
| 1013 | && seq_gt (tc->snd_congestion, tc->snd_una))) |
| 1014 | tc->snd_congestion = tc->snd_una - 1; |
| 1015 | } |
| 1016 | |
| 1017 | static u8 |
| 1018 | tcp_should_fastrecover_sack (tcp_connection_t * tc) |
| 1019 | { |
| 1020 | return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes; |
| 1021 | } |
| 1022 | |
| 1023 | static u8 |
| 1024 | tcp_should_fastrecover (tcp_connection_t * tc) |
| 1025 | { |
| 1026 | return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD |
| 1027 | || tcp_should_fastrecover_sack (tc)); |
| 1028 | } |
| 1029 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1030 | /** |
| 1031 | * One function to rule them all ... and in the darkness bind them |
| 1032 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1033 | static void |
| 1034 | tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack) |
| 1035 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1036 | u32 rxt_delivered; |
| 1037 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1038 | /* |
| 1039 | * Duplicate ACK. Check if we should enter fast recovery, or if already in |
| 1040 | * it account for the bytes that left the network. |
| 1041 | */ |
| 1042 | if (is_dack) |
| 1043 | { |
| 1044 | ASSERT (tc->snd_una != tc->snd_una_max |
| 1045 | || tc->sack_sb.last_sacked_bytes); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1046 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1047 | tc->rcv_dupacks++; |
| 1048 | |
| 1049 | if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1050 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1051 | ASSERT (tcp_in_fastrecovery (tc)); |
| 1052 | /* Pure duplicate ack. If some data got acked, it's handled lower */ |
| 1053 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1054 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1055 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1056 | else if (tcp_should_fastrecover (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1057 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1058 | /* Things are already bad */ |
| 1059 | if (tcp_in_cong_recovery (tc)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1060 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1061 | tc->rcv_dupacks = 0; |
| 1062 | goto partial_ack_test; |
| 1063 | } |
| 1064 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1065 | /* If of of the two conditions lower hold, reset dupacks because |
| 1066 | * we're probably after timeout (RFC6582 heuristics). |
| 1067 | * If Cumulative ack does not cover more than congestion threshold, |
| 1068 | * and: |
| 1069 | * 1) The following doesn't hold: The congestion window is greater |
| 1070 | * than SMSS bytes and the difference between highest_ack |
| 1071 | * and prev_highest_ack is at most 4*SMSS bytes |
| 1072 | * 2) Echoed timestamp in the last non-dup ack does not equal the |
| 1073 | * stored timestamp |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1074 | */ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1075 | if (seq_leq (tc->snd_una, tc->snd_congestion) |
| 1076 | && ((!(tc->cwnd > tc->snd_mss |
| 1077 | && tc->bytes_acked <= 4 * tc->snd_mss)) |
| 1078 | || (tc->rcv_opts.tsecr != tc->tsecr_last_ack))) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1079 | { |
| 1080 | tc->rcv_dupacks = 0; |
| 1081 | return; |
| 1082 | } |
| 1083 | |
| 1084 | tcp_cc_init_congestion (tc); |
| 1085 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1086 | |
| 1087 | /* The first segment MUST be retransmitted */ |
| 1088 | tcp_retransmit_first_unacked (tc); |
| 1089 | |
| 1090 | /* Post retransmit update cwnd to ssthresh and account for the |
| 1091 | * three segments that have left the network and should've been |
| 1092 | * buffered at the receiver XXX */ |
| 1093 | tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1094 | ASSERT (tc->cwnd >= tc->snd_mss); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1095 | |
| 1096 | /* If cwnd allows, send more data */ |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1097 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1098 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1099 | scoreboard_init_high_rxt (&tc->sack_sb, |
| 1100 | tc->snd_una + tc->snd_mss); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1101 | tcp_fast_retransmit_sack (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1102 | } |
| 1103 | else |
| 1104 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1105 | tcp_fast_retransmit_no_sack (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1106 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1107 | |
| 1108 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1109 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1110 | else if (!tc->bytes_acked |
| 1111 | || (tc->bytes_acked && !tcp_in_cong_recovery (tc))) |
| 1112 | { |
| 1113 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1114 | return; |
| 1115 | } |
| 1116 | else |
| 1117 | goto partial_ack; |
| 1118 | } |
| 1119 | |
| 1120 | partial_ack_test: |
| 1121 | |
| 1122 | if (!tc->bytes_acked) |
| 1123 | return; |
| 1124 | |
| 1125 | partial_ack: |
| 1126 | /* |
| 1127 | * Legitimate ACK. 1) See if we can exit recovery |
| 1128 | */ |
| 1129 | /* XXX limit this only to first partial ack? */ |
| 1130 | tcp_retransmit_timer_update (tc); |
| 1131 | |
| 1132 | if (seq_geq (tc->snd_una, tc->snd_congestion)) |
| 1133 | { |
| 1134 | /* If spurious return, we've already updated everything */ |
| 1135 | if (tcp_cc_recover (tc)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1136 | { |
| 1137 | tc->tsecr_last_ack = tc->rcv_opts.tsecr; |
| 1138 | return; |
| 1139 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1140 | |
| 1141 | tc->snd_nxt = tc->snd_una_max; |
| 1142 | |
| 1143 | /* Treat as congestion avoidance ack */ |
| 1144 | tc->cc_algo->rcv_ack (tc); |
| 1145 | tc->tsecr_last_ack = tc->rcv_opts.tsecr; |
| 1146 | return; |
| 1147 | } |
| 1148 | |
| 1149 | /* |
| 1150 | * Legitimate ACK. 2) If PARTIAL ACK try to retransmit |
| 1151 | */ |
| 1152 | TCP_EVT_DBG (TCP_EVT_CC_PACK, tc); |
| 1153 | |
| 1154 | /* RFC6675: If the incoming ACK is a cumulative acknowledgment, |
| 1155 | * reset dupacks to 0 */ |
| 1156 | tc->rcv_dupacks = 0; |
| 1157 | |
| 1158 | tcp_retransmit_first_unacked (tc); |
| 1159 | |
| 1160 | /* Post RTO timeout don't try anything fancy */ |
| 1161 | if (tcp_in_recovery (tc)) |
| 1162 | return; |
| 1163 | |
| 1164 | /* Remove retransmitted bytes that have been delivered */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1165 | ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1166 | >= tc->sack_sb.last_bytes_delivered |
| 1167 | || (tc->flags & TCP_CONN_FINSNT)); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1168 | |
| 1169 | if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1170 | { |
| 1171 | /* If we have sacks and we haven't gotten an ack beyond high_rxt, |
| 1172 | * remove sacked bytes delivered */ |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1173 | rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv |
| 1174 | - tc->sack_sb.last_bytes_delivered; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1175 | ASSERT (tc->snd_rxt_bytes >= rxt_delivered); |
| 1176 | tc->snd_rxt_bytes -= rxt_delivered; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1177 | } |
| 1178 | else |
| 1179 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1180 | /* Either all retransmitted holes have been acked, or we're |
| 1181 | * "in the blind" and retransmitting segment by segment */ |
| 1182 | tc->snd_rxt_bytes = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1183 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1184 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1185 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1186 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1187 | /* |
| 1188 | * Since this was a partial ack, try to retransmit some more data |
| 1189 | */ |
| 1190 | tcp_fast_retransmit (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1191 | } |
| 1192 | |
| 1193 | void |
| 1194 | tcp_cc_init (tcp_connection_t * tc) |
| 1195 | { |
| 1196 | tc->cc_algo = tcp_cc_algo_get (TCP_CC_NEWRENO); |
| 1197 | tc->cc_algo->init (tc); |
| 1198 | } |
| 1199 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1200 | /** |
| 1201 | * Process incoming ACK |
| 1202 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1203 | static int |
| 1204 | tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1205 | tcp_header_t * th, u32 * next, u32 * error) |
| 1206 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1207 | u32 prev_snd_wnd, prev_snd_una; |
| 1208 | u8 is_dack; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1209 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1210 | TCP_EVT_DBG (TCP_EVT_CC_STAT, tc); |
| 1211 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1212 | /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1213 | if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1214 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1215 | /* If we have outstanding data and this is within the window, accept it, |
| 1216 | * probably retransmit has timed out. Otherwise ACK segment and then |
| 1217 | * drop it */ |
| 1218 | if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)) |
| 1219 | { |
| 1220 | tcp_make_ack (tc, b); |
| 1221 | *next = tcp_next_output (tc->c_is_ip4); |
| 1222 | *error = TCP_ERROR_ACK_INVALID; |
| 1223 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0, |
| 1224 | vnet_buffer (b)->tcp.ack_number); |
| 1225 | return -1; |
| 1226 | } |
| 1227 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1228 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2, |
| 1229 | vnet_buffer (b)->tcp.ack_number); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1230 | |
| 1231 | tc->snd_nxt = vnet_buffer (b)->tcp.ack_number; |
| 1232 | *error = TCP_ERROR_ACK_FUTURE; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1233 | } |
| 1234 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1235 | /* If old ACK, probably it's an old dupack */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1236 | if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1237 | { |
| 1238 | *error = TCP_ERROR_ACK_OLD; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1239 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1, |
| 1240 | vnet_buffer (b)->tcp.ack_number); |
| 1241 | if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD) |
| 1242 | { |
| 1243 | TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1244 | tcp_cc_handle_event (tc, 1); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1245 | } |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1246 | /* Don't drop yet */ |
| 1247 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1248 | } |
| 1249 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1250 | /* |
| 1251 | * Looks okay, process feedback |
| 1252 | */ |
| 1253 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1254 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1255 | tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number); |
| 1256 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1257 | prev_snd_wnd = tc->snd_wnd; |
| 1258 | prev_snd_una = tc->snd_una; |
| 1259 | tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number, |
| 1260 | vnet_buffer (b)->tcp.ack_number, |
| 1261 | clib_net_to_host_u16 (th->window) << tc->snd_wscale); |
| 1262 | tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una; |
| 1263 | tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv; |
| 1264 | tcp_validate_txf_size (tc, tc->bytes_acked); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1265 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1266 | if (tc->bytes_acked) |
| 1267 | tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number); |
| 1268 | |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1269 | TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc); |
| 1270 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1271 | /* |
| 1272 | * Check if we have congestion event |
| 1273 | */ |
| 1274 | |
| 1275 | if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1276 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1277 | tcp_cc_handle_event (tc, is_dack); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1278 | if (!tcp_in_cong_recovery (tc)) |
| 1279 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1280 | *error = TCP_ERROR_ACK_DUP; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1281 | TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1); |
| 1282 | return vnet_buffer (b)->tcp.data_len ? 0 : -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1283 | } |
| 1284 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1285 | /* |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1286 | * Update congestion control (slow start/congestion avoidance) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1287 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1288 | tcp_cc_update (tc, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1289 | |
| 1290 | return 0; |
| 1291 | } |
| 1292 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1293 | static u8 |
| 1294 | tcp_sack_vector_is_sane (sack_block_t * sacks) |
| 1295 | { |
| 1296 | int i; |
| 1297 | for (i = 1; i < vec_len (sacks); i++) |
| 1298 | { |
| 1299 | if (sacks[i - 1].end == sacks[i].start) |
| 1300 | return 0; |
| 1301 | } |
| 1302 | return 1; |
| 1303 | } |
| 1304 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1305 | /** |
| 1306 | * Build SACK list as per RFC2018. |
| 1307 | * |
| 1308 | * Makes sure the first block contains the segment that generated the current |
| 1309 | * ACK and the following ones are the ones most recently reported in SACK |
| 1310 | * blocks. |
| 1311 | * |
| 1312 | * @param tc TCP connection for which the SACK list is updated |
| 1313 | * @param start Start sequence number of the newest SACK block |
| 1314 | * @param end End sequence of the newest SACK block |
| 1315 | */ |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1316 | void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1317 | tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end) |
| 1318 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1319 | sack_block_t *new_list = 0, *block = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1320 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1321 | |
| 1322 | /* If the first segment is ooo add it to the list. Last write might've moved |
| 1323 | * rcv_nxt over the first segment. */ |
| 1324 | if (seq_lt (tc->rcv_nxt, start)) |
| 1325 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1326 | vec_add2 (new_list, block, 1); |
| 1327 | block->start = start; |
| 1328 | block->end = end; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | /* Find the blocks still worth keeping. */ |
| 1332 | for (i = 0; i < vec_len (tc->snd_sacks); i++) |
| 1333 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1334 | /* Discard if rcv_nxt advanced beyond current block */ |
| 1335 | if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1336 | continue; |
| 1337 | |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1338 | /* Merge or drop if segment overlapped by the new segment */ |
| 1339 | if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start) |
| 1340 | && seq_leq (tc->snd_sacks[i].start, new_list[0].end))) |
| 1341 | { |
| 1342 | if (seq_lt (tc->snd_sacks[i].start, new_list[0].start)) |
| 1343 | new_list[0].start = tc->snd_sacks[i].start; |
| 1344 | if (seq_lt (new_list[0].end, tc->snd_sacks[i].end)) |
| 1345 | new_list[0].end = tc->snd_sacks[i].end; |
| 1346 | continue; |
| 1347 | } |
| 1348 | |
| 1349 | /* Save to new SACK list if we have space. */ |
| 1350 | if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS) |
| 1351 | { |
| 1352 | vec_add1 (new_list, tc->snd_sacks[i]); |
| 1353 | } |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1354 | else |
| 1355 | { |
| 1356 | clib_warning ("sack discarded"); |
| 1357 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1358 | } |
| 1359 | |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1360 | ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1361 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1362 | /* Replace old vector with new one */ |
| 1363 | vec_free (tc->snd_sacks); |
| 1364 | tc->snd_sacks = new_list; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1365 | |
| 1366 | /* Segments should not 'touch' */ |
| 1367 | ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1368 | } |
| 1369 | |
| 1370 | /** Enqueue data for delivery to application */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1371 | always_inline int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1372 | tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1373 | u16 data_len) |
| 1374 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1375 | int written, error = TCP_ERROR_ENQUEUED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1376 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1377 | ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)); |
| 1378 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1379 | /* Pure ACK. Update rcv_nxt and be done. */ |
| 1380 | if (PREDICT_FALSE (data_len == 0)) |
| 1381 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1382 | return TCP_ERROR_PURE_ACK; |
| 1383 | } |
| 1384 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 1385 | written = stream_session_enqueue_data (&tc->connection, b, 0, |
| 1386 | 1 /* queue event */ , 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1387 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1388 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written); |
| 1389 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1390 | /* Update rcv_nxt */ |
| 1391 | if (PREDICT_TRUE (written == data_len)) |
| 1392 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1393 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1394 | } |
| 1395 | /* If more data written than expected, account for out-of-order bytes. */ |
| 1396 | else if (written > data_len) |
| 1397 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1398 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1399 | |
| 1400 | /* Send ACK confirming the update */ |
| 1401 | tc->flags |= TCP_CONN_SNDACK; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1402 | } |
| 1403 | else if (written > 0) |
| 1404 | { |
| 1405 | /* We've written something but FIFO is probably full now */ |
| 1406 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1407 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1408 | /* Depending on how fast the app is, all remaining buffers in burst will |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1409 | * not be enqueued. Inform peer */ |
| 1410 | tc->flags |= TCP_CONN_SNDACK; |
| 1411 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1412 | error = TCP_ERROR_PARTIALLY_ENQUEUED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1413 | } |
| 1414 | else |
| 1415 | { |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1416 | tc->flags |= TCP_CONN_SNDACK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1417 | return TCP_ERROR_FIFO_FULL; |
| 1418 | } |
| 1419 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1420 | /* Update SACK list if need be */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1421 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1422 | { |
| 1423 | /* Remove SACK blocks that have been delivered */ |
| 1424 | tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt); |
| 1425 | } |
| 1426 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1427 | return error; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | /** Enqueue out-of-order data */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1431 | always_inline int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1432 | tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1433 | u16 data_len) |
| 1434 | { |
| 1435 | stream_session_t *s0; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1436 | int rv, offset; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1437 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1438 | ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)); |
| 1439 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1440 | /* Pure ACK. Do nothing */ |
| 1441 | if (PREDICT_FALSE (data_len == 0)) |
| 1442 | { |
| 1443 | return TCP_ERROR_PURE_ACK; |
| 1444 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1445 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1446 | /* Enqueue out-of-order data with relative offset */ |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 1447 | rv = stream_session_enqueue_data (&tc->connection, b, |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1448 | vnet_buffer (b)->tcp.seq_number - |
| 1449 | tc->rcv_nxt, 0 /* queue event */ , 0); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1450 | |
| 1451 | /* Nothing written */ |
| 1452 | if (rv) |
| 1453 | { |
| 1454 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0); |
| 1455 | return TCP_ERROR_FIFO_FULL; |
| 1456 | } |
| 1457 | |
| 1458 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1459 | |
| 1460 | /* Update SACK list if in use */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1461 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1462 | { |
| 1463 | ooo_segment_t *newest; |
| 1464 | u32 start, end; |
| 1465 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 1466 | s0 = stream_session_get (tc->c_s_index, tc->c_thread_index); |
| 1467 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1468 | /* Get the newest segment from the fifo */ |
| 1469 | newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1470 | if (newest) |
| 1471 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1472 | offset = ooo_segment_offset (s0->server_rx_fifo, newest); |
| 1473 | ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt); |
| 1474 | start = tc->rcv_nxt + offset; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1475 | end = start + ooo_segment_length (s0->server_rx_fifo, newest); |
| 1476 | tcp_update_sack_list (tc, start, end); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1477 | svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1478 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1479 | } |
| 1480 | |
| 1481 | return TCP_ERROR_ENQUEUED; |
| 1482 | } |
| 1483 | |
| 1484 | /** |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1485 | * Check if ACK could be delayed. If ack can be delayed, it should return |
| 1486 | * true for a full frame. If we're always acking return 0. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1487 | */ |
| 1488 | always_inline int |
| 1489 | tcp_can_delack (tcp_connection_t * tc) |
| 1490 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1491 | /* Send ack if ... */ |
| 1492 | if (TCP_ALWAYS_ACK |
| 1493 | /* just sent a rcv wnd 0 */ |
| 1494 | || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 |
| 1495 | /* constrained to send ack */ |
| 1496 | || (tc->flags & TCP_CONN_SNDACK) != 0 |
| 1497 | /* we're almost out of tx wnd */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1498 | || tcp_available_snd_space (tc) < 4 * tc->snd_mss) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1499 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1500 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1501 | return 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1502 | } |
| 1503 | |
| 1504 | static int |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1505 | tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop) |
| 1506 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1507 | u32 discard, first = b->current_length; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1508 | vlib_main_t *vm = vlib_get_main (); |
| 1509 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1510 | /* Handle multi-buffer segments */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1511 | if (n_bytes_to_drop > b->current_length) |
| 1512 | { |
| 1513 | if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 1514 | return -1; |
| 1515 | do |
| 1516 | { |
| 1517 | discard = clib_min (n_bytes_to_drop, b->current_length); |
| 1518 | vlib_buffer_advance (b, discard); |
| 1519 | b = vlib_get_buffer (vm, b->next_buffer); |
| 1520 | n_bytes_to_drop -= discard; |
| 1521 | } |
| 1522 | while (n_bytes_to_drop); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1523 | if (n_bytes_to_drop > first) |
| 1524 | b->total_length_not_including_first_buffer -= n_bytes_to_drop - first; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1525 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1526 | else |
| 1527 | vlib_buffer_advance (b, n_bytes_to_drop); |
| 1528 | vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1529 | return 0; |
| 1530 | } |
| 1531 | |
| 1532 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1533 | tcp_segment_rcv (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b, |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1534 | u32 * next0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1535 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1536 | u32 error = 0, n_bytes_to_drop, n_data_bytes; |
| 1537 | |
| 1538 | vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset); |
| 1539 | n_data_bytes = vnet_buffer (b)->tcp.data_len; |
| 1540 | ASSERT (n_data_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1541 | |
| 1542 | /* Handle out-of-order data */ |
| 1543 | if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt)) |
| 1544 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1545 | /* Old sequence numbers allowed through because they overlapped |
| 1546 | * the rx window */ |
| 1547 | if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1548 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1549 | error = TCP_ERROR_SEGMENT_OLD; |
| 1550 | *next0 = TCP_NEXT_DROP; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1551 | |
Dave Barach | 259cdae | 2017-05-15 16:27:05 -0400 | [diff] [blame] | 1552 | /* Completely in the past (possible retransmit) */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1553 | if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1554 | { |
| 1555 | /* Ack retransmissions since we may not have any data to send */ |
| 1556 | tcp_make_ack (tc, b); |
| 1557 | *next0 = tcp_next_output (tc->c_is_ip4); |
| 1558 | goto done; |
| 1559 | } |
Dave Barach | 259cdae | 2017-05-15 16:27:05 -0400 | [diff] [blame] | 1560 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1561 | /* Chop off the bytes in the past */ |
| 1562 | n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number; |
| 1563 | n_data_bytes -= n_bytes_to_drop; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1564 | vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1565 | if (tcp_buffer_discard_bytes (b, n_bytes_to_drop)) |
| 1566 | goto done; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1567 | |
| 1568 | goto in_order; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1569 | } |
| 1570 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1571 | error = tcp_session_enqueue_ooo (tc, b, n_data_bytes); |
| 1572 | |
| 1573 | /* N.B. Should not filter burst of dupacks. Two issues 1) dupacks open |
| 1574 | * cwnd on remote peer when congested 2) acks leaving should have the |
| 1575 | * latest rcv_wnd since the burst may eaten up all of it, so only the |
| 1576 | * old ones could be filtered. |
| 1577 | */ |
| 1578 | |
| 1579 | /* RFC2581: Send DUPACK for fast retransmit */ |
| 1580 | tcp_make_ack (tc, b); |
| 1581 | *next0 = tcp_next_output (tc->c_is_ip4); |
| 1582 | |
| 1583 | /* Mark as DUPACK. We may filter these in output if |
| 1584 | * the burst fills the holes. */ |
| 1585 | if (n_data_bytes) |
| 1586 | vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK; |
| 1587 | |
| 1588 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1589 | goto done; |
| 1590 | } |
| 1591 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1592 | in_order: |
| 1593 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1594 | /* In order data, enqueue. Fifo figures out by itself if any out-of-order |
| 1595 | * segments can be enqueued after fifo tail offset changes. */ |
| 1596 | error = tcp_session_enqueue_data (tc, b, n_data_bytes); |
| 1597 | |
| 1598 | /* Check if ACK can be delayed */ |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1599 | if (tcp_can_delack (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1600 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1601 | if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK)) |
| 1602 | tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1603 | goto done; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1604 | } |
| 1605 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1606 | *next0 = tcp_next_output (tc->c_is_ip4); |
| 1607 | tcp_make_ack (tc, b); |
| 1608 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1609 | done: |
| 1610 | return error; |
| 1611 | } |
| 1612 | |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1613 | typedef struct |
| 1614 | { |
| 1615 | tcp_header_t tcp_header; |
| 1616 | tcp_connection_t tcp_connection; |
| 1617 | } tcp_rx_trace_t; |
| 1618 | |
| 1619 | u8 * |
| 1620 | format_tcp_rx_trace (u8 * s, va_list * args) |
| 1621 | { |
| 1622 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1623 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 1624 | tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *); |
| 1625 | uword indent = format_get_indent (s); |
| 1626 | |
| 1627 | s = format (s, "%U\n%U%U", |
| 1628 | format_tcp_header, &t->tcp_header, 128, |
| 1629 | format_white_space, indent, |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1630 | format_tcp_connection, &t->tcp_connection, 1); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1631 | |
| 1632 | return s; |
| 1633 | } |
| 1634 | |
| 1635 | u8 * |
| 1636 | format_tcp_rx_trace_short (u8 * s, va_list * args) |
| 1637 | { |
| 1638 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1639 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 1640 | tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *); |
| 1641 | |
| 1642 | s = format (s, "%d -> %d (%U)", |
| 1643 | clib_net_to_host_u16 (t->tcp_header.src_port), |
| 1644 | clib_net_to_host_u16 (t->tcp_header.dst_port), format_tcp_state, |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1645 | t->tcp_connection.state); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1646 | |
| 1647 | return s; |
| 1648 | } |
| 1649 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1650 | void |
| 1651 | tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0, |
| 1652 | tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4) |
| 1653 | { |
| 1654 | if (tc0) |
| 1655 | { |
| 1656 | clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection)); |
| 1657 | } |
| 1658 | else |
| 1659 | { |
| 1660 | th0 = tcp_buffer_hdr (b0); |
| 1661 | } |
| 1662 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
| 1663 | } |
| 1664 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1665 | always_inline void |
| 1666 | tcp_established_inc_counter (vlib_main_t * vm, u8 is_ip4, u8 evt, u8 val) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1667 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1668 | if (PREDICT_TRUE (!val)) |
| 1669 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1670 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1671 | if (is_ip4) |
| 1672 | vlib_node_increment_counter (vm, tcp4_established_node.index, evt, val); |
| 1673 | else |
| 1674 | vlib_node_increment_counter (vm, tcp6_established_node.index, evt, val); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1675 | } |
| 1676 | |
| 1677 | always_inline uword |
| 1678 | tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1679 | vlib_frame_t * from_frame, int is_ip4) |
| 1680 | { |
| 1681 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1682 | u32 my_thread_index = vm->thread_index, errors = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1683 | tcp_main_t *tm = vnet_get_tcp_main (); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1684 | u8 is_fin = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1685 | |
| 1686 | from = vlib_frame_vector_args (from_frame); |
| 1687 | n_left_from = from_frame->n_vectors; |
| 1688 | |
| 1689 | next_index = node->cached_next_index; |
| 1690 | |
| 1691 | while (n_left_from > 0) |
| 1692 | { |
| 1693 | u32 n_left_to_next; |
| 1694 | |
| 1695 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1696 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1697 | { |
| 1698 | u32 bi0; |
| 1699 | vlib_buffer_t *b0; |
| 1700 | tcp_header_t *th0 = 0; |
| 1701 | tcp_connection_t *tc0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1702 | u32 next0 = TCP_ESTABLISHED_NEXT_DROP, error0 = TCP_ERROR_ENQUEUED; |
| 1703 | |
| 1704 | bi0 = from[0]; |
| 1705 | to_next[0] = bi0; |
| 1706 | from += 1; |
| 1707 | to_next += 1; |
| 1708 | n_left_from -= 1; |
| 1709 | n_left_to_next -= 1; |
| 1710 | |
| 1711 | b0 = vlib_get_buffer (vm, bi0); |
| 1712 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
| 1713 | my_thread_index); |
| 1714 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1715 | if (PREDICT_FALSE (tc0 == 0)) |
| 1716 | { |
| 1717 | error0 = TCP_ERROR_INVALID_CONNECTION; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1718 | goto done; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1719 | } |
| 1720 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1721 | th0 = tcp_buffer_hdr (b0); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1722 | /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a |
| 1723 | * dangling reference. */ |
| 1724 | is_fin = tcp_is_fin (th0); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1725 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1726 | /* SYNs, FINs and data consume sequence numbers */ |
| 1727 | vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1728 | + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1729 | |
| 1730 | /* TODO header prediction fast path */ |
| 1731 | |
| 1732 | /* 1-4: check SEQ, RST, SYN */ |
| 1733 | if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0))) |
| 1734 | { |
| 1735 | error0 = TCP_ERROR_SEGMENT_INVALID; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1736 | TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, |
| 1737 | vnet_buffer (b0)->tcp.seq_number, |
| 1738 | vnet_buffer (b0)->tcp.seq_end); |
| 1739 | goto done; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1740 | } |
| 1741 | |
| 1742 | /* 5: check the ACK field */ |
| 1743 | if (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1744 | goto done; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1745 | |
| 1746 | /* 6: check the URG bit TODO */ |
| 1747 | |
| 1748 | /* 7: process the segment text */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1749 | if (vnet_buffer (b0)->tcp.data_len) |
| 1750 | error0 = tcp_segment_rcv (tm, tc0, b0, &next0); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1751 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1752 | /* 8: check the FIN bit */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1753 | if (PREDICT_FALSE (is_fin)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1754 | { |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 1755 | /* Enter CLOSE-WAIT and notify session. To avoid lingering |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1756 | * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 1757 | /* Account for the FIN if nothing else was received */ |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1758 | if (vnet_buffer (b0)->tcp.data_len == 0) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 1759 | tc0->rcv_nxt += 1; |
| 1760 | tcp_make_ack (tc0, b0); |
| 1761 | next0 = tcp_next_output (tc0->c_is_ip4); |
| 1762 | tc0->state = TCP_STATE_CLOSE_WAIT; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1763 | stream_session_disconnect_notify (&tc0->connection); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1764 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 1765 | TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1766 | } |
| 1767 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1768 | done: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1769 | b0->error = node->errors[error0]; |
| 1770 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 1771 | { |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1772 | tcp_rx_trace_t *t0 = |
| 1773 | vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 1774 | tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 1778 | n_left_to_next, bi0, next0); |
| 1779 | } |
| 1780 | |
| 1781 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 1782 | } |
| 1783 | |
| 1784 | errors = session_manager_flush_enqueue_events (my_thread_index); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1785 | tcp_established_inc_counter (vm, is_ip4, TCP_ERROR_EVENT_FIFO_FULL, errors); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1786 | tcp_flush_frame_to_output (vm, my_thread_index, is_ip4); |
| 1787 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1788 | return from_frame->n_vectors; |
| 1789 | } |
| 1790 | |
| 1791 | static uword |
| 1792 | tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1793 | vlib_frame_t * from_frame) |
| 1794 | { |
| 1795 | return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 1796 | } |
| 1797 | |
| 1798 | static uword |
| 1799 | tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1800 | vlib_frame_t * from_frame) |
| 1801 | { |
| 1802 | return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 1803 | } |
| 1804 | |
| 1805 | /* *INDENT-OFF* */ |
| 1806 | VLIB_REGISTER_NODE (tcp4_established_node) = |
| 1807 | { |
| 1808 | .function = tcp4_established, |
| 1809 | .name = "tcp4-established", |
| 1810 | /* Takes a vector of packets. */ |
| 1811 | .vector_size = sizeof (u32), |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1812 | .n_errors = TCP_N_ERROR, |
| 1813 | .error_strings = tcp_error_strings, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1814 | .n_next_nodes = TCP_ESTABLISHED_N_NEXT, |
| 1815 | .next_nodes = |
| 1816 | { |
| 1817 | #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n, |
| 1818 | foreach_tcp_state_next |
| 1819 | #undef _ |
| 1820 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1821 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1822 | }; |
| 1823 | /* *INDENT-ON* */ |
| 1824 | |
| 1825 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established); |
| 1826 | |
| 1827 | /* *INDENT-OFF* */ |
| 1828 | VLIB_REGISTER_NODE (tcp6_established_node) = |
| 1829 | { |
| 1830 | .function = tcp6_established, |
| 1831 | .name = "tcp6-established", |
| 1832 | /* Takes a vector of packets. */ |
| 1833 | .vector_size = sizeof (u32), |
| 1834 | .n_errors = TCP_N_ERROR, |
| 1835 | .error_strings = tcp_error_strings, |
| 1836 | .n_next_nodes = TCP_ESTABLISHED_N_NEXT, |
| 1837 | .next_nodes = |
| 1838 | { |
| 1839 | #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n, |
| 1840 | foreach_tcp_state_next |
| 1841 | #undef _ |
| 1842 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1843 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1844 | }; |
| 1845 | /* *INDENT-ON* */ |
| 1846 | |
| 1847 | |
| 1848 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established); |
| 1849 | |
| 1850 | vlib_node_registration_t tcp4_syn_sent_node; |
| 1851 | vlib_node_registration_t tcp6_syn_sent_node; |
| 1852 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1853 | static u8 |
| 1854 | tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr) |
| 1855 | { |
| 1856 | transport_connection_t *tmp; |
| 1857 | if (!tc) |
| 1858 | return 1; |
| 1859 | |
| 1860 | u8 is_valid = (tc->c_lcl_port == hdr->dst_port |
| 1861 | && (tc->state == TCP_STATE_LISTEN |
| 1862 | || tc->c_rmt_port == hdr->src_port)); |
| 1863 | |
| 1864 | if (!is_valid) |
| 1865 | { |
| 1866 | if ((tmp = |
| 1867 | stream_session_half_open_lookup (&tc->c_lcl_ip, &tc->c_rmt_ip, |
| 1868 | tc->c_lcl_port, tc->c_rmt_port, |
| 1869 | tc->c_transport_proto))) |
| 1870 | { |
| 1871 | if (tmp->lcl_port == hdr->dst_port |
| 1872 | && tmp->rmt_port == hdr->src_port) |
| 1873 | { |
| 1874 | clib_warning ("half-open is valid!"); |
| 1875 | } |
| 1876 | } |
| 1877 | } |
| 1878 | return is_valid; |
| 1879 | } |
| 1880 | |
| 1881 | /** |
| 1882 | * Lookup transport connection |
| 1883 | */ |
| 1884 | static tcp_connection_t * |
| 1885 | tcp_lookup_connection (vlib_buffer_t * b, u8 thread_index, u8 is_ip4) |
| 1886 | { |
| 1887 | tcp_header_t *tcp; |
| 1888 | transport_connection_t *tconn; |
| 1889 | tcp_connection_t *tc; |
| 1890 | if (is_ip4) |
| 1891 | { |
| 1892 | ip4_header_t *ip4; |
| 1893 | ip4 = vlib_buffer_get_current (b); |
| 1894 | tcp = ip4_next_header (ip4); |
| 1895 | tconn = stream_session_lookup_transport_wt4 (&ip4->dst_address, |
| 1896 | &ip4->src_address, |
| 1897 | tcp->dst_port, |
| 1898 | tcp->src_port, |
| 1899 | SESSION_TYPE_IP4_TCP, |
| 1900 | thread_index); |
| 1901 | tc = tcp_get_connection_from_transport (tconn); |
| 1902 | ASSERT (tcp_lookup_is_valid (tc, tcp)); |
| 1903 | } |
| 1904 | else |
| 1905 | { |
| 1906 | ip6_header_t *ip6; |
| 1907 | ip6 = vlib_buffer_get_current (b); |
| 1908 | tcp = ip6_next_header (ip6); |
| 1909 | tconn = stream_session_lookup_transport_wt6 (&ip6->dst_address, |
| 1910 | &ip6->src_address, |
| 1911 | tcp->dst_port, |
| 1912 | tcp->src_port, |
| 1913 | SESSION_TYPE_IP6_TCP, |
| 1914 | thread_index); |
| 1915 | tc = tcp_get_connection_from_transport (tconn); |
| 1916 | ASSERT (tcp_lookup_is_valid (tc, tcp)); |
| 1917 | } |
| 1918 | return tc; |
| 1919 | } |
| 1920 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1921 | always_inline uword |
| 1922 | tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1923 | vlib_frame_t * from_frame, int is_ip4) |
| 1924 | { |
| 1925 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 1926 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1927 | u32 my_thread_index = vm->thread_index, errors = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1928 | |
| 1929 | from = vlib_frame_vector_args (from_frame); |
| 1930 | n_left_from = from_frame->n_vectors; |
| 1931 | |
| 1932 | next_index = node->cached_next_index; |
| 1933 | |
| 1934 | while (n_left_from > 0) |
| 1935 | { |
| 1936 | u32 n_left_to_next; |
| 1937 | |
| 1938 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 1939 | |
| 1940 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1941 | { |
| 1942 | u32 bi0, ack0, seq0; |
| 1943 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1944 | tcp_rx_trace_t *t0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1945 | tcp_header_t *tcp0 = 0; |
| 1946 | tcp_connection_t *tc0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1947 | tcp_connection_t *new_tc0; |
| 1948 | u32 next0 = TCP_SYN_SENT_NEXT_DROP, error0 = TCP_ERROR_ENQUEUED; |
| 1949 | |
| 1950 | bi0 = from[0]; |
| 1951 | to_next[0] = bi0; |
| 1952 | from += 1; |
| 1953 | to_next += 1; |
| 1954 | n_left_from -= 1; |
| 1955 | n_left_to_next -= 1; |
| 1956 | |
| 1957 | b0 = vlib_get_buffer (vm, bi0); |
| 1958 | tc0 = |
| 1959 | tcp_half_open_connection_get (vnet_buffer (b0)-> |
| 1960 | tcp.connection_index); |
Dave Barach | d84ba85 | 2017-08-22 17:56:46 -0400 | [diff] [blame] | 1961 | if (PREDICT_FALSE (tc0 == 0)) |
| 1962 | { |
| 1963 | error0 = TCP_ERROR_INVALID_CONNECTION; |
| 1964 | goto drop; |
| 1965 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1966 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1967 | /* Half-open completed recently but the connection was't removed |
| 1968 | * yet by the owning thread */ |
| 1969 | if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE)) |
| 1970 | { |
| 1971 | /* Make sure the connection actually exists */ |
| 1972 | ASSERT (tcp_lookup_connection (b0, my_thread_index, is_ip4)); |
| 1973 | goto drop; |
| 1974 | } |
| 1975 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1976 | ack0 = vnet_buffer (b0)->tcp.ack_number; |
| 1977 | seq0 = vnet_buffer (b0)->tcp.seq_number; |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1978 | tcp0 = tcp_buffer_hdr (b0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1979 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 1980 | /* Crude check to see if the connection handle does not match |
| 1981 | * the packet. Probably connection just switched to established */ |
| 1982 | if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port |
| 1983 | || tcp0->src_port != tc0->c_rmt_port)) |
| 1984 | goto drop; |
| 1985 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1986 | if (PREDICT_FALSE |
| 1987 | (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0))) |
| 1988 | goto drop; |
| 1989 | |
| 1990 | /* SYNs, FINs and data consume sequence numbers */ |
| 1991 | vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0) |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1992 | + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1993 | |
| 1994 | /* |
| 1995 | * 1. check the ACK bit |
| 1996 | */ |
| 1997 | |
| 1998 | /* |
| 1999 | * If the ACK bit is set |
| 2000 | * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless |
| 2001 | * the RST bit is set, if so drop the segment and return) |
| 2002 | * <SEQ=SEG.ACK><CTL=RST> |
| 2003 | * and discard the segment. Return. |
| 2004 | * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable. |
| 2005 | */ |
| 2006 | if (tcp_ack (tcp0)) |
| 2007 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2008 | if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2009 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2010 | clib_warning ("ack not in rcv wnd"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2011 | if (!tcp_rst (tcp0)) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2012 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2013 | goto drop; |
| 2014 | } |
| 2015 | |
| 2016 | /* Make sure ACK is valid */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2017 | if (seq_gt (tc0->snd_una, ack0)) |
| 2018 | { |
| 2019 | clib_warning ("ack invalid"); |
| 2020 | goto drop; |
| 2021 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | /* |
| 2025 | * 2. check the RST bit |
| 2026 | */ |
| 2027 | |
| 2028 | if (tcp_rst (tcp0)) |
| 2029 | { |
| 2030 | /* If ACK is acceptable, signal client that peer is not |
| 2031 | * willing to accept connection and drop connection*/ |
| 2032 | if (tcp_ack (tcp0)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2033 | tcp_connection_reset (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2034 | goto drop; |
| 2035 | } |
| 2036 | |
| 2037 | /* |
| 2038 | * 3. check the security and precedence (skipped) |
| 2039 | */ |
| 2040 | |
| 2041 | /* |
| 2042 | * 4. check the SYN bit |
| 2043 | */ |
| 2044 | |
| 2045 | /* No SYN flag. Drop. */ |
| 2046 | if (!tcp_syn (tcp0)) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2047 | { |
| 2048 | clib_warning ("not synack"); |
| 2049 | goto drop; |
| 2050 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2051 | |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2052 | /* Parse options */ |
| 2053 | if (tcp_options_parse (tcp0, &tc0->rcv_opts)) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2054 | { |
| 2055 | clib_warning ("options parse fail"); |
| 2056 | goto drop; |
| 2057 | } |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2058 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2059 | /* Valid SYN or SYN-ACK. Move connection from half-open pool to |
| 2060 | * current thread pool. */ |
| 2061 | pool_get (tm->connections[my_thread_index], new_tc0); |
| 2062 | clib_memcpy (new_tc0, tc0, sizeof (*new_tc0)); |
Dave Barach | 259cdae | 2017-05-15 16:27:05 -0400 | [diff] [blame] | 2063 | new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index]; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2064 | new_tc0->c_thread_index = my_thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2065 | new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end; |
| 2066 | new_tc0->irs = seq0; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2067 | new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID; |
| 2068 | new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = |
| 2069 | TCP_TIMER_HANDLE_INVALID; |
| 2070 | |
| 2071 | /* If this is not the owning thread, wait for syn retransmit to |
| 2072 | * expire and cleanup then */ |
| 2073 | if (tcp_half_open_connection_cleanup (tc0)) |
| 2074 | tc0->flags |= TCP_CONN_HALF_OPEN_DONE; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2075 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2076 | if (tcp_opts_tstamp (&new_tc0->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2077 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2078 | new_tc0->tsval_recent = new_tc0->rcv_opts.tsval; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2079 | new_tc0->tsval_recent_age = tcp_time_now (); |
| 2080 | } |
| 2081 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2082 | if (tcp_opts_wscale (&new_tc0->rcv_opts)) |
| 2083 | new_tc0->snd_wscale = new_tc0->rcv_opts.wscale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2084 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2085 | /* RFC1323: SYN and SYN-ACK wnd not scaled */ |
| 2086 | new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2087 | new_tc0->snd_wl1 = seq0; |
| 2088 | new_tc0->snd_wl2 = ack0; |
| 2089 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2090 | tcp_connection_init_vars (new_tc0); |
| 2091 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2092 | /* SYN-ACK: See if we can switch to ESTABLISHED state */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2093 | if (PREDICT_TRUE (tcp_ack (tcp0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2094 | { |
| 2095 | /* Our SYN is ACKed: we have iss < ack = snd_una */ |
| 2096 | |
| 2097 | /* TODO Dequeue acknowledged segments if we support Fast Open */ |
| 2098 | new_tc0->snd_una = ack0; |
| 2099 | new_tc0->state = TCP_STATE_ESTABLISHED; |
| 2100 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2101 | /* Make sure las is initialized for the wnd computation */ |
| 2102 | new_tc0->rcv_las = new_tc0->rcv_nxt; |
| 2103 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2104 | /* Notify app that we have connection. If session layer can't |
| 2105 | * allocate session send reset */ |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2106 | if (stream_session_connect_notify (&new_tc0->connection, 0)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2107 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2108 | clib_warning ("connect notify fail"); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2109 | tcp_send_reset_w_pkt (new_tc0, b0, is_ip4); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2110 | tcp_connection_cleanup (new_tc0); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2111 | goto drop; |
| 2112 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2113 | |
| 2114 | /* Make sure after data segment processing ACK is sent */ |
| 2115 | new_tc0->flags |= TCP_CONN_SNDACK; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2116 | |
| 2117 | /* Update rtt with the syn-ack sample */ |
| 2118 | new_tc0->bytes_acked = 1; |
| 2119 | tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2120 | TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2121 | } |
| 2122 | /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */ |
| 2123 | else |
| 2124 | { |
| 2125 | new_tc0->state = TCP_STATE_SYN_RCVD; |
| 2126 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2127 | /* Notify app that we have connection */ |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2128 | if (stream_session_connect_notify (&new_tc0->connection, 0)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2129 | { |
| 2130 | tcp_connection_cleanup (new_tc0); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2131 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2132 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2133 | goto drop; |
| 2134 | } |
| 2135 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2136 | tc0->rtt_ts = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2137 | tcp_init_snd_vars (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2138 | tcp_make_synack (new_tc0, b0); |
| 2139 | next0 = tcp_next_output (is_ip4); |
| 2140 | |
| 2141 | goto drop; |
| 2142 | } |
| 2143 | |
| 2144 | /* Read data, if any */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2145 | if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2146 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2147 | ASSERT (0); |
| 2148 | error0 = tcp_segment_rcv (tm, new_tc0, b0, &next0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2149 | if (error0 == TCP_ERROR_PURE_ACK) |
| 2150 | error0 = TCP_ERROR_SYN_ACKS_RCVD; |
| 2151 | } |
| 2152 | else |
| 2153 | { |
| 2154 | tcp_make_ack (new_tc0, b0); |
| 2155 | next0 = tcp_next_output (new_tc0->c_is_ip4); |
| 2156 | } |
| 2157 | |
| 2158 | drop: |
| 2159 | |
| 2160 | b0->error = error0 ? node->errors[error0] : 0; |
| 2161 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2162 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2163 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2164 | clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header)); |
| 2165 | clib_memcpy (&t0->tcp_connection, tc0, |
| 2166 | sizeof (t0->tcp_connection)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2167 | } |
| 2168 | |
| 2169 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2170 | n_left_to_next, bi0, next0); |
| 2171 | } |
| 2172 | |
| 2173 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2174 | } |
| 2175 | |
| 2176 | errors = session_manager_flush_enqueue_events (my_thread_index); |
| 2177 | if (errors) |
| 2178 | { |
| 2179 | if (is_ip4) |
| 2180 | vlib_node_increment_counter (vm, tcp4_established_node.index, |
| 2181 | TCP_ERROR_EVENT_FIFO_FULL, errors); |
| 2182 | else |
| 2183 | vlib_node_increment_counter (vm, tcp6_established_node.index, |
| 2184 | TCP_ERROR_EVENT_FIFO_FULL, errors); |
| 2185 | } |
| 2186 | |
| 2187 | return from_frame->n_vectors; |
| 2188 | } |
| 2189 | |
| 2190 | static uword |
| 2191 | tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2192 | vlib_frame_t * from_frame) |
| 2193 | { |
| 2194 | return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2195 | } |
| 2196 | |
| 2197 | static uword |
| 2198 | tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2199 | vlib_frame_t * from_frame) |
| 2200 | { |
| 2201 | return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2202 | } |
| 2203 | |
| 2204 | /* *INDENT-OFF* */ |
| 2205 | VLIB_REGISTER_NODE (tcp4_syn_sent_node) = |
| 2206 | { |
| 2207 | .function = tcp4_syn_sent, |
| 2208 | .name = "tcp4-syn-sent", |
| 2209 | /* Takes a vector of packets. */ |
| 2210 | .vector_size = sizeof (u32), |
| 2211 | .n_errors = TCP_N_ERROR, |
| 2212 | .error_strings = tcp_error_strings, |
| 2213 | .n_next_nodes = TCP_SYN_SENT_N_NEXT, |
| 2214 | .next_nodes = |
| 2215 | { |
| 2216 | #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n, |
| 2217 | foreach_tcp_state_next |
| 2218 | #undef _ |
| 2219 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2220 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2221 | }; |
| 2222 | /* *INDENT-ON* */ |
| 2223 | |
| 2224 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent); |
| 2225 | |
| 2226 | /* *INDENT-OFF* */ |
| 2227 | VLIB_REGISTER_NODE (tcp6_syn_sent_node) = |
| 2228 | { |
| 2229 | .function = tcp6_syn_sent_rcv, |
| 2230 | .name = "tcp6-syn-sent", |
| 2231 | /* Takes a vector of packets. */ |
| 2232 | .vector_size = sizeof (u32), |
| 2233 | .n_errors = TCP_N_ERROR, |
| 2234 | .error_strings = tcp_error_strings, |
| 2235 | .n_next_nodes = TCP_SYN_SENT_N_NEXT, |
| 2236 | .next_nodes = |
| 2237 | { |
| 2238 | #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n, |
| 2239 | foreach_tcp_state_next |
| 2240 | #undef _ |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2241 | }, |
| 2242 | .format_trace = format_tcp_rx_trace_short, |
| 2243 | }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2244 | /* *INDENT-ON* */ |
| 2245 | |
| 2246 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2247 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2248 | /** |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2249 | * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2250 | * as per RFC793 p. 64 |
| 2251 | */ |
| 2252 | always_inline uword |
| 2253 | tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2254 | vlib_frame_t * from_frame, int is_ip4) |
| 2255 | { |
| 2256 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 2257 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2258 | u32 my_thread_index = vm->thread_index, errors = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2259 | |
| 2260 | from = vlib_frame_vector_args (from_frame); |
| 2261 | n_left_from = from_frame->n_vectors; |
| 2262 | |
| 2263 | next_index = node->cached_next_index; |
| 2264 | |
| 2265 | while (n_left_from > 0) |
| 2266 | { |
| 2267 | u32 n_left_to_next; |
| 2268 | |
| 2269 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2270 | |
| 2271 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2272 | { |
| 2273 | u32 bi0; |
| 2274 | vlib_buffer_t *b0; |
| 2275 | tcp_header_t *tcp0 = 0; |
| 2276 | tcp_connection_t *tc0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2277 | u32 next0 = TCP_RCV_PROCESS_NEXT_DROP, error0 = TCP_ERROR_ENQUEUED; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2278 | u8 is_fin0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2279 | |
| 2280 | bi0 = from[0]; |
| 2281 | to_next[0] = bi0; |
| 2282 | from += 1; |
| 2283 | to_next += 1; |
| 2284 | n_left_from -= 1; |
| 2285 | n_left_to_next -= 1; |
| 2286 | |
| 2287 | b0 = vlib_get_buffer (vm, bi0); |
| 2288 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
| 2289 | my_thread_index); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2290 | if (PREDICT_FALSE (tc0 == 0)) |
| 2291 | { |
| 2292 | error0 = TCP_ERROR_INVALID_CONNECTION; |
| 2293 | goto drop; |
| 2294 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2295 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2296 | tcp0 = tcp_buffer_hdr (b0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2297 | is_fin0 = tcp_is_fin (tcp0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2298 | |
| 2299 | /* SYNs, FINs and data consume sequence numbers */ |
| 2300 | vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2301 | + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2302 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2303 | if (CLIB_DEBUG) |
| 2304 | { |
| 2305 | tcp_connection_t *tmp; |
| 2306 | tmp = tcp_lookup_connection (b0, my_thread_index, is_ip4); |
| 2307 | if (tmp->state != tc0->state) |
| 2308 | { |
| 2309 | clib_warning ("state changed"); |
| 2310 | ASSERT (0); |
| 2311 | goto drop; |
| 2312 | } |
| 2313 | } |
| 2314 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2315 | /* |
| 2316 | * Special treatment for CLOSED |
| 2317 | */ |
| 2318 | switch (tc0->state) |
| 2319 | { |
| 2320 | case TCP_STATE_CLOSED: |
| 2321 | goto drop; |
| 2322 | break; |
| 2323 | } |
| 2324 | |
| 2325 | /* |
| 2326 | * For all other states (except LISTEN) |
| 2327 | */ |
| 2328 | |
| 2329 | /* 1-4: check SEQ, RST, SYN */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2330 | if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0, |
| 2331 | &next0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2332 | { |
| 2333 | error0 = TCP_ERROR_SEGMENT_INVALID; |
| 2334 | goto drop; |
| 2335 | } |
| 2336 | |
| 2337 | /* 5: check the ACK field */ |
| 2338 | switch (tc0->state) |
| 2339 | { |
| 2340 | case TCP_STATE_SYN_RCVD: |
| 2341 | /* |
| 2342 | * If the segment acknowledgment is not acceptable, form a |
| 2343 | * reset segment, |
| 2344 | * <SEQ=SEG.ACK><CTL=RST> |
| 2345 | * and send it. |
| 2346 | */ |
| 2347 | if (!tcp_rcv_ack_is_acceptable (tc0, b0)) |
| 2348 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2349 | clib_warning ("connection not accepted"); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2350 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2351 | goto drop; |
| 2352 | } |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 2353 | |
| 2354 | /* Update rtt and rto */ |
| 2355 | tc0->bytes_acked = 1; |
| 2356 | tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number); |
| 2357 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2358 | /* Switch state to ESTABLISHED */ |
| 2359 | tc0->state = TCP_STATE_ESTABLISHED; |
| 2360 | |
| 2361 | /* Initialize session variables */ |
| 2362 | tc0->snd_una = vnet_buffer (b0)->tcp.ack_number; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2363 | tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2364 | << tc0->rcv_opts.wscale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2365 | tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number; |
| 2366 | tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2367 | stream_session_accept_notify (&tc0->connection); |
| 2368 | |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2369 | /* Reset SYN-ACK retransmit and SYN_RCV establish timers */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2370 | tcp_retransmit_timer_reset (tc0); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2371 | tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2372 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2373 | break; |
| 2374 | case TCP_STATE_ESTABLISHED: |
| 2375 | /* We can get packets in established state here because they |
| 2376 | * were enqueued before state change */ |
| 2377 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2378 | goto drop; |
| 2379 | |
| 2380 | break; |
| 2381 | case TCP_STATE_FIN_WAIT_1: |
| 2382 | /* In addition to the processing for the ESTABLISHED state, if |
| 2383 | * our FIN is now acknowledged then enter FIN-WAIT-2 and |
| 2384 | * continue processing in that state. */ |
| 2385 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2386 | goto drop; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2387 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 2388 | /* Still have to send the FIN */ |
| 2389 | if (tc0->flags & TCP_CONN_FINPNDG) |
| 2390 | { |
| 2391 | /* TX fifo finally drained */ |
| 2392 | if (!stream_session_tx_fifo_max_dequeue (&tc0->connection)) |
| 2393 | tcp_send_fin (tc0); |
| 2394 | } |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2395 | /* If FIN is ACKed */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 2396 | else if (tc0->snd_una == tc0->snd_una_max) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2397 | { |
| 2398 | tc0->state = TCP_STATE_FIN_WAIT_2; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2399 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
| 2400 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2401 | /* Stop all retransmit timers because we have nothing more |
| 2402 | * to send. Enable waitclose though because we're willing to |
| 2403 | * wait for peer's FIN but not indefinitely. */ |
| 2404 | tcp_connection_timers_reset (tc0); |
| 2405 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2406 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2407 | break; |
| 2408 | case TCP_STATE_FIN_WAIT_2: |
| 2409 | /* In addition to the processing for the ESTABLISHED state, if |
| 2410 | * the retransmission queue is empty, the user's CLOSE can be |
| 2411 | * acknowledged ("ok") but do not delete the TCB. */ |
| 2412 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2413 | goto drop; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2414 | break; |
| 2415 | case TCP_STATE_CLOSE_WAIT: |
| 2416 | /* Do the same processing as for the ESTABLISHED state. */ |
| 2417 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2418 | goto drop; |
| 2419 | break; |
| 2420 | case TCP_STATE_CLOSING: |
| 2421 | /* In addition to the processing for the ESTABLISHED state, if |
| 2422 | * the ACK acknowledges our FIN then enter the TIME-WAIT state, |
| 2423 | * otherwise ignore the segment. */ |
| 2424 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2425 | goto drop; |
| 2426 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2427 | tc0->state = TCP_STATE_TIME_WAIT; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2428 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2429 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2430 | goto drop; |
| 2431 | |
| 2432 | break; |
| 2433 | case TCP_STATE_LAST_ACK: |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2434 | /* The only thing that [should] arrive in this state is an |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2435 | * acknowledgment of our FIN. If our FIN is now acknowledged, |
| 2436 | * delete the TCB, enter the CLOSED state, and return. */ |
| 2437 | |
| 2438 | if (!tcp_rcv_ack_is_acceptable (tc0, b0)) |
| 2439 | goto drop; |
| 2440 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2441 | tc0->snd_una = vnet_buffer (b0)->tcp.ack_number; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2442 | /* Apparently our FIN was lost */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2443 | if (is_fin0) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2444 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2445 | tcp_send_fin (tc0); |
| 2446 | goto drop; |
| 2447 | } |
| 2448 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2449 | tc0->state = TCP_STATE_CLOSED; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2450 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2451 | |
| 2452 | /* Don't delete the connection/session yet. Instead, wait a |
| 2453 | * reasonable amount of time until the pipes are cleared. In |
| 2454 | * particular, this makes sure that we won't have dead sessions |
| 2455 | * when processing events on the tx path */ |
| 2456 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2457 | tcp_retransmit_timer_reset (tc0); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2458 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2459 | goto drop; |
| 2460 | |
| 2461 | break; |
| 2462 | case TCP_STATE_TIME_WAIT: |
| 2463 | /* The only thing that can arrive in this state is a |
| 2464 | * retransmission of the remote FIN. Acknowledge it, and restart |
| 2465 | * the 2 MSL timeout. */ |
| 2466 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2467 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
| 2468 | goto drop; |
| 2469 | |
| 2470 | tcp_make_ack (tc0, b0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2471 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2472 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2473 | goto drop; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2474 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2475 | break; |
| 2476 | default: |
| 2477 | ASSERT (0); |
| 2478 | } |
| 2479 | |
| 2480 | /* 6: check the URG bit TODO */ |
| 2481 | |
| 2482 | /* 7: process the segment text */ |
| 2483 | switch (tc0->state) |
| 2484 | { |
| 2485 | case TCP_STATE_ESTABLISHED: |
| 2486 | case TCP_STATE_FIN_WAIT_1: |
| 2487 | case TCP_STATE_FIN_WAIT_2: |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2488 | if (vnet_buffer (b0)->tcp.data_len) |
| 2489 | error0 = tcp_segment_rcv (tm, tc0, b0, &next0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2490 | else if (is_fin0) |
| 2491 | tc0->rcv_nxt += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2492 | break; |
| 2493 | case TCP_STATE_CLOSE_WAIT: |
| 2494 | case TCP_STATE_CLOSING: |
| 2495 | case TCP_STATE_LAST_ACK: |
| 2496 | case TCP_STATE_TIME_WAIT: |
| 2497 | /* This should not occur, since a FIN has been received from the |
| 2498 | * remote side. Ignore the segment text. */ |
| 2499 | break; |
| 2500 | } |
| 2501 | |
| 2502 | /* 8: check the FIN bit */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2503 | if (!is_fin0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2504 | goto drop; |
| 2505 | |
| 2506 | switch (tc0->state) |
| 2507 | { |
| 2508 | case TCP_STATE_ESTABLISHED: |
| 2509 | case TCP_STATE_SYN_RCVD: |
| 2510 | /* Send FIN-ACK notify app and enter CLOSE-WAIT */ |
| 2511 | tcp_connection_timers_reset (tc0); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2512 | tcp_make_fin (tc0, b0); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2513 | tc0->snd_nxt += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2514 | next0 = tcp_next_output (tc0->c_is_ip4); |
| 2515 | stream_session_disconnect_notify (&tc0->connection); |
| 2516 | tc0->state = TCP_STATE_CLOSE_WAIT; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2517 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2518 | break; |
| 2519 | case TCP_STATE_CLOSE_WAIT: |
| 2520 | case TCP_STATE_CLOSING: |
| 2521 | case TCP_STATE_LAST_ACK: |
| 2522 | /* move along .. */ |
| 2523 | break; |
| 2524 | case TCP_STATE_FIN_WAIT_1: |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2525 | tc0->state = TCP_STATE_CLOSING; |
| 2526 | tcp_make_ack (tc0, b0); |
| 2527 | next0 = tcp_next_output (is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2528 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2529 | /* Wait for ACK but not forever */ |
| 2530 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2531 | break; |
| 2532 | case TCP_STATE_FIN_WAIT_2: |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2533 | /* Got FIN, send ACK! Be more aggressive with resource cleanup */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2534 | tc0->state = TCP_STATE_TIME_WAIT; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 2535 | tcp_connection_timers_reset (tc0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2536 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2537 | tcp_make_ack (tc0, b0); |
| 2538 | next0 = tcp_next_output (is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2539 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2540 | break; |
| 2541 | case TCP_STATE_TIME_WAIT: |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2542 | /* Remain in the TIME-WAIT state. Restart the time-wait |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2543 | * timeout. |
| 2544 | */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 2545 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2546 | break; |
| 2547 | } |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2548 | TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2549 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2550 | drop: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2551 | b0->error = error0 ? node->errors[error0] : 0; |
| 2552 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2553 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2554 | { |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2555 | tcp_rx_trace_t *t0 = |
| 2556 | vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2557 | tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2558 | } |
| 2559 | |
| 2560 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2561 | n_left_to_next, bi0, next0); |
| 2562 | } |
| 2563 | |
| 2564 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2565 | } |
| 2566 | |
| 2567 | errors = session_manager_flush_enqueue_events (my_thread_index); |
| 2568 | if (errors) |
| 2569 | { |
| 2570 | if (is_ip4) |
| 2571 | vlib_node_increment_counter (vm, tcp4_established_node.index, |
| 2572 | TCP_ERROR_EVENT_FIFO_FULL, errors); |
| 2573 | else |
| 2574 | vlib_node_increment_counter (vm, tcp6_established_node.index, |
| 2575 | TCP_ERROR_EVENT_FIFO_FULL, errors); |
| 2576 | } |
| 2577 | |
| 2578 | return from_frame->n_vectors; |
| 2579 | } |
| 2580 | |
| 2581 | static uword |
| 2582 | tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2583 | vlib_frame_t * from_frame) |
| 2584 | { |
| 2585 | return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2586 | } |
| 2587 | |
| 2588 | static uword |
| 2589 | tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2590 | vlib_frame_t * from_frame) |
| 2591 | { |
| 2592 | return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2593 | } |
| 2594 | |
| 2595 | /* *INDENT-OFF* */ |
| 2596 | VLIB_REGISTER_NODE (tcp4_rcv_process_node) = |
| 2597 | { |
| 2598 | .function = tcp4_rcv_process, |
| 2599 | .name = "tcp4-rcv-process", |
| 2600 | /* Takes a vector of packets. */ |
| 2601 | .vector_size = sizeof (u32), |
| 2602 | .n_errors = TCP_N_ERROR, |
| 2603 | .error_strings = tcp_error_strings, |
| 2604 | .n_next_nodes = TCP_RCV_PROCESS_N_NEXT, |
| 2605 | .next_nodes = |
| 2606 | { |
| 2607 | #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n, |
| 2608 | foreach_tcp_state_next |
| 2609 | #undef _ |
| 2610 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2611 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2612 | }; |
| 2613 | /* *INDENT-ON* */ |
| 2614 | |
| 2615 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process); |
| 2616 | |
| 2617 | /* *INDENT-OFF* */ |
| 2618 | VLIB_REGISTER_NODE (tcp6_rcv_process_node) = |
| 2619 | { |
| 2620 | .function = tcp6_rcv_process, |
| 2621 | .name = "tcp6-rcv-process", |
| 2622 | /* Takes a vector of packets. */ |
| 2623 | .vector_size = sizeof (u32), |
| 2624 | .n_errors = TCP_N_ERROR, |
| 2625 | .error_strings = tcp_error_strings, |
| 2626 | .n_next_nodes = TCP_RCV_PROCESS_N_NEXT, |
| 2627 | .next_nodes = |
| 2628 | { |
| 2629 | #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n, |
| 2630 | foreach_tcp_state_next |
| 2631 | #undef _ |
| 2632 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2633 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2634 | }; |
| 2635 | /* *INDENT-ON* */ |
| 2636 | |
| 2637 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process); |
| 2638 | |
| 2639 | vlib_node_registration_t tcp4_listen_node; |
| 2640 | vlib_node_registration_t tcp6_listen_node; |
| 2641 | |
| 2642 | /** |
| 2643 | * LISTEN state processing as per RFC 793 p. 65 |
| 2644 | */ |
| 2645 | always_inline uword |
| 2646 | tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2647 | vlib_frame_t * from_frame, int is_ip4) |
| 2648 | { |
| 2649 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2650 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2651 | u8 sst = is_ip4 ? SESSION_TYPE_IP4_TCP : SESSION_TYPE_IP6_TCP; |
| 2652 | |
| 2653 | from = vlib_frame_vector_args (from_frame); |
| 2654 | n_left_from = from_frame->n_vectors; |
| 2655 | |
| 2656 | next_index = node->cached_next_index; |
| 2657 | |
| 2658 | while (n_left_from > 0) |
| 2659 | { |
| 2660 | u32 n_left_to_next; |
| 2661 | |
| 2662 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2663 | |
| 2664 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2665 | { |
| 2666 | u32 bi0; |
| 2667 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2668 | tcp_rx_trace_t *t0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2669 | tcp_header_t *th0 = 0; |
| 2670 | tcp_connection_t *lc0; |
| 2671 | ip4_header_t *ip40; |
| 2672 | ip6_header_t *ip60; |
| 2673 | tcp_connection_t *child0; |
| 2674 | u32 error0 = TCP_ERROR_SYNS_RCVD, next0 = TCP_LISTEN_NEXT_DROP; |
| 2675 | |
| 2676 | bi0 = from[0]; |
| 2677 | to_next[0] = bi0; |
| 2678 | from += 1; |
| 2679 | to_next += 1; |
| 2680 | n_left_from -= 1; |
| 2681 | n_left_to_next -= 1; |
| 2682 | |
| 2683 | b0 = vlib_get_buffer (vm, bi0); |
| 2684 | lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index); |
| 2685 | |
| 2686 | if (is_ip4) |
| 2687 | { |
| 2688 | ip40 = vlib_buffer_get_current (b0); |
| 2689 | th0 = ip4_next_header (ip40); |
| 2690 | } |
| 2691 | else |
| 2692 | { |
| 2693 | ip60 = vlib_buffer_get_current (b0); |
| 2694 | th0 = ip6_next_header (ip60); |
| 2695 | } |
| 2696 | |
| 2697 | /* Create child session. For syn-flood protection use filter */ |
| 2698 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 2699 | /* 1. first check for an RST: handled in dispatch */ |
| 2700 | /* if (tcp_rst (th0)) |
| 2701 | goto drop; */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2702 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 2703 | /* 2. second check for an ACK: handled in dispatch */ |
| 2704 | /* if (tcp_ack (th0)) |
| 2705 | { |
| 2706 | tcp_send_reset (b0, is_ip4); |
| 2707 | goto drop; |
| 2708 | } */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2709 | |
| 2710 | /* 3. check for a SYN (did that already) */ |
| 2711 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2712 | /* Make sure connection wasn't just created */ |
| 2713 | child0 = tcp_lookup_connection (b0, my_thread_index, is_ip4); |
| 2714 | if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN)) |
| 2715 | { |
| 2716 | error0 = TCP_ERROR_CREATE_EXISTS; |
| 2717 | goto drop; |
| 2718 | } |
| 2719 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2720 | /* Create child session and send SYN-ACK */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2721 | child0 = tcp_connection_new (my_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2722 | child0->c_lcl_port = lc0->c_lcl_port; |
| 2723 | child0->c_rmt_port = th0->src_port; |
| 2724 | child0->c_is_ip4 = is_ip4; |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 2725 | child0->state = TCP_STATE_SYN_RCVD; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2726 | |
| 2727 | if (is_ip4) |
| 2728 | { |
| 2729 | child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32; |
| 2730 | child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32; |
| 2731 | } |
| 2732 | else |
| 2733 | { |
| 2734 | clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address, |
| 2735 | sizeof (ip6_address_t)); |
| 2736 | clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address, |
| 2737 | sizeof (ip6_address_t)); |
| 2738 | } |
| 2739 | |
| 2740 | if (stream_session_accept (&child0->connection, lc0->c_s_index, sst, |
| 2741 | 0 /* notify */ )) |
| 2742 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2743 | clib_warning ("session accept fail"); |
| 2744 | tcp_connection_cleanup (child0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2745 | error0 = TCP_ERROR_CREATE_SESSION_FAIL; |
| 2746 | goto drop; |
| 2747 | } |
| 2748 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2749 | if (tcp_options_parse (th0, &child0->rcv_opts)) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 2750 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2751 | clib_warning ("options parse fail"); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 2752 | goto drop; |
| 2753 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2754 | |
| 2755 | child0->irs = vnet_buffer (b0)->tcp.seq_number; |
| 2756 | child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 2757 | child0->rcv_las = child0->rcv_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2758 | |
| 2759 | /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK} |
| 2760 | * segments are used to initialize PAWS. */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2761 | if (tcp_opts_tstamp (&child0->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2762 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2763 | child0->tsval_recent = child0->rcv_opts.tsval; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2764 | child0->tsval_recent_age = tcp_time_now (); |
| 2765 | } |
| 2766 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2767 | if (tcp_opts_wscale (&child0->rcv_opts)) |
| 2768 | child0->snd_wscale = child0->rcv_opts.wscale; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2769 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2770 | child0->snd_wnd = clib_net_to_host_u16 (th0->window) |
| 2771 | << child0->snd_wscale; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2772 | child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number; |
| 2773 | child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number; |
| 2774 | |
| 2775 | tcp_connection_init_vars (child0); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2776 | TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2777 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2778 | /* Reuse buffer to make syn-ack and send */ |
| 2779 | tcp_make_synack (child0, b0); |
| 2780 | next0 = tcp_next_output (is_ip4); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2781 | tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2782 | |
| 2783 | drop: |
| 2784 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2785 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2786 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2787 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
| 2788 | clib_memcpy (&t0->tcp_connection, lc0, |
| 2789 | sizeof (t0->tcp_connection)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2790 | } |
| 2791 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2792 | b0->error = node->errors[error0]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2793 | |
| 2794 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2795 | n_left_to_next, bi0, next0); |
| 2796 | } |
| 2797 | |
| 2798 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2799 | } |
| 2800 | return from_frame->n_vectors; |
| 2801 | } |
| 2802 | |
| 2803 | static uword |
| 2804 | tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2805 | vlib_frame_t * from_frame) |
| 2806 | { |
| 2807 | return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2808 | } |
| 2809 | |
| 2810 | static uword |
| 2811 | tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2812 | vlib_frame_t * from_frame) |
| 2813 | { |
| 2814 | return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2815 | } |
| 2816 | |
| 2817 | /* *INDENT-OFF* */ |
| 2818 | VLIB_REGISTER_NODE (tcp4_listen_node) = |
| 2819 | { |
| 2820 | .function = tcp4_listen, |
| 2821 | .name = "tcp4-listen", |
| 2822 | /* Takes a vector of packets. */ |
| 2823 | .vector_size = sizeof (u32), |
| 2824 | .n_errors = TCP_N_ERROR, |
| 2825 | .error_strings = tcp_error_strings, |
| 2826 | .n_next_nodes = TCP_LISTEN_N_NEXT, |
| 2827 | .next_nodes = |
| 2828 | { |
| 2829 | #define _(s,n) [TCP_LISTEN_NEXT_##s] = n, |
| 2830 | foreach_tcp_state_next |
| 2831 | #undef _ |
| 2832 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2833 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2834 | }; |
| 2835 | /* *INDENT-ON* */ |
| 2836 | |
| 2837 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen); |
| 2838 | |
| 2839 | /* *INDENT-OFF* */ |
| 2840 | VLIB_REGISTER_NODE (tcp6_listen_node) = |
| 2841 | { |
| 2842 | .function = tcp6_listen, |
| 2843 | .name = "tcp6-listen", |
| 2844 | /* Takes a vector of packets. */ |
| 2845 | .vector_size = sizeof (u32), |
| 2846 | .n_errors = TCP_N_ERROR, |
| 2847 | .error_strings = tcp_error_strings, |
| 2848 | .n_next_nodes = TCP_LISTEN_N_NEXT, |
| 2849 | .next_nodes = |
| 2850 | { |
| 2851 | #define _(s,n) [TCP_LISTEN_NEXT_##s] = n, |
| 2852 | foreach_tcp_state_next |
| 2853 | #undef _ |
| 2854 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2855 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2856 | }; |
| 2857 | /* *INDENT-ON* */ |
| 2858 | |
| 2859 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen); |
| 2860 | |
| 2861 | vlib_node_registration_t tcp4_input_node; |
| 2862 | vlib_node_registration_t tcp6_input_node; |
| 2863 | |
| 2864 | typedef enum _tcp_input_next |
| 2865 | { |
| 2866 | TCP_INPUT_NEXT_DROP, |
| 2867 | TCP_INPUT_NEXT_LISTEN, |
| 2868 | TCP_INPUT_NEXT_RCV_PROCESS, |
| 2869 | TCP_INPUT_NEXT_SYN_SENT, |
| 2870 | TCP_INPUT_NEXT_ESTABLISHED, |
| 2871 | TCP_INPUT_NEXT_RESET, |
| 2872 | TCP_INPUT_N_NEXT |
| 2873 | } tcp_input_next_t; |
| 2874 | |
| 2875 | #define foreach_tcp4_input_next \ |
| 2876 | _ (DROP, "error-drop") \ |
| 2877 | _ (LISTEN, "tcp4-listen") \ |
| 2878 | _ (RCV_PROCESS, "tcp4-rcv-process") \ |
| 2879 | _ (SYN_SENT, "tcp4-syn-sent") \ |
| 2880 | _ (ESTABLISHED, "tcp4-established") \ |
| 2881 | _ (RESET, "tcp4-reset") |
| 2882 | |
| 2883 | #define foreach_tcp6_input_next \ |
| 2884 | _ (DROP, "error-drop") \ |
| 2885 | _ (LISTEN, "tcp6-listen") \ |
| 2886 | _ (RCV_PROCESS, "tcp6-rcv-process") \ |
| 2887 | _ (SYN_SENT, "tcp6-syn-sent") \ |
| 2888 | _ (ESTABLISHED, "tcp6-established") \ |
| 2889 | _ (RESET, "tcp6-reset") |
| 2890 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2891 | #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN) |
| 2892 | |
| 2893 | always_inline uword |
| 2894 | tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2895 | vlib_frame_t * from_frame, int is_ip4) |
| 2896 | { |
| 2897 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2898 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2899 | tcp_main_t *tm = vnet_get_tcp_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2900 | |
| 2901 | from = vlib_frame_vector_args (from_frame); |
| 2902 | n_left_from = from_frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2903 | next_index = node->cached_next_index; |
Florin Coras | 82d3ec8 | 2017-08-14 08:10:42 -0700 | [diff] [blame] | 2904 | tcp_set_time_now (my_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2905 | |
| 2906 | while (n_left_from > 0) |
| 2907 | { |
| 2908 | u32 n_left_to_next; |
| 2909 | |
| 2910 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2911 | |
| 2912 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2913 | { |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2914 | int n_advance_bytes0, n_data_bytes0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2915 | u32 bi0; |
| 2916 | vlib_buffer_t *b0; |
| 2917 | tcp_header_t *tcp0 = 0; |
| 2918 | tcp_connection_t *tc0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2919 | transport_connection_t *tconn; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2920 | ip4_header_t *ip40; |
| 2921 | ip6_header_t *ip60; |
| 2922 | u32 error0 = TCP_ERROR_NO_LISTENER, next0 = TCP_INPUT_NEXT_DROP; |
| 2923 | u8 flags0; |
| 2924 | |
| 2925 | bi0 = from[0]; |
| 2926 | to_next[0] = bi0; |
| 2927 | from += 1; |
| 2928 | to_next += 1; |
| 2929 | n_left_from -= 1; |
| 2930 | n_left_to_next -= 1; |
| 2931 | |
| 2932 | b0 = vlib_get_buffer (vm, bi0); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2933 | vnet_buffer (b0)->tcp.flags = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2934 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2935 | /* Checksum computed by ipx_local no need to compute again */ |
| 2936 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2937 | if (is_ip4) |
| 2938 | { |
| 2939 | ip40 = vlib_buffer_get_current (b0); |
| 2940 | tcp0 = ip4_next_header (ip40); |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2941 | n_advance_bytes0 = (ip4_header_bytes (ip40) |
| 2942 | + tcp_header_bytes (tcp0)); |
| 2943 | n_data_bytes0 = clib_net_to_host_u16 (ip40->length) |
| 2944 | - n_advance_bytes0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2945 | tconn = stream_session_lookup_transport_wt4 (&ip40->dst_address, |
| 2946 | &ip40->src_address, |
| 2947 | tcp0->dst_port, |
| 2948 | tcp0->src_port, |
| 2949 | SESSION_TYPE_IP4_TCP, |
| 2950 | my_thread_index); |
| 2951 | tc0 = tcp_get_connection_from_transport (tconn); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2952 | ASSERT (tcp_lookup_is_valid (tc0, tcp0)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2953 | } |
| 2954 | else |
| 2955 | { |
| 2956 | ip60 = vlib_buffer_get_current (b0); |
| 2957 | tcp0 = ip6_next_header (ip60); |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2958 | n_advance_bytes0 = tcp_header_bytes (tcp0); |
| 2959 | n_data_bytes0 = clib_net_to_host_u16 (ip60->payload_length) |
| 2960 | - n_advance_bytes0; |
| 2961 | n_advance_bytes0 += sizeof (ip60[0]); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2962 | tconn = stream_session_lookup_transport_wt6 (&ip60->dst_address, |
| 2963 | &ip60->src_address, |
| 2964 | tcp0->dst_port, |
| 2965 | tcp0->src_port, |
| 2966 | SESSION_TYPE_IP6_TCP, |
| 2967 | my_thread_index); |
| 2968 | tc0 = tcp_get_connection_from_transport (tconn); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2969 | ASSERT (tcp_lookup_is_valid (tc0, tcp0)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2970 | } |
| 2971 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2972 | /* Length check */ |
| 2973 | if (PREDICT_FALSE (n_advance_bytes0 < 0)) |
| 2974 | { |
| 2975 | error0 = TCP_ERROR_LENGTH; |
| 2976 | goto done; |
| 2977 | } |
| 2978 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2979 | /* Session exists */ |
| 2980 | if (PREDICT_TRUE (0 != tc0)) |
| 2981 | { |
| 2982 | /* Save connection index */ |
| 2983 | vnet_buffer (b0)->tcp.connection_index = tc0->c_c_index; |
| 2984 | vnet_buffer (b0)->tcp.seq_number = |
| 2985 | clib_net_to_host_u32 (tcp0->seq_number); |
| 2986 | vnet_buffer (b0)->tcp.ack_number = |
| 2987 | clib_net_to_host_u32 (tcp0->ack_number); |
| 2988 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2989 | vnet_buffer (b0)->tcp.hdr_offset = (u8 *) tcp0 |
| 2990 | - (u8 *) vlib_buffer_get_current (b0); |
| 2991 | vnet_buffer (b0)->tcp.data_offset = n_advance_bytes0; |
| 2992 | vnet_buffer (b0)->tcp.data_len = n_data_bytes0; |
| 2993 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2994 | flags0 = tcp0->flags & filter_flags; |
| 2995 | next0 = tm->dispatch_table[tc0->state][flags0].next; |
| 2996 | error0 = tm->dispatch_table[tc0->state][flags0].error; |
| 2997 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 2998 | if (PREDICT_FALSE (error0 == TCP_ERROR_DISPATCH |
| 2999 | || next0 == TCP_INPUT_NEXT_RESET)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3000 | { |
| 3001 | /* Overload tcp flags to store state */ |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3002 | tcp_state_t state0 = tc0->state; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3003 | vnet_buffer (b0)->tcp.flags = tc0->state; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3004 | |
| 3005 | if (error0 == TCP_ERROR_DISPATCH) |
| 3006 | clib_warning ("disp error state %U flags %U", |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 3007 | format_tcp_state, state0, format_tcp_flags, |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3008 | (int) flags0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3009 | } |
| 3010 | } |
| 3011 | else |
| 3012 | { |
| 3013 | /* Send reset */ |
| 3014 | next0 = TCP_INPUT_NEXT_RESET; |
| 3015 | error0 = TCP_ERROR_NO_LISTENER; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3016 | } |
| 3017 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 3018 | done: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3019 | b0->error = error0 ? node->errors[error0] : 0; |
| 3020 | |
| 3021 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 3022 | { |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 3023 | tcp_rx_trace_t *t0 = |
| 3024 | vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 3025 | tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3026 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3027 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 3028 | n_left_to_next, bi0, next0); |
| 3029 | } |
| 3030 | |
| 3031 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 3032 | } |
| 3033 | |
| 3034 | return from_frame->n_vectors; |
| 3035 | } |
| 3036 | |
| 3037 | static uword |
| 3038 | tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3039 | vlib_frame_t * from_frame) |
| 3040 | { |
| 3041 | return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 3042 | } |
| 3043 | |
| 3044 | static uword |
| 3045 | tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3046 | vlib_frame_t * from_frame) |
| 3047 | { |
| 3048 | return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 3049 | } |
| 3050 | |
| 3051 | /* *INDENT-OFF* */ |
| 3052 | VLIB_REGISTER_NODE (tcp4_input_node) = |
| 3053 | { |
| 3054 | .function = tcp4_input, |
| 3055 | .name = "tcp4-input", |
| 3056 | /* Takes a vector of packets. */ |
| 3057 | .vector_size = sizeof (u32), |
| 3058 | .n_errors = TCP_N_ERROR, |
| 3059 | .error_strings = tcp_error_strings, |
| 3060 | .n_next_nodes = TCP_INPUT_N_NEXT, |
| 3061 | .next_nodes = |
| 3062 | { |
| 3063 | #define _(s,n) [TCP_INPUT_NEXT_##s] = n, |
| 3064 | foreach_tcp4_input_next |
| 3065 | #undef _ |
| 3066 | }, |
| 3067 | .format_buffer = format_tcp_header, |
| 3068 | .format_trace = format_tcp_rx_trace, |
| 3069 | }; |
| 3070 | /* *INDENT-ON* */ |
| 3071 | |
| 3072 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input); |
| 3073 | |
| 3074 | /* *INDENT-OFF* */ |
| 3075 | VLIB_REGISTER_NODE (tcp6_input_node) = |
| 3076 | { |
| 3077 | .function = tcp6_input, |
| 3078 | .name = "tcp6-input", |
| 3079 | /* Takes a vector of packets. */ |
| 3080 | .vector_size = sizeof (u32), |
| 3081 | .n_errors = TCP_N_ERROR, |
| 3082 | .error_strings = tcp_error_strings, |
| 3083 | .n_next_nodes = TCP_INPUT_N_NEXT, |
| 3084 | .next_nodes = |
| 3085 | { |
| 3086 | #define _(s,n) [TCP_INPUT_NEXT_##s] = n, |
| 3087 | foreach_tcp6_input_next |
| 3088 | #undef _ |
| 3089 | }, |
| 3090 | .format_buffer = format_tcp_header, |
| 3091 | .format_trace = format_tcp_rx_trace, |
| 3092 | }; |
| 3093 | /* *INDENT-ON* */ |
| 3094 | |
| 3095 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3096 | |
| 3097 | static void |
| 3098 | tcp_dispatch_table_init (tcp_main_t * tm) |
| 3099 | { |
| 3100 | int i, j; |
| 3101 | for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++) |
| 3102 | for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++) |
| 3103 | { |
| 3104 | tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP; |
| 3105 | tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH; |
| 3106 | } |
| 3107 | |
| 3108 | #define _(t,f,n,e) \ |
| 3109 | do { \ |
| 3110 | tm->dispatch_table[TCP_STATE_##t][f].next = (n); \ |
| 3111 | tm->dispatch_table[TCP_STATE_##t][f].error = (e); \ |
| 3112 | } while (0) |
| 3113 | |
| 3114 | /* SYNs for new connections -> tcp-listen. */ |
| 3115 | _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3116 | _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE); |
| 3117 | _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3118 | _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, |
| 3119 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3120 | /* ACK for for a SYN-ACK -> tcp-rcv-process. */ |
| 3121 | _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 3122 | _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3123 | _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3124 | /* SYN-ACK for a SYN */ |
| 3125 | _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, |
| 3126 | TCP_ERROR_NONE); |
| 3127 | _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE); |
| 3128 | _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE); |
| 3129 | _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, |
| 3130 | TCP_ERROR_NONE); |
| 3131 | /* ACK for for established connection -> tcp-established. */ |
| 3132 | _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
| 3133 | /* FIN for for established connection -> tcp-established. */ |
| 3134 | _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
| 3135 | _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3136 | TCP_ERROR_NONE); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 3137 | _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3138 | _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3139 | TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3140 | _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 3141 | _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3142 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3143 | /* ACK or FIN-ACK to our FIN */ |
| 3144 | _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3145 | _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3146 | TCP_ERROR_NONE); |
| 3147 | /* FIN in reply to our FIN from the other side */ |
| 3148 | _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3149 | _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3150 | /* FIN confirming that the peer (app) has closed */ |
| 3151 | _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 3152 | _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3153 | _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3154 | TCP_ERROR_NONE); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 3155 | _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3156 | _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3157 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3158 | _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3159 | _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3160 | _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3161 | TCP_ERROR_NONE); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 3162 | _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3163 | _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3164 | _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3165 | TCP_ERROR_NONE); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 3166 | _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 3167 | _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 3168 | _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3169 | _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame^] | 3170 | _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3171 | TCP_ERROR_CONNECTION_CLOSED); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3172 | #undef _ |
| 3173 | } |
| 3174 | |
| 3175 | clib_error_t * |
| 3176 | tcp_input_init (vlib_main_t * vm) |
| 3177 | { |
| 3178 | clib_error_t *error = 0; |
| 3179 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 3180 | |
| 3181 | if ((error = vlib_call_init_function (vm, tcp_init))) |
| 3182 | return error; |
| 3183 | |
| 3184 | /* Initialize dispatch table. */ |
| 3185 | tcp_dispatch_table_init (tm); |
| 3186 | |
| 3187 | return error; |
| 3188 | } |
| 3189 | |
| 3190 | VLIB_INIT_FUNCTION (tcp_input_init); |
| 3191 | |
| 3192 | /* |
| 3193 | * fd.io coding-style-patch-verification: ON |
| 3194 | * |
| 3195 | * Local Variables: |
| 3196 | * eval: (c-set-style "gnu") |
| 3197 | * End: |
| 3198 | */ |