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