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