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)
214 tc->flags |= TCP_CONN_HALF_OPEN_DONE;
218 int thread_index = tc->c_thread_index;
228 memset (tc, 0xFA,
sizeof (*tc));
229 pool_put (tm->connections[thread_index], tc);
254 pool_get (tm->connections[thread_index], tc);
255 memset (tc, 0,
sizeof (*tc));
256 tc->c_c_index = tc - tm->connections[thread_index];
257 tc->c_thread_index = thread_index;
271 case TCP_STATE_SYN_RCVD:
276 case TCP_STATE_SYN_SENT:
280 case TCP_STATE_ESTABLISHED:
287 case TCP_STATE_CLOSE_WAIT:
288 case TCP_STATE_FIN_WAIT_1:
289 case TCP_STATE_FIN_WAIT_2:
290 case TCP_STATE_CLOSING:
291 tc->state = TCP_STATE_CLOSED;
296 case TCP_STATE_CLOSED:
322 case TCP_STATE_SYN_SENT:
323 tc->state = TCP_STATE_CLOSED;
325 case TCP_STATE_SYN_RCVD:
328 tc->state = TCP_STATE_FIN_WAIT_1;
331 case TCP_STATE_ESTABLISHED:
335 tc->flags |= TCP_CONN_FINPNDG;
336 tc->state = TCP_STATE_FIN_WAIT_1;
338 case TCP_STATE_CLOSE_WAIT:
343 tc->state = TCP_STATE_LAST_ACK;
347 tc->flags |= TCP_CONN_FINPNDG;
349 case TCP_STATE_FIN_WAIT_1:
353 TCP_DBG (
"state: %u", tc->state);
360 && tc->state == TCP_STATE_CLOSED)
378 tc->state = TCP_STATE_CLOSED;
414 typedef struct ip4_tcp_hdr
420 typedef struct ip6_tcp_hdr
438 memset (&hdr, 0,
sizeof (hdr));
439 hdr.ip.protocol = IP_PROTOCOL_TCP;
440 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
441 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
442 hdr.tcp.src_port = tc->c_lcl_port;
443 hdr.tcp.dst_port = tc->c_rmt_port;
449 memset (&hdr, 0,
sizeof (hdr));
450 hdr.ip.protocol = IP_PROTOCOL_TCP;
451 clib_memcpy (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
453 clib_memcpy (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
455 hdr.tcp.src_port = tc->c_lcl_port;
456 hdr.tcp.dst_port = tc->c_rmt_port;
471 prefix.
fp_len = tc->c_is_ip4 ? 32 : 128;
480 u32 output_node_index;
487 tcp_connection_select_lb_bucket (tc, &fe->
fe_lb, &choice);
506 tcp_connection_stack_on_fib_entry (tc);
514 tc->cc_algo->init (tc);
524 tm->cc_algos[type] = *vft;
531 return &tm->cc_algos[type];
553 tc->snd_una = tc->iss;
554 tc->snd_nxt = tc->iss + 1;
555 tc->snd_una_max = tc->snd_nxt;
569 if (tc->state == TCP_STATE_SYN_RCVD)
580 u16 * lcl_port,
u8 is_ip4)
585 index = tm->last_v4_address_rotor++;
586 if (tm->last_v4_address_rotor >=
vec_len (tm->ip4_src_addresses))
587 tm->last_v4_address_rotor = 0;
588 lcl_addr->ip4.as_u32 = tm->ip4_src_addresses[index].as_u32;
592 index = tm->last_v6_address_rotor++;
593 if (tm->last_v6_address_rotor >=
vec_len (tm->ip6_src_addresses))
594 tm->last_v6_address_rotor = 0;
595 clib_memcpy (&lcl_addr->ip6, &tm->ip6_src_addresses[index],
613 ip46_address_t lcl_addr;
620 if ((rmt->is_ip4 &&
vec_len (tm->ip4_src_addresses))
621 || (!rmt->is_ip4 &&
vec_len (tm->ip6_src_addresses)))
626 rmt, &lcl_addr, &lcl_port);
636 ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
637 ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
638 tc->c_rmt_port = rmt->port;
639 tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
640 tc->c_is_ip4 = rmt->is_ip4;
642 tc->c_fib_index = rmt->fib_index;
647 tc->state = TCP_STATE_SYN_SENT;
652 return tc->c_c_index;
662 #define _(sym, str) str, 668 #define _(sym, str) str, 681 s =
format (s,
"UNKNOWN (%d (0x%x))", state, state);
686 #define _(sym, str) str, 698 if (tc->flags & (1 << i))
700 for (i = 0; i <
last; i++)
702 if (tc->flags & (1 << i))
711 #define _(sym, str) str, 727 for (i = 0; i <
last; i++)
746 s =
format (s,
"recovery");
748 s =
format (s,
"fastrecovery");
757 return (
i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
766 s =
format (s,
" snd_una %u snd_nxt %u snd_una_max %u",
767 tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
768 tc->snd_una_max - tc->iss);
769 s =
format (s,
" rcv_nxt %u rcv_las %u\n",
770 tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
771 s =
format (s,
" snd_wnd %u rcv_wnd %u rcv_wscale %u ",
772 tc->snd_wnd, tc->rcv_wnd, tc->rcv_wscale);
773 s =
format (s,
"snd_wl1 %u snd_wl2 %u\n", tc->snd_wl1 - tc->irs,
774 tc->snd_wl2 - tc->iss);
775 s =
format (s,
" flight size %u out space %u cc space %u rcv_wnd_av %u\n",
779 s =
format (s,
"cwnd %u ssthresh %u rtx_bytes %u bytes_acked %u\n",
780 tc->cwnd, tc->ssthresh, tc->snd_rxt_bytes, tc->bytes_acked);
781 s =
format (s,
" prev_ssthresh %u snd_congestion %u dupack %u",
782 tc->prev_ssthresh, tc->snd_congestion - tc->iss,
784 s =
format (s,
" limited_transmit %u\n", tc->limited_transmit - tc->iss);
785 s =
format (s,
" tsecr %u tsecr_last_ack %u\n", tc->rcv_opts.tsecr,
787 s =
format (s,
" rto %u rto_boff %u srtt %u rttvar %u rtt_ts %u ", tc->rto,
788 tc->rto_boff, tc->srtt, tc->rttvar, tc->rtt_ts);
789 s =
format (s,
"rtt_seq %u\n", tc->rtt_seq);
790 s =
format (s,
" tsval_recent %u tsval_recent_age %u\n", tc->tsval_recent,
792 if (tc->state >= TCP_STATE_ESTABLISHED)
809 s =
format (s,
"[#%d][%s] %U:%d->%U:%d", tc->c_thread_index,
"T",
812 &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
816 s =
format (s,
"[#%d][%s] %U:%d->%U:%d", tc->c_thread_index,
"T",
819 &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
829 u32 verbose = va_arg (*args,
u32);
847 u32 tci = va_arg (*args,
u32);
848 u32 thread_index = va_arg (*args,
u32);
849 u32 verbose = va_arg (*args,
u32);
856 s =
format (s,
"empty\n");
863 u32 tci = va_arg (*args,
u32);
871 u32 tci = va_arg (*args,
u32);
885 for (i = 0; i < len - 1; i++)
888 s =
format (s,
" start %u end %u\n", block->start - tc->irs,
889 block->end - tc->irs);
893 block = &sacks[len - 1];
894 s =
format (s,
" start %u end %u", block->start - tc->irs,
895 block->end - tc->irs);
909 for (i = 0; i < len - 1; i++)
912 s =
format (s,
" start %u end %u\n", block->start - tc->iss,
913 block->end - tc->iss);
917 block = &sacks[len - 1];
918 s =
format (s,
" start %u end %u", block->start - tc->iss,
919 block->end - tc->iss);
930 s =
format (s,
" [%u, %u]", hole->start - tc->iss, hole->end - tc->iss);
932 s =
format (s,
" [%u, %u]", hole->start, hole->end);
942 s =
format (s,
"sacked_bytes %u last_sacked_bytes %u lost_bytes %u\n",
943 sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes);
944 s =
format (s,
" last_bytes_delivered %u high_sacked %u snd_una_adv %u\n",
945 sb->last_bytes_delivered, sb->high_sacked - tc->iss,
947 s =
format (s,
" cur_rxt_hole %u high_rxt %u rescue_rxt %u",
948 sb->cur_rxt_hole, sb->high_rxt - tc->iss,
949 sb->rescue_rxt - tc->iss);
953 s =
format (s,
"\n head %u tail %u holes:\n", sb->head, sb->tail);
968 return &tc->connection;
975 return &tc->connection;
1003 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
1009 return snd_space < tc->cwnd ? 0 : snd_space;
1012 return snd_space - (snd_space % tc->snd_mss);
1028 int snd_space, snt_limited;
1038 && tc->sack_sb.last_sacked_bytes == 0)))
1040 if (tc->rcv_dupacks == 1 && tc->limited_transmit != tc->snd_nxt)
1041 tc->limited_transmit = tc->snd_nxt;
1044 snt_limited = tc->snd_nxt - tc->limited_transmit;
1045 snd_space =
clib_max (2 * tc->snd_mss - snt_limited, 0);
1052 tc->snd_nxt = tc->snd_una_max;
1054 - (tc->snd_una_max - tc->snd_congestion);
1055 if (snd_space <= 0 || (tc->snd_una_max - tc->snd_una) >= tc->snd_wnd)
1085 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
1096 return (tc->snd_nxt - tc->snd_una);
1103 tw_timer_expire_timers_16t_2w_512sl (&
tcp_main.
1104 wrk_ctx[thread_index].timer_wheel,
1160 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1171 ASSERT (tc->state == TCP_STATE_SYN_RCVD);
1193 if (tc->state == TCP_STATE_CLOSE_WAIT)
1195 if (tc->flags & TCP_CONN_FINSNT)
1197 clib_warning (
"FIN was sent and still in CLOSE WAIT. Weird!");
1203 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
1205 tc->state = TCP_STATE_LAST_ACK;
1234 u32 connection_index, timer_id;
1236 for (i = 0; i <
vec_len (expired_timers); i++)
1239 connection_index = expired_timers[
i] & 0x0FFFFFFF;
1240 timer_id = expired_timers[
i] >> 28;
1242 TCP_EVT_DBG (TCP_EVT_TIMER_POP, connection_index, timer_id);
1252 tw_timer_wheel_16t_2w_512sl_t *tw;
1255 tw = &tm->wrk_ctx[ii].timer_wheel;
1272 u32 preallocated_connections_per_thread;
1299 if (num_threads == 1)
1302 preallocated_connections_per_thread = tm->preallocated_connections;
1307 preallocated_connections_per_thread =
1308 tm->preallocated_connections / (num_threads - 1);
1310 for (; thread < num_threads; thread++)
1312 if (preallocated_connections_per_thread)
1314 preallocated_connections_per_thread);
1320 if (tm->preallocated_half_open_connections)
1322 tm->preallocated_half_open_connections);
1329 if (num_threads > 1)
1366 tm->punt_unknown4 = is_add;
1368 tm->punt_unknown6 = is_add;
1407 if (
unformat (input,
"preallocated-connections %d",
1408 &tm->preallocated_connections))
1410 else if (
unformat (input,
"preallocated-half-open-connections %d",
1411 &tm->preallocated_half_open_connections))
1413 else if (
unformat (input,
"buffer-fail-fraction %f",
1414 &tm->buffer_fail_fraction))
1445 u32 start_host_byte_order, end_host_byte_order;
1456 memset (&prefix, 0,
sizeof (prefix));
1460 if (fib_index == ~0)
1461 return VNET_API_ERROR_NO_SUCH_FIB;
1463 start_host_byte_order = clib_net_to_host_u32 (start->
as_u32);
1464 end_host_byte_order = clib_net_to_host_u32 (end->
as_u32);
1467 if ((end_host_byte_order - start_host_byte_order) > (10 << 10))
1468 return VNET_API_ERROR_INVALID_ARGUMENT;
1479 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1497 vec_add1 (tm->ip4_src_addresses, start[0]);
1513 start_host_byte_order++;
1514 start->
as_u32 = clib_host_to_net_u32 (start_host_byte_order);
1516 while (start_host_byte_order <= end_host_byte_order);
1541 memset (&prefix, 0,
sizeof (prefix));
1545 if (fib_index == ~0)
1546 return VNET_API_ERROR_NO_SUCH_FIB;
1555 vec_add1 (tm->ip6_src_addresses, start[0]);
1566 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1570 if (sw_if_index == (
u32) ~ 0)
1571 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1587 if (!memcmp (start, end,
sizeof (start[0])))
1592 for (i = 15; i >= 0; i--)
1595 if (tmp.
as_u8[i] != 0)
1621 memcpy (&v4end, &v4start,
sizeof (v4start));
1629 memcpy (&v6end, &v6start,
sizeof (v6start));
1632 else if (
unformat (input,
"fib-table %d", &table_id))
1638 if (!v4set && !v6set)
1650 case VNET_API_ERROR_NO_SUCH_FIB:
1653 case VNET_API_ERROR_INVALID_ARGUMENT:
1671 case VNET_API_ERROR_NO_SUCH_FIB:
1685 .path =
"tcp src-address",
1686 .short_help =
"tcp src-address <ip-addr> [- <ip-addr>] add src address range",
1694 #if TCP_SCOREBOARD_TRACE 1702 s =
format (s,
"scoreboard trace:");
1705 s =
format (s,
"{%u, %u, %u, %u, %u}, ", block->start, block->end,
1706 block->ack, block->snd_una_max, block->group);
1748 .path =
"show tcp scoreboard trace",
1749 .short_help =
"show tcp scoreboard trace <connection>",
1759 u32 next_ack,
left, group, has_new_ack = 0;
1766 memset (dummy_tc, 0,
sizeof (*dummy_tc));
1769 dummy_tc->rcv_opts.flags |= TCP_OPTS_FLAG_SACK;
1771 #if TCP_SCOREBOARD_TRACE 1772 trace = tc->sack_sb.trace;
1773 trace_len =
vec_len (tc->sack_sb.trace);
1779 for (i = 0; i < trace_len; i++)
1781 if (trace[i].ack != 0)
1783 dummy_tc->snd_una = trace[
i].ack - 1448;
1784 dummy_tc->snd_una_max = trace[
i].ack;
1789 while (left < trace_len)
1791 group = trace[
left].group;
1794 while (trace[left].group == group)
1796 if (trace[left].ack != 0)
1799 s =
format (s,
"Adding ack %u, snd_una_max %u, segs: ",
1800 trace[left].ack, trace[left].snd_una_max);
1801 dummy_tc->snd_una_max = trace[
left].snd_una_max;
1802 next_ack = trace[
left].ack;
1808 s =
format (s,
"[%u, %u], ", trace[left].start,
1810 vec_add2 (dummy_tc->rcv_opts.sacks, block, 1);
1811 block->start = trace[
left].start;
1812 block->end = trace[
left].end;
1820 dummy_tc->snd_una = next_ack + dummy_tc->sack_sb.snd_una_adv;
1824 &dummy_tc->sack_sb);
1869 .path =
"tcp replay scoreboard",
1870 .short_help =
"tcp replay scoreboard <connection>",
1884 tm->punt_unknown4 ?
"enabled" :
"disabled");
1886 tm->punt_unknown6 ?
"enabled" :
"disabled");
1892 .path =
"show tcp punt",
1893 .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
static clib_error_t * ip4_lookup_init(vlib_main_t *vm)
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.
tcp_cc_algorithm_t * tcp_cc_algo_get(tcp_cc_algorithm_type_e type)
memset(h->entries, 0, sizeof(h->entries[0])*entries)
unformat_function_t * unformat_pg_edit
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
pthread_t thread[MAX_CONNS]
static u32 tcp_time_now(void)
u32 tcp_snd_space(tcp_connection_t *tc)
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
vnet_sw_interface_flags_t flags
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 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)
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)
static u32 tcp_snd_space_inline(tcp_connection_t *tc)
Compute tx window session is allowed to fill.
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()
static void tcp_cong_recovery_off(tcp_connection_t *tc)
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.