Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #include <vnet/tcp/tcp.h> |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 17 | #include <math.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 18 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 19 | typedef enum _tcp_output_next |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 20 | { |
| 21 | TCP_OUTPUT_NEXT_DROP, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 22 | TCP_OUTPUT_NEXT_IP_LOOKUP, |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 23 | TCP_OUTPUT_NEXT_IP_REWRITE, |
| 24 | TCP_OUTPUT_NEXT_IP_ARP, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 25 | TCP_OUTPUT_N_NEXT |
| 26 | } tcp_output_next_t; |
| 27 | |
| 28 | #define foreach_tcp4_output_next \ |
| 29 | _ (DROP, "error-drop") \ |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 30 | _ (IP_LOOKUP, "ip4-lookup") \ |
| 31 | _ (IP_REWRITE, "ip4-rewrite") \ |
| 32 | _ (IP_ARP, "ip4-arp") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 33 | |
| 34 | #define foreach_tcp6_output_next \ |
| 35 | _ (DROP, "error-drop") \ |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 36 | _ (IP_LOOKUP, "ip6-lookup") \ |
| 37 | _ (IP_REWRITE, "ip6-rewrite") \ |
| 38 | _ (IP_ARP, "ip6-discover-neighbor") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 39 | |
| 40 | static char *tcp_error_strings[] = { |
| 41 | #define tcp_error(n,s) s, |
| 42 | #include <vnet/tcp/tcp_error.def> |
| 43 | #undef tcp_error |
| 44 | }; |
| 45 | |
| 46 | typedef struct |
| 47 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 48 | tcp_header_t tcp_header; |
| 49 | tcp_connection_t tcp_connection; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 50 | } tcp_tx_trace_t; |
| 51 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 52 | #ifndef CLIB_MARCH_VARIANT |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 53 | u16 dummy_mtu = 1460; |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 54 | #endif /* CLIB_MARCH_VARIANT */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 55 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 56 | static u8 * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 57 | format_tcp_tx_trace (u8 * s, va_list * args) |
| 58 | { |
| 59 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 60 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 61 | tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 62 | u32 indent = format_get_indent (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 63 | |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 64 | s = format (s, "%U\n%U%U", |
| 65 | format_tcp_header, &t->tcp_header, 128, |
| 66 | format_white_space, indent, |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 67 | format_tcp_connection, &t->tcp_connection, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 68 | |
| 69 | return s; |
| 70 | } |
| 71 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 72 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 73 | static u8 |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 74 | tcp_window_compute_scale (u32 window) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 75 | { |
| 76 | u8 wnd_scale = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 77 | while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 78 | wnd_scale++; |
| 79 | return wnd_scale; |
| 80 | } |
| 81 | |
| 82 | /** |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 83 | * Update max segment size we're able to process. |
| 84 | * |
| 85 | * The value is constrained by our interface's MTU and IP options. It is |
| 86 | * also what we advertise to our peer. |
| 87 | */ |
| 88 | void |
| 89 | tcp_update_rcv_mss (tcp_connection_t * tc) |
| 90 | { |
| 91 | /* TODO find our iface MTU */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 92 | tc->mss = dummy_mtu - sizeof (tcp_header_t); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /** |
| 96 | * TCP's initial window |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 97 | */ |
| 98 | always_inline u32 |
| 99 | tcp_initial_wnd_unscaled (tcp_connection_t * tc) |
| 100 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 101 | /* RFC 6928 recommends the value lower. However at the time our connections |
| 102 | * are initialized, fifos may not be allocated. Therefore, advertise the |
| 103 | * smallest possible unscaled window size and update once fifos are |
| 104 | * assigned to the session. |
| 105 | */ |
| 106 | /* |
| 107 | tcp_update_rcv_mss (tc); |
| 108 | TCP_IW_N_SEGMENTS * tc->mss; |
| 109 | */ |
| 110 | return TCP_MIN_RX_FIFO_SIZE; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 114 | * Compute initial window and scale factor. As per RFC1323, window field in |
| 115 | * SYN and SYN-ACK segments is never scaled. |
| 116 | */ |
| 117 | u32 |
| 118 | tcp_initial_window_to_advertise (tcp_connection_t * tc) |
| 119 | { |
Florin Coras | ca03186 | 2018-09-24 13:58:05 -0700 | [diff] [blame] | 120 | tcp_main_t *tm = &tcp_main; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 121 | u32 max_fifo; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 122 | |
| 123 | /* Initial wnd for SYN. Fifos are not allocated yet. |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 124 | * Use some predefined value. For SYN-ACK we still want the |
| 125 | * scale to be computed in the same way */ |
Florin Coras | ca03186 | 2018-09-24 13:58:05 -0700 | [diff] [blame] | 126 | max_fifo = tm->max_rx_fifo ? tm->max_rx_fifo : TCP_MAX_RX_FIFO_SIZE; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 127 | |
Florin Coras | e80b591 | 2018-12-12 19:25:43 -0800 | [diff] [blame] | 128 | /* Compute rcv wscale only if peer advertised support for it */ |
| 129 | if (tc->state != TCP_STATE_SYN_RCVD || tcp_opts_wscale (&tc->rcv_opts)) |
| 130 | tc->rcv_wscale = tcp_window_compute_scale (max_fifo); |
| 131 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 132 | tc->rcv_wnd = tcp_initial_wnd_unscaled (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 133 | |
| 134 | return clib_min (tc->rcv_wnd, TCP_WND_MAX); |
| 135 | } |
| 136 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 137 | static void |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 138 | tcp_update_rcv_wnd (tcp_connection_t * tc) |
| 139 | { |
| 140 | i32 observed_wnd; |
| 141 | u32 available_space, max_fifo, wnd; |
| 142 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 143 | /* |
| 144 | * Figure out how much space we have available |
| 145 | */ |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 146 | available_space = transport_max_rx_enqueue (&tc->connection); |
| 147 | max_fifo = transport_rx_fifo_size (&tc->connection); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 148 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 149 | ASSERT (tc->rcv_opts.mss < max_fifo); |
| 150 | if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 151 | available_space = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 152 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 153 | /* |
| 154 | * Use the above and what we know about what we've previously advertised |
| 155 | * to compute the new window |
| 156 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 157 | observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las); |
| 158 | if (observed_wnd < 0) |
| 159 | observed_wnd = 0; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 160 | |
| 161 | /* Bad. Thou shalt not shrink */ |
| 162 | if (available_space < observed_wnd) |
| 163 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 164 | wnd = observed_wnd; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 165 | TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 166 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 167 | else |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 168 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 169 | wnd = available_space; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 172 | /* Make sure we have a multiple of rcv_wscale */ |
| 173 | if (wnd && tc->rcv_wscale) |
| 174 | { |
| 175 | wnd &= ~(1 << tc->rcv_wscale); |
| 176 | if (wnd == 0) |
| 177 | wnd = 1 << tc->rcv_wscale; |
| 178 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 179 | |
| 180 | tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | /** |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 184 | * Compute and return window to advertise, scaled as per RFC1323 |
| 185 | */ |
| 186 | static u32 |
| 187 | tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state) |
| 188 | { |
| 189 | if (state < TCP_STATE_ESTABLISHED) |
| 190 | return tcp_initial_window_to_advertise (tc); |
| 191 | |
| 192 | tcp_update_rcv_wnd (tc); |
| 193 | |
| 194 | if (tc->rcv_wnd == 0) |
| 195 | { |
| 196 | tc->flags |= TCP_CONN_SENT_RCV_WND0; |
| 197 | } |
| 198 | else |
| 199 | { |
| 200 | tc->flags &= ~TCP_CONN_SENT_RCV_WND0; |
| 201 | } |
| 202 | |
| 203 | return tc->rcv_wnd >> tc->rcv_wscale; |
| 204 | } |
| 205 | |
| 206 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 207 | * Write TCP options to segment. |
| 208 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 209 | static u32 |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 210 | tcp_options_write (u8 * data, tcp_options_t * opts) |
| 211 | { |
| 212 | u32 opts_len = 0; |
| 213 | u32 buf, seq_len = 4; |
| 214 | |
| 215 | if (tcp_opts_mss (opts)) |
| 216 | { |
| 217 | *data++ = TCP_OPTION_MSS; |
| 218 | *data++ = TCP_OPTION_LEN_MSS; |
| 219 | buf = clib_host_to_net_u16 (opts->mss); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 220 | clib_memcpy_fast (data, &buf, sizeof (opts->mss)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 221 | data += sizeof (opts->mss); |
| 222 | opts_len += TCP_OPTION_LEN_MSS; |
| 223 | } |
| 224 | |
| 225 | if (tcp_opts_wscale (opts)) |
| 226 | { |
| 227 | *data++ = TCP_OPTION_WINDOW_SCALE; |
| 228 | *data++ = TCP_OPTION_LEN_WINDOW_SCALE; |
| 229 | *data++ = opts->wscale; |
| 230 | opts_len += TCP_OPTION_LEN_WINDOW_SCALE; |
| 231 | } |
| 232 | |
| 233 | if (tcp_opts_sack_permitted (opts)) |
| 234 | { |
| 235 | *data++ = TCP_OPTION_SACK_PERMITTED; |
| 236 | *data++ = TCP_OPTION_LEN_SACK_PERMITTED; |
| 237 | opts_len += TCP_OPTION_LEN_SACK_PERMITTED; |
| 238 | } |
| 239 | |
| 240 | if (tcp_opts_tstamp (opts)) |
| 241 | { |
| 242 | *data++ = TCP_OPTION_TIMESTAMP; |
| 243 | *data++ = TCP_OPTION_LEN_TIMESTAMP; |
| 244 | buf = clib_host_to_net_u32 (opts->tsval); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 245 | clib_memcpy_fast (data, &buf, sizeof (opts->tsval)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 246 | data += sizeof (opts->tsval); |
| 247 | buf = clib_host_to_net_u32 (opts->tsecr); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 248 | clib_memcpy_fast (data, &buf, sizeof (opts->tsecr)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 249 | data += sizeof (opts->tsecr); |
| 250 | opts_len += TCP_OPTION_LEN_TIMESTAMP; |
| 251 | } |
| 252 | |
| 253 | if (tcp_opts_sack (opts)) |
| 254 | { |
| 255 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 256 | |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 257 | if (opts->n_sack_blocks != 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 258 | { |
| 259 | *data++ = TCP_OPTION_SACK_BLOCK; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 260 | *data++ = 2 + opts->n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK; |
| 261 | for (i = 0; i < opts->n_sack_blocks; i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 262 | { |
| 263 | buf = clib_host_to_net_u32 (opts->sacks[i].start); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 264 | clib_memcpy_fast (data, &buf, seq_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 265 | data += seq_len; |
| 266 | buf = clib_host_to_net_u32 (opts->sacks[i].end); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 267 | clib_memcpy_fast (data, &buf, seq_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 268 | data += seq_len; |
| 269 | } |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 270 | opts_len += 2 + opts->n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 271 | } |
| 272 | } |
| 273 | |
| 274 | /* Terminate TCP options */ |
| 275 | if (opts_len % 4) |
| 276 | { |
| 277 | *data++ = TCP_OPTION_EOL; |
| 278 | opts_len += TCP_OPTION_LEN_EOL; |
| 279 | } |
| 280 | |
| 281 | /* Pad with zeroes to a u32 boundary */ |
| 282 | while (opts_len % 4) |
| 283 | { |
| 284 | *data++ = TCP_OPTION_NOOP; |
| 285 | opts_len += TCP_OPTION_LEN_NOOP; |
| 286 | } |
| 287 | return opts_len; |
| 288 | } |
| 289 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 290 | static int |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 291 | tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 292 | { |
| 293 | u8 len = 0; |
| 294 | |
| 295 | opts->flags |= TCP_OPTS_FLAG_MSS; |
| 296 | opts->mss = dummy_mtu; /*XXX discover that */ |
| 297 | len += TCP_OPTION_LEN_MSS; |
| 298 | |
| 299 | opts->flags |= TCP_OPTS_FLAG_WSCALE; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 300 | opts->wscale = wnd_scale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 301 | len += TCP_OPTION_LEN_WINDOW_SCALE; |
| 302 | |
| 303 | opts->flags |= TCP_OPTS_FLAG_TSTAMP; |
| 304 | opts->tsval = tcp_time_now (); |
| 305 | opts->tsecr = 0; |
| 306 | len += TCP_OPTION_LEN_TIMESTAMP; |
| 307 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 308 | if (TCP_USE_SACKS) |
| 309 | { |
| 310 | opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED; |
| 311 | len += TCP_OPTION_LEN_SACK_PERMITTED; |
| 312 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 313 | |
| 314 | /* Align to needed boundary */ |
| 315 | len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN; |
| 316 | return len; |
| 317 | } |
| 318 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 319 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 320 | tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts) |
| 321 | { |
| 322 | u8 len = 0; |
| 323 | |
| 324 | opts->flags |= TCP_OPTS_FLAG_MSS; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 325 | opts->mss = tc->mss; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 326 | len += TCP_OPTION_LEN_MSS; |
| 327 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 328 | if (tcp_opts_wscale (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 329 | { |
| 330 | opts->flags |= TCP_OPTS_FLAG_WSCALE; |
| 331 | opts->wscale = tc->rcv_wscale; |
| 332 | len += TCP_OPTION_LEN_WINDOW_SCALE; |
| 333 | } |
| 334 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 335 | if (tcp_opts_tstamp (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 336 | { |
| 337 | opts->flags |= TCP_OPTS_FLAG_TSTAMP; |
| 338 | opts->tsval = tcp_time_now (); |
| 339 | opts->tsecr = tc->tsval_recent; |
| 340 | len += TCP_OPTION_LEN_TIMESTAMP; |
| 341 | } |
| 342 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 343 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 344 | { |
| 345 | opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED; |
| 346 | len += TCP_OPTION_LEN_SACK_PERMITTED; |
| 347 | } |
| 348 | |
| 349 | /* Align to needed boundary */ |
| 350 | len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN; |
| 351 | return len; |
| 352 | } |
| 353 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 354 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 355 | tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts) |
| 356 | { |
| 357 | u8 len = 0; |
| 358 | |
| 359 | opts->flags = 0; |
| 360 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 361 | if (tcp_opts_tstamp (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 362 | { |
| 363 | opts->flags |= TCP_OPTS_FLAG_TSTAMP; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 364 | opts->tsval = tcp_time_now_w_thread (tc->c_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 365 | opts->tsecr = tc->tsval_recent; |
| 366 | len += TCP_OPTION_LEN_TIMESTAMP; |
| 367 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 368 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 369 | { |
| 370 | if (vec_len (tc->snd_sacks)) |
| 371 | { |
| 372 | opts->flags |= TCP_OPTS_FLAG_SACK; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 373 | if (tc->snd_sack_pos >= vec_len (tc->snd_sacks)) |
| 374 | tc->snd_sack_pos = 0; |
| 375 | opts->sacks = &tc->snd_sacks[tc->snd_sack_pos]; |
| 376 | opts->n_sack_blocks = vec_len (tc->snd_sacks) - tc->snd_sack_pos; |
| 377 | opts->n_sack_blocks = clib_min (opts->n_sack_blocks, |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 378 | TCP_OPTS_MAX_SACK_BLOCKS); |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 379 | tc->snd_sack_pos += opts->n_sack_blocks; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 380 | len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | /* Align to needed boundary */ |
| 385 | len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN; |
| 386 | return len; |
| 387 | } |
| 388 | |
| 389 | always_inline int |
| 390 | tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts, |
| 391 | tcp_state_t state) |
| 392 | { |
| 393 | switch (state) |
| 394 | { |
| 395 | case TCP_STATE_ESTABLISHED: |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 396 | case TCP_STATE_CLOSE_WAIT: |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 397 | case TCP_STATE_FIN_WAIT_1: |
| 398 | case TCP_STATE_LAST_ACK: |
| 399 | case TCP_STATE_CLOSING: |
| 400 | case TCP_STATE_FIN_WAIT_2: |
| 401 | case TCP_STATE_TIME_WAIT: |
| 402 | case TCP_STATE_CLOSED: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 403 | return tcp_make_established_options (tc, opts); |
| 404 | case TCP_STATE_SYN_RCVD: |
| 405 | return tcp_make_synack_options (tc, opts); |
| 406 | case TCP_STATE_SYN_SENT: |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 407 | return tcp_make_syn_options (opts, tc->rcv_wscale); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 408 | default: |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 409 | clib_warning ("State not handled! %d", state); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 410 | return 0; |
| 411 | } |
| 412 | } |
| 413 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 414 | /** |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 415 | * Update burst send vars |
| 416 | * |
| 417 | * - Updates snd_mss to reflect the effective segment size that we can send |
| 418 | * by taking into account all TCP options, including SACKs. |
| 419 | * - Cache 'on the wire' options for reuse |
| 420 | * - Updates receive window which can be reused for a burst. |
| 421 | * |
| 422 | * This should *only* be called when doing bursts |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 423 | */ |
| 424 | void |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 425 | tcp_update_burst_snd_vars (tcp_connection_t * tc) |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 426 | { |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 427 | tcp_main_t *tm = &tcp_main; |
| 428 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 429 | /* Compute options to be used for connection. These may be reused when |
| 430 | * sending data or to compute the effective mss (snd_mss) */ |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 431 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, |
| 432 | TCP_STATE_ESTABLISHED); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 433 | |
| 434 | /* XXX check if MTU has been updated */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 435 | tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 436 | ASSERT (tc->snd_mss > 0); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 437 | |
| 438 | tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts, |
| 439 | &tc->snd_opts); |
| 440 | |
| 441 | tcp_update_rcv_wnd (tc); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | void |
| 445 | tcp_init_mss (tcp_connection_t * tc) |
| 446 | { |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 447 | u16 default_min_mss = 536; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 448 | tcp_update_rcv_mss (tc); |
| 449 | |
| 450 | /* TODO cache mss and consider PMTU discovery */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 451 | tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 452 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 453 | if (tc->snd_mss < 45) |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 454 | { |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 455 | /* Assume that at least the min default mss works */ |
| 456 | tc->snd_mss = default_min_mss; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 457 | tc->rcv_opts.mss = default_min_mss; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /* We should have enough space for 40 bytes of options */ |
| 461 | ASSERT (tc->snd_mss > 45); |
| 462 | |
| 463 | /* If we use timestamp option, account for it */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 464 | if (tcp_opts_tstamp (&tc->rcv_opts)) |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 465 | tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP; |
| 466 | } |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 467 | #endif /* CLIB_MARCH_VARIANT */ |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 468 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 469 | static void * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 470 | tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b) |
| 471 | { |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 472 | if (b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 473 | vlib_buffer_free_one (vm, b->next_buffer); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 474 | /* Zero all flags but free list index and trace flag */ |
| 475 | b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 476 | b->current_data = 0; |
| 477 | b->current_length = 0; |
| 478 | b->total_length_not_including_first_buffer = 0; |
| 479 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 480 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 481 | /* Leave enough space for headers */ |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 482 | return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 485 | #ifndef CLIB_MARCH_VARIANT |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 486 | static void * |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 487 | tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b) |
| 488 | { |
| 489 | ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 490 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 491 | b->total_length_not_including_first_buffer = 0; |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 492 | b->current_data = 0; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 493 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 494 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 495 | /* Leave enough space for headers */ |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 496 | return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | /** |
| 500 | * Prepare ACK |
| 501 | */ |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 502 | static inline void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 503 | tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state, |
| 504 | u8 flags) |
| 505 | { |
| 506 | tcp_options_t _snd_opts, *snd_opts = &_snd_opts; |
| 507 | u8 tcp_opts_len, tcp_hdr_opts_len; |
| 508 | tcp_header_t *th; |
| 509 | u16 wnd; |
| 510 | |
| 511 | wnd = tcp_window_to_advertise (tc, state); |
| 512 | |
| 513 | /* Make and write options */ |
| 514 | tcp_opts_len = tcp_make_established_options (tc, snd_opts); |
| 515 | tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t); |
| 516 | |
| 517 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 518 | tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd); |
| 519 | |
| 520 | tcp_options_write ((u8 *) (th + 1), snd_opts); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 521 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
| 522 | } |
| 523 | |
| 524 | /** |
| 525 | * Convert buffer to ACK |
| 526 | */ |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 527 | static inline void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 528 | tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b) |
| 529 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 530 | tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 531 | TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 532 | tc->rcv_las = tc->rcv_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | /** |
| 536 | * Convert buffer to FIN-ACK |
| 537 | */ |
| 538 | void |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 539 | tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 540 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 541 | tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 542 | |
| 543 | /* Reset flags, make sure ack is sent */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 544 | vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 545 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 546 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 547 | /** |
| 548 | * Convert buffer to SYN |
| 549 | */ |
| 550 | void |
| 551 | tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b) |
| 552 | { |
| 553 | u8 tcp_hdr_opts_len, tcp_opts_len; |
| 554 | tcp_header_t *th; |
| 555 | u16 initial_wnd; |
| 556 | tcp_options_t snd_opts; |
| 557 | |
| 558 | initial_wnd = tcp_initial_window_to_advertise (tc); |
| 559 | |
| 560 | /* Make and write options */ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 561 | clib_memset (&snd_opts, 0, sizeof (snd_opts)); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 562 | tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale); |
| 563 | tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t); |
| 564 | |
| 565 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss, |
| 566 | tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN, |
| 567 | initial_wnd); |
| 568 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
| 569 | tcp_options_write ((u8 *) (th + 1), &snd_opts); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | /** |
| 573 | * Convert buffer to SYN-ACK |
| 574 | */ |
| 575 | void |
| 576 | tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b) |
| 577 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 578 | tcp_options_t _snd_opts, *snd_opts = &_snd_opts; |
| 579 | u8 tcp_opts_len, tcp_hdr_opts_len; |
| 580 | tcp_header_t *th; |
| 581 | u16 initial_wnd; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 582 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 583 | clib_memset (snd_opts, 0, sizeof (*snd_opts)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 584 | initial_wnd = tcp_initial_window_to_advertise (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 585 | tcp_opts_len = tcp_make_synack_options (tc, snd_opts); |
| 586 | tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t); |
| 587 | |
| 588 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss, |
| 589 | tc->rcv_nxt, tcp_hdr_opts_len, |
| 590 | TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 591 | tcp_options_write ((u8 *) (th + 1), snd_opts); |
| 592 | |
| 593 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | always_inline void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 597 | tcp_enqueue_to_ip_lookup_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi, |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 598 | u8 is_ip4, u32 fib_index, u8 flush) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 599 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 600 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 601 | u32 *to_next, next_index; |
| 602 | vlib_frame_t *f; |
| 603 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 604 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 605 | b->error = 0; |
| 606 | |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 607 | vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index; |
| 608 | vnet_buffer (b)->sw_if_index[VLIB_RX] = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 609 | |
| 610 | /* Send to IP lookup */ |
| 611 | next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 612 | tcp_trajectory_add_start (b, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 613 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 614 | f = wrk->ip_lookup_tx_frames[!is_ip4]; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 615 | if (!f) |
| 616 | { |
| 617 | f = vlib_get_frame_to_node (vm, next_index); |
| 618 | ASSERT (f); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 619 | wrk->ip_lookup_tx_frames[!is_ip4] = f; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 620 | } |
| 621 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 622 | to_next = vlib_frame_vector_args (f); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 623 | to_next[f->n_vectors] = bi; |
| 624 | f->n_vectors += 1; |
| 625 | if (flush || f->n_vectors == VLIB_FRAME_SIZE) |
| 626 | { |
| 627 | vlib_put_frame_to_node (vm, next_index, f); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 628 | wrk->ip_lookup_tx_frames[!is_ip4] = 0; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 629 | } |
| 630 | } |
| 631 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 632 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 633 | tcp_enqueue_to_ip_lookup_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, |
| 634 | u32 bi, u8 is_ip4, u32 fib_index) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 635 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 636 | tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 1); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 637 | } |
| 638 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 639 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 640 | tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi, |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 641 | u8 is_ip4, u32 fib_index) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 642 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 643 | tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 0); |
| 644 | if (wrk->vm->thread_index == 0 && vlib_num_workers ()) |
| 645 | session_flush_frames_main_thread (wrk->vm); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 646 | } |
| 647 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 648 | always_inline void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 649 | tcp_enqueue_to_output_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi, |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 650 | u8 is_ip4, u8 flush) |
| 651 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 652 | u32 *to_next, next_index; |
| 653 | vlib_frame_t *f; |
| 654 | |
| 655 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 656 | b->error = 0; |
| 657 | |
| 658 | /* Decide where to send the packet */ |
| 659 | next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 660 | tcp_trajectory_add_start (b, 2); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 661 | |
| 662 | /* Get frame to v4/6 output node */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 663 | f = wrk->tx_frames[!is_ip4]; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 664 | if (!f) |
| 665 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 666 | f = vlib_get_frame_to_node (wrk->vm, next_index); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 667 | ASSERT (f); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 668 | wrk->tx_frames[!is_ip4] = f; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 669 | } |
| 670 | to_next = vlib_frame_vector_args (f); |
| 671 | to_next[f->n_vectors] = bi; |
| 672 | f->n_vectors += 1; |
| 673 | if (flush || f->n_vectors == VLIB_FRAME_SIZE) |
| 674 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 675 | vlib_put_frame_to_node (wrk->vm, next_index, f); |
| 676 | wrk->tx_frames[!is_ip4] = 0; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 677 | } |
| 678 | } |
| 679 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 680 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 681 | tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi, |
| 682 | u8 is_ip4) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 683 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 684 | tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 0); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 687 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 688 | tcp_enqueue_to_output_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi, |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 689 | u8 is_ip4) |
| 690 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 691 | tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 1); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 692 | } |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 693 | #endif /* CLIB_MARCH_VARIANT */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 694 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 695 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 696 | tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0, |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 697 | tcp_state_t state, u8 thread_index, u8 is_ip4) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 698 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 699 | ip4_header_t *ih4; |
| 700 | ip6_header_t *ih6; |
| 701 | tcp_header_t *th0; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 702 | ip4_address_t src_ip40, dst_ip40; |
| 703 | ip6_address_t src_ip60, dst_ip60; |
| 704 | u16 src_port, dst_port; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 705 | u32 tmp; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 706 | u32 seq, ack; |
| 707 | u8 flags; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 708 | |
| 709 | /* Find IP and TCP headers */ |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 710 | th0 = tcp_buffer_hdr (b0); |
| 711 | |
| 712 | /* Save src and dst ip */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 713 | if (is_ip4) |
| 714 | { |
| 715 | ih4 = vlib_buffer_get_current (b0); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 716 | ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40); |
| 717 | src_ip40.as_u32 = ih4->src_address.as_u32; |
| 718 | dst_ip40.as_u32 = ih4->dst_address.as_u32; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 719 | } |
| 720 | else |
| 721 | { |
| 722 | ih6 = vlib_buffer_get_current (b0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 723 | ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 724 | clib_memcpy_fast (&src_ip60, &ih6->src_address, sizeof (ip6_address_t)); |
| 725 | clib_memcpy_fast (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 726 | } |
| 727 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 728 | src_port = th0->src_port; |
| 729 | dst_port = th0->dst_port; |
| 730 | |
| 731 | /* Try to determine what/why we're actually resetting */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 732 | if (state == TCP_STATE_CLOSED) |
| 733 | { |
| 734 | if (!tcp_syn (th0)) |
| 735 | return -1; |
| 736 | |
| 737 | tmp = clib_net_to_host_u32 (th0->seq_number); |
| 738 | |
| 739 | /* Got a SYN for no listener. */ |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 740 | flags = TCP_FLAG_RST | TCP_FLAG_ACK; |
| 741 | ack = clib_host_to_net_u32 (tmp + 1); |
| 742 | seq = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 743 | } |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 744 | else |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 745 | { |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 746 | flags = TCP_FLAG_RST; |
| 747 | seq = th0->ack_number; |
| 748 | ack = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 749 | } |
| 750 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 751 | tcp_reuse_buffer (vm, b0); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 752 | tcp_trajectory_add_start (b0, 4); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 753 | th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack, |
| 754 | sizeof (tcp_header_t), flags, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 755 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 756 | if (is_ip4) |
| 757 | { |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 758 | ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 759 | IP_PROTOCOL_TCP, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 760 | th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4); |
| 761 | } |
| 762 | else |
| 763 | { |
| 764 | int bogus = ~0; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 765 | ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60, |
| 766 | IP_PROTOCOL_TCP); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 767 | th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus); |
| 768 | ASSERT (!bogus); |
| 769 | } |
| 770 | |
| 771 | return 0; |
| 772 | } |
| 773 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 774 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 775 | /** |
| 776 | * Send reset without reusing existing buffer |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 777 | * |
| 778 | * It extracts connection info out of original packet |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 779 | */ |
| 780 | void |
Florin Coras | d4c49be | 2019-02-07 00:15:53 -0800 | [diff] [blame] | 781 | tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, |
| 782 | u32 thread_index, u8 is_ip4) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 783 | { |
Florin Coras | d4c49be | 2019-02-07 00:15:53 -0800 | [diff] [blame] | 784 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 785 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 786 | vlib_buffer_t *b; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 787 | u32 bi, sw_if_index, fib_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 788 | u8 tcp_hdr_len, flags = 0; |
| 789 | tcp_header_t *th, *pkt_th; |
| 790 | u32 seq, ack; |
| 791 | ip4_header_t *ih4, *pkt_ih4; |
| 792 | ip6_header_t *ih6, *pkt_ih6; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 793 | fib_protocol_t fib_proto; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 794 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 795 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 796 | return; |
| 797 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 798 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 799 | sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX]; |
| 800 | fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 801 | fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 802 | tcp_init_buffer (vm, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 803 | |
| 804 | /* Make and write options */ |
| 805 | tcp_hdr_len = sizeof (tcp_header_t); |
| 806 | |
| 807 | if (is_ip4) |
| 808 | { |
| 809 | pkt_ih4 = vlib_buffer_get_current (pkt); |
| 810 | pkt_th = ip4_next_header (pkt_ih4); |
| 811 | } |
| 812 | else |
| 813 | { |
| 814 | pkt_ih6 = vlib_buffer_get_current (pkt); |
| 815 | pkt_th = ip6_next_header (pkt_ih6); |
| 816 | } |
| 817 | |
| 818 | if (tcp_ack (pkt_th)) |
| 819 | { |
| 820 | flags = TCP_FLAG_RST; |
| 821 | seq = pkt_th->ack_number; |
Florin Coras | 776f3d8 | 2018-11-02 08:23:58 -0700 | [diff] [blame] | 822 | ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 823 | } |
| 824 | else |
| 825 | { |
| 826 | flags = TCP_FLAG_RST | TCP_FLAG_ACK; |
| 827 | seq = 0; |
| 828 | ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end); |
| 829 | } |
| 830 | |
| 831 | th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port, |
| 832 | seq, ack, tcp_hdr_len, flags, 0); |
| 833 | |
| 834 | /* Swap src and dst ip */ |
| 835 | if (is_ip4) |
| 836 | { |
| 837 | ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40); |
| 838 | ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 839 | &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 840 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4); |
| 841 | } |
| 842 | else |
| 843 | { |
| 844 | int bogus = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 845 | ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) == |
| 846 | 0x60); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 847 | ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address, |
| 848 | &pkt_ih6->src_address, IP_PROTOCOL_TCP); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 849 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus); |
| 850 | ASSERT (!bogus); |
| 851 | } |
| 852 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 853 | tcp_enqueue_to_ip_lookup_now (wrk, b, bi, is_ip4, fib_index); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 854 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 855 | } |
| 856 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 857 | /** |
| 858 | * Build and set reset packet for connection |
| 859 | */ |
| 860 | void |
| 861 | tcp_send_reset (tcp_connection_t * tc) |
| 862 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 863 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 864 | vlib_main_t *vm = wrk->vm; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 865 | vlib_buffer_t *b; |
| 866 | u32 bi; |
| 867 | tcp_header_t *th; |
| 868 | u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len; |
| 869 | u8 flags; |
| 870 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 871 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 872 | return; |
| 873 | b = vlib_get_buffer (vm, bi); |
| 874 | tcp_init_buffer (vm, b); |
| 875 | |
| 876 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 877 | tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t); |
| 878 | advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED); |
| 879 | flags = TCP_FLAG_RST; |
| 880 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 881 | tc->rcv_nxt, tcp_hdr_opts_len, flags, |
| 882 | advertise_wnd); |
| 883 | opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts); |
| 884 | ASSERT (opts_write_len == tc->snd_opts_len); |
| 885 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 886 | if (tc->c_is_ip4) |
| 887 | { |
| 888 | ip4_header_t *ih4; |
| 889 | ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4, |
| 890 | &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0); |
| 891 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4); |
| 892 | } |
| 893 | else |
| 894 | { |
| 895 | int bogus = ~0; |
| 896 | ip6_header_t *ih6; |
| 897 | ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6, |
| 898 | &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP); |
| 899 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus); |
| 900 | ASSERT (!bogus); |
| 901 | } |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 902 | tcp_enqueue_to_ip_lookup_now (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 903 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 904 | } |
| 905 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 906 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 907 | tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 908 | vlib_buffer_t * b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 909 | { |
| 910 | tcp_header_t *th = vlib_buffer_get_current (b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 911 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 912 | if (tc->c_is_ip4) |
| 913 | { |
| 914 | ip4_header_t *ih; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 915 | ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 916 | &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 917 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 918 | } |
| 919 | else |
| 920 | { |
| 921 | ip6_header_t *ih; |
| 922 | int bogus = ~0; |
| 923 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 924 | ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 925 | &tc->c_rmt_ip6, IP_PROTOCOL_TCP); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 926 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 927 | ASSERT (!bogus); |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | /** |
| 932 | * Send SYN |
| 933 | * |
| 934 | * Builds a SYN packet for a half-open connection and sends it to ipx_lookup. |
| 935 | * The packet is not forwarded through tcpx_output to avoid doing lookups |
| 936 | * in the half_open pool. |
| 937 | */ |
| 938 | void |
| 939 | tcp_send_syn (tcp_connection_t * tc) |
| 940 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 941 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 942 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 943 | vlib_buffer_t *b; |
| 944 | u32 bi; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 945 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 946 | /* |
| 947 | * Setup retransmit and establish timers before requesting buffer |
| 948 | * such that we can return if we've ran out. |
| 949 | */ |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 950 | tcp_timer_set (tc, TCP_TIMER_ESTABLISH_AO, TCP_ESTABLISH_TIME); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 951 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, |
| 952 | tc->rto * TCP_TO_TIMER_TICK); |
| 953 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 954 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 955 | { |
| 956 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, 1); |
| 957 | return; |
| 958 | } |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 959 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 960 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 961 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 962 | tcp_make_syn (tc, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 963 | |
| 964 | /* Measure RTT with this */ |
Florin Coras | efefc6b | 2018-11-07 12:49:19 -0800 | [diff] [blame] | 965 | tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 966 | tc->rtt_seq = tc->snd_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 967 | tc->rto_boff = 0; |
| 968 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 969 | tcp_push_ip_hdr (wrk, tc, b); |
| 970 | tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 971 | TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 972 | } |
| 973 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 974 | void |
| 975 | tcp_send_synack (tcp_connection_t * tc) |
| 976 | { |
| 977 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 978 | vlib_main_t *vm = wrk->vm; |
| 979 | vlib_buffer_t *b; |
| 980 | u32 bi; |
| 981 | |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 982 | tcp_retransmit_timer_force_update (tc); |
| 983 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 984 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 985 | { |
| 986 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
| 987 | return; |
| 988 | } |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 989 | |
Florin Coras | df08478 | 2018-12-06 17:41:10 -0800 | [diff] [blame] | 990 | tc->rtt_ts = tcp_time_now_us (tc->c_thread_index); |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 991 | b = vlib_get_buffer (vm, bi); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 992 | tcp_init_buffer (vm, b); |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 993 | tcp_make_synack (tc, b); |
| 994 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 995 | TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc); |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 996 | } |
| 997 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 998 | /** |
| 999 | * Flush tx frame populated by retransmits and timer pops |
| 1000 | */ |
| 1001 | void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1002 | tcp_flush_frame_to_output (tcp_worker_ctx_t * wrk, u8 is_ip4) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1003 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1004 | if (wrk->tx_frames[!is_ip4]) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1005 | { |
| 1006 | u32 next_index; |
| 1007 | next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1008 | vlib_put_frame_to_node (wrk->vm, next_index, wrk->tx_frames[!is_ip4]); |
| 1009 | wrk->tx_frames[!is_ip4] = 0; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | /** |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1014 | * Flush ip lookup tx frames populated by timer pops |
| 1015 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1016 | static void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1017 | tcp_flush_frame_to_ip_lookup (tcp_worker_ctx_t * wrk, u8 is_ip4) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1018 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1019 | if (wrk->ip_lookup_tx_frames[!is_ip4]) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1020 | { |
| 1021 | u32 next_index; |
| 1022 | next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1023 | vlib_put_frame_to_node (wrk->vm, next_index, |
| 1024 | wrk->ip_lookup_tx_frames[!is_ip4]); |
| 1025 | wrk->ip_lookup_tx_frames[!is_ip4] = 0; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | /** |
| 1030 | * Flush v4 and v6 tcp and ip-lookup tx frames for thread index |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1031 | */ |
| 1032 | void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1033 | tcp_flush_frames_to_output (tcp_worker_ctx_t * wrk) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1034 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1035 | tcp_flush_frame_to_output (wrk, 1); |
| 1036 | tcp_flush_frame_to_output (wrk, 0); |
| 1037 | tcp_flush_frame_to_ip_lookup (wrk, 1); |
| 1038 | tcp_flush_frame_to_ip_lookup (wrk, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | /** |
| 1042 | * Send FIN |
| 1043 | */ |
| 1044 | void |
| 1045 | tcp_send_fin (tcp_connection_t * tc) |
| 1046 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1047 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 1048 | vlib_main_t *vm = wrk->vm; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1049 | vlib_buffer_t *b; |
| 1050 | u32 bi; |
| 1051 | u8 fin_snt = 0; |
| 1052 | |
Florin Coras | c977e7c | 2018-10-16 20:30:31 -0700 | [diff] [blame] | 1053 | fin_snt = tc->flags & TCP_CONN_FINSNT; |
| 1054 | if (fin_snt) |
| 1055 | tc->snd_nxt = tc->snd_una; |
| 1056 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1057 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 1058 | { |
| 1059 | /* Out of buffers so program fin retransmit ASAP */ |
| 1060 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1061 | if (fin_snt) |
| 1062 | tc->snd_nxt = tc->snd_una_max; |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1063 | else |
| 1064 | /* Make sure retransmit retries a fin not data */ |
| 1065 | tc->flags |= TCP_CONN_FINSNT; |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1066 | return; |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
Florin Coras | c977e7c | 2018-10-16 20:30:31 -0700 | [diff] [blame] | 1069 | tcp_retransmit_timer_force_update (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1070 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1071 | tcp_init_buffer (vm, b); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1072 | tcp_make_fin (tc, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1073 | tcp_enqueue_to_output_now (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | c977e7c | 2018-10-16 20:30:31 -0700 | [diff] [blame] | 1074 | TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc); |
| 1075 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1076 | if (!fin_snt) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1077 | { |
| 1078 | tc->flags |= TCP_CONN_FINSNT; |
| 1079 | tc->flags &= ~TCP_CONN_FINPNDG; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1080 | /* Account for the FIN */ |
| 1081 | tc->snd_una_max += 1; |
| 1082 | tc->snd_nxt = tc->snd_una_max; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1083 | } |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1084 | else |
| 1085 | { |
| 1086 | tc->snd_nxt = tc->snd_una_max; |
| 1087 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | always_inline u8 |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1091 | tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1092 | { |
| 1093 | switch (next_state) |
| 1094 | { |
| 1095 | case TCP_STATE_ESTABLISHED: |
Florin Coras | 00dfe54 | 2018-06-11 13:15:11 -0700 | [diff] [blame] | 1096 | case TCP_STATE_CLOSE_WAIT: |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1097 | case TCP_STATE_TIME_WAIT: |
| 1098 | case TCP_STATE_FIN_WAIT_2: |
Florin Coras | 7e74bf3 | 2019-03-06 16:51:58 -0800 | [diff] [blame^] | 1099 | case TCP_STATE_CLOSING: |
| 1100 | case TCP_STATE_LAST_ACK: |
| 1101 | case TCP_STATE_FIN_WAIT_1: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1102 | return TCP_FLAG_ACK; |
| 1103 | case TCP_STATE_SYN_RCVD: |
| 1104 | return TCP_FLAG_SYN | TCP_FLAG_ACK; |
| 1105 | case TCP_STATE_SYN_SENT: |
| 1106 | return TCP_FLAG_SYN; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1107 | default: |
| 1108 | clib_warning ("Shouldn't be here!"); |
| 1109 | } |
| 1110 | return 0; |
| 1111 | } |
| 1112 | |
| 1113 | /** |
| 1114 | * Push TCP header and update connection variables |
| 1115 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1116 | always_inline void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1117 | tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1118 | tcp_state_t next_state, u8 compute_opts, u8 maybe_burst) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1119 | { |
| 1120 | u32 advertise_wnd, data_len; |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1121 | u8 tcp_hdr_opts_len, flags; |
| 1122 | tcp_main_t *tm = &tcp_main; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1123 | tcp_header_t *th; |
| 1124 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1125 | data_len = b->current_length; |
| 1126 | if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 1127 | data_len += b->total_length_not_including_first_buffer; |
| 1128 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1129 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1130 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1131 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1132 | if (compute_opts) |
| 1133 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1134 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1135 | tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1136 | |
| 1137 | if (maybe_burst) |
| 1138 | advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale; |
| 1139 | else |
| 1140 | advertise_wnd = tcp_window_to_advertise (tc, next_state); |
| 1141 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1142 | flags = tcp_make_state_flags (tc, next_state); |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1143 | if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING)) |
| 1144 | { |
| 1145 | if (seq_geq (tc->psh_seq, tc->snd_nxt) |
| 1146 | && seq_lt (tc->psh_seq, tc->snd_nxt + data_len)) |
| 1147 | flags |= TCP_FLAG_PSH; |
| 1148 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1149 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 1150 | tc->rcv_nxt, tcp_hdr_opts_len, flags, |
| 1151 | advertise_wnd); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1152 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1153 | if (maybe_burst) |
| 1154 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 1155 | clib_memcpy_fast ((u8 *) (th + 1), |
| 1156 | tm->wrk_ctx[tc->c_thread_index].cached_opts, |
| 1157 | tc->snd_opts_len); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1158 | } |
| 1159 | else |
| 1160 | { |
| 1161 | u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts); |
| 1162 | ASSERT (len == tc->snd_opts_len); |
| 1163 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1164 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1165 | /* |
| 1166 | * Update connection variables |
| 1167 | */ |
| 1168 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1169 | tc->snd_nxt += data_len; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1170 | tc->rcv_las = tc->rcv_nxt; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1171 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1172 | TCP_EVT_DBG (TCP_EVT_PKTIZE, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1173 | } |
| 1174 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1175 | u32 |
| 1176 | tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b) |
| 1177 | { |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1178 | tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0, |
| 1179 | /* burst */ 1); |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1180 | tc->snd_una_max = tc->snd_nxt; |
Florin Coras | b11175d | 2018-11-09 14:34:08 -0800 | [diff] [blame] | 1181 | ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd)); |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1182 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
| 1183 | /* If not tracking an ACK, start tracking */ |
| 1184 | if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc)) |
| 1185 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1186 | tc->rtt_ts = tcp_time_now_us (tc->c_thread_index); |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1187 | tc->rtt_seq = tc->snd_nxt; |
| 1188 | } |
| 1189 | if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))) |
| 1190 | { |
| 1191 | tcp_retransmit_timer_set (tc); |
| 1192 | tc->rto_boff = 0; |
| 1193 | } |
| 1194 | tcp_trajectory_add_start (b, 3); |
| 1195 | return 0; |
| 1196 | } |
| 1197 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1198 | void |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1199 | tcp_send_ack (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1200 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1201 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 1202 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1203 | vlib_buffer_t *b; |
| 1204 | u32 bi; |
| 1205 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1206 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1207 | { |
| 1208 | tcp_update_rcv_wnd (tc); |
| 1209 | return; |
| 1210 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1211 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1212 | tcp_init_buffer (vm, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1213 | tcp_make_ack (tc, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1214 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1215 | } |
| 1216 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1217 | void |
| 1218 | tcp_program_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
| 1219 | { |
| 1220 | if (!(tc->flags & TCP_CONN_SNDACK)) |
| 1221 | { |
| 1222 | vec_add1 (wrk->pending_acks, tc->c_c_index); |
| 1223 | tc->flags |= TCP_CONN_SNDACK; |
| 1224 | } |
| 1225 | } |
| 1226 | |
| 1227 | void |
| 1228 | tcp_program_dupack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
| 1229 | { |
| 1230 | if (!(tc->flags & TCP_CONN_SNDACK)) |
| 1231 | { |
| 1232 | vec_add1 (wrk->pending_acks, tc->c_c_index); |
| 1233 | tc->flags |= TCP_CONN_SNDACK; |
| 1234 | } |
| 1235 | if (tc->pending_dupacks < 255) |
| 1236 | tc->pending_dupacks += 1; |
| 1237 | } |
| 1238 | |
| 1239 | void |
| 1240 | tcp_send_acks (tcp_worker_ctx_t * wrk) |
| 1241 | { |
| 1242 | u32 thread_index, *pending_acks; |
| 1243 | tcp_connection_t *tc; |
| 1244 | int i, j, n_acks; |
| 1245 | |
| 1246 | if (!vec_len (wrk->pending_acks)) |
| 1247 | return; |
| 1248 | |
| 1249 | thread_index = wrk->vm->thread_index; |
| 1250 | pending_acks = wrk->pending_acks; |
| 1251 | for (i = 0; i < vec_len (pending_acks); i++) |
| 1252 | { |
| 1253 | tc = tcp_connection_get (pending_acks[i], thread_index); |
| 1254 | tc->flags &= ~TCP_CONN_SNDACK; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1255 | if (!tc->pending_dupacks) |
| 1256 | { |
| 1257 | tcp_send_ack (tc); |
| 1258 | continue; |
| 1259 | } |
| 1260 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1261 | /* If we're supposed to send dupacks but have no ooo data |
| 1262 | * send only one ack */ |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1263 | if (!vec_len (tc->snd_sacks)) |
| 1264 | { |
| 1265 | tcp_send_ack (tc); |
| 1266 | continue; |
| 1267 | } |
| 1268 | |
| 1269 | /* Start with first sack block */ |
| 1270 | tc->snd_sack_pos = 0; |
| 1271 | |
| 1272 | /* Generate enough dupacks to cover all sack blocks. Do not generate |
| 1273 | * more sacks than the number of packets received. But do generate at |
| 1274 | * least 3, i.e., the number needed to signal congestion, if needed. */ |
| 1275 | n_acks = vec_len (tc->snd_sacks) / TCP_OPTS_MAX_SACK_BLOCKS; |
| 1276 | n_acks = clib_min (n_acks, tc->pending_dupacks); |
| 1277 | n_acks = clib_max (n_acks, clib_min (tc->pending_dupacks, 3)); |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1278 | for (j = 0; j < n_acks; j++) |
| 1279 | tcp_send_ack (tc); |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1280 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1281 | tc->pending_dupacks = 0; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1282 | tc->snd_sack_pos = 0; |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1283 | } |
| 1284 | _vec_len (wrk->pending_acks) = 0; |
| 1285 | } |
| 1286 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1287 | /** |
| 1288 | * Delayed ack timer handler |
| 1289 | * |
| 1290 | * Sends delayed ACK when timer expires |
| 1291 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1292 | void |
| 1293 | tcp_timer_delack_handler (u32 index) |
| 1294 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1295 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1296 | tcp_connection_t *tc; |
| 1297 | |
| 1298 | tc = tcp_connection_get (index, thread_index); |
| 1299 | tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1300 | tcp_send_ack (tc); |
| 1301 | } |
| 1302 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1303 | /** |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1304 | * Allocate a new buffer and build a new tcp segment |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1305 | * |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1306 | * @param wrk tcp worker |
| 1307 | * @param tc connection for which the segment will be allocated |
| 1308 | * @param offset offset of the first byte in the tx fifo |
| 1309 | * @param max_deq_byte segment size |
| 1310 | * @param[out] b pointer to buffer allocated |
| 1311 | * |
| 1312 | * @return the number of bytes in the segment or 0 if buffer cannot be |
| 1313 | * allocated or no data available |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1314 | */ |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1315 | static int |
| 1316 | tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1317 | u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1318 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1319 | u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer; |
| 1320 | vlib_main_t *vm = wrk->vm; |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1321 | u32 bi, seg_size; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1322 | int n_bytes = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1323 | u8 *data; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1324 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1325 | seg_size = max_deq_bytes + TRANSPORT_MAX_HDRS_LEN; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1326 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1327 | /* |
| 1328 | * Prepare options |
| 1329 | */ |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1330 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1331 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1332 | /* |
| 1333 | * Allocate and fill in buffer(s) |
| 1334 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1335 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1336 | /* Easy case, buffer size greater than mss */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1337 | if (PREDICT_TRUE (seg_size <= bytes_per_buffer)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1338 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1339 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1340 | return 0; |
| 1341 | *b = vlib_get_buffer (vm, bi); |
| 1342 | data = tcp_init_buffer (vm, *b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1343 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1344 | max_deq_bytes); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1345 | ASSERT (n_bytes == max_deq_bytes); |
| 1346 | b[0]->current_length = n_bytes; |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1347 | tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0); |
Florin Coras | 208daa1 | 2018-07-02 01:30:51 -0700 | [diff] [blame] | 1348 | if (seq_gt (tc->snd_nxt, tc->snd_una_max)) |
| 1349 | tc->snd_una_max = tc->snd_nxt; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1350 | } |
| 1351 | /* Split mss into multiple buffers */ |
| 1352 | else |
| 1353 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1354 | u32 chain_bi = ~0, n_bufs_per_seg, n_bufs; |
| 1355 | u16 n_peeked, len_to_deq; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1356 | vlib_buffer_t *chain_b, *prev_b; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1357 | int i; |
| 1358 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1359 | /* Make sure we have enough buffers */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1360 | n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1361 | vec_validate_aligned (wrk->tx_buffers, n_bufs_per_seg - 1, |
| 1362 | CLIB_CACHE_LINE_BYTES); |
| 1363 | n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_per_seg); |
| 1364 | if (PREDICT_FALSE (n_bufs != n_bufs_per_seg)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1365 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1366 | if (n_bufs) |
| 1367 | vlib_buffer_free (vm, wrk->tx_buffers, n_bufs); |
| 1368 | return 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1371 | *b = vlib_get_buffer (vm, wrk->tx_buffers[--n_bufs]); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1372 | data = tcp_init_buffer (vm, *b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1373 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1374 | bytes_per_buffer - |
| 1375 | TRANSPORT_MAX_HDRS_LEN); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1376 | b[0]->current_length = n_bytes; |
| 1377 | b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID; |
| 1378 | b[0]->total_length_not_including_first_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1379 | max_deq_bytes -= n_bytes; |
| 1380 | |
| 1381 | chain_b = *b; |
| 1382 | for (i = 1; i < n_bufs_per_seg; i++) |
| 1383 | { |
| 1384 | prev_b = chain_b; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1385 | len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1386 | chain_bi = wrk->tx_buffers[--n_bufs]; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1387 | chain_b = vlib_get_buffer (vm, chain_bi); |
| 1388 | chain_b->current_data = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1389 | data = vlib_buffer_get_current (chain_b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1390 | n_peeked = session_tx_fifo_peek_bytes (&tc->connection, data, |
| 1391 | offset + n_bytes, |
| 1392 | len_to_deq); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1393 | ASSERT (n_peeked == len_to_deq); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1394 | n_bytes += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1395 | chain_b->current_length = n_peeked; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1396 | chain_b->next_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1397 | |
| 1398 | /* update previous buffer */ |
| 1399 | prev_b->next_buffer = chain_bi; |
| 1400 | prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT; |
| 1401 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1402 | max_deq_bytes -= n_peeked; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1403 | b[0]->total_length_not_including_first_buffer += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1404 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1405 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1406 | tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0); |
Florin Coras | 208daa1 | 2018-07-02 01:30:51 -0700 | [diff] [blame] | 1407 | if (seq_gt (tc->snd_nxt, tc->snd_una_max)) |
| 1408 | tc->snd_una_max = tc->snd_nxt; |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1409 | |
| 1410 | if (PREDICT_FALSE (n_bufs)) |
| 1411 | { |
| 1412 | clib_warning ("not all buffers consumed"); |
| 1413 | vlib_buffer_free (vm, wrk->tx_buffers, n_bufs); |
| 1414 | } |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1415 | } |
| 1416 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1417 | ASSERT (n_bytes > 0); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1418 | ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1419 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1420 | return n_bytes; |
| 1421 | } |
| 1422 | |
| 1423 | /** |
| 1424 | * Build a retransmit segment |
| 1425 | * |
| 1426 | * @return the number of bytes in the segment or 0 if there's nothing to |
| 1427 | * retransmit |
| 1428 | */ |
| 1429 | static u32 |
| 1430 | tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk, |
| 1431 | tcp_connection_t * tc, u32 offset, |
| 1432 | u32 max_deq_bytes, vlib_buffer_t ** b) |
| 1433 | { |
| 1434 | u32 start, available_bytes; |
| 1435 | int n_bytes = 0; |
| 1436 | |
| 1437 | ASSERT (tc->state >= TCP_STATE_ESTABLISHED); |
| 1438 | ASSERT (max_deq_bytes != 0); |
| 1439 | |
| 1440 | /* |
| 1441 | * Make sure we can retransmit something |
| 1442 | */ |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1443 | available_bytes = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1444 | ASSERT (available_bytes >= offset); |
| 1445 | available_bytes -= offset; |
| 1446 | if (!available_bytes) |
| 1447 | return 0; |
| 1448 | |
| 1449 | max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes); |
| 1450 | max_deq_bytes = clib_min (available_bytes, max_deq_bytes); |
| 1451 | |
| 1452 | /* Start is beyond snd_congestion */ |
| 1453 | start = tc->snd_una + offset; |
| 1454 | if (seq_geq (start, tc->snd_congestion)) |
| 1455 | goto done; |
| 1456 | |
| 1457 | /* Don't overshoot snd_congestion */ |
| 1458 | if (seq_gt (start + max_deq_bytes, tc->snd_congestion)) |
| 1459 | { |
| 1460 | max_deq_bytes = tc->snd_congestion - start; |
| 1461 | if (max_deq_bytes == 0) |
| 1462 | goto done; |
| 1463 | } |
| 1464 | |
| 1465 | n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b); |
| 1466 | if (!n_bytes) |
| 1467 | return 0; |
| 1468 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1469 | if (tcp_in_fastrecovery (tc)) |
| 1470 | tc->snd_rxt_bytes += n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1471 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1472 | done: |
| 1473 | TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1474 | return n_bytes; |
| 1475 | } |
| 1476 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1477 | /** |
| 1478 | * Reset congestion control, switch cwnd to loss window and try again. |
| 1479 | */ |
| 1480 | static void |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1481 | tcp_rxt_timeout_cc (tcp_connection_t * tc) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1482 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1483 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1484 | tc->prev_ssthresh = tc->ssthresh; |
| 1485 | tc->prev_cwnd = tc->cwnd; |
| 1486 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1487 | /* Cleanly recover cc (also clears up fast retransmit) */ |
| 1488 | if (tcp_in_fastrecovery (tc)) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1489 | { |
| 1490 | /* TODO be less aggressive about this */ |
| 1491 | scoreboard_clear (&tc->sack_sb); |
| 1492 | tcp_cc_fastrecovery_exit (tc); |
| 1493 | } |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1494 | else |
| 1495 | tc->rcv_dupacks = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1496 | |
| 1497 | /* Start again from the beginning */ |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1498 | tc->cc_algo->congestion (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1499 | tc->cwnd = tcp_loss_wnd (tc); |
| 1500 | tc->snd_congestion = tc->snd_una_max; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1501 | tc->rtt_ts = 0; |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1502 | tc->cwnd_acc_bytes = 0; |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1503 | tcp_connection_tx_pacer_reset (tc, tc->cwnd, 2 * tc->snd_mss); |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1504 | tcp_recovery_on (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1505 | } |
| 1506 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1507 | static inline void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1508 | tcp_timer_retransmit_handler_i (u32 index, u8 is_syn) |
| 1509 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1510 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1511 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
| 1512 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1513 | tcp_connection_t *tc; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1514 | vlib_buffer_t *b = 0; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1515 | u32 bi, n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1516 | |
| 1517 | if (is_syn) |
| 1518 | { |
| 1519 | tc = tcp_half_open_connection_get (index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1520 | /* Note: the connection may have transitioned to ESTABLISHED... */ |
Florin Coras | 311e11b | 2018-12-05 11:19:14 -0800 | [diff] [blame] | 1521 | if (PREDICT_FALSE (tc == 0 || tc->state != TCP_STATE_SYN_SENT)) |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1522 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1523 | tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1524 | } |
| 1525 | else |
| 1526 | { |
| 1527 | tc = tcp_connection_get (index, thread_index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1528 | /* Note: the connection may have been closed and pool_put */ |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1529 | if (PREDICT_FALSE (tc == 0 || tc->state == TCP_STATE_SYN_SENT)) |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1530 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1531 | tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1532 | /* Wait-close and retransmit could pop at the same time */ |
| 1533 | if (tc->state == TCP_STATE_CLOSED) |
| 1534 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1535 | } |
| 1536 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1537 | if (tc->state >= TCP_STATE_ESTABLISHED) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1538 | { |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1539 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1540 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1541 | /* Lost FIN, retransmit and return */ |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1542 | if (tc->flags & TCP_CONN_FINSNT) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1543 | { |
| 1544 | tcp_send_fin (tc); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1545 | tc->rto_boff += 1; |
| 1546 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1547 | return; |
| 1548 | } |
| 1549 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1550 | /* Shouldn't be here. This condition is tricky because it has to take |
| 1551 | * into account boff > 0 due to persist timeout. */ |
Florin Coras | 887b7ba | 2018-06-09 06:49:59 -0700 | [diff] [blame] | 1552 | if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1553 | || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion) |
| 1554 | && !tcp_flight_size (tc))) |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1555 | { |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1556 | ASSERT (!tcp_in_recovery (tc)); |
| 1557 | tc->rto_boff = 0; |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1558 | return; |
| 1559 | } |
| 1560 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1561 | /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due |
| 1562 | * to persist timer timeout */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1563 | if (!tcp_in_recovery (tc) && tc->rto_boff > 0) |
| 1564 | { |
| 1565 | tc->rto_boff = 0; |
| 1566 | tcp_update_rto (tc); |
| 1567 | } |
| 1568 | |
| 1569 | /* Increment RTO backoff (also equal to number of retries) and go back |
| 1570 | * to first un-acked byte */ |
| 1571 | tc->rto_boff += 1; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1572 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1573 | /* First retransmit timeout */ |
| 1574 | if (tc->rto_boff == 1) |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1575 | tcp_rxt_timeout_cc (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1576 | else |
| 1577 | scoreboard_clear (&tc->sack_sb); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1578 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1579 | /* If we've sent beyond snd_congestion, update it */ |
| 1580 | if (seq_gt (tc->snd_una_max, tc->snd_congestion)) |
| 1581 | tc->snd_congestion = tc->snd_una_max; |
| 1582 | |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1583 | tc->snd_una_max = tc->snd_nxt = tc->snd_una; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1584 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1585 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1586 | /* Send one segment. Note that n_bytes may be zero due to buffer |
| 1587 | * shortfall */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1588 | n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b); |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1589 | if (!n_bytes) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1590 | { |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1591 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1592 | return; |
| 1593 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1594 | |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1595 | bi = vlib_get_buffer_index (vm, b); |
| 1596 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1597 | /* For first retransmit, record timestamp (Eifel detection RFC3522) */ |
| 1598 | if (tc->rto_boff == 1) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1599 | tc->snd_rxt_ts = tcp_time_now_w_thread (tc->c_thread_index); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1600 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1601 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1602 | tcp_retransmit_timer_force_update (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1603 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1604 | /* Retransmit for SYN */ |
| 1605 | else if (tc->state == TCP_STATE_SYN_SENT) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1606 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1607 | /* Half-open connection actually moved to established but we were |
| 1608 | * waiting for syn retransmit to pop to call cleanup from the right |
| 1609 | * thread. */ |
| 1610 | if (tc->flags & TCP_CONN_HALF_OPEN_DONE) |
| 1611 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1612 | if (tcp_half_open_connection_cleanup (tc)) |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1613 | TCP_DBG ("could not remove half-open connection"); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1614 | return; |
| 1615 | } |
| 1616 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1617 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1618 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1619 | /* Try without increasing RTO a number of times. If this fails, |
| 1620 | * start growing RTO exponentially */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1621 | tc->rto_boff += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1622 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1623 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1624 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1625 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, |
| 1626 | tc->rto * TCP_TO_TIMER_TICK); |
| 1627 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1628 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1629 | { |
| 1630 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, 1); |
| 1631 | return; |
| 1632 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1633 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1634 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1635 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1636 | tcp_make_syn (tc, b); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1637 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1638 | tc->rtt_ts = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1639 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0); |
| 1640 | |
| 1641 | /* This goes straight to ipx_lookup. Retransmit timer set already */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1642 | tcp_push_ip_hdr (wrk, tc, b); |
| 1643 | tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1644 | } |
| 1645 | /* Retransmit SYN-ACK */ |
| 1646 | else if (tc->state == TCP_STATE_SYN_RCVD) |
| 1647 | { |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1648 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1649 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1650 | tc->rto_boff += 1; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1651 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1652 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1653 | tc->rtt_ts = 0; |
| 1654 | |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1655 | tcp_retransmit_timer_force_update (tc); |
| 1656 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1657 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1658 | { |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1659 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1660 | return; |
| 1661 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1662 | |
| 1663 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1664 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1665 | tcp_make_synack (tc, b); |
| 1666 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1); |
| 1667 | |
| 1668 | /* Retransmit timer already updated, just enqueue to output */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1669 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1670 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1671 | else |
| 1672 | { |
| 1673 | ASSERT (tc->state == TCP_STATE_CLOSED); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1674 | return; |
| 1675 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | void |
| 1679 | tcp_timer_retransmit_handler (u32 index) |
| 1680 | { |
| 1681 | tcp_timer_retransmit_handler_i (index, 0); |
| 1682 | } |
| 1683 | |
| 1684 | void |
| 1685 | tcp_timer_retransmit_syn_handler (u32 index) |
| 1686 | { |
| 1687 | tcp_timer_retransmit_handler_i (index, 1); |
| 1688 | } |
| 1689 | |
| 1690 | /** |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1691 | * Got 0 snd_wnd from peer, try to do something about it. |
| 1692 | * |
| 1693 | */ |
| 1694 | void |
| 1695 | tcp_timer_persist_handler (u32 index) |
| 1696 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1697 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1698 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
| 1699 | u32 bi, max_snd_bytes, available_bytes, offset; |
| 1700 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 1701 | vlib_main_t *vm = wrk->vm; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1702 | tcp_connection_t *tc; |
| 1703 | vlib_buffer_t *b; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1704 | int n_bytes = 0; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1705 | u8 *data; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1706 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1707 | tc = tcp_connection_get_if_valid (index, thread_index); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1708 | if (!tc) |
| 1709 | return; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1710 | |
| 1711 | /* Make sure timer handle is set to invalid */ |
| 1712 | tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID; |
| 1713 | |
| 1714 | /* Problem already solved or worse */ |
Florin Coras | 7e74bf3 | 2019-03-06 16:51:58 -0800 | [diff] [blame^] | 1715 | if (tc->state == TCP_STATE_CLOSED || tc->snd_wnd > tc->snd_mss |
| 1716 | || (tc->flags & TCP_CONN_FINSNT)) |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1717 | return; |
| 1718 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1719 | available_bytes = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 1720 | offset = tc->snd_una_max - tc->snd_una; |
| 1721 | |
| 1722 | /* Reprogram persist if no new bytes available to send. We may have data |
| 1723 | * next time */ |
| 1724 | if (!available_bytes) |
| 1725 | { |
| 1726 | tcp_persist_timer_set (tc); |
| 1727 | return; |
| 1728 | } |
| 1729 | |
| 1730 | if (available_bytes <= offset) |
| 1731 | { |
| 1732 | ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)); |
| 1733 | return; |
| 1734 | } |
| 1735 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1736 | /* Increment RTO backoff */ |
| 1737 | tc->rto_boff += 1; |
| 1738 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1739 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1740 | /* |
| 1741 | * Try to force the first unsent segment (or buffer) |
| 1742 | */ |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1743 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1744 | { |
| 1745 | tcp_persist_timer_set (tc); |
| 1746 | return; |
| 1747 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1748 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1749 | data = tcp_init_buffer (vm, b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1750 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1751 | tcp_validate_txf_size (tc, offset); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1752 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
Florin Coras | 7e74bf3 | 2019-03-06 16:51:58 -0800 | [diff] [blame^] | 1753 | max_snd_bytes = clib_min (tc->snd_mss, |
| 1754 | tm->bytes_per_buffer - TRANSPORT_MAX_HDRS_LEN); |
| 1755 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1756 | max_snd_bytes); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1757 | b->current_length = n_bytes; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1758 | ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT) |
| 1759 | || tc->snd_nxt == tc->snd_una_max |
| 1760 | || tc->rto_boff > 1)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1761 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1762 | tcp_push_hdr_i (tc, b, tc->state, /* compute opts */ 0, /* burst */ 0); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 1763 | tc->snd_una_max = tc->snd_nxt; |
| 1764 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1765 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1766 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1767 | /* Just sent new data, enable retransmit */ |
| 1768 | tcp_retransmit_timer_update (tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1769 | } |
| 1770 | |
| 1771 | /** |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1772 | * Retransmit first unacked segment |
| 1773 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1774 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1775 | tcp_retransmit_first_unacked (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1776 | { |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1777 | u32 bi, old_snd_nxt, n_bytes; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1778 | vlib_main_t *vm = wrk->vm; |
| 1779 | vlib_buffer_t *b; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1780 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1781 | old_snd_nxt = tc->snd_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1782 | tc->snd_nxt = tc->snd_una; |
| 1783 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1784 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1785 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1786 | n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1787 | if (!n_bytes) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1788 | return -1; |
| 1789 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1790 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1791 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1792 | tc->snd_nxt = old_snd_nxt; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1793 | |
| 1794 | return 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1795 | } |
| 1796 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1797 | static int |
| 1798 | tcp_fast_retransmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1799 | u32 burst_size) |
| 1800 | { |
| 1801 | u32 offset, n_segs = 0, n_written, bi; |
| 1802 | vlib_main_t *vm = wrk->vm; |
| 1803 | vlib_buffer_t *b = 0; |
| 1804 | |
| 1805 | tc->snd_nxt = tc->snd_una_max; |
| 1806 | offset = tc->snd_una_max - tc->snd_una; |
| 1807 | while (n_segs < burst_size) |
| 1808 | { |
| 1809 | n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b); |
| 1810 | if (!n_written) |
| 1811 | goto done; |
| 1812 | |
| 1813 | bi = vlib_get_buffer_index (vm, b); |
| 1814 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
| 1815 | offset += n_written; |
| 1816 | n_segs += 1; |
| 1817 | } |
| 1818 | |
| 1819 | done: |
| 1820 | return n_segs; |
| 1821 | } |
| 1822 | |
| 1823 | #define scoreboard_rescue_rxt_valid(_sb, _tc) \ |
| 1824 | (seq_geq (_sb->rescue_rxt, _tc->snd_una) \ |
| 1825 | && seq_leq (_sb->rescue_rxt, _tc->snd_congestion)) |
| 1826 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1827 | /** |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1828 | * Do fast retransmit with SACKs |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1829 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1830 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1831 | tcp_fast_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1832 | u32 burst_size) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1833 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1834 | u32 n_written = 0, offset, max_bytes, n_segs = 0, n_segs_now; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1835 | sack_scoreboard_hole_t *hole; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1836 | vlib_main_t *vm = wrk->vm; |
| 1837 | vlib_buffer_t *b = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1838 | sack_scoreboard_t *sb; |
| 1839 | u32 bi, old_snd_nxt; |
| 1840 | int snd_space; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1841 | u32 max_deq; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1842 | u8 snd_limited = 0, can_rescue = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1843 | |
| 1844 | ASSERT (tcp_in_fastrecovery (tc)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1845 | |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1846 | snd_space = tcp_available_cc_snd_space (tc); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1847 | if (snd_space < tc->snd_mss) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1848 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1849 | tcp_program_fastretransmit (wrk, tc); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1850 | return 0; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1851 | } |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1852 | |
| 1853 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1854 | old_snd_nxt = tc->snd_nxt; |
| 1855 | sb = &tc->sack_sb; |
| 1856 | hole = scoreboard_get_hole (sb, sb->cur_rxt_hole); |
| 1857 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1858 | max_deq = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1859 | max_deq -= tc->snd_una_max - tc->snd_una; |
| 1860 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1861 | while (snd_space > 0 && n_segs < burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1862 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1863 | hole = scoreboard_next_rxt_hole (sb, hole, max_deq, &can_rescue, |
| 1864 | &snd_limited); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1865 | if (!hole) |
| 1866 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1867 | if (max_deq) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1868 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1869 | snd_space = clib_min (max_deq, snd_space); |
| 1870 | burst_size = clib_min (burst_size - n_segs, |
| 1871 | snd_space / tc->snd_mss); |
| 1872 | n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size); |
| 1873 | if (max_deq > n_segs_now * tc->snd_mss) |
| 1874 | tcp_program_fastretransmit (wrk, tc); |
| 1875 | n_segs += n_segs_now; |
| 1876 | goto done; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1877 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1878 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1879 | if (!can_rescue || scoreboard_rescue_rxt_valid (sb, tc)) |
| 1880 | break; |
| 1881 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1882 | /* If rescue rxt undefined or less than snd_una then one segment of |
| 1883 | * up to SMSS octets that MUST include the highest outstanding |
| 1884 | * unSACKed sequence number SHOULD be returned, and RescueRxt set to |
| 1885 | * RecoveryPoint. HighRxt MUST NOT be updated. |
| 1886 | */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1887 | max_bytes = clib_min (tc->snd_mss, |
| 1888 | tc->snd_congestion - tc->snd_una); |
| 1889 | max_bytes = clib_min (max_bytes, snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1890 | offset = tc->snd_congestion - tc->snd_una - max_bytes; |
| 1891 | sb->rescue_rxt = tc->snd_congestion; |
| 1892 | tc->snd_nxt = tc->snd_una + offset; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1893 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, |
| 1894 | max_bytes, &b); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1895 | if (!n_written) |
| 1896 | goto done; |
| 1897 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1898 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1899 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1900 | n_segs += 1; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1901 | break; |
| 1902 | } |
| 1903 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1904 | max_bytes = clib_min (hole->end - sb->high_rxt, snd_space); |
| 1905 | max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes; |
| 1906 | if (max_bytes == 0) |
| 1907 | break; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1908 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1909 | offset = sb->high_rxt - tc->snd_una; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1910 | tc->snd_nxt = sb->high_rxt; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1911 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes, |
| 1912 | &b); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1913 | ASSERT (n_written <= snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1914 | |
| 1915 | /* Nothing left to retransmit */ |
| 1916 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1917 | break; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1918 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1919 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1920 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1921 | |
| 1922 | sb->high_rxt += n_written; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1923 | snd_space -= n_written; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1924 | n_segs += 1; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1925 | } |
| 1926 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1927 | if (hole) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1928 | tcp_program_fastretransmit (wrk, tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1929 | |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1930 | done: |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1931 | /* If window allows, send 1 SMSS of new data */ |
| 1932 | tc->snd_nxt = old_snd_nxt; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1933 | return n_segs; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1934 | } |
| 1935 | |
| 1936 | /** |
| 1937 | * Fast retransmit without SACK info |
| 1938 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1939 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1940 | tcp_fast_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1941 | u32 burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1942 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1943 | u32 n_written = 0, offset = 0, bi, old_snd_nxt, max_deq, n_segs_now; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1944 | vlib_main_t *vm = wrk->vm; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1945 | int snd_space, n_segs = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1946 | vlib_buffer_t *b; |
| 1947 | |
| 1948 | ASSERT (tcp_in_fastrecovery (tc)); |
| 1949 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1950 | old_snd_nxt = tc->snd_nxt; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1951 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1952 | if (!tcp_fastrecovery_first (tc)) |
| 1953 | goto send_unsent; |
| 1954 | |
| 1955 | /* RFC 6582: [If a partial ack], retransmit the first unacknowledged |
| 1956 | * segment. */ |
| 1957 | snd_space = tc->sack_sb.last_bytes_delivered; |
| 1958 | tc->snd_nxt = tc->snd_una; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1959 | while (snd_space > 0 && n_segs < burst_size) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1960 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1961 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, |
| 1962 | tc->snd_mss, &b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1963 | |
| 1964 | /* Nothing left to retransmit */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1965 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1966 | break; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1967 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1968 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1969 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1970 | snd_space -= n_written; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1971 | offset += n_written; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1972 | n_segs += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1973 | } |
| 1974 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1975 | if (n_segs == burst_size) |
| 1976 | goto done; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1977 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1978 | send_unsent: |
| 1979 | |
| 1980 | /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */ |
| 1981 | snd_space = tcp_available_cc_snd_space (tc); |
Florin Coras | 9ece3c0 | 2018-11-05 11:06:53 -0800 | [diff] [blame] | 1982 | if (snd_space < tc->snd_mss || tc->snd_mss == 0) |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1983 | goto done; |
| 1984 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1985 | max_deq = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1986 | max_deq -= tc->snd_una_max - tc->snd_una; |
| 1987 | if (max_deq) |
| 1988 | { |
| 1989 | snd_space = clib_min (max_deq, snd_space); |
| 1990 | burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss); |
| 1991 | n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size); |
| 1992 | if (max_deq > n_segs_now * tc->snd_mss) |
| 1993 | tcp_program_fastretransmit (wrk, tc); |
| 1994 | n_segs += n_segs_now; |
| 1995 | } |
| 1996 | |
| 1997 | /* Restore snd_nxt */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1998 | tc->snd_nxt = old_snd_nxt; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1999 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 2000 | done: |
| 2001 | tcp_fastrecovery_first_off (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 2002 | return n_segs; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2003 | } |
| 2004 | |
| 2005 | /** |
| 2006 | * Do fast retransmit |
| 2007 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 2008 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2009 | tcp_fast_retransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 2010 | u32 burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2011 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 2012 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2013 | return tcp_fast_retransmit_sack (wrk, tc, burst_size); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2014 | else |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2015 | return tcp_fast_retransmit_no_sack (wrk, tc, burst_size); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2016 | } |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2017 | #endif /* CLIB_MARCH_VARIANT */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2018 | |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2019 | static void |
| 2020 | tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0, |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2021 | u16 * next0, u32 * error0) |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2022 | { |
| 2023 | ip_adjacency_t *adj; |
| 2024 | adj_index_t ai; |
| 2025 | |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 2026 | /* Not thread safe but as long as the connection exists the adj should |
| 2027 | * not be removed */ |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2028 | ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip, |
| 2029 | tc0->sw_if_index); |
| 2030 | if (ai == ADJ_INDEX_INVALID) |
| 2031 | { |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2032 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0; |
| 2033 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 2034 | *error0 = TCP_ERROR_LINK_LOCAL_RW; |
| 2035 | return; |
| 2036 | } |
| 2037 | |
| 2038 | adj = adj_get (ai); |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 2039 | if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE)) |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2040 | *next0 = TCP_OUTPUT_NEXT_IP_REWRITE; |
| 2041 | else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP) |
| 2042 | *next0 = TCP_OUTPUT_NEXT_IP_ARP; |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 2043 | else |
| 2044 | { |
| 2045 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 2046 | *error0 = TCP_ERROR_LINK_LOCAL_RW; |
| 2047 | } |
| 2048 | vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai; |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2049 | } |
| 2050 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2051 | static void |
| 2052 | tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2053 | u32 * to_next, u32 n_bufs) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2054 | { |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2055 | u32 n_trace = vlib_get_trace_count (vm, node); |
| 2056 | tcp_connection_t *tc; |
| 2057 | tcp_tx_trace_t *t; |
| 2058 | vlib_buffer_t *b; |
| 2059 | tcp_header_t *th; |
| 2060 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2061 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2062 | for (i = 0; i < clib_min (n_trace, n_bufs); i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2063 | { |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2064 | b = vlib_get_buffer (vm, to_next[i]); |
| 2065 | th = vlib_buffer_get_current (b); |
| 2066 | tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index, |
| 2067 | vm->thread_index); |
| 2068 | t = vlib_add_trace (vm, node, b, sizeof (*t)); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2069 | clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header)); |
| 2070 | clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection)); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2071 | } |
| 2072 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2073 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 2074 | always_inline void |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2075 | tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0, |
| 2076 | tcp_connection_t * tc0, u8 is_ip4) |
| 2077 | { |
| 2078 | tcp_header_t *th0 = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2079 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2080 | th0 = vlib_buffer_get_current (b0); |
| 2081 | TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length); |
| 2082 | if (is_ip4) |
| 2083 | { |
| 2084 | vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4, |
| 2085 | IP_PROTOCOL_TCP, 1); |
| 2086 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
| 2087 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data; |
| 2088 | th0->checksum = 0; |
| 2089 | } |
| 2090 | else |
| 2091 | { |
| 2092 | ip6_header_t *ih0; |
| 2093 | ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6, |
| 2094 | &tc0->c_rmt_ip6, IP_PROTOCOL_TCP); |
| 2095 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
| 2096 | vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data; |
| 2097 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data; |
| 2098 | th0->checksum = 0; |
| 2099 | } |
| 2100 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2101 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 2102 | always_inline void |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2103 | tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0, |
| 2104 | u32 * error0, u16 * next0, u8 is_ip4) |
| 2105 | { |
Florin Coras | 81a13db | 2018-03-16 08:48:31 -0700 | [diff] [blame] | 2106 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2107 | if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED)) |
| 2108 | { |
| 2109 | *error0 = TCP_ERROR_INVALID_CONNECTION; |
| 2110 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 2111 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2112 | } |
| 2113 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2114 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index; |
| 2115 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0; |
| 2116 | |
| 2117 | if (!is_ip4) |
| 2118 | { |
| 2119 | if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6))) |
| 2120 | tcp_output_handle_link_local (tc0, b0, next0, error0); |
| 2121 | } |
| 2122 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2123 | if (!TCP_ALWAYS_ACK) |
| 2124 | tcp_timer_reset (tc0, TCP_TIMER_DELACK); |
| 2125 | } |
| 2126 | |
| 2127 | always_inline uword |
| 2128 | tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2129 | vlib_frame_t * frame, int is_ip4) |
| 2130 | { |
| 2131 | u32 n_left_from, *from, thread_index = vm->thread_index; |
| 2132 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 2133 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 2134 | |
| 2135 | from = vlib_frame_vector_args (frame); |
| 2136 | n_left_from = frame->n_vectors; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2137 | tcp_set_time_now (tcp_get_worker (thread_index)); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2138 | |
| 2139 | if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE)) |
| 2140 | tcp46_output_trace_frame (vm, node, from, n_left_from); |
| 2141 | |
| 2142 | vlib_get_buffers (vm, from, bufs, n_left_from); |
| 2143 | b = bufs; |
| 2144 | next = nexts; |
| 2145 | |
| 2146 | while (n_left_from >= 4) |
| 2147 | { |
| 2148 | u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT; |
| 2149 | tcp_connection_t *tc0, *tc1; |
| 2150 | |
| 2151 | { |
| 2152 | vlib_prefetch_buffer_header (b[2], STORE); |
| 2153 | CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
| 2154 | |
| 2155 | vlib_prefetch_buffer_header (b[3], STORE); |
| 2156 | CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
| 2157 | } |
| 2158 | |
| 2159 | next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP; |
| 2160 | |
| 2161 | tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index, |
| 2162 | thread_index); |
| 2163 | tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index, |
| 2164 | thread_index); |
| 2165 | |
| 2166 | tcp_output_push_ip (vm, b[0], tc0, is_ip4); |
| 2167 | tcp_output_push_ip (vm, b[1], tc1, is_ip4); |
| 2168 | |
| 2169 | tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4); |
| 2170 | tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4); |
| 2171 | |
| 2172 | b += 2; |
| 2173 | next += 2; |
| 2174 | n_left_from -= 2; |
| 2175 | } |
| 2176 | while (n_left_from > 0) |
| 2177 | { |
| 2178 | u32 error0 = TCP_ERROR_PKTS_SENT; |
| 2179 | tcp_connection_t *tc0; |
| 2180 | |
| 2181 | if (n_left_from > 1) |
| 2182 | { |
Florin Coras | 91ca462 | 2018-06-30 11:27:59 -0700 | [diff] [blame] | 2183 | vlib_prefetch_buffer_header (b[1], STORE); |
| 2184 | CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2185 | } |
| 2186 | |
| 2187 | next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP; |
| 2188 | tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index, |
| 2189 | thread_index); |
| 2190 | |
| 2191 | tcp_output_push_ip (vm, b[0], tc0, is_ip4); |
| 2192 | tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4); |
| 2193 | |
| 2194 | b += 1; |
| 2195 | next += 1; |
| 2196 | n_left_from -= 1; |
| 2197 | } |
| 2198 | |
| 2199 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
| 2200 | return frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2201 | } |
| 2202 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2203 | VLIB_NODE_FN (tcp4_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2204 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2205 | { |
| 2206 | return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2207 | } |
| 2208 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2209 | VLIB_NODE_FN (tcp6_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2210 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2211 | { |
| 2212 | return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2213 | } |
| 2214 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2215 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2216 | VLIB_REGISTER_NODE (tcp4_output_node) = |
| 2217 | { |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2218 | .name = "tcp4-output", |
| 2219 | /* Takes a vector of packets. */ |
| 2220 | .vector_size = sizeof (u32), |
| 2221 | .n_errors = TCP_N_ERROR, |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 2222 | .protocol_hint = VLIB_NODE_PROTO_HINT_TCP, |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2223 | .error_strings = tcp_error_strings, |
| 2224 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 2225 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2226 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 2227 | foreach_tcp4_output_next |
| 2228 | #undef _ |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2229 | }, |
| 2230 | .format_buffer = format_tcp_header, |
| 2231 | .format_trace = format_tcp_tx_trace, |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2232 | }; |
| 2233 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2234 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2235 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2236 | VLIB_REGISTER_NODE (tcp6_output_node) = |
| 2237 | { |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2238 | .name = "tcp6-output", |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2239 | /* Takes a vector of packets. */ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2240 | .vector_size = sizeof (u32), |
| 2241 | .n_errors = TCP_N_ERROR, |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 2242 | .protocol_hint = VLIB_NODE_PROTO_HINT_TCP, |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2243 | .error_strings = tcp_error_strings, |
| 2244 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 2245 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2246 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 2247 | foreach_tcp6_output_next |
| 2248 | #undef _ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2249 | }, |
| 2250 | .format_buffer = format_tcp_header, |
| 2251 | .format_trace = format_tcp_tx_trace, |
| 2252 | }; |
| 2253 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2254 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2255 | typedef enum _tcp_reset_next |
| 2256 | { |
| 2257 | TCP_RESET_NEXT_DROP, |
| 2258 | TCP_RESET_NEXT_IP_LOOKUP, |
| 2259 | TCP_RESET_N_NEXT |
| 2260 | } tcp_reset_next_t; |
| 2261 | |
| 2262 | #define foreach_tcp4_reset_next \ |
| 2263 | _(DROP, "error-drop") \ |
| 2264 | _(IP_LOOKUP, "ip4-lookup") |
| 2265 | |
| 2266 | #define foreach_tcp6_reset_next \ |
| 2267 | _(DROP, "error-drop") \ |
| 2268 | _(IP_LOOKUP, "ip6-lookup") |
| 2269 | |
| 2270 | static uword |
| 2271 | tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2272 | vlib_frame_t * from_frame, u8 is_ip4) |
| 2273 | { |
| 2274 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2275 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2276 | |
| 2277 | from = vlib_frame_vector_args (from_frame); |
| 2278 | n_left_from = from_frame->n_vectors; |
| 2279 | |
| 2280 | next_index = node->cached_next_index; |
| 2281 | |
| 2282 | while (n_left_from > 0) |
| 2283 | { |
| 2284 | u32 n_left_to_next; |
| 2285 | |
| 2286 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2287 | |
| 2288 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2289 | { |
| 2290 | u32 bi0; |
| 2291 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2292 | tcp_tx_trace_t *t0; |
| 2293 | tcp_header_t *th0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2294 | u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2295 | |
| 2296 | bi0 = from[0]; |
| 2297 | to_next[0] = bi0; |
| 2298 | from += 1; |
| 2299 | to_next += 1; |
| 2300 | n_left_from -= 1; |
| 2301 | n_left_to_next -= 1; |
| 2302 | |
| 2303 | b0 = vlib_get_buffer (vm, bi0); |
| 2304 | |
| 2305 | if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags, |
| 2306 | my_thread_index, is_ip4)) |
| 2307 | { |
| 2308 | error0 = TCP_ERROR_LOOKUP_DROPS; |
| 2309 | next0 = TCP_RESET_NEXT_DROP; |
| 2310 | goto done; |
| 2311 | } |
| 2312 | |
| 2313 | /* Prepare to send to IP lookup */ |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 2314 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2315 | next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2316 | |
| 2317 | done: |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2318 | b0->error = node->errors[error0]; |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2319 | b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2320 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2321 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2322 | th0 = vlib_buffer_get_current (b0); |
| 2323 | if (is_ip4) |
| 2324 | th0 = ip4_next_header ((ip4_header_t *) th0); |
| 2325 | else |
| 2326 | th0 = ip6_next_header ((ip6_header_t *) th0); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2327 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2328 | clib_memcpy_fast (&t0->tcp_header, th0, |
| 2329 | sizeof (t0->tcp_header)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2330 | } |
| 2331 | |
| 2332 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2333 | n_left_to_next, bi0, next0); |
| 2334 | } |
| 2335 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2336 | } |
| 2337 | return from_frame->n_vectors; |
| 2338 | } |
| 2339 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2340 | VLIB_NODE_FN (tcp4_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2341 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2342 | { |
| 2343 | return tcp46_send_reset_inline (vm, node, from_frame, 1); |
| 2344 | } |
| 2345 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2346 | VLIB_NODE_FN (tcp6_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2347 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2348 | { |
| 2349 | return tcp46_send_reset_inline (vm, node, from_frame, 0); |
| 2350 | } |
| 2351 | |
| 2352 | /* *INDENT-OFF* */ |
| 2353 | VLIB_REGISTER_NODE (tcp4_reset_node) = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2354 | .name = "tcp4-reset", |
| 2355 | .vector_size = sizeof (u32), |
| 2356 | .n_errors = TCP_N_ERROR, |
| 2357 | .error_strings = tcp_error_strings, |
| 2358 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2359 | .next_nodes = { |
| 2360 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2361 | foreach_tcp4_reset_next |
| 2362 | #undef _ |
| 2363 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2364 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2365 | }; |
| 2366 | /* *INDENT-ON* */ |
| 2367 | |
| 2368 | /* *INDENT-OFF* */ |
| 2369 | VLIB_REGISTER_NODE (tcp6_reset_node) = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2370 | .name = "tcp6-reset", |
| 2371 | .vector_size = sizeof (u32), |
| 2372 | .n_errors = TCP_N_ERROR, |
| 2373 | .error_strings = tcp_error_strings, |
| 2374 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2375 | .next_nodes = { |
| 2376 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2377 | foreach_tcp6_reset_next |
| 2378 | #undef _ |
| 2379 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2380 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2381 | }; |
| 2382 | /* *INDENT-ON* */ |
| 2383 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2384 | /* |
| 2385 | * fd.io coding-style-patch-verification: ON |
| 2386 | * |
| 2387 | * Local Variables: |
| 2388 | * eval: (c-set-style "gnu") |
| 2389 | * End: |
| 2390 | */ |