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