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