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: |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 392 | clib_warning ("State not handled! %d", state); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 466 | |
| 467 | TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (thread_index); |
| 468 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 469 | if (PREDICT_FALSE (vec_len (tm->tx_buffers[thread_index]) == 0)) |
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 | if (tcp_alloc_tx_buffers (tm, thread_index, VLIB_FRAME_SIZE)) |
| 472 | return -1; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 473 | } |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 474 | my_tx_buffers = tm->tx_buffers[thread_index]; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 475 | *bidx = my_tx_buffers[vec_len (my_tx_buffers) - 1]; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 476 | _vec_len (my_tx_buffers) -= 1; |
| 477 | return 0; |
| 478 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 479 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 480 | always_inline void |
| 481 | tcp_return_buffer (tcp_main_t * tm) |
| 482 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 483 | _vec_len (tm->tx_buffers[vlib_get_thread_index ()]) += 1; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 484 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 485 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 486 | always_inline void * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 487 | tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b) |
| 488 | { |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 489 | if (b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 490 | vlib_buffer_free_one (vm, b->next_buffer); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 491 | /* Zero all flags but free list index and trace flag */ |
| 492 | b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 493 | b->current_data = 0; |
| 494 | b->current_length = 0; |
| 495 | b->total_length_not_including_first_buffer = 0; |
| 496 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 497 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 498 | /* Leave enough space for headers */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 499 | return vlib_buffer_make_headroom (b, MAX_HDRS_LEN); |
| 500 | } |
| 501 | |
| 502 | always_inline void * |
| 503 | tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b) |
| 504 | { |
| 505 | ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0); |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 506 | b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 507 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 508 | b->total_length_not_including_first_buffer = 0; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 509 | vnet_buffer (b)->tcp.flags = 0; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 510 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 511 | /* Leave enough space for headers */ |
| 512 | return vlib_buffer_make_headroom (b, MAX_HDRS_LEN); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | /** |
| 516 | * Prepare ACK |
| 517 | */ |
| 518 | void |
| 519 | tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state, |
| 520 | u8 flags) |
| 521 | { |
| 522 | tcp_options_t _snd_opts, *snd_opts = &_snd_opts; |
| 523 | u8 tcp_opts_len, tcp_hdr_opts_len; |
| 524 | tcp_header_t *th; |
| 525 | u16 wnd; |
| 526 | |
| 527 | wnd = tcp_window_to_advertise (tc, state); |
| 528 | |
| 529 | /* Make and write options */ |
| 530 | tcp_opts_len = tcp_make_established_options (tc, snd_opts); |
| 531 | tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t); |
| 532 | |
| 533 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 534 | tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd); |
| 535 | |
| 536 | tcp_options_write ((u8 *) (th + 1), snd_opts); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 537 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
| 538 | } |
| 539 | |
| 540 | /** |
| 541 | * Convert buffer to ACK |
| 542 | */ |
| 543 | void |
| 544 | tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b) |
| 545 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 546 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 547 | |
| 548 | tcp_reuse_buffer (vm, b); |
| 549 | tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 550 | TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 551 | vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK; |
| 552 | tc->rcv_las = tc->rcv_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | /** |
| 556 | * Convert buffer to FIN-ACK |
| 557 | */ |
| 558 | void |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 559 | tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 560 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 561 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 562 | u8 flags = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 563 | |
| 564 | tcp_reuse_buffer (vm, b); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 565 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 566 | flags = TCP_FLAG_FIN | TCP_FLAG_ACK; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 567 | tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 568 | |
| 569 | /* Reset flags, make sure ack is sent */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 570 | vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 571 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 572 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 573 | /** |
| 574 | * Convert buffer to SYN |
| 575 | */ |
| 576 | void |
| 577 | tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b) |
| 578 | { |
| 579 | u8 tcp_hdr_opts_len, tcp_opts_len; |
| 580 | tcp_header_t *th; |
| 581 | u16 initial_wnd; |
| 582 | tcp_options_t snd_opts; |
| 583 | |
| 584 | initial_wnd = tcp_initial_window_to_advertise (tc); |
| 585 | |
| 586 | /* Make and write options */ |
| 587 | memset (&snd_opts, 0, sizeof (snd_opts)); |
| 588 | tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale); |
| 589 | tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t); |
| 590 | |
| 591 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss, |
| 592 | tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN, |
| 593 | initial_wnd); |
| 594 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
| 595 | tcp_options_write ((u8 *) (th + 1), &snd_opts); |
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, |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 633 | u8 is_ip4, u32 fib_index, 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 | |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 643 | vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index; |
| 644 | vnet_buffer (b)->sw_if_index[VLIB_RX] = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 645 | |
| 646 | /* Send to IP lookup */ |
| 647 | next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 648 | tcp_trajectory_add_start (b, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 649 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 650 | f = tm->ip_lookup_tx_frames[!is_ip4][thread_index]; |
| 651 | if (!f) |
| 652 | { |
| 653 | f = vlib_get_frame_to_node (vm, next_index); |
| 654 | ASSERT (f); |
| 655 | tm->ip_lookup_tx_frames[!is_ip4][thread_index] = f; |
| 656 | } |
| 657 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 658 | to_next = vlib_frame_vector_args (f); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 659 | to_next[f->n_vectors] = bi; |
| 660 | f->n_vectors += 1; |
| 661 | if (flush || f->n_vectors == VLIB_FRAME_SIZE) |
| 662 | { |
| 663 | vlib_put_frame_to_node (vm, next_index, f); |
| 664 | tm->ip_lookup_tx_frames[!is_ip4][thread_index] = 0; |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | always_inline void |
| 669 | tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 670 | u8 is_ip4, u32 fib_index) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 671 | { |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 672 | tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 1); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | always_inline void |
| 676 | tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 677 | u8 is_ip4, u32 fib_index) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 678 | { |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 679 | tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 680 | } |
| 681 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 682 | always_inline void |
| 683 | tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, |
| 684 | u8 is_ip4, u8 flush) |
| 685 | { |
| 686 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 687 | u32 thread_index = vlib_get_thread_index (); |
| 688 | u32 *to_next, next_index; |
| 689 | vlib_frame_t *f; |
| 690 | |
| 691 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 692 | b->error = 0; |
| 693 | |
| 694 | /* Decide where to send the packet */ |
| 695 | next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index; |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 696 | tcp_trajectory_add_start (b, 2); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 697 | |
| 698 | /* Get frame to v4/6 output node */ |
| 699 | f = tm->tx_frames[!is_ip4][thread_index]; |
| 700 | if (!f) |
| 701 | { |
| 702 | f = vlib_get_frame_to_node (vm, next_index); |
| 703 | ASSERT (f); |
| 704 | tm->tx_frames[!is_ip4][thread_index] = f; |
| 705 | } |
| 706 | to_next = vlib_frame_vector_args (f); |
| 707 | to_next[f->n_vectors] = bi; |
| 708 | f->n_vectors += 1; |
| 709 | if (flush || f->n_vectors == VLIB_FRAME_SIZE) |
| 710 | { |
| 711 | vlib_put_frame_to_node (vm, next_index, f); |
| 712 | tm->tx_frames[!is_ip4][thread_index] = 0; |
| 713 | } |
| 714 | } |
| 715 | |
| 716 | always_inline void |
| 717 | tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4) |
| 718 | { |
| 719 | tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0); |
| 720 | } |
| 721 | |
| 722 | always_inline void |
| 723 | tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, |
| 724 | u8 is_ip4) |
| 725 | { |
| 726 | tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1); |
| 727 | } |
| 728 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 729 | int |
| 730 | 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] | 731 | tcp_state_t state, u8 thread_index, u8 is_ip4) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 732 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 733 | ip4_header_t *ih4; |
| 734 | ip6_header_t *ih6; |
| 735 | tcp_header_t *th0; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 736 | ip4_address_t src_ip40, dst_ip40; |
| 737 | ip6_address_t src_ip60, dst_ip60; |
| 738 | u16 src_port, dst_port; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 739 | u32 tmp; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 740 | u32 seq, ack; |
| 741 | u8 flags; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 742 | |
| 743 | /* Find IP and TCP headers */ |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 744 | th0 = tcp_buffer_hdr (b0); |
| 745 | |
| 746 | /* Save src and dst ip */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 747 | if (is_ip4) |
| 748 | { |
| 749 | ih4 = vlib_buffer_get_current (b0); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 750 | ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40); |
| 751 | src_ip40.as_u32 = ih4->src_address.as_u32; |
| 752 | dst_ip40.as_u32 = ih4->dst_address.as_u32; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 753 | } |
| 754 | else |
| 755 | { |
| 756 | ih6 = vlib_buffer_get_current (b0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 757 | ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60); |
| 758 | clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t)); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 759 | clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 760 | } |
| 761 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 762 | src_port = th0->src_port; |
| 763 | dst_port = th0->dst_port; |
| 764 | |
| 765 | /* Try to determine what/why we're actually resetting */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 766 | if (state == TCP_STATE_CLOSED) |
| 767 | { |
| 768 | if (!tcp_syn (th0)) |
| 769 | return -1; |
| 770 | |
| 771 | tmp = clib_net_to_host_u32 (th0->seq_number); |
| 772 | |
| 773 | /* Got a SYN for no listener. */ |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 774 | flags = TCP_FLAG_RST | TCP_FLAG_ACK; |
| 775 | ack = clib_host_to_net_u32 (tmp + 1); |
| 776 | seq = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 777 | } |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 778 | else |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 779 | { |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 780 | flags = TCP_FLAG_RST; |
| 781 | seq = th0->ack_number; |
| 782 | ack = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 783 | } |
| 784 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 785 | tcp_reuse_buffer (vm, b0); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 786 | tcp_trajectory_add_start (b0, 4); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 787 | th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack, |
| 788 | sizeof (tcp_header_t), flags, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 789 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 790 | if (is_ip4) |
| 791 | { |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 792 | ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 793 | IP_PROTOCOL_TCP, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 794 | th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4); |
| 795 | } |
| 796 | else |
| 797 | { |
| 798 | int bogus = ~0; |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 799 | ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60, |
| 800 | IP_PROTOCOL_TCP); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 801 | th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus); |
| 802 | ASSERT (!bogus); |
| 803 | } |
| 804 | |
| 805 | return 0; |
| 806 | } |
| 807 | |
| 808 | /** |
| 809 | * Send reset without reusing existing buffer |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 810 | * |
| 811 | * It extracts connection info out of original packet |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 812 | */ |
| 813 | void |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 814 | 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] | 815 | { |
| 816 | vlib_buffer_t *b; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 817 | u32 bi, sw_if_index, fib_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 818 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 819 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 820 | u8 tcp_hdr_len, flags = 0; |
| 821 | tcp_header_t *th, *pkt_th; |
| 822 | u32 seq, ack; |
| 823 | ip4_header_t *ih4, *pkt_ih4; |
| 824 | ip6_header_t *ih6, *pkt_ih6; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 825 | fib_protocol_t fib_proto; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 826 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 827 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 828 | return; |
| 829 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 830 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 831 | sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX]; |
| 832 | fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 833 | fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 834 | tcp_init_buffer (vm, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 835 | |
| 836 | /* Make and write options */ |
| 837 | tcp_hdr_len = sizeof (tcp_header_t); |
| 838 | |
| 839 | if (is_ip4) |
| 840 | { |
| 841 | pkt_ih4 = vlib_buffer_get_current (pkt); |
| 842 | pkt_th = ip4_next_header (pkt_ih4); |
| 843 | } |
| 844 | else |
| 845 | { |
| 846 | pkt_ih6 = vlib_buffer_get_current (pkt); |
| 847 | pkt_th = ip6_next_header (pkt_ih6); |
| 848 | } |
| 849 | |
| 850 | if (tcp_ack (pkt_th)) |
| 851 | { |
| 852 | flags = TCP_FLAG_RST; |
| 853 | seq = pkt_th->ack_number; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 854 | ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 855 | } |
| 856 | else |
| 857 | { |
| 858 | flags = TCP_FLAG_RST | TCP_FLAG_ACK; |
| 859 | seq = 0; |
| 860 | ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end); |
| 861 | } |
| 862 | |
| 863 | th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port, |
| 864 | seq, ack, tcp_hdr_len, flags, 0); |
| 865 | |
| 866 | /* Swap src and dst ip */ |
| 867 | if (is_ip4) |
| 868 | { |
| 869 | ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40); |
| 870 | ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 871 | &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 872 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4); |
| 873 | } |
| 874 | else |
| 875 | { |
| 876 | int bogus = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 877 | ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) == |
| 878 | 0x60); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 879 | ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address, |
| 880 | &pkt_ih6->src_address, IP_PROTOCOL_TCP); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 881 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus); |
| 882 | ASSERT (!bogus); |
| 883 | } |
| 884 | |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 885 | tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4, fib_index); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 886 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 887 | } |
| 888 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 889 | /** |
| 890 | * Build and set reset packet for connection |
| 891 | */ |
| 892 | void |
| 893 | tcp_send_reset (tcp_connection_t * tc) |
| 894 | { |
| 895 | vlib_main_t *vm = vlib_get_main (); |
| 896 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 897 | vlib_buffer_t *b; |
| 898 | u32 bi; |
| 899 | tcp_header_t *th; |
| 900 | u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len; |
| 901 | u8 flags; |
| 902 | |
| 903 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 904 | return; |
| 905 | b = vlib_get_buffer (vm, bi); |
| 906 | tcp_init_buffer (vm, b); |
| 907 | |
| 908 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 909 | tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t); |
| 910 | advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED); |
| 911 | flags = TCP_FLAG_RST; |
| 912 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 913 | tc->rcv_nxt, tcp_hdr_opts_len, flags, |
| 914 | advertise_wnd); |
| 915 | opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts); |
| 916 | ASSERT (opts_write_len == tc->snd_opts_len); |
| 917 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 918 | if (tc->c_is_ip4) |
| 919 | { |
| 920 | ip4_header_t *ih4; |
| 921 | ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4, |
| 922 | &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0); |
| 923 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4); |
| 924 | } |
| 925 | else |
| 926 | { |
| 927 | int bogus = ~0; |
| 928 | ip6_header_t *ih6; |
| 929 | ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6, |
| 930 | &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP); |
| 931 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus); |
| 932 | ASSERT (!bogus); |
| 933 | } |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 934 | tcp_enqueue_to_ip_lookup_now (vm, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 935 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 936 | } |
| 937 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 938 | void |
| 939 | tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b) |
| 940 | { |
| 941 | tcp_header_t *th = vlib_buffer_get_current (b); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 942 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 943 | if (tc->c_is_ip4) |
| 944 | { |
| 945 | ip4_header_t *ih; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 946 | ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 947 | &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 948 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 949 | } |
| 950 | else |
| 951 | { |
| 952 | ip6_header_t *ih; |
| 953 | int bogus = ~0; |
| 954 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 955 | ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 956 | &tc->c_rmt_ip6, IP_PROTOCOL_TCP); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 957 | th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 958 | ASSERT (!bogus); |
| 959 | } |
| 960 | } |
| 961 | |
| 962 | /** |
| 963 | * Send SYN |
| 964 | * |
| 965 | * Builds a SYN packet for a half-open connection and sends it to ipx_lookup. |
| 966 | * The packet is not forwarded through tcpx_output to avoid doing lookups |
| 967 | * in the half_open pool. |
| 968 | */ |
| 969 | void |
| 970 | tcp_send_syn (tcp_connection_t * tc) |
| 971 | { |
| 972 | vlib_buffer_t *b; |
| 973 | u32 bi; |
| 974 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 975 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 976 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 977 | /* |
| 978 | * Setup retransmit and establish timers before requesting buffer |
| 979 | * such that we can return if we've ran out. |
| 980 | */ |
| 981 | tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME); |
| 982 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, |
| 983 | tc->rto * TCP_TO_TIMER_TICK); |
| 984 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 985 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 986 | return; |
| 987 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 988 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 989 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 990 | tcp_make_syn (tc, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 991 | |
| 992 | /* Measure RTT with this */ |
| 993 | tc->rtt_ts = tcp_time_now (); |
| 994 | tc->rtt_seq = tc->snd_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 995 | tc->rto_boff = 0; |
| 996 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 997 | tcp_push_ip_hdr (tm, tc, b); |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 998 | tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 999 | TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1000 | } |
| 1001 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1002 | /** |
| 1003 | * Flush tx frame populated by retransmits and timer pops |
| 1004 | */ |
| 1005 | void |
| 1006 | tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4) |
| 1007 | { |
| 1008 | if (tcp_main.tx_frames[!is_ip4][thread_index]) |
| 1009 | { |
| 1010 | u32 next_index; |
| 1011 | next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index; |
| 1012 | vlib_put_frame_to_node (vm, next_index, |
| 1013 | tcp_main.tx_frames[!is_ip4][thread_index]); |
| 1014 | tcp_main.tx_frames[!is_ip4][thread_index] = 0; |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | /** |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1019 | * Flush ip lookup tx frames populated by timer pops |
| 1020 | */ |
| 1021 | always_inline void |
| 1022 | tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4) |
| 1023 | { |
| 1024 | if (tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index]) |
| 1025 | { |
| 1026 | u32 next_index; |
| 1027 | next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index; |
| 1028 | vlib_put_frame_to_node (vm, next_index, |
| 1029 | tcp_main.ip_lookup_tx_frames[!is_ip4] |
| 1030 | [thread_index]); |
| 1031 | tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index] = 0; |
| 1032 | } |
| 1033 | } |
| 1034 | |
| 1035 | /** |
| 1036 | * 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] | 1037 | */ |
| 1038 | void |
| 1039 | tcp_flush_frames_to_output (u8 thread_index) |
| 1040 | { |
| 1041 | vlib_main_t *vm = vlib_get_main (); |
| 1042 | tcp_flush_frame_to_output (vm, thread_index, 1); |
| 1043 | tcp_flush_frame_to_output (vm, thread_index, 0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1044 | tcp_flush_frame_to_ip_lookup (vm, thread_index, 1); |
| 1045 | tcp_flush_frame_to_ip_lookup (vm, thread_index, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | /** |
| 1049 | * Send FIN |
| 1050 | */ |
| 1051 | void |
| 1052 | tcp_send_fin (tcp_connection_t * tc) |
| 1053 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1054 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1055 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1056 | vlib_buffer_t *b; |
| 1057 | u32 bi; |
| 1058 | u8 fin_snt = 0; |
| 1059 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1060 | tcp_retransmit_timer_force_update (tc); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1061 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 1062 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1063 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1064 | fin_snt = tc->flags & TCP_CONN_FINSNT; |
| 1065 | if (fin_snt) |
| 1066 | tc->snd_nxt = tc->snd_una; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1067 | tcp_make_fin (tc, b); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1068 | tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1069 | if (!fin_snt) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1070 | { |
| 1071 | tc->flags |= TCP_CONN_FINSNT; |
| 1072 | tc->flags &= ~TCP_CONN_FINPNDG; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1073 | /* Account for the FIN */ |
| 1074 | tc->snd_una_max += 1; |
| 1075 | tc->snd_nxt = tc->snd_una_max; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1076 | } |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1077 | else |
| 1078 | { |
| 1079 | tc->snd_nxt = tc->snd_una_max; |
| 1080 | } |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1081 | TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | always_inline u8 |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1085 | 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] | 1086 | { |
| 1087 | switch (next_state) |
| 1088 | { |
| 1089 | case TCP_STATE_ESTABLISHED: |
| 1090 | return TCP_FLAG_ACK; |
| 1091 | case TCP_STATE_SYN_RCVD: |
| 1092 | return TCP_FLAG_SYN | TCP_FLAG_ACK; |
| 1093 | case TCP_STATE_SYN_SENT: |
| 1094 | return TCP_FLAG_SYN; |
| 1095 | case TCP_STATE_LAST_ACK: |
| 1096 | case TCP_STATE_FIN_WAIT_1: |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1097 | if (tc->snd_nxt + 1 < tc->snd_una_max) |
| 1098 | return TCP_FLAG_ACK; |
| 1099 | else |
| 1100 | return TCP_FLAG_FIN; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1101 | default: |
| 1102 | clib_warning ("Shouldn't be here!"); |
| 1103 | } |
| 1104 | return 0; |
| 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * Push TCP header and update connection variables |
| 1109 | */ |
| 1110 | static void |
| 1111 | tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1112 | tcp_state_t next_state, u8 compute_opts) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1113 | { |
| 1114 | u32 advertise_wnd, data_len; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1115 | u8 tcp_hdr_opts_len, opts_write_len, flags; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1116 | tcp_header_t *th; |
| 1117 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 1118 | data_len = b->current_length + b->total_length_not_including_first_buffer; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1119 | ASSERT (!b->total_length_not_including_first_buffer |
| 1120 | || (b->flags & VLIB_BUFFER_NEXT_PRESENT)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1121 | vnet_buffer (b)->tcp.flags = 0; |
| 1122 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1123 | if (compute_opts) |
| 1124 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1125 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1126 | tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1127 | advertise_wnd = tcp_window_to_advertise (tc, next_state); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1128 | flags = tcp_make_state_flags (tc, next_state); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1129 | |
| 1130 | /* Push header and options */ |
| 1131 | th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt, |
| 1132 | tc->rcv_nxt, tcp_hdr_opts_len, flags, |
| 1133 | advertise_wnd); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1134 | opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1135 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1136 | ASSERT (opts_write_len == tc->snd_opts_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1137 | vnet_buffer (b)->tcp.connection_index = tc->c_c_index; |
| 1138 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1139 | /* |
| 1140 | * Update connection variables |
| 1141 | */ |
| 1142 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1143 | tc->snd_nxt += data_len; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1144 | tc->rcv_las = tc->rcv_nxt; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1145 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1146 | /* TODO this is updated in output as well ... */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1147 | if (seq_gt (tc->snd_nxt, tc->snd_una_max)) |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1148 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1149 | tc->snd_una_max = tc->snd_nxt; |
| 1150 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1151 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1152 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1153 | TCP_EVT_DBG (TCP_EVT_PKTIZE, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1154 | } |
| 1155 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1156 | void |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1157 | tcp_send_ack (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1158 | { |
| 1159 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1160 | vlib_main_t *vm = vlib_get_main (); |
| 1161 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1162 | vlib_buffer_t *b; |
| 1163 | u32 bi; |
| 1164 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1165 | /* Get buffer */ |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1166 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 1167 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1168 | b = vlib_get_buffer (vm, bi); |
| 1169 | |
| 1170 | /* Fill in the ACK */ |
| 1171 | tcp_make_ack (tc, b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1172 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
| 1173 | } |
| 1174 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1175 | /** |
| 1176 | * Delayed ack timer handler |
| 1177 | * |
| 1178 | * Sends delayed ACK when timer expires |
| 1179 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1180 | void |
| 1181 | tcp_timer_delack_handler (u32 index) |
| 1182 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1183 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1184 | tcp_connection_t *tc; |
| 1185 | |
| 1186 | tc = tcp_connection_get (index, thread_index); |
| 1187 | tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1188 | tcp_send_ack (tc); |
| 1189 | } |
| 1190 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1191 | /** |
| 1192 | * Build a retransmit segment |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1193 | * |
| 1194 | * @return the number of bytes in the segment or 0 if there's nothing to |
| 1195 | * retransmit |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1196 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1197 | u32 |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1198 | tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset, |
| 1199 | u32 max_deq_bytes, vlib_buffer_t ** b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1200 | { |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1201 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1202 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1203 | int n_bytes = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1204 | u32 start, bi, available_bytes, seg_size; |
| 1205 | u8 *data; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1206 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1207 | ASSERT (tc->state >= TCP_STATE_ESTABLISHED); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1208 | ASSERT (max_deq_bytes != 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1209 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1210 | /* |
| 1211 | * Make sure we can retransmit something |
| 1212 | */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1213 | available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1214 | ASSERT (available_bytes >= offset); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1215 | available_bytes -= offset; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1216 | if (!available_bytes) |
| 1217 | return 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1218 | max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1219 | max_deq_bytes = clib_min (available_bytes, max_deq_bytes); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1220 | |
| 1221 | /* Start is beyond snd_congestion */ |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1222 | start = tc->snd_una + offset; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1223 | if (seq_geq (start, tc->snd_congestion)) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1224 | goto done; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1225 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1226 | /* Don't overshoot snd_congestion */ |
| 1227 | if (seq_gt (start + max_deq_bytes, tc->snd_congestion)) |
| 1228 | { |
| 1229 | max_deq_bytes = tc->snd_congestion - start; |
| 1230 | if (max_deq_bytes == 0) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1231 | goto done; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1234 | seg_size = max_deq_bytes + MAX_HDRS_LEN; |
| 1235 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1236 | /* |
| 1237 | * Prepare options |
| 1238 | */ |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1239 | tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state); |
| 1240 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1241 | /* |
| 1242 | * Allocate and fill in buffer(s) |
| 1243 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1244 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1245 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 1246 | return 0; |
| 1247 | *b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1248 | data = tcp_init_buffer (vm, *b); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1249 | |
| 1250 | /* Easy case, buffer size greater than mss */ |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1251 | if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1252 | { |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1253 | n_bytes = stream_session_peek_bytes (&tc->connection, data, offset, |
| 1254 | max_deq_bytes); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1255 | ASSERT (n_bytes == max_deq_bytes); |
| 1256 | b[0]->current_length = n_bytes; |
| 1257 | tcp_push_hdr_i (tc, *b, tc->state, 0); |
| 1258 | } |
| 1259 | /* Split mss into multiple buffers */ |
| 1260 | else |
| 1261 | { |
| 1262 | u32 chain_bi = ~0, n_bufs_per_seg; |
| 1263 | u32 thread_index = vlib_get_thread_index (); |
| 1264 | u16 n_peeked, len_to_deq, available_bufs; |
| 1265 | vlib_buffer_t *chain_b, *prev_b; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1266 | int i; |
| 1267 | |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1268 | n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1269 | |
| 1270 | /* Make sure we have enough buffers */ |
| 1271 | available_bufs = vec_len (tm->tx_buffers[thread_index]); |
| 1272 | if (n_bufs_per_seg > available_bufs) |
| 1273 | { |
| 1274 | if (tcp_alloc_tx_buffers (tm, thread_index, |
| 1275 | VLIB_FRAME_SIZE - available_bufs)) |
| 1276 | { |
| 1277 | tcp_return_buffer (tm); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1278 | *b = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1279 | return 0; |
| 1280 | } |
| 1281 | } |
| 1282 | |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1283 | n_bytes = stream_session_peek_bytes (&tc->connection, data, offset, |
| 1284 | tm->bytes_per_buffer - |
| 1285 | MAX_HDRS_LEN); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1286 | b[0]->current_length = n_bytes; |
| 1287 | b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID; |
| 1288 | b[0]->total_length_not_including_first_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1289 | max_deq_bytes -= n_bytes; |
| 1290 | |
| 1291 | chain_b = *b; |
| 1292 | for (i = 1; i < n_bufs_per_seg; i++) |
| 1293 | { |
| 1294 | prev_b = chain_b; |
| 1295 | len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer); |
| 1296 | tcp_get_free_buffer_index (tm, &chain_bi); |
| 1297 | ASSERT (chain_bi != (u32) ~ 0); |
| 1298 | chain_b = vlib_get_buffer (vm, chain_bi); |
| 1299 | chain_b->current_data = 0; |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1300 | data = vlib_buffer_get_current (chain_b); |
| 1301 | n_peeked = stream_session_peek_bytes (&tc->connection, data, |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1302 | offset + n_bytes, len_to_deq); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1303 | ASSERT (n_peeked == len_to_deq); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1304 | n_bytes += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1305 | chain_b->current_length = n_peeked; |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 1306 | chain_b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1307 | chain_b->next_buffer = 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1308 | |
| 1309 | /* update previous buffer */ |
| 1310 | prev_b->next_buffer = chain_bi; |
| 1311 | prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT; |
| 1312 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1313 | max_deq_bytes -= n_peeked; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1314 | b[0]->total_length_not_including_first_buffer += n_peeked; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1315 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1316 | |
| 1317 | tcp_push_hdr_i (tc, *b, tc->state, 0); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1318 | } |
| 1319 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1320 | ASSERT (n_bytes > 0); |
Florin Coras | e87216f | 2017-08-17 16:59:22 -0700 | [diff] [blame] | 1321 | ASSERT (((*b)->current_data + (*b)->current_length) <= |
| 1322 | tm->bytes_per_buffer); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1323 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1324 | if (tcp_in_fastrecovery (tc)) |
| 1325 | tc->snd_rxt_bytes += n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1326 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1327 | done: |
| 1328 | TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1329 | return n_bytes; |
| 1330 | } |
| 1331 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1332 | /** |
| 1333 | * Reset congestion control, switch cwnd to loss window and try again. |
| 1334 | */ |
| 1335 | static void |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1336 | tcp_rtx_timeout_cc (tcp_connection_t * tc) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1337 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1338 | tc->prev_ssthresh = tc->ssthresh; |
| 1339 | tc->prev_cwnd = tc->cwnd; |
| 1340 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1341 | /* Cleanly recover cc (also clears up fast retransmit) */ |
| 1342 | if (tcp_in_fastrecovery (tc)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1343 | tcp_cc_fastrecovery_exit (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1344 | |
| 1345 | /* Start again from the beginning */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1346 | 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] | 1347 | tc->cwnd = tcp_loss_wnd (tc); |
| 1348 | tc->snd_congestion = tc->snd_una_max; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1349 | tc->rtt_ts = 0; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1350 | tcp_recovery_on (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1353 | static void |
| 1354 | tcp_timer_retransmit_handler_i (u32 index, u8 is_syn) |
| 1355 | { |
| 1356 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1357 | vlib_main_t *vm = vlib_get_main (); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1358 | u32 thread_index = vlib_get_thread_index (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1359 | tcp_connection_t *tc; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1360 | vlib_buffer_t *b = 0; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1361 | u32 bi, n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1362 | |
| 1363 | if (is_syn) |
| 1364 | { |
| 1365 | tc = tcp_half_open_connection_get (index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1366 | /* Note: the connection may have transitioned to ESTABLISHED... */ |
| 1367 | if (PREDICT_FALSE (tc == 0)) |
| 1368 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1369 | tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1370 | } |
| 1371 | else |
| 1372 | { |
| 1373 | tc = tcp_connection_get (index, thread_index); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1374 | /* Note: the connection may have been closed and pool_put */ |
| 1375 | if (PREDICT_FALSE (tc == 0)) |
| 1376 | return; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1377 | tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1378 | } |
| 1379 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1380 | if (tc->state >= TCP_STATE_ESTABLISHED) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1381 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1382 | /* Lost FIN, retransmit and return */ |
Florin Coras | 93e6580 | 2017-11-29 00:07:11 -0500 | [diff] [blame] | 1383 | if (tcp_is_lost_fin (tc)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1384 | { |
| 1385 | tcp_send_fin (tc); |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1386 | tc->rto_boff += 1; |
| 1387 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1388 | return; |
| 1389 | } |
| 1390 | |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 1391 | /* Shouldn't be here */ |
| 1392 | if (tc->snd_una == tc->snd_una_max) |
| 1393 | { |
| 1394 | tcp_recovery_off (tc); |
| 1395 | return; |
| 1396 | } |
| 1397 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1398 | /* We're not in recovery so make sure rto_boff is 0 */ |
| 1399 | if (!tcp_in_recovery (tc) && tc->rto_boff > 0) |
| 1400 | { |
| 1401 | tc->rto_boff = 0; |
| 1402 | tcp_update_rto (tc); |
| 1403 | } |
| 1404 | |
| 1405 | /* Increment RTO backoff (also equal to number of retries) and go back |
| 1406 | * to first un-acked byte */ |
| 1407 | tc->rto_boff += 1; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1408 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1409 | /* First retransmit timeout */ |
| 1410 | if (tc->rto_boff == 1) |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1411 | tcp_rtx_timeout_cc (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1412 | |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1413 | tc->snd_nxt = tc->snd_una; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1414 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1415 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1416 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1); |
| 1417 | |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1418 | /* 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] | 1419 | n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b); |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1420 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1421 | /* TODO be less aggressive about this */ |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1422 | scoreboard_clear (&tc->sack_sb); |
| 1423 | |
| 1424 | if (n_bytes == 0) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1425 | { |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1426 | tcp_retransmit_timer_set (tc); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1427 | return; |
| 1428 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1429 | |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1430 | bi = vlib_get_buffer_index (vm, b); |
| 1431 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1432 | /* For first retransmit, record timestamp (Eifel detection RFC3522) */ |
| 1433 | if (tc->rto_boff == 1) |
| 1434 | tc->snd_rxt_ts = tcp_time_now (); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1435 | |
| 1436 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
| 1437 | tcp_retransmit_timer_update (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1438 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1439 | /* Retransmit for SYN */ |
| 1440 | else if (tc->state == TCP_STATE_SYN_SENT) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1441 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1442 | /* Half-open connection actually moved to established but we were |
| 1443 | * waiting for syn retransmit to pop to call cleanup from the right |
| 1444 | * thread. */ |
| 1445 | if (tc->flags & TCP_CONN_HALF_OPEN_DONE) |
| 1446 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 1447 | if (tcp_half_open_connection_cleanup (tc)) |
| 1448 | { |
| 1449 | clib_warning ("could not remove half-open connection"); |
| 1450 | ASSERT (0); |
| 1451 | } |
| 1452 | return; |
| 1453 | } |
| 1454 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1455 | /* Try without increasing RTO a number of times. If this fails, |
| 1456 | * start growing RTO exponentially */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1457 | tc->rto_boff += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1458 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1459 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1460 | |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1461 | tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, |
| 1462 | tc->rto * TCP_TO_TIMER_TICK); |
| 1463 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1464 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1465 | return; |
| 1466 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1467 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1468 | tcp_init_buffer (vm, b); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1469 | tcp_make_syn (tc, b); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1470 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1471 | tc->rtt_ts = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1472 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0); |
| 1473 | |
| 1474 | /* This goes straight to ipx_lookup. Retransmit timer set already */ |
| 1475 | tcp_push_ip_hdr (tm, tc, b); |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 1476 | tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1477 | } |
| 1478 | /* Retransmit SYN-ACK */ |
| 1479 | else if (tc->state == TCP_STATE_SYN_RCVD) |
| 1480 | { |
| 1481 | tc->rto_boff += 1; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1482 | if (tc->rto_boff > TCP_RTO_SYN_RETRIES) |
| 1483 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1484 | tc->rtt_ts = 0; |
| 1485 | |
| 1486 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 1487 | { |
| 1488 | tcp_retransmit_timer_force_update (tc); |
| 1489 | return; |
| 1490 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1491 | |
| 1492 | b = vlib_get_buffer (vm, bi); |
| 1493 | tcp_make_synack (tc, b); |
| 1494 | TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1); |
| 1495 | |
| 1496 | /* Retransmit timer already updated, just enqueue to output */ |
| 1497 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1498 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1499 | else |
| 1500 | { |
| 1501 | ASSERT (tc->state == TCP_STATE_CLOSED); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1502 | return; |
| 1503 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1504 | } |
| 1505 | |
| 1506 | void |
| 1507 | tcp_timer_retransmit_handler (u32 index) |
| 1508 | { |
| 1509 | tcp_timer_retransmit_handler_i (index, 0); |
| 1510 | } |
| 1511 | |
| 1512 | void |
| 1513 | tcp_timer_retransmit_syn_handler (u32 index) |
| 1514 | { |
| 1515 | tcp_timer_retransmit_handler_i (index, 1); |
| 1516 | } |
| 1517 | |
| 1518 | /** |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1519 | * Got 0 snd_wnd from peer, try to do something about it. |
| 1520 | * |
| 1521 | */ |
| 1522 | void |
| 1523 | tcp_timer_persist_handler (u32 index) |
| 1524 | { |
| 1525 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 1526 | vlib_main_t *vm = vlib_get_main (); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1527 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1528 | tcp_connection_t *tc; |
| 1529 | vlib_buffer_t *b; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1530 | u32 bi, max_snd_bytes, available_bytes, offset; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1531 | int n_bytes = 0; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1532 | u8 *data; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1533 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1534 | tc = tcp_connection_get_if_valid (index, thread_index); |
| 1535 | |
| 1536 | if (!tc) |
| 1537 | return; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1538 | |
| 1539 | /* Make sure timer handle is set to invalid */ |
| 1540 | tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID; |
| 1541 | |
| 1542 | /* Problem already solved or worse */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1543 | if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 1544 | || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc)) |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1545 | return; |
| 1546 | |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 1547 | available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection); |
| 1548 | offset = tc->snd_una_max - tc->snd_una; |
| 1549 | |
| 1550 | /* Reprogram persist if no new bytes available to send. We may have data |
| 1551 | * next time */ |
| 1552 | if (!available_bytes) |
| 1553 | { |
| 1554 | tcp_persist_timer_set (tc); |
| 1555 | return; |
| 1556 | } |
| 1557 | |
| 1558 | if (available_bytes <= offset) |
| 1559 | { |
| 1560 | ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)); |
| 1561 | return; |
| 1562 | } |
| 1563 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1564 | /* Increment RTO backoff */ |
| 1565 | tc->rto_boff += 1; |
| 1566 | tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX); |
| 1567 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1568 | /* |
| 1569 | * Try to force the first unsent segment (or buffer) |
| 1570 | */ |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1571 | if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi))) |
| 1572 | return; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1573 | b = vlib_get_buffer (vm, bi); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1574 | data = tcp_init_buffer (vm, b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1575 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1576 | tcp_validate_txf_size (tc, offset); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1577 | 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] | 1578 | max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN); |
| 1579 | n_bytes = stream_session_peek_bytes (&tc->connection, data, offset, |
| 1580 | max_snd_bytes); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1581 | b->current_length = n_bytes; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1582 | ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT) |
| 1583 | || tc->snd_nxt == tc->snd_una_max |
| 1584 | || tc->rto_boff > 1)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1585 | |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1586 | tcp_push_hdr_i (tc, b, tc->state, 0); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1587 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
| 1588 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1589 | /* Just sent new data, enable retransmit */ |
| 1590 | tcp_retransmit_timer_update (tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | /** |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1594 | * Retransmit first unacked segment |
| 1595 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1596 | void |
| 1597 | tcp_retransmit_first_unacked (tcp_connection_t * tc) |
| 1598 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1599 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1600 | vlib_buffer_t *b; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1601 | u32 bi, old_snd_nxt, n_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1602 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1603 | old_snd_nxt = tc->snd_nxt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1604 | tc->snd_nxt = tc->snd_una; |
| 1605 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1606 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1607 | n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b); |
| 1608 | if (!n_bytes) |
| 1609 | return; |
| 1610 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1611 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
Florin Coras | 5921f98 | 2017-04-03 18:00:00 -0700 | [diff] [blame] | 1612 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1613 | tc->snd_nxt = old_snd_nxt; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | /** |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1617 | * Do fast retransmit with SACKs |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1618 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1619 | void |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1620 | tcp_fast_retransmit_sack (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1621 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1622 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1623 | u32 n_written = 0, offset, max_bytes; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1624 | vlib_buffer_t *b = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1625 | sack_scoreboard_hole_t *hole; |
| 1626 | sack_scoreboard_t *sb; |
| 1627 | u32 bi, old_snd_nxt; |
| 1628 | int snd_space; |
| 1629 | u8 snd_limited = 0, can_rescue = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1630 | |
| 1631 | ASSERT (tcp_in_fastrecovery (tc)); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1632 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1633 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1634 | old_snd_nxt = tc->snd_nxt; |
| 1635 | sb = &tc->sack_sb; |
| 1636 | snd_space = tcp_available_snd_space (tc); |
| 1637 | |
| 1638 | hole = scoreboard_get_hole (sb, sb->cur_rxt_hole); |
| 1639 | while (hole && snd_space > 0) |
| 1640 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1641 | hole = scoreboard_next_rxt_hole (sb, hole, |
| 1642 | tcp_fastrecovery_sent_1_smss (tc), |
| 1643 | &can_rescue, &snd_limited); |
| 1644 | if (!hole) |
| 1645 | { |
| 1646 | if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una) |
| 1647 | || seq_gt (sb->rescue_rxt, |
| 1648 | tc->snd_congestion))) |
| 1649 | break; |
| 1650 | |
| 1651 | /* If rescue rxt undefined or less than snd_una then one segment of |
| 1652 | * up to SMSS octets that MUST include the highest outstanding |
| 1653 | * unSACKed sequence number SHOULD be returned, and RescueRxt set to |
| 1654 | * RecoveryPoint. HighRxt MUST NOT be updated. |
| 1655 | */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1656 | max_bytes = clib_min (tc->snd_mss, |
| 1657 | tc->snd_congestion - tc->snd_una); |
| 1658 | max_bytes = clib_min (max_bytes, snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1659 | offset = tc->snd_congestion - tc->snd_una - max_bytes; |
| 1660 | sb->rescue_rxt = tc->snd_congestion; |
| 1661 | tc->snd_nxt = tc->snd_una + offset; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1662 | n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, |
| 1663 | &b); |
| 1664 | ASSERT (n_written); |
| 1665 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1666 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
| 1667 | break; |
| 1668 | } |
| 1669 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1670 | max_bytes = clib_min (hole->end - sb->high_rxt, snd_space); |
| 1671 | max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes; |
| 1672 | if (max_bytes == 0) |
| 1673 | break; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1674 | offset = sb->high_rxt - tc->snd_una; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1675 | tc->snd_nxt = sb->high_rxt; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1676 | n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1677 | |
| 1678 | /* Nothing left to retransmit */ |
| 1679 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1680 | break; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1681 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1682 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1683 | sb->high_rxt += n_written; |
| 1684 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1685 | ASSERT (n_written <= snd_space); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1686 | snd_space -= n_written; |
| 1687 | } |
| 1688 | |
| 1689 | /* If window allows, send 1 SMSS of new data */ |
| 1690 | tc->snd_nxt = old_snd_nxt; |
| 1691 | } |
| 1692 | |
| 1693 | /** |
| 1694 | * Fast retransmit without SACK info |
| 1695 | */ |
| 1696 | void |
| 1697 | tcp_fast_retransmit_no_sack (tcp_connection_t * tc) |
| 1698 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1699 | vlib_main_t *vm = vlib_get_main (); |
| 1700 | u32 n_written = 0, offset = 0, bi, old_snd_nxt; |
| 1701 | int snd_space; |
| 1702 | vlib_buffer_t *b; |
| 1703 | |
| 1704 | ASSERT (tcp_in_fastrecovery (tc)); |
| 1705 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0); |
| 1706 | |
| 1707 | /* Start resending from first un-acked segment */ |
| 1708 | old_snd_nxt = tc->snd_nxt; |
| 1709 | tc->snd_nxt = tc->snd_una; |
| 1710 | snd_space = tcp_available_snd_space (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1711 | |
| 1712 | while (snd_space > 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1713 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1714 | offset += n_written; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1715 | n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1716 | |
| 1717 | /* Nothing left to retransmit */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1718 | if (n_written == 0) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1719 | break; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1720 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1721 | bi = vlib_get_buffer_index (vm, b); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1722 | tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1723 | snd_space -= n_written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1724 | } |
| 1725 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1726 | /* Restore snd_nxt. If window allows, send 1 SMSS of new data */ |
| 1727 | tc->snd_nxt = old_snd_nxt; |
| 1728 | } |
| 1729 | |
| 1730 | /** |
| 1731 | * Do fast retransmit |
| 1732 | */ |
| 1733 | void |
| 1734 | tcp_fast_retransmit (tcp_connection_t * tc) |
| 1735 | { |
| 1736 | if (tcp_opts_sack_permitted (&tc->rcv_opts) |
| 1737 | && scoreboard_first_hole (&tc->sack_sb)) |
| 1738 | tcp_fast_retransmit_sack (tc); |
| 1739 | else |
| 1740 | tcp_fast_retransmit_no_sack (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | always_inline u32 |
| 1744 | tcp_session_has_ooo_data (tcp_connection_t * tc) |
| 1745 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1746 | 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] | 1747 | return svm_fifo_has_ooo_data (s->server_rx_fifo); |
| 1748 | } |
| 1749 | |
| 1750 | always_inline uword |
| 1751 | tcp46_output_inline (vlib_main_t * vm, |
| 1752 | vlib_node_runtime_t * node, |
| 1753 | vlib_frame_t * from_frame, int is_ip4) |
| 1754 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1755 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1756 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1757 | |
| 1758 | from = vlib_frame_vector_args (from_frame); |
| 1759 | n_left_from = from_frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1760 | next_index = node->cached_next_index; |
Florin Coras | 82d3ec8 | 2017-08-14 08:10:42 -0700 | [diff] [blame] | 1761 | tcp_set_time_now (my_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1762 | |
| 1763 | while (n_left_from > 0) |
| 1764 | { |
| 1765 | u32 n_left_to_next; |
| 1766 | |
| 1767 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 1768 | |
| 1769 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1770 | { |
| 1771 | u32 bi0; |
| 1772 | vlib_buffer_t *b0; |
| 1773 | tcp_connection_t *tc0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1774 | tcp_tx_trace_t *t0; |
| 1775 | tcp_header_t *th0 = 0; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1776 | u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1777 | |
Florin Coras | 81a13db | 2018-03-16 08:48:31 -0700 | [diff] [blame] | 1778 | if (n_left_from > 1) |
| 1779 | { |
| 1780 | vlib_buffer_t *pb; |
| 1781 | pb = vlib_get_buffer (vm, from[1]); |
| 1782 | vlib_prefetch_buffer_header (pb, STORE); |
| 1783 | CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, STORE); |
| 1784 | } |
| 1785 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1786 | bi0 = from[0]; |
| 1787 | to_next[0] = bi0; |
| 1788 | from += 1; |
| 1789 | to_next += 1; |
| 1790 | n_left_from -= 1; |
| 1791 | n_left_to_next -= 1; |
| 1792 | |
| 1793 | b0 = vlib_get_buffer (vm, bi0); |
| 1794 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
| 1795 | my_thread_index); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1796 | if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED)) |
| 1797 | { |
| 1798 | error0 = TCP_ERROR_INVALID_CONNECTION; |
| 1799 | next0 = TCP_OUTPUT_NEXT_DROP; |
| 1800 | goto done; |
| 1801 | } |
| 1802 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1803 | th0 = vlib_buffer_get_current (b0); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1804 | TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1805 | |
| 1806 | if (is_ip4) |
| 1807 | { |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1808 | vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4, |
| 1809 | IP_PROTOCOL_TCP, 1); |
| 1810 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 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 | else |
| 1815 | { |
| 1816 | ip6_header_t *ih0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1817 | ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6, |
| 1818 | &tc0->c_rmt_ip6, IP_PROTOCOL_TCP); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1819 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 1820 | vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data; |
| 1821 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data; |
| 1822 | th0->checksum = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1823 | } |
| 1824 | |
| 1825 | /* Filter out DUPACKs if there are no OOO segments left */ |
| 1826 | if (PREDICT_FALSE |
| 1827 | (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK)) |
| 1828 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1829 | if (!tcp_session_has_ooo_data (tc0)) |
| 1830 | { |
| 1831 | error0 = TCP_ERROR_FILTERED_DUPACKS; |
| 1832 | next0 = TCP_OUTPUT_NEXT_DROP; |
| 1833 | goto done; |
| 1834 | } |
| 1835 | } |
| 1836 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1837 | /* Stop DELACK timer and fix flags */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1838 | tc0->flags &= ~(TCP_CONN_SNDACK); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1839 | tcp_timer_reset (tc0, TCP_TIMER_DELACK); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1840 | |
| 1841 | /* If not retransmitting |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1842 | * 1) update snd_una_max (SYN, SYNACK, FIN) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1843 | * 2) If we're not tracking an ACK, start tracking */ |
| 1844 | if (seq_lt (tc0->snd_una_max, tc0->snd_nxt)) |
| 1845 | { |
| 1846 | tc0->snd_una_max = tc0->snd_nxt; |
| 1847 | if (tc0->rtt_ts == 0) |
| 1848 | { |
| 1849 | tc0->rtt_ts = tcp_time_now (); |
| 1850 | tc0->rtt_seq = tc0->snd_nxt; |
| 1851 | } |
| 1852 | } |
| 1853 | |
| 1854 | /* Set the retransmit timer if not set already and not |
| 1855 | * doing a pure ACK */ |
| 1856 | if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT) |
| 1857 | && tc0->snd_nxt != tc0->snd_una) |
| 1858 | { |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1859 | tcp_retransmit_timer_set (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1860 | tc0->rto_boff = 0; |
| 1861 | } |
| 1862 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1863 | #if 0 |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 1864 | /* Make sure we haven't lost route to our peer */ |
| 1865 | if (PREDICT_FALSE (tc0->last_fib_check |
| 1866 | < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD)) |
| 1867 | { |
| 1868 | if (PREDICT_TRUE |
| 1869 | (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0))) |
| 1870 | { |
| 1871 | tc0->last_fib_check = tc0->snd_opts.tsval; |
| 1872 | } |
| 1873 | else |
| 1874 | { |
| 1875 | clib_warning ("lost connection to peer"); |
| 1876 | tcp_connection_reset (tc0); |
| 1877 | goto done; |
| 1878 | } |
| 1879 | } |
| 1880 | |
| 1881 | /* Use pre-computed dpo to set next node */ |
| 1882 | next0 = tc0->c_rmt_dpo.dpoi_next_node; |
| 1883 | 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] | 1884 | #endif |
| 1885 | |
| 1886 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 1887 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1888 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1889 | b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1890 | done: |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1891 | b0->error = node->errors[error0]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1892 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 1893 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1894 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 1895 | if (th0) |
| 1896 | { |
| 1897 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
| 1898 | } |
| 1899 | else |
| 1900 | { |
| 1901 | memset (&t0->tcp_header, 0, sizeof (t0->tcp_header)); |
| 1902 | } |
| 1903 | clib_memcpy (&t0->tcp_connection, tc0, |
| 1904 | sizeof (t0->tcp_connection)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1905 | } |
| 1906 | |
| 1907 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 1908 | n_left_to_next, bi0, next0); |
| 1909 | } |
| 1910 | |
| 1911 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 1912 | } |
| 1913 | |
| 1914 | return from_frame->n_vectors; |
| 1915 | } |
| 1916 | |
| 1917 | static uword |
| 1918 | tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1919 | vlib_frame_t * from_frame) |
| 1920 | { |
| 1921 | return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 1922 | } |
| 1923 | |
| 1924 | static uword |
| 1925 | tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1926 | vlib_frame_t * from_frame) |
| 1927 | { |
| 1928 | return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 1929 | } |
| 1930 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1931 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1932 | VLIB_REGISTER_NODE (tcp4_output_node) = |
| 1933 | { |
| 1934 | .function = tcp4_output,.name = "tcp4-output", |
| 1935 | /* Takes a vector of packets. */ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1936 | .vector_size = sizeof (u32), |
| 1937 | .n_errors = TCP_N_ERROR, |
| 1938 | .error_strings = tcp_error_strings, |
| 1939 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 1940 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1941 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 1942 | foreach_tcp4_output_next |
| 1943 | #undef _ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1944 | }, |
| 1945 | .format_buffer = format_tcp_header, |
| 1946 | .format_trace = format_tcp_tx_trace, |
| 1947 | }; |
| 1948 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1949 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1950 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output); |
| 1951 | |
| 1952 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1953 | VLIB_REGISTER_NODE (tcp6_output_node) = |
| 1954 | { |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1955 | .function = tcp6_output, |
| 1956 | .name = "tcp6-output", |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1957 | /* Takes a vector of packets. */ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1958 | .vector_size = sizeof (u32), |
| 1959 | .n_errors = TCP_N_ERROR, |
| 1960 | .error_strings = tcp_error_strings, |
| 1961 | .n_next_nodes = TCP_OUTPUT_N_NEXT, |
| 1962 | .next_nodes = { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1963 | #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, |
| 1964 | foreach_tcp6_output_next |
| 1965 | #undef _ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1966 | }, |
| 1967 | .format_buffer = format_tcp_header, |
| 1968 | .format_trace = format_tcp_tx_trace, |
| 1969 | }; |
| 1970 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1971 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1972 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output); |
| 1973 | |
| 1974 | u32 |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1975 | tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b) |
| 1976 | { |
| 1977 | tcp_connection_t *tc; |
| 1978 | |
| 1979 | tc = (tcp_connection_t *) tconn; |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 1980 | tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1981 | 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] | 1982 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1983 | if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1984 | { |
| 1985 | tc->rtt_ts = tcp_time_now (); |
| 1986 | tc->rtt_seq = tc->snd_nxt; |
| 1987 | } |
Steven | 5c42f50 | 2018-02-01 09:17:17 -0800 | [diff] [blame] | 1988 | tcp_trajectory_add_start (b, 3); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1989 | return 0; |
| 1990 | } |
| 1991 | |
| 1992 | typedef enum _tcp_reset_next |
| 1993 | { |
| 1994 | TCP_RESET_NEXT_DROP, |
| 1995 | TCP_RESET_NEXT_IP_LOOKUP, |
| 1996 | TCP_RESET_N_NEXT |
| 1997 | } tcp_reset_next_t; |
| 1998 | |
| 1999 | #define foreach_tcp4_reset_next \ |
| 2000 | _(DROP, "error-drop") \ |
| 2001 | _(IP_LOOKUP, "ip4-lookup") |
| 2002 | |
| 2003 | #define foreach_tcp6_reset_next \ |
| 2004 | _(DROP, "error-drop") \ |
| 2005 | _(IP_LOOKUP, "ip6-lookup") |
| 2006 | |
| 2007 | static uword |
| 2008 | tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2009 | vlib_frame_t * from_frame, u8 is_ip4) |
| 2010 | { |
| 2011 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2012 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2013 | |
| 2014 | from = vlib_frame_vector_args (from_frame); |
| 2015 | n_left_from = from_frame->n_vectors; |
| 2016 | |
| 2017 | next_index = node->cached_next_index; |
| 2018 | |
| 2019 | while (n_left_from > 0) |
| 2020 | { |
| 2021 | u32 n_left_to_next; |
| 2022 | |
| 2023 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2024 | |
| 2025 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2026 | { |
| 2027 | u32 bi0; |
| 2028 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2029 | tcp_tx_trace_t *t0; |
| 2030 | tcp_header_t *th0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2031 | u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2032 | |
| 2033 | bi0 = from[0]; |
| 2034 | to_next[0] = bi0; |
| 2035 | from += 1; |
| 2036 | to_next += 1; |
| 2037 | n_left_from -= 1; |
| 2038 | n_left_to_next -= 1; |
| 2039 | |
| 2040 | b0 = vlib_get_buffer (vm, bi0); |
| 2041 | |
| 2042 | if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags, |
| 2043 | my_thread_index, is_ip4)) |
| 2044 | { |
| 2045 | error0 = TCP_ERROR_LOOKUP_DROPS; |
| 2046 | next0 = TCP_RESET_NEXT_DROP; |
| 2047 | goto done; |
| 2048 | } |
| 2049 | |
| 2050 | /* Prepare to send to IP lookup */ |
Florin Coras | f988e69 | 2017-11-27 04:34:14 -0500 | [diff] [blame] | 2051 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2052 | next0 = TCP_RESET_NEXT_IP_LOOKUP; |
| 2053 | |
| 2054 | done: |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2055 | b0->error = node->errors[error0]; |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2056 | b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2057 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2058 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2059 | th0 = vlib_buffer_get_current (b0); |
| 2060 | if (is_ip4) |
| 2061 | th0 = ip4_next_header ((ip4_header_t *) th0); |
| 2062 | else |
| 2063 | th0 = ip6_next_header ((ip6_header_t *) th0); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2064 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2065 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2066 | } |
| 2067 | |
| 2068 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2069 | n_left_to_next, bi0, next0); |
| 2070 | } |
| 2071 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2072 | } |
| 2073 | return from_frame->n_vectors; |
| 2074 | } |
| 2075 | |
| 2076 | static uword |
| 2077 | tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2078 | vlib_frame_t * from_frame) |
| 2079 | { |
| 2080 | return tcp46_send_reset_inline (vm, node, from_frame, 1); |
| 2081 | } |
| 2082 | |
| 2083 | static uword |
| 2084 | tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2085 | vlib_frame_t * from_frame) |
| 2086 | { |
| 2087 | return tcp46_send_reset_inline (vm, node, from_frame, 0); |
| 2088 | } |
| 2089 | |
| 2090 | /* *INDENT-OFF* */ |
| 2091 | VLIB_REGISTER_NODE (tcp4_reset_node) = { |
| 2092 | .function = tcp4_send_reset, |
| 2093 | .name = "tcp4-reset", |
| 2094 | .vector_size = sizeof (u32), |
| 2095 | .n_errors = TCP_N_ERROR, |
| 2096 | .error_strings = tcp_error_strings, |
| 2097 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2098 | .next_nodes = { |
| 2099 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2100 | foreach_tcp4_reset_next |
| 2101 | #undef _ |
| 2102 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2103 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2104 | }; |
| 2105 | /* *INDENT-ON* */ |
| 2106 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2107 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset); |
| 2108 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2109 | /* *INDENT-OFF* */ |
| 2110 | VLIB_REGISTER_NODE (tcp6_reset_node) = { |
| 2111 | .function = tcp6_send_reset, |
| 2112 | .name = "tcp6-reset", |
| 2113 | .vector_size = sizeof (u32), |
| 2114 | .n_errors = TCP_N_ERROR, |
| 2115 | .error_strings = tcp_error_strings, |
| 2116 | .n_next_nodes = TCP_RESET_N_NEXT, |
| 2117 | .next_nodes = { |
| 2118 | #define _(s,n) [TCP_RESET_NEXT_##s] = n, |
| 2119 | foreach_tcp6_reset_next |
| 2120 | #undef _ |
| 2121 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2122 | .format_trace = format_tcp_tx_trace, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2123 | }; |
| 2124 | /* *INDENT-ON* */ |
| 2125 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2126 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset); |
| 2127 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2128 | /* |
| 2129 | * fd.io coding-style-patch-verification: ON |
| 2130 | * |
| 2131 | * Local Variables: |
| 2132 | * eval: (c-set-style "gnu") |
| 2133 | * End: |
| 2134 | */ |