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