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