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 | { |
Florin Coras | 679b78f | 2019-03-06 21:16:26 -0800 | [diff] [blame] | 175 | wnd &= ~((1 << tc->rcv_wscale) - 1); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 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 | */ |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 186 | static inline u32 |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 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) |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1055 | tc->snd_nxt -= 1; |
Florin Coras | c977e7c | 2018-10-16 20:30:31 -0700 | [diff] [blame] | 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) |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1062 | tc->snd_nxt += 1; |
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); |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1075 | /* Account for the FIN */ |
| 1076 | tc->snd_nxt += 1; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1077 | if (!fin_snt) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1078 | { |
| 1079 | tc->flags |= TCP_CONN_FINSNT; |
| 1080 | tc->flags &= ~TCP_CONN_FINPNDG; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1081 | tc->snd_una_max = seq_max (tc->snd_una_max, tc->snd_nxt); |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1082 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1083 | } |
| 1084 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1085 | /** |
Florin Coras | fd24744 | 2019-03-12 16:56:26 -0700 | [diff] [blame] | 1086 | * Push TCP header and update connection variables. Should only be called |
| 1087 | * for segments with data, not for 'control' packets. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1088 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1089 | always_inline void |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1090 | tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, u32 snd_nxt, |
| 1091 | u8 compute_opts, u8 maybe_burst, u8 update_snd_nxt) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1092 | { |
Florin Coras | fd24744 | 2019-03-12 16:56:26 -0700 | [diff] [blame] | 1093 | u8 tcp_hdr_opts_len, flags = TCP_FLAG_ACK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1094 | u32 advertise_wnd, data_len; |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1095 | tcp_main_t *tm = &tcp_main; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1096 | tcp_header_t *th; |
| 1097 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1098 | data_len = b->current_length; |
| 1099 | if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 1100 | data_len += b->total_length_not_including_first_buffer; |
| 1101 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1102 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1103 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1104 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1105 | if (compute_opts) |
| 1106 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1107 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1108 | tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1109 | |
| 1110 | if (maybe_burst) |
| 1111 | advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale; |
| 1112 | else |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1113 | advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1114 | |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1115 | if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING)) |
| 1116 | { |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1117 | if (seq_geq (tc->psh_seq, snd_nxt) |
| 1118 | && seq_lt (tc->psh_seq, snd_nxt + data_len)) |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1119 | flags |= TCP_FLAG_PSH; |
| 1120 | } |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1121 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, snd_nxt, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1122 | tc->rcv_nxt, tcp_hdr_opts_len, flags, |
| 1123 | advertise_wnd); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1124 | |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1125 | if (maybe_burst) |
| 1126 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 1127 | clib_memcpy_fast ((u8 *) (th + 1), |
| 1128 | tm->wrk_ctx[tc->c_thread_index].cached_opts, |
| 1129 | tc->snd_opts_len); |
Florin Coras | b26743d | 2018-06-26 09:31:04 -0700 | [diff] [blame] | 1130 | } |
| 1131 | else |
| 1132 | { |
| 1133 | u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts); |
| 1134 | ASSERT (len == tc->snd_opts_len); |
| 1135 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1136 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1137 | /* |
| 1138 | * Update connection variables |
| 1139 | */ |
| 1140 | |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1141 | if (update_snd_nxt) |
| 1142 | tc->snd_nxt += data_len; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1143 | tc->rcv_las = tc->rcv_nxt; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1144 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1145 | TCP_EVT_DBG (TCP_EVT_PKTIZE, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1146 | } |
| 1147 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1148 | u32 |
Florin Coras | 14ed6df | 2019-03-06 21:13:42 -0800 | [diff] [blame] | 1149 | tcp_session_push_header (transport_connection_t * tconn, vlib_buffer_t * b) |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1150 | { |
Florin Coras | 14ed6df | 2019-03-06 21:13:42 -0800 | [diff] [blame] | 1151 | tcp_connection_t *tc = (tcp_connection_t *) tconn; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1152 | tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0, /* burst */ 1, |
| 1153 | /* update_snd_nxt */ 1); |
| 1154 | tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max); |
Florin Coras | b11175d | 2018-11-09 14:34:08 -0800 | [diff] [blame] | 1155 | 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] | 1156 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
| 1157 | /* If not tracking an ACK, start tracking */ |
| 1158 | if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc)) |
| 1159 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1160 | tc->rtt_ts = tcp_time_now_us (tc->c_thread_index); |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1161 | tc->rtt_seq = tc->snd_nxt; |
| 1162 | } |
| 1163 | if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))) |
| 1164 | { |
| 1165 | tcp_retransmit_timer_set (tc); |
| 1166 | tc->rto_boff = 0; |
| 1167 | } |
| 1168 | tcp_trajectory_add_start (b, 3); |
| 1169 | return 0; |
| 1170 | } |
| 1171 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1172 | void |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1173 | tcp_send_ack (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1174 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1175 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 1176 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1177 | vlib_buffer_t *b; |
| 1178 | u32 bi; |
| 1179 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1180 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1181 | { |
| 1182 | tcp_update_rcv_wnd (tc); |
| 1183 | return; |
| 1184 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1185 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1186 | tcp_init_buffer (vm, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1187 | tcp_make_ack (tc, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1188 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1189 | } |
| 1190 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1191 | void |
| 1192 | tcp_program_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
| 1193 | { |
| 1194 | if (!(tc->flags & TCP_CONN_SNDACK)) |
| 1195 | { |
| 1196 | vec_add1 (wrk->pending_acks, tc->c_c_index); |
| 1197 | tc->flags |= TCP_CONN_SNDACK; |
| 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | void |
| 1202 | tcp_program_dupack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
| 1203 | { |
| 1204 | if (!(tc->flags & TCP_CONN_SNDACK)) |
| 1205 | { |
| 1206 | vec_add1 (wrk->pending_acks, tc->c_c_index); |
| 1207 | tc->flags |= TCP_CONN_SNDACK; |
| 1208 | } |
| 1209 | if (tc->pending_dupacks < 255) |
| 1210 | tc->pending_dupacks += 1; |
| 1211 | } |
| 1212 | |
| 1213 | void |
| 1214 | tcp_send_acks (tcp_worker_ctx_t * wrk) |
| 1215 | { |
| 1216 | u32 thread_index, *pending_acks; |
| 1217 | tcp_connection_t *tc; |
| 1218 | int i, j, n_acks; |
| 1219 | |
| 1220 | if (!vec_len (wrk->pending_acks)) |
| 1221 | return; |
| 1222 | |
| 1223 | thread_index = wrk->vm->thread_index; |
| 1224 | pending_acks = wrk->pending_acks; |
| 1225 | for (i = 0; i < vec_len (pending_acks); i++) |
| 1226 | { |
| 1227 | tc = tcp_connection_get (pending_acks[i], thread_index); |
| 1228 | tc->flags &= ~TCP_CONN_SNDACK; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1229 | if (!tc->pending_dupacks) |
| 1230 | { |
| 1231 | tcp_send_ack (tc); |
| 1232 | continue; |
| 1233 | } |
| 1234 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1235 | /* If we're supposed to send dupacks but have no ooo data |
| 1236 | * send only one ack */ |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1237 | if (!vec_len (tc->snd_sacks)) |
| 1238 | { |
| 1239 | tcp_send_ack (tc); |
| 1240 | continue; |
| 1241 | } |
| 1242 | |
| 1243 | /* Start with first sack block */ |
| 1244 | tc->snd_sack_pos = 0; |
| 1245 | |
| 1246 | /* Generate enough dupacks to cover all sack blocks. Do not generate |
| 1247 | * more sacks than the number of packets received. But do generate at |
| 1248 | * least 3, i.e., the number needed to signal congestion, if needed. */ |
| 1249 | n_acks = vec_len (tc->snd_sacks) / TCP_OPTS_MAX_SACK_BLOCKS; |
| 1250 | n_acks = clib_min (n_acks, tc->pending_dupacks); |
| 1251 | n_acks = clib_max (n_acks, clib_min (tc->pending_dupacks, 3)); |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1252 | for (j = 0; j < n_acks; j++) |
| 1253 | tcp_send_ack (tc); |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1254 | |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1255 | tc->pending_dupacks = 0; |
Florin Coras | e5b1791 | 2019-02-21 16:46:24 -0800 | [diff] [blame] | 1256 | tc->snd_sack_pos = 0; |
Florin Coras | 7ac053b | 2018-11-05 15:57:21 -0800 | [diff] [blame] | 1257 | } |
| 1258 | _vec_len (wrk->pending_acks) = 0; |
| 1259 | } |
| 1260 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1261 | /** |
| 1262 | * Delayed ack timer handler |
| 1263 | * |
| 1264 | * Sends delayed ACK when timer expires |
| 1265 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1266 | void |
| 1267 | tcp_timer_delack_handler (u32 index) |
| 1268 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1269 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1270 | tcp_connection_t *tc; |
| 1271 | |
| 1272 | tc = tcp_connection_get (index, thread_index); |
| 1273 | tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1274 | tcp_send_ack (tc); |
| 1275 | } |
| 1276 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1277 | /** |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1278 | * Allocate a new buffer and build a new tcp segment |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1279 | * |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1280 | * @param wrk tcp worker |
| 1281 | * @param tc connection for which the segment will be allocated |
| 1282 | * @param offset offset of the first byte in the tx fifo |
| 1283 | * @param max_deq_byte segment size |
| 1284 | * @param[out] b pointer to buffer allocated |
| 1285 | * |
| 1286 | * @return the number of bytes in the segment or 0 if buffer cannot be |
| 1287 | * allocated or no data available |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1288 | */ |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1289 | static int |
| 1290 | tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1291 | u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1292 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1293 | u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer; |
| 1294 | vlib_main_t *vm = wrk->vm; |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1295 | u32 bi, seg_size; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1296 | int n_bytes = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1297 | u8 *data; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1298 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1299 | seg_size = max_deq_bytes + TRANSPORT_MAX_HDRS_LEN; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1300 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1301 | /* |
| 1302 | * Prepare options |
| 1303 | */ |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1304 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1305 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1306 | /* |
| 1307 | * Allocate and fill in buffer(s) |
| 1308 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1309 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1310 | /* Easy case, buffer size greater than mss */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1311 | if (PREDICT_TRUE (seg_size <= bytes_per_buffer)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1312 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1313 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1314 | return 0; |
| 1315 | *b = vlib_get_buffer (vm, bi); |
| 1316 | data = tcp_init_buffer (vm, *b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1317 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1318 | max_deq_bytes); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1319 | ASSERT (n_bytes == max_deq_bytes); |
| 1320 | b[0]->current_length = n_bytes; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1321 | tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0, |
| 1322 | /* burst */ 0, /* update_snd_nxt */ 0); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1323 | } |
| 1324 | /* Split mss into multiple buffers */ |
| 1325 | else |
| 1326 | { |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1327 | u32 chain_bi = ~0, n_bufs_per_seg, n_bufs; |
| 1328 | u16 n_peeked, len_to_deq; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1329 | vlib_buffer_t *chain_b, *prev_b; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1330 | int i; |
| 1331 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1332 | /* Make sure we have enough buffers */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1333 | n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1334 | vec_validate_aligned (wrk->tx_buffers, n_bufs_per_seg - 1, |
| 1335 | CLIB_CACHE_LINE_BYTES); |
| 1336 | n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_per_seg); |
| 1337 | if (PREDICT_FALSE (n_bufs != n_bufs_per_seg)) |
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 (n_bufs) |
| 1340 | vlib_buffer_free (vm, wrk->tx_buffers, n_bufs); |
| 1341 | return 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1342 | } |
| 1343 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1344 | *b = vlib_get_buffer (vm, wrk->tx_buffers[--n_bufs]); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1345 | data = tcp_init_buffer (vm, *b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1346 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1347 | bytes_per_buffer - |
| 1348 | TRANSPORT_MAX_HDRS_LEN); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1349 | b[0]->current_length = n_bytes; |
| 1350 | b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID; |
| 1351 | b[0]->total_length_not_including_first_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1352 | max_deq_bytes -= n_bytes; |
| 1353 | |
| 1354 | chain_b = *b; |
| 1355 | for (i = 1; i < n_bufs_per_seg; i++) |
| 1356 | { |
| 1357 | prev_b = chain_b; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1358 | len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1359 | chain_bi = wrk->tx_buffers[--n_bufs]; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1360 | chain_b = vlib_get_buffer (vm, chain_bi); |
| 1361 | chain_b->current_data = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1362 | data = vlib_buffer_get_current (chain_b); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1363 | n_peeked = session_tx_fifo_peek_bytes (&tc->connection, data, |
| 1364 | offset + n_bytes, |
| 1365 | len_to_deq); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1366 | ASSERT (n_peeked == len_to_deq); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1367 | n_bytes += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1368 | chain_b->current_length = n_peeked; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1369 | chain_b->next_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1370 | |
| 1371 | /* update previous buffer */ |
| 1372 | prev_b->next_buffer = chain_bi; |
| 1373 | prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT; |
| 1374 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1375 | max_deq_bytes -= n_peeked; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1376 | b[0]->total_length_not_including_first_buffer += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1377 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1378 | |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1379 | tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0, |
| 1380 | /* burst */ 0, /* update_snd_nxt */ 0); |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1381 | |
| 1382 | if (PREDICT_FALSE (n_bufs)) |
| 1383 | { |
| 1384 | clib_warning ("not all buffers consumed"); |
| 1385 | vlib_buffer_free (vm, wrk->tx_buffers, n_bufs); |
| 1386 | } |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1389 | ASSERT (n_bytes > 0); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1390 | ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1391 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1392 | return n_bytes; |
| 1393 | } |
| 1394 | |
| 1395 | /** |
| 1396 | * Build a retransmit segment |
| 1397 | * |
| 1398 | * @return the number of bytes in the segment or 0 if there's nothing to |
| 1399 | * retransmit |
| 1400 | */ |
| 1401 | static u32 |
| 1402 | tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk, |
| 1403 | tcp_connection_t * tc, u32 offset, |
| 1404 | u32 max_deq_bytes, vlib_buffer_t ** b) |
| 1405 | { |
| 1406 | u32 start, available_bytes; |
| 1407 | int n_bytes = 0; |
| 1408 | |
| 1409 | ASSERT (tc->state >= TCP_STATE_ESTABLISHED); |
| 1410 | ASSERT (max_deq_bytes != 0); |
| 1411 | |
| 1412 | /* |
| 1413 | * Make sure we can retransmit something |
| 1414 | */ |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1415 | available_bytes = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1416 | ASSERT (available_bytes >= offset); |
| 1417 | available_bytes -= offset; |
| 1418 | if (!available_bytes) |
| 1419 | return 0; |
| 1420 | |
| 1421 | max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes); |
| 1422 | max_deq_bytes = clib_min (available_bytes, max_deq_bytes); |
| 1423 | |
| 1424 | /* Start is beyond snd_congestion */ |
| 1425 | start = tc->snd_una + offset; |
| 1426 | if (seq_geq (start, tc->snd_congestion)) |
| 1427 | goto done; |
| 1428 | |
| 1429 | /* Don't overshoot snd_congestion */ |
| 1430 | if (seq_gt (start + max_deq_bytes, tc->snd_congestion)) |
| 1431 | { |
| 1432 | max_deq_bytes = tc->snd_congestion - start; |
| 1433 | if (max_deq_bytes == 0) |
| 1434 | goto done; |
| 1435 | } |
| 1436 | |
| 1437 | n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b); |
| 1438 | if (!n_bytes) |
| 1439 | return 0; |
| 1440 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1441 | if (tcp_in_fastrecovery (tc)) |
| 1442 | tc->snd_rxt_bytes += n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1443 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1444 | done: |
| 1445 | TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1446 | return n_bytes; |
| 1447 | } |
| 1448 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1449 | /** |
| 1450 | * Reset congestion control, switch cwnd to loss window and try again. |
| 1451 | */ |
| 1452 | static void |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1453 | tcp_rxt_timeout_cc (tcp_connection_t * tc) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1454 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1455 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1456 | tc->prev_ssthresh = tc->ssthresh; |
| 1457 | tc->prev_cwnd = tc->cwnd; |
| 1458 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1459 | /* Cleanly recover cc (also clears up fast retransmit) */ |
| 1460 | if (tcp_in_fastrecovery (tc)) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1461 | { |
| 1462 | /* TODO be less aggressive about this */ |
| 1463 | scoreboard_clear (&tc->sack_sb); |
| 1464 | tcp_cc_fastrecovery_exit (tc); |
| 1465 | } |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1466 | else |
| 1467 | tc->rcv_dupacks = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1468 | |
| 1469 | /* Start again from the beginning */ |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1470 | tc->cc_algo->congestion (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1471 | tc->cwnd = tcp_loss_wnd (tc); |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1472 | tc->snd_congestion = tc->snd_nxt; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1473 | tc->rtt_ts = 0; |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1474 | tc->cwnd_acc_bytes = 0; |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1475 | tcp_connection_tx_pacer_reset (tc, tc->cwnd, 2 * tc->snd_mss); |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1476 | tcp_recovery_on (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1477 | } |
| 1478 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1479 | static inline void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1480 | tcp_timer_retransmit_handler_i (u32 index, u8 is_syn) |
| 1481 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1482 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1483 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
| 1484 | vlib_main_t *vm = wrk->vm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1485 | tcp_connection_t *tc; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1486 | vlib_buffer_t *b = 0; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1487 | u32 bi, n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1488 | |
| 1489 | if (is_syn) |
| 1490 | { |
| 1491 | tc = tcp_half_open_connection_get (index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1492 | /* Note: the connection may have transitioned to ESTABLISHED... */ |
Florin Coras | 311e11b | 2018-12-05 11:19:14 -0800 | [diff] [blame] | 1493 | if (PREDICT_FALSE (tc == 0 || tc->state != TCP_STATE_SYN_SENT)) |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1494 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1495 | tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1496 | } |
| 1497 | else |
| 1498 | { |
| 1499 | tc = tcp_connection_get (index, thread_index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1500 | /* Note: the connection may have been closed and pool_put */ |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1501 | if (PREDICT_FALSE (tc == 0 || tc->state == TCP_STATE_SYN_SENT)) |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1502 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1503 | tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1504 | /* Wait-close and retransmit could pop at the same time */ |
| 1505 | if (tc->state == TCP_STATE_CLOSED) |
| 1506 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1507 | } |
| 1508 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1509 | if (tc->state >= TCP_STATE_ESTABLISHED) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1510 | { |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1511 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1512 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1513 | /* Lost FIN, retransmit and return */ |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1514 | if (tc->flags & TCP_CONN_FINSNT) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1515 | { |
| 1516 | tcp_send_fin (tc); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1517 | tc->rto_boff += 1; |
| 1518 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1519 | return; |
| 1520 | } |
| 1521 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1522 | /* Shouldn't be here. This condition is tricky because it has to take |
| 1523 | * into account boff > 0 due to persist timeout. */ |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1524 | if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_nxt) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1525 | || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion) |
| 1526 | && !tcp_flight_size (tc))) |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1527 | { |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1528 | ASSERT (!tcp_in_recovery (tc)); |
| 1529 | tc->rto_boff = 0; |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1530 | return; |
| 1531 | } |
| 1532 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1533 | /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due |
| 1534 | * to persist timer timeout */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1535 | if (!tcp_in_recovery (tc) && tc->rto_boff > 0) |
| 1536 | { |
| 1537 | tc->rto_boff = 0; |
| 1538 | tcp_update_rto (tc); |
| 1539 | } |
| 1540 | |
| 1541 | /* Increment RTO backoff (also equal to number of retries) and go back |
| 1542 | * to first un-acked byte */ |
| 1543 | tc->rto_boff += 1; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1544 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1545 | /* First retransmit timeout */ |
| 1546 | if (tc->rto_boff == 1) |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1547 | tcp_rxt_timeout_cc (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1548 | else |
| 1549 | scoreboard_clear (&tc->sack_sb); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1550 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1551 | /* If we've sent beyond snd_congestion, update it */ |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1552 | tc->snd_congestion = seq_max (tc->snd_nxt, tc->snd_congestion); |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1553 | |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1554 | tc->snd_nxt = tc->snd_una; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1555 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1556 | |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1557 | /* Send one segment. Note that n_bytes may be zero due to buffer |
| 1558 | * shortfall */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1559 | 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] | 1560 | if (!n_bytes) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1561 | { |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1562 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1563 | return; |
| 1564 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1565 | |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1566 | bi = vlib_get_buffer_index (vm, b); |
| 1567 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1568 | /* For first retransmit, record timestamp (Eifel detection RFC3522) */ |
| 1569 | if (tc->rto_boff == 1) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1570 | 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] | 1571 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1572 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1573 | tcp_retransmit_timer_force_update (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1574 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1575 | /* Retransmit for SYN */ |
| 1576 | else if (tc->state == TCP_STATE_SYN_SENT) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1577 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1578 | /* Half-open connection actually moved to established but we were |
| 1579 | * waiting for syn retransmit to pop to call cleanup from the right |
| 1580 | * thread. */ |
| 1581 | if (tc->flags & TCP_CONN_HALF_OPEN_DONE) |
| 1582 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1583 | if (tcp_half_open_connection_cleanup (tc)) |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 1584 | TCP_DBG ("could not remove half-open connection"); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1585 | return; |
| 1586 | } |
| 1587 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1588 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1589 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1590 | /* Try without increasing RTO a number of times. If this fails, |
| 1591 | * start growing RTO exponentially */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1592 | tc->rto_boff += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1593 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1594 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1595 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1596 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, |
| 1597 | tc->rto * TCP_TO_TIMER_TICK); |
| 1598 | |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1599 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1600 | { |
| 1601 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, 1); |
| 1602 | return; |
| 1603 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1604 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1605 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1606 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1607 | tcp_make_syn (tc, b); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1608 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1609 | tc->rtt_ts = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1610 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0); |
| 1611 | |
| 1612 | /* This goes straight to ipx_lookup. Retransmit timer set already */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1613 | tcp_push_ip_hdr (wrk, tc, b); |
| 1614 | 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] | 1615 | } |
| 1616 | /* Retransmit SYN-ACK */ |
| 1617 | else if (tc->state == TCP_STATE_SYN_RCVD) |
| 1618 | { |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1619 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
| 1620 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1621 | tc->rto_boff += 1; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1622 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1623 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1624 | tc->rtt_ts = 0; |
| 1625 | |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1626 | tcp_retransmit_timer_force_update (tc); |
| 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 | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1629 | { |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1630 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1631 | return; |
| 1632 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1633 | |
| 1634 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1635 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1636 | tcp_make_synack (tc, b); |
| 1637 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1); |
| 1638 | |
| 1639 | /* Retransmit timer already updated, just enqueue to output */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1640 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1641 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1642 | else |
| 1643 | { |
| 1644 | ASSERT (tc->state == TCP_STATE_CLOSED); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1645 | return; |
| 1646 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | void |
| 1650 | tcp_timer_retransmit_handler (u32 index) |
| 1651 | { |
| 1652 | tcp_timer_retransmit_handler_i (index, 0); |
| 1653 | } |
| 1654 | |
| 1655 | void |
| 1656 | tcp_timer_retransmit_syn_handler (u32 index) |
| 1657 | { |
| 1658 | tcp_timer_retransmit_handler_i (index, 1); |
| 1659 | } |
| 1660 | |
| 1661 | /** |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1662 | * Got 0 snd_wnd from peer, try to do something about it. |
| 1663 | * |
| 1664 | */ |
| 1665 | void |
| 1666 | tcp_timer_persist_handler (u32 index) |
| 1667 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1668 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1669 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
| 1670 | u32 bi, max_snd_bytes, available_bytes, offset; |
| 1671 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 1672 | vlib_main_t *vm = wrk->vm; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1673 | tcp_connection_t *tc; |
| 1674 | vlib_buffer_t *b; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1675 | int n_bytes = 0; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1676 | u8 *data; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1677 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1678 | tc = tcp_connection_get_if_valid (index, thread_index); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1679 | if (!tc) |
| 1680 | return; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1681 | |
| 1682 | /* Make sure timer handle is set to invalid */ |
| 1683 | tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID; |
| 1684 | |
| 1685 | /* Problem already solved or worse */ |
Florin Coras | 7e74bf3 | 2019-03-06 16:51:58 -0800 | [diff] [blame] | 1686 | if (tc->state == TCP_STATE_CLOSED || tc->snd_wnd > tc->snd_mss |
| 1687 | || (tc->flags & TCP_CONN_FINSNT)) |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1688 | return; |
| 1689 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1690 | available_bytes = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1691 | offset = tc->snd_nxt - tc->snd_una; |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 1692 | |
| 1693 | /* Reprogram persist if no new bytes available to send. We may have data |
| 1694 | * next time */ |
| 1695 | if (!available_bytes) |
| 1696 | { |
| 1697 | tcp_persist_timer_set (tc); |
| 1698 | return; |
| 1699 | } |
| 1700 | |
| 1701 | if (available_bytes <= offset) |
| 1702 | { |
| 1703 | ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)); |
| 1704 | return; |
| 1705 | } |
| 1706 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1707 | /* Increment RTO backoff */ |
| 1708 | tc->rto_boff += 1; |
| 1709 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1710 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1711 | /* |
| 1712 | * Try to force the first unsent segment (or buffer) |
| 1713 | */ |
Florin Coras | bdf7fd6 | 2019-01-31 17:31:01 -0800 | [diff] [blame] | 1714 | if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1))) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1715 | { |
| 1716 | tcp_persist_timer_set (tc); |
| 1717 | return; |
| 1718 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1719 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1720 | data = tcp_init_buffer (vm, b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1721 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1722 | tcp_validate_txf_size (tc, offset); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1723 | 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] | 1724 | max_snd_bytes = clib_min (tc->snd_mss, |
| 1725 | tm->bytes_per_buffer - TRANSPORT_MAX_HDRS_LEN); |
| 1726 | n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset, |
| 1727 | max_snd_bytes); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1728 | b->current_length = n_bytes; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1729 | ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT) |
| 1730 | || tc->snd_nxt == tc->snd_una_max |
| 1731 | || tc->rto_boff > 1)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1732 | |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1733 | tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0, |
| 1734 | /* burst */ 0, /* update_snd_nxt */ 1); |
| 1735 | tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 1736 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1737 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1738 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1739 | /* Just sent new data, enable retransmit */ |
| 1740 | tcp_retransmit_timer_update (tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | /** |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1744 | * Retransmit first unacked segment |
| 1745 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1746 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1747 | 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] | 1748 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1749 | vlib_main_t *vm = wrk->vm; |
| 1750 | vlib_buffer_t *b; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1751 | u32 bi, n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1752 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1753 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1754 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1755 | 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] | 1756 | if (!n_bytes) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1757 | return -1; |
| 1758 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1759 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1760 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1761 | |
| 1762 | return 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1763 | } |
| 1764 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1765 | static int |
| 1766 | tcp_fast_retransmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1767 | u32 burst_size) |
| 1768 | { |
| 1769 | u32 offset, n_segs = 0, n_written, bi; |
| 1770 | vlib_main_t *vm = wrk->vm; |
| 1771 | vlib_buffer_t *b = 0; |
| 1772 | |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1773 | offset = tc->snd_nxt - tc->snd_una; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1774 | while (n_segs < burst_size) |
| 1775 | { |
| 1776 | n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b); |
| 1777 | if (!n_written) |
| 1778 | goto done; |
| 1779 | |
| 1780 | bi = vlib_get_buffer_index (vm, b); |
| 1781 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
| 1782 | offset += n_written; |
| 1783 | n_segs += 1; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1784 | |
| 1785 | tc->snd_nxt += n_written; |
| 1786 | tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1787 | } |
| 1788 | |
| 1789 | done: |
| 1790 | return n_segs; |
| 1791 | } |
| 1792 | |
| 1793 | #define scoreboard_rescue_rxt_valid(_sb, _tc) \ |
| 1794 | (seq_geq (_sb->rescue_rxt, _tc->snd_una) \ |
| 1795 | && seq_leq (_sb->rescue_rxt, _tc->snd_congestion)) |
| 1796 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1797 | /** |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1798 | * Do fast retransmit with SACKs |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1799 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1800 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1801 | tcp_fast_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1802 | u32 burst_size) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1803 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1804 | 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] | 1805 | sack_scoreboard_hole_t *hole; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1806 | vlib_main_t *vm = wrk->vm; |
| 1807 | vlib_buffer_t *b = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1808 | sack_scoreboard_t *sb; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1809 | u32 bi, max_deq; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1810 | int snd_space; |
| 1811 | u8 snd_limited = 0, can_rescue = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1812 | |
| 1813 | ASSERT (tcp_in_fastrecovery (tc)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1814 | |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1815 | snd_space = tcp_available_cc_snd_space (tc); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1816 | if (snd_space < tc->snd_mss) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1817 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1818 | tcp_program_fastretransmit (wrk, tc); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1819 | return 0; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1820 | } |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1821 | |
| 1822 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1823 | sb = &tc->sack_sb; |
| 1824 | hole = scoreboard_get_hole (sb, sb->cur_rxt_hole); |
| 1825 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1826 | max_deq = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1827 | max_deq -= tc->snd_nxt - tc->snd_una; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1828 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1829 | while (snd_space > 0 && n_segs < burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1830 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1831 | hole = scoreboard_next_rxt_hole (sb, hole, max_deq, &can_rescue, |
| 1832 | &snd_limited); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1833 | if (!hole) |
| 1834 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1835 | if (max_deq) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1836 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1837 | snd_space = clib_min (max_deq, snd_space); |
| 1838 | burst_size = clib_min (burst_size - n_segs, |
| 1839 | snd_space / tc->snd_mss); |
| 1840 | n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size); |
| 1841 | if (max_deq > n_segs_now * tc->snd_mss) |
| 1842 | tcp_program_fastretransmit (wrk, tc); |
| 1843 | n_segs += n_segs_now; |
| 1844 | goto done; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1845 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1846 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1847 | if (!can_rescue || scoreboard_rescue_rxt_valid (sb, tc)) |
| 1848 | break; |
| 1849 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1850 | /* If rescue rxt undefined or less than snd_una then one segment of |
| 1851 | * up to SMSS octets that MUST include the highest outstanding |
| 1852 | * unSACKed sequence number SHOULD be returned, and RescueRxt set to |
| 1853 | * RecoveryPoint. HighRxt MUST NOT be updated. |
| 1854 | */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1855 | max_bytes = clib_min (tc->snd_mss, |
| 1856 | tc->snd_congestion - tc->snd_una); |
| 1857 | max_bytes = clib_min (max_bytes, snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1858 | offset = tc->snd_congestion - tc->snd_una - max_bytes; |
| 1859 | sb->rescue_rxt = tc->snd_congestion; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1860 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, |
| 1861 | max_bytes, &b); |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1862 | if (!n_written) |
| 1863 | goto done; |
| 1864 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1865 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1866 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1867 | n_segs += 1; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1868 | break; |
| 1869 | } |
| 1870 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1871 | max_bytes = clib_min (hole->end - sb->high_rxt, snd_space); |
| 1872 | max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes; |
| 1873 | if (max_bytes == 0) |
| 1874 | break; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1875 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1876 | offset = sb->high_rxt - tc->snd_una; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1877 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes, |
| 1878 | &b); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1879 | ASSERT (n_written <= snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1880 | |
| 1881 | /* Nothing left to retransmit */ |
| 1882 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1883 | break; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1884 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1885 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1886 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1887 | |
| 1888 | sb->high_rxt += n_written; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1889 | snd_space -= n_written; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1890 | n_segs += 1; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1891 | } |
| 1892 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1893 | if (hole) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1894 | tcp_program_fastretransmit (wrk, tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1895 | |
Florin Coras | 24793e3 | 2018-05-09 11:34:25 -0700 | [diff] [blame] | 1896 | done: |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1897 | return n_segs; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1898 | } |
| 1899 | |
| 1900 | /** |
| 1901 | * Fast retransmit without SACK info |
| 1902 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1903 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1904 | tcp_fast_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1905 | u32 burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1906 | { |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1907 | u32 n_written = 0, offset = 0, bi, max_deq, n_segs_now; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1908 | vlib_main_t *vm = wrk->vm; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1909 | int snd_space, n_segs = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1910 | vlib_buffer_t *b; |
| 1911 | |
| 1912 | ASSERT (tcp_in_fastrecovery (tc)); |
| 1913 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1914 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1915 | if (!tcp_fastrecovery_first (tc)) |
| 1916 | goto send_unsent; |
| 1917 | |
| 1918 | /* RFC 6582: [If a partial ack], retransmit the first unacknowledged |
| 1919 | * segment. */ |
| 1920 | snd_space = tc->sack_sb.last_bytes_delivered; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1921 | while (snd_space > 0 && n_segs < burst_size) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1922 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1923 | n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, |
| 1924 | tc->snd_mss, &b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1925 | |
| 1926 | /* Nothing left to retransmit */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1927 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1928 | break; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1929 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1930 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1931 | tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1932 | snd_space -= n_written; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1933 | offset += n_written; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1934 | n_segs += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1935 | } |
| 1936 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1937 | if (n_segs == burst_size) |
| 1938 | goto done; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1939 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1940 | send_unsent: |
| 1941 | |
| 1942 | /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */ |
| 1943 | snd_space = tcp_available_cc_snd_space (tc); |
Florin Coras | 9ece3c0 | 2018-11-05 11:06:53 -0800 | [diff] [blame] | 1944 | if (snd_space < tc->snd_mss || tc->snd_mss == 0) |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1945 | goto done; |
| 1946 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1947 | max_deq = transport_max_tx_dequeue (&tc->connection); |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame^] | 1948 | max_deq -= tc->snd_nxt - tc->snd_una; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1949 | if (max_deq) |
| 1950 | { |
| 1951 | snd_space = clib_min (max_deq, snd_space); |
| 1952 | burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss); |
| 1953 | n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size); |
| 1954 | if (max_deq > n_segs_now * tc->snd_mss) |
| 1955 | tcp_program_fastretransmit (wrk, tc); |
| 1956 | n_segs += n_segs_now; |
| 1957 | } |
| 1958 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1959 | done: |
| 1960 | tcp_fastrecovery_first_off (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1961 | return n_segs; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1962 | } |
| 1963 | |
| 1964 | /** |
| 1965 | * Do fast retransmit |
| 1966 | */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1967 | int |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1968 | tcp_fast_retransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, |
| 1969 | u32 burst_size) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1970 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1971 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1972 | return tcp_fast_retransmit_sack (wrk, tc, burst_size); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1973 | else |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1974 | return tcp_fast_retransmit_no_sack (wrk, tc, burst_size); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1975 | } |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 1976 | #endif /* CLIB_MARCH_VARIANT */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1977 | |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 1978 | static void |
| 1979 | 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] | 1980 | u16 * next0, u32 * error0) |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 1981 | { |
| 1982 | ip_adjacency_t *adj; |
| 1983 | adj_index_t ai; |
| 1984 | |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 1985 | /* Not thread safe but as long as the connection exists the adj should |
| 1986 | * not be removed */ |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 1987 | ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip, |
| 1988 | tc0->sw_if_index); |
| 1989 | if (ai == ADJ_INDEX_INVALID) |
| 1990 | { |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 1991 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0; |
| 1992 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 1993 | *error0 = TCP_ERROR_LINK_LOCAL_RW; |
| 1994 | return; |
| 1995 | } |
| 1996 | |
| 1997 | adj = adj_get (ai); |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 1998 | if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE)) |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 1999 | *next0 = TCP_OUTPUT_NEXT_IP_REWRITE; |
| 2000 | else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP) |
| 2001 | *next0 = TCP_OUTPUT_NEXT_IP_ARP; |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 2002 | else |
| 2003 | { |
| 2004 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 2005 | *error0 = TCP_ERROR_LINK_LOCAL_RW; |
| 2006 | } |
| 2007 | vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai; |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2008 | } |
| 2009 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2010 | static void |
| 2011 | tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2012 | u32 * to_next, u32 n_bufs) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2013 | { |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2014 | u32 n_trace = vlib_get_trace_count (vm, node); |
| 2015 | tcp_connection_t *tc; |
| 2016 | tcp_tx_trace_t *t; |
| 2017 | vlib_buffer_t *b; |
| 2018 | tcp_header_t *th; |
| 2019 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2020 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2021 | for (i = 0; i < clib_min (n_trace, n_bufs); i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2022 | { |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2023 | b = vlib_get_buffer (vm, to_next[i]); |
| 2024 | th = vlib_buffer_get_current (b); |
| 2025 | tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index, |
| 2026 | vm->thread_index); |
| 2027 | t = vlib_add_trace (vm, node, b, sizeof (*t)); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2028 | clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header)); |
| 2029 | clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection)); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2030 | } |
| 2031 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2032 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 2033 | always_inline void |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2034 | tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0, |
| 2035 | tcp_connection_t * tc0, u8 is_ip4) |
| 2036 | { |
| 2037 | tcp_header_t *th0 = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2038 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2039 | th0 = vlib_buffer_get_current (b0); |
| 2040 | TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length); |
| 2041 | if (is_ip4) |
| 2042 | { |
| 2043 | vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4, |
| 2044 | IP_PROTOCOL_TCP, 1); |
| 2045 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
| 2046 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data; |
| 2047 | th0->checksum = 0; |
| 2048 | } |
| 2049 | else |
| 2050 | { |
| 2051 | ip6_header_t *ih0; |
| 2052 | ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6, |
| 2053 | &tc0->c_rmt_ip6, IP_PROTOCOL_TCP); |
| 2054 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
| 2055 | vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data; |
| 2056 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data; |
| 2057 | th0->checksum = 0; |
| 2058 | } |
| 2059 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2060 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 2061 | always_inline void |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2062 | tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0, |
| 2063 | u32 * error0, u16 * next0, u8 is_ip4) |
| 2064 | { |
Florin Coras | 81a13db | 2018-03-16 08:48:31 -0700 | [diff] [blame] | 2065 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2066 | if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED)) |
| 2067 | { |
| 2068 | *error0 = TCP_ERROR_INVALID_CONNECTION; |
| 2069 | *next0 = TCP_OUTPUT_NEXT_DROP; |
| 2070 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2071 | } |
| 2072 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2073 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index; |
| 2074 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0; |
| 2075 | |
| 2076 | if (!is_ip4) |
| 2077 | { |
| 2078 | if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6))) |
| 2079 | tcp_output_handle_link_local (tc0, b0, next0, error0); |
| 2080 | } |
| 2081 | |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2082 | if (!TCP_ALWAYS_ACK) |
| 2083 | tcp_timer_reset (tc0, TCP_TIMER_DELACK); |
| 2084 | } |
| 2085 | |
| 2086 | always_inline uword |
| 2087 | tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2088 | vlib_frame_t * frame, int is_ip4) |
| 2089 | { |
| 2090 | u32 n_left_from, *from, thread_index = vm->thread_index; |
| 2091 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 2092 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 2093 | |
| 2094 | from = vlib_frame_vector_args (frame); |
| 2095 | n_left_from = frame->n_vectors; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2096 | tcp_set_time_now (tcp_get_worker (thread_index)); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2097 | |
| 2098 | if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE)) |
| 2099 | tcp46_output_trace_frame (vm, node, from, n_left_from); |
| 2100 | |
| 2101 | vlib_get_buffers (vm, from, bufs, n_left_from); |
| 2102 | b = bufs; |
| 2103 | next = nexts; |
| 2104 | |
| 2105 | while (n_left_from >= 4) |
| 2106 | { |
| 2107 | u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT; |
| 2108 | tcp_connection_t *tc0, *tc1; |
| 2109 | |
| 2110 | { |
| 2111 | vlib_prefetch_buffer_header (b[2], STORE); |
| 2112 | CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
| 2113 | |
| 2114 | vlib_prefetch_buffer_header (b[3], STORE); |
| 2115 | CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
| 2116 | } |
| 2117 | |
| 2118 | next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP; |
| 2119 | |
| 2120 | tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index, |
| 2121 | thread_index); |
| 2122 | tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index, |
| 2123 | thread_index); |
| 2124 | |
| 2125 | tcp_output_push_ip (vm, b[0], tc0, is_ip4); |
| 2126 | tcp_output_push_ip (vm, b[1], tc1, is_ip4); |
| 2127 | |
| 2128 | tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4); |
| 2129 | tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4); |
| 2130 | |
| 2131 | b += 2; |
| 2132 | next += 2; |
| 2133 | n_left_from -= 2; |
| 2134 | } |
| 2135 | while (n_left_from > 0) |
| 2136 | { |
| 2137 | u32 error0 = TCP_ERROR_PKTS_SENT; |
| 2138 | tcp_connection_t *tc0; |
| 2139 | |
| 2140 | if (n_left_from > 1) |
| 2141 | { |
Florin Coras | 91ca462 | 2018-06-30 11:27:59 -0700 | [diff] [blame] | 2142 | vlib_prefetch_buffer_header (b[1], STORE); |
| 2143 | CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2144 | } |
| 2145 | |
| 2146 | next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP; |
| 2147 | tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index, |
| 2148 | thread_index); |
| 2149 | |
| 2150 | tcp_output_push_ip (vm, b[0], tc0, is_ip4); |
| 2151 | tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4); |
| 2152 | |
| 2153 | b += 1; |
| 2154 | next += 1; |
| 2155 | n_left_from -= 1; |
| 2156 | } |
| 2157 | |
| 2158 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
| 2159 | return frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2160 | } |
| 2161 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2162 | VLIB_NODE_FN (tcp4_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2163 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2164 | { |
| 2165 | return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2166 | } |
| 2167 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2168 | VLIB_NODE_FN (tcp6_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2169 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2170 | { |
| 2171 | return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2172 | } |
| 2173 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2174 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2175 | VLIB_REGISTER_NODE (tcp4_output_node) = |
| 2176 | { |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2177 | .name = "tcp4-output", |
| 2178 | /* Takes a vector of packets. */ |
| 2179 | .vector_size = sizeof (u32), |
| 2180 | .n_errors = TCP_N_ERROR, |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 2181 | .protocol_hint = VLIB_NODE_PROTO_HINT_TCP, |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2182 | .error_strings = tcp_error_strings, |
| 2183 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 2184 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2185 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 2186 | foreach_tcp4_output_next |
| 2187 | #undef _ |
Dave Barach | f970d2f | 2018-11-26 18:34:33 -0500 | [diff] [blame] | 2188 | }, |
| 2189 | .format_buffer = format_tcp_header, |
| 2190 | .format_trace = format_tcp_tx_trace, |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2191 | }; |
| 2192 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2193 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2194 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2195 | VLIB_REGISTER_NODE (tcp6_output_node) = |
| 2196 | { |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2197 | .name = "tcp6-output", |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2198 | /* Takes a vector of packets. */ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2199 | .vector_size = sizeof (u32), |
| 2200 | .n_errors = TCP_N_ERROR, |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 2201 | .protocol_hint = VLIB_NODE_PROTO_HINT_TCP, |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2202 | .error_strings = tcp_error_strings, |
| 2203 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 2204 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2205 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 2206 | foreach_tcp6_output_next |
| 2207 | #undef _ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2208 | }, |
| 2209 | .format_buffer = format_tcp_header, |
| 2210 | .format_trace = format_tcp_tx_trace, |
| 2211 | }; |
| 2212 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2213 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2214 | typedef enum _tcp_reset_next |
| 2215 | { |
| 2216 | TCP_RESET_NEXT_DROP, |
| 2217 | TCP_RESET_NEXT_IP_LOOKUP, |
| 2218 | TCP_RESET_N_NEXT |
| 2219 | } tcp_reset_next_t; |
| 2220 | |
| 2221 | #define foreach_tcp4_reset_next \ |
| 2222 | _(DROP, "error-drop") \ |
| 2223 | _(IP_LOOKUP, "ip4-lookup") |
| 2224 | |
| 2225 | #define foreach_tcp6_reset_next \ |
| 2226 | _(DROP, "error-drop") \ |
| 2227 | _(IP_LOOKUP, "ip6-lookup") |
| 2228 | |
| 2229 | static uword |
| 2230 | tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2231 | vlib_frame_t * from_frame, u8 is_ip4) |
| 2232 | { |
| 2233 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2234 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2235 | |
| 2236 | from = vlib_frame_vector_args (from_frame); |
| 2237 | n_left_from = from_frame->n_vectors; |
| 2238 | |
| 2239 | next_index = node->cached_next_index; |
| 2240 | |
| 2241 | while (n_left_from > 0) |
| 2242 | { |
| 2243 | u32 n_left_to_next; |
| 2244 | |
| 2245 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2246 | |
| 2247 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2248 | { |
| 2249 | u32 bi0; |
| 2250 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2251 | tcp_tx_trace_t *t0; |
| 2252 | tcp_header_t *th0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2253 | u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2254 | |
| 2255 | bi0 = from[0]; |
| 2256 | to_next[0] = bi0; |
| 2257 | from += 1; |
| 2258 | to_next += 1; |
| 2259 | n_left_from -= 1; |
| 2260 | n_left_to_next -= 1; |
| 2261 | |
| 2262 | b0 = vlib_get_buffer (vm, bi0); |
| 2263 | |
| 2264 | if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags, |
| 2265 | my_thread_index, is_ip4)) |
| 2266 | { |
| 2267 | error0 = TCP_ERROR_LOOKUP_DROPS; |
| 2268 | next0 = TCP_RESET_NEXT_DROP; |
| 2269 | goto done; |
| 2270 | } |
| 2271 | |
| 2272 | /* Prepare to send to IP lookup */ |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 2273 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2274 | next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2275 | |
| 2276 | done: |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2277 | b0->error = node->errors[error0]; |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2278 | b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2279 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2280 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2281 | th0 = vlib_buffer_get_current (b0); |
| 2282 | if (is_ip4) |
| 2283 | th0 = ip4_next_header ((ip4_header_t *) th0); |
| 2284 | else |
| 2285 | th0 = ip6_next_header ((ip6_header_t *) th0); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2286 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2287 | clib_memcpy_fast (&t0->tcp_header, th0, |
| 2288 | sizeof (t0->tcp_header)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2292 | n_left_to_next, bi0, next0); |
| 2293 | } |
| 2294 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2295 | } |
| 2296 | return from_frame->n_vectors; |
| 2297 | } |
| 2298 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2299 | VLIB_NODE_FN (tcp4_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2300 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2301 | { |
| 2302 | return tcp46_send_reset_inline (vm, node, from_frame, 1); |
| 2303 | } |
| 2304 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 2305 | VLIB_NODE_FN (tcp6_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2306 | vlib_frame_t * from_frame) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2307 | { |
| 2308 | return tcp46_send_reset_inline (vm, node, from_frame, 0); |
| 2309 | } |
| 2310 | |
| 2311 | /* *INDENT-OFF* */ |
| 2312 | VLIB_REGISTER_NODE (tcp4_reset_node) = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2313 | .name = "tcp4-reset", |
| 2314 | .vector_size = sizeof (u32), |
| 2315 | .n_errors = TCP_N_ERROR, |
| 2316 | .error_strings = tcp_error_strings, |
| 2317 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2318 | .next_nodes = { |
| 2319 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2320 | foreach_tcp4_reset_next |
| 2321 | #undef _ |
| 2322 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2323 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2324 | }; |
| 2325 | /* *INDENT-ON* */ |
| 2326 | |
| 2327 | /* *INDENT-OFF* */ |
| 2328 | VLIB_REGISTER_NODE (tcp6_reset_node) = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2329 | .name = "tcp6-reset", |
| 2330 | .vector_size = sizeof (u32), |
| 2331 | .n_errors = TCP_N_ERROR, |
| 2332 | .error_strings = tcp_error_strings, |
| 2333 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2334 | .next_nodes = { |
| 2335 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2336 | foreach_tcp6_reset_next |
| 2337 | #undef _ |
| 2338 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2339 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2340 | }; |
| 2341 | /* *INDENT-ON* */ |
| 2342 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2343 | /* |
| 2344 | * fd.io coding-style-patch-verification: ON |
| 2345 | * |
| 2346 | * Local Variables: |
| 2347 | * eval: (c-set-style "gnu") |
| 2348 | * End: |
| 2349 | */ |