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