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