65 .sw_if_index = tc->sw_if_index,
79 pool_get (tm->listener_pool, listener);
80 memset (listener, 0,
sizeof (*listener));
82 listener->c_c_index = listener - tm->listener_pool;
83 listener->c_lcl_port = lcl->port;
90 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
92 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
93 listener->c_is_ip4 = lcl->is_ip4;
95 listener->c_s_index = session_index;
96 listener->c_fib_index = lcl->fib_index;
97 listener->state = TCP_STATE_LISTEN;
103 return listener->c_c_index;
124 memset (tc, 0xFA,
sizeof (*tc));
142 return &tc->connection;
156 memset (tc, 0xFA,
sizeof (*tc));
187 pool_get (tm->half_open_connections, tc);
188 memset (tc, 0,
sizeof (*tc));
189 tc->c_c_index = tc - tm->half_open_connections;
208 if (tc->state == TCP_STATE_SYN_SENT)
217 int thread_index = tc->c_thread_index;
227 memset (tc, 0xFA,
sizeof (*tc));
228 pool_put (tm->connections[thread_index], tc);
253 pool_get (tm->connections[thread_index], tc);
254 memset (tc, 0,
sizeof (*tc));
255 tc->c_c_index = tc - tm->connections[thread_index];
256 tc->c_thread_index = thread_index;
270 case TCP_STATE_SYN_RCVD:
275 case TCP_STATE_SYN_SENT:
279 case TCP_STATE_ESTABLISHED:
286 case TCP_STATE_CLOSE_WAIT:
287 case TCP_STATE_FIN_WAIT_1:
288 case TCP_STATE_FIN_WAIT_2:
289 case TCP_STATE_CLOSING:
290 tc->state = TCP_STATE_CLOSED;
295 case TCP_STATE_CLOSED:
321 case TCP_STATE_SYN_SENT:
322 tc->state = TCP_STATE_CLOSED;
324 case TCP_STATE_SYN_RCVD:
326 tc->state = TCP_STATE_FIN_WAIT_1;
328 case TCP_STATE_ESTABLISHED:
332 tc->flags |= TCP_CONN_FINPNDG;
333 tc->state = TCP_STATE_FIN_WAIT_1;
335 case TCP_STATE_CLOSE_WAIT:
340 tc->state = TCP_STATE_LAST_ACK;
344 tc->flags |= TCP_CONN_FINPNDG;
346 case TCP_STATE_FIN_WAIT_1:
350 TCP_DBG (
"state: %u", tc->state);
357 && tc->state == TCP_STATE_CLOSED)
375 tc->state = TCP_STATE_CLOSED;
411 typedef struct ip4_tcp_hdr
417 typedef struct ip6_tcp_hdr
435 memset (&hdr, 0,
sizeof (hdr));
436 hdr.ip.protocol = IP_PROTOCOL_TCP;
437 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
438 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
439 hdr.tcp.src_port = tc->c_lcl_port;
440 hdr.tcp.dst_port = tc->c_rmt_port;
446 memset (&hdr, 0,
sizeof (hdr));
447 hdr.ip.protocol = IP_PROTOCOL_TCP;
448 clib_memcpy (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
450 clib_memcpy (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
452 hdr.tcp.src_port = tc->c_lcl_port;
453 hdr.tcp.dst_port = tc->c_rmt_port;
468 prefix.
fp_len = tc->c_is_ip4 ? 32 : 128;
477 u32 output_node_index;
484 tcp_connection_select_lb_bucket (tc, &fe->
fe_lb, &choice);
503 tcp_connection_stack_on_fib_entry (tc);
511 tc->cc_algo->init (tc);
521 tm->cc_algos[type] = *vft;
528 return &tm->cc_algos[type];
550 tc->snd_una = tc->iss;
551 tc->snd_nxt = tc->iss + 1;
552 tc->snd_una_max = tc->snd_nxt;
566 if (tc->state == TCP_STATE_SYN_RCVD)
577 u16 * lcl_port,
u8 is_ip4)
582 index = tm->last_v4_address_rotor++;
583 if (tm->last_v4_address_rotor >=
vec_len (tm->ip4_src_addresses))
584 tm->last_v4_address_rotor = 0;
585 lcl_addr->ip4.as_u32 = tm->ip4_src_addresses[index].as_u32;
589 index = tm->last_v6_address_rotor++;
590 if (tm->last_v6_address_rotor >=
vec_len (tm->ip6_src_addresses))
591 tm->last_v6_address_rotor = 0;
592 clib_memcpy (&lcl_addr->ip6, &tm->ip6_src_addresses[index],
610 ip46_address_t lcl_addr;
617 if ((rmt->is_ip4 &&
vec_len (tm->ip4_src_addresses))
618 || (!rmt->is_ip4 &&
vec_len (tm->ip6_src_addresses)))
623 rmt, &lcl_addr, &lcl_port);
633 ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
634 ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
635 tc->c_rmt_port = rmt->port;
636 tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
637 tc->c_is_ip4 = rmt->is_ip4;
639 tc->c_fib_index = rmt->fib_index;
644 tc->state = TCP_STATE_SYN_SENT;
649 return tc->c_c_index;
659 #define _(sym, str) str, 665 #define _(sym, str) str, 678 s =
format (s,
"UNKNOWN (%d (0x%x))", state, state);
683 #define _(sym, str) str, 695 if (tc->flags & (1 << i))
697 for (i = 0; i <
last; i++)
699 if (tc->flags & (1 << i))
708 #define _(sym, str) str, 724 for (i = 0; i <
last; i++)
743 s =
format (s,
"recovery");
745 s =
format (s,
"fastrecovery");
754 return (
i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
763 s =
format (s,
" snd_una %u snd_nxt %u snd_una_max %u",
764 tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
765 tc->snd_una_max - tc->iss);
766 s =
format (s,
" rcv_nxt %u rcv_las %u\n",
767 tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
768 s =
format (s,
" snd_wnd %u rcv_wnd %u snd_wl1 %u snd_wl2 %u\n",
769 tc->snd_wnd, tc->rcv_wnd, tc->snd_wl1 - tc->irs,
770 tc->snd_wl2 - tc->iss);
771 s =
format (s,
" flight size %u out space %u cc space %u rcv_wnd_av %u\n",
775 s =
format (s,
"cwnd %u ssthresh %u rtx_bytes %u bytes_acked %u\n",
776 tc->cwnd, tc->ssthresh, tc->snd_rxt_bytes, tc->bytes_acked);
777 s =
format (s,
" prev_ssthresh %u snd_congestion %u dupack %u",
778 tc->prev_ssthresh, tc->snd_congestion - tc->iss,
780 s =
format (s,
" limited_transmit %u\n", tc->limited_transmit - tc->iss);
781 s =
format (s,
" tsecr %u tsecr_last_ack %u\n", tc->rcv_opts.tsecr,
783 s =
format (s,
" rto %u rto_boff %u srtt %u rttvar %u rtt_ts %u ", tc->rto,
784 tc->rto_boff, tc->srtt, tc->rttvar, tc->rtt_ts);
785 s =
format (s,
"rtt_seq %u\n", tc->rtt_seq);
786 s =
format (s,
" tsval_recent %u tsval_recent_age %u\n", tc->tsval_recent,
788 if (tc->state >= TCP_STATE_ESTABLISHED)
805 s =
format (s,
"[#%d][%s] %U:%d->%U:%d", tc->c_thread_index,
"T",
808 &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
812 s =
format (s,
"[#%d][%s] %U:%d->%U:%d", tc->c_thread_index,
"T",
815 &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
825 u32 verbose = va_arg (*args,
u32);
843 u32 tci = va_arg (*args,
u32);
844 u32 thread_index = va_arg (*args,
u32);
845 u32 verbose = va_arg (*args,
u32);
852 s =
format (s,
"empty\n");
859 u32 tci = va_arg (*args,
u32);
867 u32 tci = va_arg (*args,
u32);
881 for (i = 0; i < len - 1; i++)
884 s =
format (s,
" start %u end %u\n", block->start - tc->irs,
885 block->end - tc->irs);
889 block = &sacks[len - 1];
890 s =
format (s,
" start %u end %u", block->start - tc->irs,
891 block->end - tc->irs);
905 for (i = 0; i < len - 1; i++)
908 s =
format (s,
" start %u end %u\n", block->start - tc->iss,
909 block->end - tc->iss);
913 block = &sacks[len - 1];
914 s =
format (s,
" start %u end %u", block->start - tc->iss,
915 block->end - tc->iss);
926 s =
format (s,
" [%u, %u]", hole->start - tc->iss, hole->end - tc->iss);
928 s =
format (s,
" [%u, %u]", hole->start, hole->end);
938 s =
format (s,
"sacked_bytes %u last_sacked_bytes %u lost_bytes %u\n",
939 sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes);
940 s =
format (s,
" last_bytes_delivered %u high_sacked %u snd_una_adv %u\n",
941 sb->last_bytes_delivered, sb->high_sacked, sb->snd_una_adv);
942 s =
format (s,
" cur_rxt_hole %u high_rxt %u rescue_rxt %u",
943 sb->cur_rxt_hole, sb->high_rxt, sb->rescue_rxt);
947 s =
format (s,
"\n head %u tail %u holes:\n", sb->head, sb->tail);
962 return &tc->connection;
969 return &tc->connection;
997 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
1003 return snd_space < tc->cwnd ? 0 : snd_space;
1006 return snd_space - (snd_space % tc->snd_mss);
1022 int snd_space, snt_limited;
1032 && tc->sack_sb.last_sacked_bytes == 0)))
1034 if (tc->rcv_dupacks == 1 && tc->limited_transmit != tc->snd_nxt)
1035 tc->limited_transmit = tc->snd_nxt;
1038 snt_limited = tc->snd_nxt - tc->limited_transmit;
1039 snd_space =
clib_max (2 * tc->snd_mss - snt_limited, 0);
1046 tc->snd_nxt = tc->snd_una_max;
1048 - (tc->snd_una_max - tc->snd_congestion);
1049 if (snd_space <= 0 || (tc->snd_una_max - tc->snd_una) >= tc->snd_wnd)
1073 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
1084 return (tc->snd_nxt - tc->snd_una);
1091 tw_timer_expire_timers_16t_2w_512sl (&
tcp_main.
1092 wrk_ctx[thread_index].timer_wheel,
1148 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1159 ASSERT (tc->state == TCP_STATE_SYN_RCVD);
1181 if (tc->state == TCP_STATE_CLOSE_WAIT)
1183 if (tc->flags & TCP_CONN_FINSNT)
1185 clib_warning (
"FIN was sent and still in CLOSE WAIT. Weird!");
1189 tc->state = TCP_STATE_LAST_ACK;
1218 u32 connection_index, timer_id;
1220 for (i = 0; i <
vec_len (expired_timers); i++)
1223 connection_index = expired_timers[
i] & 0x0FFFFFFF;
1224 timer_id = expired_timers[
i] >> 28;
1226 TCP_EVT_DBG (TCP_EVT_TIMER_POP, connection_index, timer_id);
1236 tw_timer_wheel_16t_2w_512sl_t *tw;
1239 tw = &tm->wrk_ctx[ii].timer_wheel;
1256 u32 preallocated_connections_per_thread;
1283 if (num_threads == 1)
1286 preallocated_connections_per_thread = tm->preallocated_connections;
1291 preallocated_connections_per_thread =
1292 tm->preallocated_connections / (num_threads - 1);
1294 for (; thread < num_threads; thread++)
1296 if (preallocated_connections_per_thread)
1298 preallocated_connections_per_thread);
1304 if (tm->preallocated_half_open_connections)
1306 tm->preallocated_half_open_connections);
1313 if (num_threads > 1)
1350 tm->punt_unknown4 = is_add;
1352 tm->punt_unknown6 = is_add;
1392 (input,
"preallocated-connections %d",
1393 &tm->preallocated_connections))
1395 else if (
unformat (input,
"preallocated-half-open-connections %d",
1396 &tm->preallocated_half_open_connections))
1398 else if (
unformat (input,
"buffer-fail-fraction %f",
1399 &tm->buffer_fail_fraction))
1427 u32 start_host_byte_order, end_host_byte_order;
1438 memset (&prefix, 0,
sizeof (prefix));
1442 if (fib_index == ~0)
1443 return VNET_API_ERROR_NO_SUCH_FIB;
1445 start_host_byte_order = clib_net_to_host_u32 (start->
as_u32);
1446 end_host_byte_order = clib_net_to_host_u32 (end->
as_u32);
1449 if ((end_host_byte_order - start_host_byte_order) > (10 << 10))
1450 return VNET_API_ERROR_INVALID_ARGUMENT;
1461 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1479 vec_add1 (tm->ip4_src_addresses, start[0]);
1495 start_host_byte_order++;
1496 start->
as_u32 = clib_host_to_net_u32 (start_host_byte_order);
1498 while (start_host_byte_order <= end_host_byte_order);
1523 memset (&prefix, 0,
sizeof (prefix));
1527 if (fib_index == ~0)
1528 return VNET_API_ERROR_NO_SUCH_FIB;
1537 vec_add1 (tm->ip6_src_addresses, start[0]);
1548 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1552 if (sw_if_index == (
u32) ~ 0)
1553 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1569 if (!memcmp (start, end,
sizeof (start[0])))
1574 for (i = 15; i >= 0; i--)
1577 if (tmp.
as_u8[i] != 0)
1603 memcpy (&v4end, &v4start,
sizeof (v4start));
1611 memcpy (&v6end, &v6start,
sizeof (v6start));
1614 else if (
unformat (input,
"fib-table %d", &table_id))
1620 if (!v4set && !v6set)
1632 case VNET_API_ERROR_NO_SUCH_FIB:
1635 case VNET_API_ERROR_INVALID_ARGUMENT:
1653 case VNET_API_ERROR_NO_SUCH_FIB:
1667 .path =
"tcp src-address",
1668 .short_help =
"tcp src-address <ip-addr> [- <ip-addr>] add src address range",
1676 #if TCP_SCOREBOARD_TRACE 1684 s =
format (s,
"scoreboard trace:");
1687 s =
format (s,
"{%u, %u, %u, %u, %u}, ", block->start, block->end,
1688 block->ack, block->snd_una_max, block->group);
1730 .path =
"show tcp scoreboard trace",
1731 .short_help =
"show tcp scoreboard trace <connection>",
1741 u32 next_ack,
left, group, has_new_ack = 0;
1748 memset (dummy_tc, 0,
sizeof (*dummy_tc));
1751 dummy_tc->rcv_opts.flags |= TCP_OPTS_FLAG_SACK;
1753 #if TCP_SCOREBOARD_TRACE 1754 trace = tc->sack_sb.trace;
1755 trace_len =
vec_len (tc->sack_sb.trace);
1761 for (i = 0; i < trace_len; i++)
1763 if (trace[i].ack != 0)
1765 dummy_tc->snd_una = trace[
i].ack - 1448;
1766 dummy_tc->snd_una_max = trace[
i].ack;
1771 while (left < trace_len)
1773 group = trace[
left].group;
1776 while (trace[left].group == group)
1778 if (trace[left].ack != 0)
1781 s =
format (s,
"Adding ack %u, snd_una_max %u, segs: ",
1782 trace[left].ack, trace[left].snd_una_max);
1783 dummy_tc->snd_una_max = trace[
left].snd_una_max;
1784 next_ack = trace[
left].ack;
1790 s =
format (s,
"[%u, %u], ", trace[left].start,
1792 vec_add2 (dummy_tc->rcv_opts.sacks, block, 1);
1793 block->start = trace[
left].start;
1794 block->end = trace[
left].end;
1802 dummy_tc->snd_una = next_ack + dummy_tc->sack_sb.snd_una_adv;
1806 &dummy_tc->sack_sb);
1851 .path =
"tcp replay scoreboard",
1852 .short_help =
"tcp replay scoreboard <connection>",
1866 tm->punt_unknown4 ?
"enabled" :
"disabled");
1868 tm->punt_unknown6 ?
"enabled" :
"disabled");
1874 .path =
"show tcp punt",
1875 .short_help =
"show tcp punt",
static void tcp_session_close(u32 conn_index, u32 thread_index)
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
#define tcp_in_cong_recovery(tc)
void dpo_stack_from_node(u32 child_node_index, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child parent relationship.
static int tcp_session_open(transport_endpoint_t *tep)
fib_protocol_t fp_proto
protocol type
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
static void tcp_add_del_adjacency(tcp_connection_t *tc, u8 is_add)
void receive_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, const ip46_address_t *nh_addr, dpo_id_t *dpo)
static u8 * format_tcp_listener_session(u8 *s, va_list *args)
const char * tcp_fsm_states[]
static clib_error_t * tcp_config_fn(vlib_main_t *vm, unformat_input_t *input)
#define tcp_in_recovery(tc)
void ip_copy(ip46_address_t *dst, ip46_address_t *src, u8 is_ip4)
#define seq_leq(_s1, _s2)
static u32 tcp_session_push_header(transport_connection_t *tconn, vlib_buffer_t *b)
struct _sack_block sack_block_t
u8 * format_tcp_rcv_sacks(u8 *s, va_list *args)
void ip6_register_protocol(u32 protocol, u32 node_index)
struct _scoreboard_trace_elt scoreboard_trace_elt_t
u8 * format_tcp_sacks(u8 *s, va_list *args)
vnet_main_t * vnet_get_main(void)
struct _transport_connection transport_connection_t
const char * tcp_connection_flags_str[]
vlib_node_registration_t tcp4_output_node
(constructor) VLIB_REGISTER_NODE (tcp4_output_node)
void scoreboard_init(sack_scoreboard_t *sb)
uword unformat_transport_connection(unformat_input_t *input, va_list *args)
static u32 tcp_session_send_space(transport_connection_t *trans_conn)
static transport_connection_t * tcp_half_open_session_get_transport(u32 conn_index)
tcp_connection_t * tcp_connection_new(u8 thread_index)
static void tcp_timer_establish_handler(u32 conn_index)
void ip_set(ip46_address_t *dst, void *src, u8 is_ip4)
static u32 tcp_session_tx_fifo_offset(transport_connection_t *trans_conn)
static u32 ip4_compute_flow_hash(const ip4_header_t *ip, flow_hash_config_t flow_hash_config)
struct _sack_scoreboard sack_scoreboard_t
static int tcp_alloc_custom_local_endpoint(tcp_main_t *tm, ip46_address_t *lcl_addr, u16 *lcl_port, u8 is_ip4)
static f64 vlib_time_now(vlib_main_t *vm)
static tcp_connection_t * tcp_half_open_connection_new(void)
static u8 * format_tcp_timers(u8 *s, va_list *args)
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
sack_scoreboard_hole_t * scoreboard_next_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *hole)
flow_hash_config_t lb_hash_config
the hash config to use when selecting a bucket.
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
struct _tcp_main tcp_main_t
struct _transport_proto_vft transport_proto_vft_t
void tcp_connection_timers_reset(tcp_connection_t *tc)
Stop all connection timers.
vlib_node_registration_t tcp6_output_node
(constructor) VLIB_REGISTER_NODE (tcp6_output_node)
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
timer_expiration_handler tcp_timer_retransmit_handler
static heap_elt_t * last(heap_header_t *h)
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
int ip6_neighbor_proxy_add_del(u32 sw_if_index, ip6_address_t *addr, u8 is_del)
void tcp_update_burst_snd_vars(tcp_connection_t *tc)
Update burst send vars.
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
void * ip_interface_get_first_ip(u32 sw_if_index, u8 is_ip4)
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.
static u32 tcp_available_snd_wnd(const tcp_connection_t *tc)
static u16 tcp_session_send_mss(transport_connection_t *trans_conn)
Compute maximum segment size for session layer.
static tcp_connection_t * tcp_get_connection_from_transport(transport_connection_t *tconn)
void ip4_register_protocol(u32 protocol, u32 node_index)
static void tcp_initialize_timer_wheels(tcp_main_t *tm)
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
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_half_open_connection_del(tcp_connection_t *tc)
Cleanup half-open connection.
struct _sack_scoreboard_hole sack_scoreboard_hole_t
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
pthread_t thread[MAX_CONNS]
tcp_cc_algorithm_t * tcp_cc_algo_get(tcp_cc_algorithm_type_e type)
unformat_function_t * unformat_pg_edit
#define VNET_SW_INTERFACE_FLAG_PROXY_ARP
void tcp_init_snd_vars(tcp_connection_t *tc)
Initialize connection send variables.
#define VLIB_INIT_FUNCTION(x)
static u8 * format_tcp_vars(u8 *s, va_list *args)
u16 lb_n_buckets_minus_1
number of buckets in the load-balance - 1.
void tcp_connection_timers_init(tcp_connection_t *tc)
Initialize all connection timers as invalid.
static u32 tcp_available_output_snd_space(const tcp_connection_t *tc)
static void tcp_connection_unbind(u32 listener_index)
Aggregrate type for a prefix.
#define clib_error_return(e, args...)
void stream_session_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
vhost_vring_state_t state
static u8 * tcp_scoreboard_dump_trace(u8 *s, sack_scoreboard_t *sb)
timer_expiration_handler tcp_timer_retransmit_syn_handler
static u32 tcp_time_now(void)
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
u16 fp_len
The mask length.
#define vlib_call_init_function(vm, x)
void tcp_api_reference(void)
#define TCP_EVT_DBG(_evt, _args...)
fib_node_index_t fib_table_lookup(u32 fib_index, const fib_prefix_t *prefix)
Perfom a longest prefix match in the non-forwarding table.
static u32 tcp_connection_bind(u32 session_index, transport_endpoint_t *lcl)
static int tcp_connection_open(transport_endpoint_t *rmt)
static i32 tcp_rcv_wnd_available(tcp_connection_t *tc)
static void tcp_cc_init(tcp_connection_t *tc)
static void clib_spinlock_init(clib_spinlock_t *p)
static void tcp_timer_set(tcp_connection_t *tc, u8 timer_id, u32 interval)
static u32 tcp_session_unbind(u32 listener_index)
static timer_expiration_handler * timer_expiration_handlers[TCP_N_TIMERS]
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
static clib_error_t * tcp_main_enable(vlib_main_t *vm)
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
timer_expiration_handler tcp_timer_persist_handler
static transport_connection_t * tcp_session_get_transport(u32 conn_index, u32 thread_index)
static ip_protocol_info_t * ip_get_protocol_info(ip_main_t *im, u32 protocol)
u32 tcp_push_header(tcp_connection_t *tconn, vlib_buffer_t *b)
#define tcp_in_fastrecovery(tc)
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
dpo_type_t dpoi_type
the type
format_function_t * format_header
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
void tcp_rcv_sacks(tcp_connection_t *tc, u32 ack)
void tcp_send_syn(tcp_connection_t *tc)
Send SYN.
load-balancing over a choice of [un]equal cost paths
static transport_connection_t * tcp_session_get_listener(u32 listener_index)
#define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX
static u32 ip6_compute_flow_hash(const ip6_header_t *ip, flow_hash_config_t flow_hash_config)
#define pool_put(P, E)
Free an object E in pool P.
static void tcp_expired_timers_dispatch(u32 *expired_timers)
#define TCP_TIMER_HANDLE_INVALID
static void tcp_session_cleanup(u32 conn_index, u32 thread_index)
static u32 tcp_flight_size(const tcp_connection_t *tc)
Our estimate of the number of bytes in flight (pipe size)
#define VLIB_CONFIG_FUNCTION(x, n,...)
reliable transport protos
u8 * format_tcp_scoreboard(u8 *s, va_list *args)
clib_error_t * vnet_tcp_enable_disable(vlib_main_t *vm, u8 is_en)
static void tcp_timer_waitclose_handler(u32 conn_index)
void( timer_expiration_handler)(u32 index)
#define foreach_vlib_main(body)
#define TCP_DBG(_fmt, _args...)
u32 fib_entry_get_resolving_interface(fib_node_index_t entry_index)
static void tcp_timer_reset(tcp_connection_t *tc, u8 timer_id)
#define tcp_fastrecovery_sent_1_smss(tc)
clib_error_t * ip_main_init(vlib_main_t *vm)
fib_node_index_t fib_table_entry_special_dpo_update(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
Update a 'special' entry to the FIB that links to the DPO passed A special entry is an entry that the...
int tcp_configure_v4_source_address_range(vlib_main_t *vm, ip4_address_t *start, ip4_address_t *end, u32 table_id)
Configure an ipv4 source address range.
static_always_inline uword vlib_get_thread_index(void)
static void tcp_add_del_adj_cb(tcp_add_del_adj_args_t *args)
static clib_error_t * tcp_src_address(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd_arg)
void tcp_connection_close(tcp_connection_t *tc)
Begin connection closing procedure.
#define ENDPOINT_INVALID_INDEX
#define clib_warning(format, args...)
#define clib_memcpy(a, b, c)
const char * tcp_dbg_evt_str[]
static u8 * format_tcp_connection_flags(u8 *s, va_list *args)
u32 fib_node_index_t
A typedef of a node index.
void tcp_flush_frames_to_output(u8 thread_index)
Flush v4 and v6 tcp and ip-lookup tx frames for thread index.
vlib_node_registration_t tcp6_input_node
(constructor) VLIB_REGISTER_NODE (tcp6_input_node)
fib_node_index_t tcp_lookup_rmt_in_fib(tcp_connection_t *tc)
fib_entry_t * fib_entry_get(fib_node_index_t index)
int vnet_proxy_arp_add_del(ip4_address_t *lo_addr, ip4_address_t *hi_addr, u32 fib_index, int is_del)
#define pool_init_fixed(pool, max_elts)
initialize a fixed-size, preallocated pool
void transport_endpoint_cleanup(u8 proto, ip46_address_t *lcl_ip, u16 port)
void transport_register_protocol(transport_proto_t transport_proto, const transport_proto_vft_t *vft, fib_protocol_t fib_proto, u32 output_node)
Register transport virtual function table.
#define VLIB_CLI_COMMAND(x,...)
static void tcp_timer_update(tcp_connection_t *tc, u8 timer_id, u32 interval)
#define pool_put_index(p, i)
Free pool element with given index.
u32 session_tx_fifo_max_dequeue(transport_connection_t *tc)
enum _tcp_cc_algorithm_type tcp_cc_algorithm_type_e
static clib_error_t * tcp_scoreboard_trace_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd_arg)
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
static load_balance_t * load_balance_get(index_t lbi)
#define seq_geq(_s1, _s2)
static u8 * format_tcp_congestion_status(u8 *s, va_list *args)
void stream_session_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
static u32 tcp_snd_space(tcp_connection_t *tc)
Compute tx window session is allowed to fill.
static uword ip6_address_is_link_local_unicast(const ip6_address_t *a)
From the control plane API.
void tcp_cc_algo_register(tcp_cc_algorithm_type_e type, const tcp_cc_algorithm_t *vft)
u8 * tcp_scoreboard_replay(u8 *s, tcp_connection_t *tc, u8 verbose)
clib_error_t * ip4_lookup_init(vlib_main_t *vm)
int tcp_configure_v6_source_address_range(vlib_main_t *vm, ip6_address_t *start, ip6_address_t *end, u32 table_id)
Configure an ipv6 source address range.
struct _tcp_cc_algorithm tcp_cc_algorithm_t
static clib_error_t * tcp_init(vlib_main_t *vm)
static void tcp_timer_keep_handler(u32 conn_index)
dpo_id_t fe_lb
The load-balance used for forwarding.
u8 ip_is_zero(ip46_address_t *ip46_address, u8 is_ip4)
static const transport_proto_vft_t tcp_proto
void tcp_punt_unknown(vlib_main_t *vm, u8 is_ip4, u8 is_add)
#define tcp_fastrecovery_1_smss_on(tc)
void tcp_connection_reset(tcp_connection_t *tc)
Notify session that connection has been reset.
vlib_node_registration_t tcp4_input_node
(constructor) VLIB_REGISTER_NODE (tcp4_input_node)
static u32 tcp_session_bind(u32 session_index, transport_endpoint_t *tep)
index_t dpoi_index
the index of objects of that type
#define FIB_NODE_INDEX_INVALID
#define foreach_tcp_fsm_state
TCP FSM state definitions as per RFC793.
void tcp_send_fin(tcp_connection_t *tc)
Send FIN.
#define foreach_tcp_connection_flag
TCP connection flags.
#define foreach_tcp_timer
TCP timers.
static u8 * format_tcp_connection_id(u8 *s, va_list *args)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
static u32 tcp_set_time_now(u32 thread_index)
sack_scoreboard_hole_t * scoreboard_first_hole(sack_scoreboard_t *sb)
static u32 tcp_round_snd_space(tcp_connection_t *tc, u32 snd_space)
struct _transport_endpoint transport_endpoint_t
void tcp_connection_init_vars(tcp_connection_t *tc)
Initialize tcp connection variables.
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
const char * tcp_conn_timers[]
static u8 * format_tcp_session(u8 *s, va_list *args)
static u32 vlib_buffer_free_list_buffer_size(vlib_main_t *vm, vlib_buffer_free_list_index_t index)
u8 * format_tcp_connection(u8 *s, va_list *args)
static u8 * format_tcp_sack_hole(u8 *s, va_list *args)
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
static u32 random_u32(u32 *seed)
32-bit random number generator
#define TCP_SCOREBOARD_TRACE
int session_stream_connect_notify(transport_connection_t *tc, u8 is_fail)
static vlib_thread_main_t * vlib_get_thread_main()
void tcp_connection_cleanup(tcp_connection_t *tc)
Cleans up connection state.
void tcp_connection_del(tcp_connection_t *tc)
Connection removal.
void tcp_init_mss(tcp_connection_t *tc)
adj_index_t adj_nbr_add_or_lock(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Neighbour Adjacency sub-type.
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
#define vec_foreach(var, vec)
Vector iterator.
int transport_alloc_local_endpoint(u8 proto, transport_endpoint_t *rmt, ip46_address_t *lcl_addr, u16 *lcl_port)
#define TCP_TSTAMP_RESOLUTION
Time stamp resolution.
static u8 * format_tcp_half_open_session(u8 *s, va_list *args)
#define tcp_opts_sack_permitted(_to)
int transport_alloc_local_port(u8 proto, ip46_address_t *ip)
Allocate local port and add if successful add entry to local endpoint table to mark the pair as used...
u8 * format_tcp_state(u8 *s, va_list *args)
static clib_error_t * ip6_lookup_init(vlib_main_t *vm)
static clib_error_t * show_tcp_punt_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd_arg)
static void tcp_update_time(f64 now, u8 thread_index)
static tcp_main_t * vnet_get_tcp_main()
timer_expiration_handler tcp_timer_delack_handler
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
static clib_error_t * tcp_show_scoreboard_trace_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd_arg)
static u8 tcp_timer_is_active(tcp_connection_t *tc, tcp_timers_e timer)
static tcp_connection_t * tcp_listener_get(u32 tli)
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.