23 typedef enum _tcp_output_next
32 #define foreach_tcp4_output_next \ 33 _ (DROP, "error-drop") \ 34 _ (IP_LOOKUP, "ip4-lookup") \ 35 _ (IP_REWRITE, "ip4-rewrite") \ 38 #define foreach_tcp6_output_next \ 39 _ (DROP, "error-drop") \ 40 _ (IP_LOOKUP, "ip6-lookup") \ 41 _ (IP_REWRITE, "ip6-rewrite") \ 42 _ (IP_ARP, "ip6-discover-neighbor") 45 #define tcp_error(n,s) s, 139 u32 available_space, max_fifo, wnd;
147 ASSERT (tc->rcv_opts.mss < max_fifo);
148 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
155 observed_wnd = (
i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
156 if (observed_wnd < 0)
160 if (available_space < observed_wnd)
163 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
167 wnd = available_space;
171 if (wnd && tc->rcv_wscale)
173 wnd &= ~(1 << tc->rcv_wscale);
175 wnd = 1 << tc->rcv_wscale;
187 if (state < TCP_STATE_ESTABLISHED)
192 if (tc->rcv_wnd == 0)
194 tc->flags |= TCP_CONN_SENT_RCV_WND0;
198 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
201 return tc->rcv_wnd >> tc->rcv_wscale;
211 u32 buf, seq_len = 4;
217 buf = clib_host_to_net_u16 (opts->
mss);
219 data +=
sizeof (opts->
mss);
242 buf = clib_host_to_net_u32 (opts->
tsval);
244 data +=
sizeof (opts->
tsval);
245 buf = clib_host_to_net_u32 (opts->
tsecr);
247 data +=
sizeof (opts->
tsecr);
257 if (n_sack_blocks != 0)
261 for (i = 0; i < n_sack_blocks; i++)
263 buf = clib_host_to_net_u32 (opts->
sacks[i].start);
266 buf = clib_host_to_net_u32 (opts->
sacks[i].end);
295 opts->
flags |= TCP_OPTS_FLAG_MSS;
299 opts->
flags |= TCP_OPTS_FLAG_WSCALE;
303 opts->
flags |= TCP_OPTS_FLAG_TSTAMP;
310 opts->
flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
324 opts->
flags |= TCP_OPTS_FLAG_MSS;
330 opts->
flags |= TCP_OPTS_FLAG_WSCALE;
331 opts->
wscale = tc->rcv_wscale;
337 opts->
flags |= TCP_OPTS_FLAG_TSTAMP;
339 opts->
tsecr = tc->tsval_recent;
345 opts->
flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
363 opts->
flags |= TCP_OPTS_FLAG_TSTAMP;
365 opts->
tsecr = tc->tsval_recent;
372 opts->
flags |= TCP_OPTS_FLAG_SACK;
373 opts->
sacks = tc->snd_sacks;
391 case TCP_STATE_ESTABLISHED:
392 case TCP_STATE_FIN_WAIT_1:
393 case TCP_STATE_CLOSED:
394 case TCP_STATE_CLOSE_WAIT:
396 case TCP_STATE_SYN_RCVD:
398 case TCP_STATE_SYN_SENT:
424 TCP_STATE_ESTABLISHED);
427 tc->snd_mss =
clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
439 u16 default_min_mss = 536;
443 tc->snd_mss =
clib_min (tc->rcv_opts.mss, tc->mss);
445 if (tc->snd_mss < 45)
449 tc->snd_mss = default_min_mss;
450 tc->rcv_opts.mss = default_min_mss;
454 ASSERT (tc->snd_mss > 45);
469 ASSERT (wanted > *n_bufs);
503 if (b->
flags & VLIB_BUFFER_NEXT_PRESENT)
506 b->
flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
519 ASSERT ((b->
flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
520 b->
flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
521 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
538 u8 tcp_opts_len, tcp_hdr_opts_len;
546 tcp_hdr_opts_len = tcp_opts_len +
sizeof (
tcp_header_t);
549 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
552 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
567 tc->rcv_las = tc->rcv_nxt;
585 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
594 u8 tcp_hdr_opts_len, tcp_opts_len;
602 memset (&snd_opts, 0,
sizeof (snd_opts));
604 tcp_hdr_opts_len = tcp_opts_len +
sizeof (
tcp_header_t);
609 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
621 u8 tcp_opts_len, tcp_hdr_opts_len;
625 memset (snd_opts, 0,
sizeof (*snd_opts));
630 tcp_hdr_opts_len = tcp_opts_len +
sizeof (
tcp_header_t);
633 tc->rcv_nxt, tcp_hdr_opts_len,
637 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
648 u8 is_ip4,
u32 fib_index,
u8 flush)
652 u32 *to_next, next_index;
655 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
665 f = tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4];
670 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = f;
679 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
685 u8 is_ip4,
u32 fib_index)
692 u8 is_ip4,
u32 fib_index)
705 u32 *to_next, next_index;
708 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
716 f = tm->wrk_ctx[thread_index].tx_frames[!is_ip4];
721 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = f;
729 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
779 src_port = th0->src_port;
780 dst_port = th0->dst_port;
783 if (state == TCP_STATE_CLOSED)
788 tmp = clib_net_to_host_u32 (th0->seq_number);
792 ack = clib_host_to_net_u32 (tmp + 1);
798 seq = th0->ack_number;
870 seq = pkt_th->ack_number;
871 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
877 ack = clib_host_to_net_u32 (
vnet_buffer (pkt)->tcp.seq_end);
881 seq, ack, tcp_hdr_len, flags, 0);
917 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
926 tcp_hdr_opts_len = tc->snd_opts_len +
sizeof (
tcp_header_t);
930 tc->rcv_nxt, tcp_hdr_opts_len, flags,
933 ASSERT (opts_write_len == tc->snd_opts_len);
934 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
939 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
947 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
964 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
973 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
1011 tc->rtt_seq = tc->snd_nxt;
1025 if (
tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4])
1031 wrk_ctx[thread_index].tx_frames[!is_ip4]);
1032 tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
1042 if (
tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4])
1048 wrk_ctx[thread_index].ip_lookup_tx_frames
1050 tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
1079 fin_snt = tc->
flags & TCP_CONN_FINSNT;
1081 tc->snd_nxt = tc->snd_una;
1100 tc->flags |= TCP_CONN_FINSNT;
1101 tc->flags &= ~TCP_CONN_FINPNDG;
1103 tc->snd_una_max += 1;
1104 tc->snd_nxt = tc->snd_una_max;
1108 tc->snd_nxt = tc->snd_una_max;
1117 case TCP_STATE_ESTABLISHED:
1118 case TCP_STATE_CLOSE_WAIT:
1120 case TCP_STATE_SYN_RCVD:
1122 case TCP_STATE_SYN_SENT:
1124 case TCP_STATE_LAST_ACK:
1125 case TCP_STATE_FIN_WAIT_1:
1126 if (tc->snd_nxt + 1 < tc->snd_una_max)
1143 u32 advertise_wnd, data_len;
1153 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1158 tcp_hdr_opts_len = tc->snd_opts_len +
sizeof (
tcp_header_t);
1161 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1168 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1174 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1180 ASSERT (len == tc->snd_opts_len);
1187 tc->snd_nxt += data_len;
1188 tc->rcv_las = tc->rcv_nxt;
1198 tc->snd_una_max = tc->snd_nxt;
1206 tc->rtt_seq = tc->snd_nxt;
1266 u32 start, bi, available_bytes, seg_size;
1269 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1270 ASSERT (max_deq_bytes != 0);
1276 ASSERT (available_bytes >= offset);
1277 available_bytes -=
offset;
1278 if (!available_bytes)
1280 max_deq_bytes =
clib_min (tc->snd_mss, max_deq_bytes);
1281 max_deq_bytes =
clib_min (available_bytes, max_deq_bytes);
1284 start = tc->snd_una +
offset;
1285 if (
seq_geq (start, tc->snd_congestion))
1289 if (
seq_gt (start + max_deq_bytes, tc->snd_congestion))
1291 max_deq_bytes = tc->snd_congestion - start;
1292 if (max_deq_bytes == 0)
1316 ASSERT (n_bytes == max_deq_bytes);
1319 if (
seq_gt (tc->snd_nxt, tc->snd_una_max))
1320 tc->snd_una_max = tc->snd_nxt;
1325 u32 chain_bi = ~0, n_bufs_per_seg;
1327 u16 n_peeked, len_to_deq, available_bufs;
1332 n_bufs_per_seg = ceil ((
double) seg_size / tm->bytes_per_buffer);
1333 available_bufs =
vec_len (tm->wrk_ctx[thread_index].tx_buffers);
1334 if (n_bufs_per_seg > available_bufs)
1339 if (n_bufs_per_seg > available_bufs)
1351 tm->bytes_per_buffer -
1354 b[0]->
flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1356 max_deq_bytes -= n_bytes;
1359 for (i = 1; i < n_bufs_per_seg; i++)
1362 len_to_deq =
clib_min (max_deq_bytes, tm->bytes_per_buffer);
1369 offset + n_bytes, len_to_deq);
1370 ASSERT (n_peeked == len_to_deq);
1371 n_bytes += n_peeked;
1377 prev_b->
flags |= VLIB_BUFFER_NEXT_PRESENT;
1379 max_deq_bytes -= n_peeked;
1384 if (
seq_gt (tc->snd_nxt, tc->snd_una_max))
1385 tc->snd_una_max = tc->snd_nxt;
1389 ASSERT (((*b)->current_data + (*b)->current_length) <=
1390 tm->bytes_per_buffer);
1393 tc->snd_rxt_bytes += n_bytes;
1396 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
1407 tc->prev_ssthresh = tc->ssthresh;
1408 tc->prev_cwnd = tc->cwnd;
1415 tc->cc_algo->congestion (tc);
1417 tc->snd_congestion = tc->snd_una_max;
1419 tc->cwnd_acc_bytes = 0;
1453 if (tc->state >= TCP_STATE_ESTABLISHED)
1466 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
1467 || (tc->rto_boff > 0 &&
seq_geq (tc->snd_una, tc->snd_congestion)
1488 if (tc->rto_boff == 1)
1492 if (
seq_gt (tc->snd_una_max, tc->snd_congestion))
1493 tc->snd_congestion = tc->snd_una_max;
1495 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
1514 if (tc->rto_boff == 1)
1521 else if (tc->state == TCP_STATE_SYN_SENT)
1526 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1530 clib_warning (
"could not remove half-open connection");
1560 else if (tc->state == TCP_STATE_SYN_RCVD)
1583 ASSERT (tc->state == TCP_STATE_CLOSED);
1612 u32 bi, max_snd_bytes, available_bytes,
offset;
1625 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
1630 offset = tc->snd_una_max - tc->snd_una;
1634 if (!available_bytes)
1640 if (available_bytes <= offset)
1668 || tc->snd_nxt == tc->snd_una_max
1669 || tc->rto_boff > 1));
1672 tc->snd_una_max = tc->snd_nxt;
1688 u32 bi, old_snd_nxt, n_bytes;
1690 old_snd_nxt = tc->snd_nxt;
1691 tc->snd_nxt = tc->snd_una;
1700 tc->snd_nxt = old_snd_nxt;
1710 u32 n_written = 0,
offset, max_bytes, n_segs = 0;
1714 u32 bi, old_snd_nxt;
1716 u8 snd_limited = 0, can_rescue = 0;
1720 old_snd_nxt = tc->snd_nxt;
1724 if (snd_space < tc->snd_mss)
1733 &can_rescue, &snd_limited);
1736 if (!can_rescue || !(
seq_lt (sb->rescue_rxt, tc->snd_una)
1737 ||
seq_gt (sb->rescue_rxt,
1738 tc->snd_congestion)))
1747 tc->snd_congestion - tc->snd_una);
1748 max_bytes =
clib_min (max_bytes, snd_space);
1749 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1750 sb->rescue_rxt = tc->snd_congestion;
1751 tc->snd_nxt = tc->snd_una +
offset;
1762 max_bytes =
clib_min (hole->end - sb->high_rxt, snd_space);
1763 max_bytes = snd_limited ?
clib_min (max_bytes, tc->snd_mss) : max_bytes;
1766 offset = sb->high_rxt - tc->snd_una;
1767 tc->snd_nxt = sb->high_rxt;
1775 sb->high_rxt += n_written;
1777 ASSERT (n_written <= snd_space);
1778 snd_space -= n_written;
1783 tc->snd_nxt = old_snd_nxt;
1793 u32 n_written = 0,
offset = 0, bi, old_snd_nxt;
1801 old_snd_nxt = tc->snd_nxt;
1802 tc->snd_nxt = tc->snd_una;
1805 while (snd_space > 0)
1816 snd_space -= n_written;
1820 tc->snd_nxt = old_snd_nxt;
1844 u16 * next0,
u32 * error0)
1857 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1869 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1876 u32 * to_next,
u32 n_bufs)
1885 for (i = 0; i <
clib_min (n_trace, n_bufs); i++)
1908 IP_PROTOCOL_TCP, 1);
1909 b0->
flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1917 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
1918 b0->
flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1927 u32 * error0,
u16 * next0,
u8 is_ip4)
1932 *error0 = TCP_ERROR_INVALID_CONNECTION;
1957 *error0 = TCP_ERROR_FILTERED_DUPACKS;
1964 tc0->flags &= ~(TCP_CONN_SNDACK);
1988 while (n_left_from >= 4)
1990 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
2018 while (n_left_from > 0)
2020 u32 error0 = TCP_ERROR_PKTS_SENT;
2023 if (n_left_from > 1)
2064 .vector_size =
sizeof (
u32),
2069 #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, 2084 .name =
"tcp6-output",
2086 .vector_size =
sizeof (
u32),
2091 #define _(s,n) [TCP_OUTPUT_NEXT_##s] = n, 2102 typedef enum _tcp_reset_next
2109 #define foreach_tcp4_reset_next \ 2110 _(DROP, "error-drop") \ 2111 _(IP_LOOKUP, "ip4-lookup") 2113 #define foreach_tcp6_reset_next \ 2114 _(DROP, "error-drop") \ 2115 _(IP_LOOKUP, "ip6-lookup") 2121 u32 n_left_from, next_index, *from, *to_next;
2129 while (n_left_from > 0)
2135 while (n_left_from > 0 && n_left_to_next > 0)
2148 n_left_to_next -= 1;
2153 my_thread_index, is_ip4))
2155 error0 = TCP_ERROR_LOOKUP_DROPS;
2166 b0->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
2179 n_left_to_next, bi0, next0);
2203 .name =
"tcp4-reset",
2204 .vector_size =
sizeof (
u32),
2209 #define _(s,n) [TCP_RESET_NEXT_##s] = n, 2222 .name =
"tcp6-reset",
2223 .vector_size =
sizeof (
u32),
2228 #define _(s,n) [TCP_RESET_NEXT_##s] = n, void tcp_make_fin(tcp_connection_t *tc, vlib_buffer_t *b)
Convert buffer to FIN-ACK.
#define tcp_in_cong_recovery(tc)
static void tcp_enqueue_to_ip_lookup_i(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4, u32 fib_index, u8 flush)
#define TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL(thread_index)
static u32 tcp_prepare_retransmit_segment(tcp_connection_t *tc, u32 offset, u32 max_deq_bytes, vlib_buffer_t **b)
Build a retransmit segment.
void session_flush_frames_main_thread(vlib_main_t *vm)
static u32 tcp_options_write(u8 *data, tcp_options_t *opts)
Write TCP options to segment.
static void tcp_rxt_timeout_cc(tcp_connection_t *tc)
Reset congestion control, switch cwnd to loss window and try again.
#define TCP_OPTION_LEN_EOL
#define tcp_in_recovery(tc)
void scoreboard_clear(sack_scoreboard_t *sb)
static void tcp_retransmit_timer_set(tcp_connection_t *tc)
static u32 transport_rx_fifo_size(transport_connection_t *tc)
#define TCP_OPTION_LEN_SACK_PERMITTED
static void tcp_flush_frame_to_ip_lookup(vlib_main_t *vm, u8 thread_index, u8 is_ip4)
Flush ip lookup tx frames populated by timer pops.
#define seq_leq(_s1, _s2)
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
void tcp_timer_retransmit_handler(u32 index)
#define TCP_TO_TIMER_TICK
#define TCP_MIN_RX_FIFO_SIZE
void tcp_send_reset_w_pkt(tcp_connection_t *tc, vlib_buffer_t *pkt, u8 is_ip4)
Send reset without reusing existing buffer.
static u8 svm_fifo_has_ooo_data(svm_fifo_t *f)
#define tcp_opts_tstamp(_to)
static uword tcp4_send_reset(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
void tcp_make_synack(tcp_connection_t *tc, vlib_buffer_t *b)
Convert buffer to SYN-ACK.
static void tcp_enqueue_to_output(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4)
static tcp_connection_t * tcp_connection_get_if_valid(u32 conn_index, u32 thread_index)
static int tcp_make_syn_options(tcp_options_t *opts, u8 wnd_scale)
struct _sack_scoreboard sack_scoreboard_t
u32 fib_table_get_index_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the index of the FIB bound to the interface.
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
void tcp_update_rcv_mss(tcp_connection_t *tc)
Update max segment size we're able to process.
struct _tcp_main tcp_main_t
This packet is to be rewritten and forwarded to the next processing node.
void tcp_flush_frame_to_output(vlib_main_t *vm, u8 thread_index, u8 is_ip4)
Flush tx frame populated by retransmits and timer pops.
static u32 tcp_initial_wnd_unscaled(tcp_connection_t *tc)
TCP's initial window.
enum _tcp_output_next tcp_output_next_t
static u32 tcp_session_has_ooo_data(tcp_connection_t *tc)
struct _tcp_connection tcp_connection_t
static u32 tcp_available_cc_snd_space(const tcp_connection_t *tc)
Estimate of how many bytes we can still push into the network.
#define tcp_opts_sack(_to)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
static uword tcp46_send_reset_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, u8 is_ip4)
vlib_error_t * errors
Vector of errors for this node.
u8 n_sack_blocks
Number of SACKs blocks.
struct _tcp_header tcp_header_t
int tcp_half_open_connection_cleanup(tcp_connection_t *tc)
Try to cleanup half-open connection.
static void tcp_enqueue_to_output_now(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4)
struct _sack_scoreboard_hole sack_scoreboard_hole_t
u8 wscale
Window scale advertised.
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
#define TCP_OPTS_MAX_SACK_BLOCKS
#define TCP_MAX_RX_FIFO_SIZE
vlib_node_registration_t ip4_lookup_node
(constructor) VLIB_REGISTER_NODE (ip4_lookup_node)
static void tcp_timer_retransmit_handler_i(u32 index, u8 is_syn)
#define foreach_tcp4_reset_next
static uword tcp46_output_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int is_ip4)
static void * tcp_init_buffer(vlib_main_t *vm, vlib_buffer_t *b)
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
void tcp_make_syn(tcp_connection_t *tc, vlib_buffer_t *b)
Convert buffer to SYN.
memset(h->entries, 0, sizeof(h->entries[0])*entries)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
sack_scoreboard_hole_t * scoreboard_get_hole(sack_scoreboard_t *sb, u32 index)
#define TCP_OPTION_LEN_SACK_BLOCK
static tcp_header_t * tcp_buffer_hdr(vlib_buffer_t *b)
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
u8 * format_tcp_tx_trace(u8 *s, va_list *args)
enum _tcp_state tcp_state_t
#define TCP_ALWAYS_ACK
On/off delayed acks.
void tcp_fast_retransmit_no_sack(tcp_connection_t *tc)
Fast retransmit without SACK info.
vhost_vring_state_t state
static void * ip4_next_header(ip4_header_t *i)
static u32 tcp_time_now(void)
sack_block_t * sacks
SACK blocks.
static void tcp46_output_trace_frame(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *to_next, u32 n_bufs)
struct _stream_session_t stream_session_t
#define TCP_ESTABLISH_TIME
sack_scoreboard_hole_t * scoreboard_next_rxt_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *start, u8 have_sent_1_smss, u8 *can_rescue, u8 *snd_limited)
Figure out the next hole to retransmit.
static void tcp_push_ip_hdr(tcp_main_t *tm, tcp_connection_t *tc, vlib_buffer_t *b)
#define tcp_validate_txf_size(_tc, _a)
#define TCP_EVT_DBG(_evt, _args...)
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
static void tcp_timer_set(tcp_connection_t *tc, u8 timer_id, u32 interval)
#define TCP_OPTION_LEN_WINDOW_SCALE
vlib_node_registration_t tcp6_reset_node
(constructor) VLIB_REGISTER_NODE (tcp6_reset_node)
#define TCP_RTO_SYN_RETRIES
#define tcp_trajectory_add_start(b, start)
void tcp_send_reset(tcp_connection_t *tc)
Build and set reset packet for connection.
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
static int tcp_make_synack_options(tcp_connection_t *tc, tcp_options_t *opts)
u16 current_length
Nbytes between current data and the end of this buffer.
static void * vlib_buffer_make_headroom(vlib_buffer_t *b, u8 size)
Make head room, typically for packet headers.
#define tcp_in_fastrecovery(tc)
static void * vlib_buffer_push_tcp_net_order(vlib_buffer_t *b, u16 sp, u16 dp, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
static int tcp_get_free_buffer_index(tcp_main_t *tm, u32 *bidx)
#define tcp_opts_mss(_to)
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
u32 tcp_push_header(tcp_connection_t *tc, vlib_buffer_t *b)
#define TCP_TIMER_HANDLE_INVALID
static void tcp_output_handle_link_local(tcp_connection_t *tc0, vlib_buffer_t *b0, u16 *next0, u32 *error0)
#define foreach_tcp6_output_next
static u32 tcp_flight_size(const tcp_connection_t *tc)
Our estimate of the number of bytes in flight (pipe size)
void tcp_fast_retransmit(tcp_connection_t *tc)
Do fast retransmit.
static int tcp_make_reset_in_place(vlib_main_t *vm, vlib_buffer_t *b0, tcp_state_t state, u8 thread_index, u8 is_ip4)
static u8 tcp_window_compute_scale(u32 window)
static int tcp_alloc_tx_buffers(tcp_main_t *tm, u8 thread_index, u16 *n_bufs, u32 wanted)
void tcp_timer_retransmit_syn_handler(u32 index)
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
#define TCP_OPTION_LEN_TIMESTAMP
#define foreach_tcp4_output_next
vlib_error_t error
Error code for buffers to be enqueued to error handler.
void tcp_make_ack(tcp_connection_t *tc, vlib_buffer_t *b)
Convert buffer to ACK.
static stream_session_t * session_get(u32 si, u32 thread_index)
#define TCP_MAX_WND_SCALE
static void tcp_timer_reset(tcp_connection_t *tc, u8 timer_id)
#define tcp_fastrecovery_sent_1_smss(tc)
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
#define VLIB_REGISTER_NODE(x,...)
static void * vlib_buffer_push_tcp(vlib_buffer_t *b, u16 sp_net, u16 dp_net, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
static_always_inline uword vlib_get_thread_index(void)
#define CLIB_PREFETCH(addr, size, type)
static void tcp_enqueue_to_ip_lookup(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4, u32 fib_index)
static_always_inline void vlib_buffer_enqueue_to_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts, uword count)
#define clib_warning(format, args...)
static u8 tcp_make_state_flags(tcp_connection_t *tc, tcp_state_t next_state)
#define clib_memcpy(a, b, c)
#define TCP_USE_SACKS
Disable only for testing.
#define tcp_recovery_on(tc)
static u32 tcp_window_to_advertise(tcp_connection_t *tc, tcp_state_t state)
Compute and return window to advertise, scaled as per RFC1323.
u32 adj_index_t
An index for adjacencies.
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
u16 mss
Option flags, see above.
static void tcp_output_handle_packet(tcp_connection_t *tc0, vlib_buffer_t *b0, u32 *error0, u16 *next0, u8 is_ip4)
static void * ip6_next_header(ip6_header_t *i)
static void tcp_timer_update(tcp_connection_t *tc, u8 timer_id, u32 interval)
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
vlib_node_registration_t ip6_lookup_node
(constructor) VLIB_REGISTER_NODE (ip6_lookup_node)
static int tcp_make_established_options(tcp_connection_t *tc, tcp_options_t *opts)
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
static void tcp_output_push_ip(vlib_main_t *vm, vlib_buffer_t *b0, tcp_connection_t *tc0, u8 is_ip4)
u32 session_tx_fifo_max_dequeue(transport_connection_t *tc)
static uword tcp6_output(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
u16 ip4_tcp_udp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip4_header_t *ip0)
void tcp_update_burst_snd_vars(tcp_connection_t *tc)
Update burst send vars.
#define seq_geq(_s1, _s2)
void tcp_retransmit_first_unacked(tcp_connection_t *tc)
Retransmit first unacked segment.
u32 next_buffer
Next buffer for this linked-list of buffers.
static void tcp_enqueue_to_ip_lookup_now(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4, u32 fib_index)
void tcp_init_mss(tcp_connection_t *tc)
static uword tcp6_send_reset(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
static uword ip6_address_is_link_local_unicast(const ip6_address_t *a)
static void tcp_update_rcv_wnd(tcp_connection_t *tc)
void tcp_send_fin(tcp_connection_t *tc)
Send FIN.
static vlib_main_t * vlib_get_main(void)
VLIB_NODE_FUNCTION_MULTIARCH(tcp4_output_node, tcp4_output)
void tcp_send_ack(tcp_connection_t *tc)
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
struct _vlib_node_registration vlib_node_registration_t
template key/value backing page structure
#define tcp_opts_wscale(_to)
u32 tsval
Timestamp value.
u32 tsecr
Echoed/reflected time stamp.
static void * vlib_buffer_push_ip6(vlib_main_t *vm, vlib_buffer_t *b, ip6_address_t *src, ip6_address_t *dst, int proto)
Push IPv6 header to buffer.
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
static u32 tcp_set_time_now(u32 thread_index)
static u8 tcp_is_lost_fin(tcp_connection_t *tc)
#define foreach_tcp6_reset_next
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
static void tcp_retransmit_timer_update(tcp_connection_t *tc)
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
static void tcp_make_ack_i(tcp_connection_t *tc, vlib_buffer_t *b, tcp_state_t state, u8 flags)
Prepare ACK.
void tcp_timer_delack_handler(u32 index)
Delayed ack timer handler.
#define TCP_OPTION_LEN_MSS
struct clib_bihash_value offset
template key/value backing page structure
static void tcp_retransmit_timer_force_update(tcp_connection_t *tc)
u8 * format_tcp_connection(u8 *s, va_list *args)
u32 tcp_initial_window_to_advertise(tcp_connection_t *tc)
Compute initial window and scale factor.
void tcp_flush_frames_to_output(u8 thread_index)
Flush v4 and v6 tcp and ip-lookup tx frames for thread index.
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
void tcp_update_rto(tcp_connection_t *tc)
static u32 vlib_num_workers()
void tcp_fast_retransmit_sack(tcp_connection_t *tc)
Do fast retransmit with SACKs.
#define TCP_OPTION_LEN_NOOP
void tcp_send_syn(tcp_connection_t *tc)
Send SYN.
vlib_node_registration_t tcp6_output_node
(constructor) VLIB_REGISTER_NODE (tcp6_output_node)
u16 flags
Copy of main node flags.
enum _tcp_reset_next tcp_reset_next_t
static u32 transport_max_rx_enqueue(transport_connection_t *tc)
#define tcp_opts_sack_permitted(_to)
static void vlib_buffer_free_one(vlib_main_t *vm, u32 buffer_index)
Free one buffer Shorthand to free a single buffer chain.
tcp_connection_t tcp_connection
static u32 tcp_loss_wnd(const tcp_connection_t *tc)
static void * tcp_reuse_buffer(vlib_main_t *vm, vlib_buffer_t *b)
static_always_inline void vlib_get_buffers(vlib_main_t *vm, u32 *bi, vlib_buffer_t **b, int count)
Translate array of buffer indices into buffer pointers.
vlib_node_registration_t tcp4_reset_node
(constructor) VLIB_REGISTER_NODE (tcp4_reset_node)
#define VLIB_NODE_FLAG_TRACE
vlib_node_registration_t tcp4_output_node
(constructor) VLIB_REGISTER_NODE (tcp4_output_node)
#define CLIB_CACHE_LINE_BYTES
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
static u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
static void tcp_enqueue_to_output_i(vlib_main_t *vm, vlib_buffer_t *b, u32 bi, u8 is_ip4, u8 flush)
static void tcp_persist_timer_set(tcp_connection_t *tc)
static tcp_main_t * vnet_get_tcp_main()
int stream_session_peek_bytes(transport_connection_t *tc, u8 *buffer, u32 offset, u32 max_bytes)
static char * tcp_error_strings[]
static uword tcp4_output(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
static void * vlib_buffer_push_ip4(vlib_main_t *vm, vlib_buffer_t *b, ip4_address_t *src, ip4_address_t *dst, int proto, u8 csum_offload)
Push IPv4 header to buffer.
static void tcp_push_hdr_i(tcp_connection_t *tc, vlib_buffer_t *b, tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Push TCP header and update connection variables.
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
void tcp_cc_fastrecovery_exit(tcp_connection_t *tc)
void tcp_timer_persist_handler(u32 index)
Got 0 snd_wnd from peer, try to do something about it.
static u8 tcp_timer_is_active(tcp_connection_t *tc, tcp_timers_e timer)
u32 * tx_buffers
tx buffer free list
adj_index_t adj_nbr_find(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Lookup neighbor adjancency.
static int tcp_make_options(tcp_connection_t *tc, tcp_options_t *opts, tcp_state_t state)