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