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