66 .sw_if_index = tc->sw_if_index,
76 tc->cc_algo->init (tc);
82 if (tc->cc_algo->cleanup)
83 tc->cc_algo->cleanup (tc);
93 tm->cc_algos[
type] = *vft;
101 return &tm->cc_algos[
type];
109 return tm->cc_last_type;
119 pool_get (tm->listener_pool, listener);
122 listener->c_c_index = listener - tm->listener_pool;
123 listener->c_lcl_port = lcl->port;
130 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
132 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
133 listener->c_is_ip4 = lcl->is_ip4;
134 listener->c_proto = TRANSPORT_PROTO_TCP;
135 listener->c_s_index = session_index;
136 listener->c_fib_index = lcl->fib_index;
137 listener->state = TCP_STATE_LISTEN;
142 TCP_EVT (TCP_EVT_BIND, listener);
144 return listener->c_c_index;
183 return &tc->connection;
197 pool_put (tm->half_open_connections, tc);
227 pool_get (tm->half_open_connections, tc);
229 tc->c_c_index = tc - tm->half_open_connections;
250 if (tc->state == TCP_STATE_SYN_SENT)
256 tc->flags |= TCP_CONN_HALF_OPEN_DONE;
260 int thread_index = tc->c_thread_index;
274 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
280 pool_put (tm->connections[thread_index], tc);
304 pool_get (tm->connections[thread_index], tc);
306 tc->c_c_index = tc - tm->connections[thread_index];
307 tc->c_thread_index = thread_index;
317 pool_get (tm->connections[thread_index], tc);
319 tc->c_c_index = tc - tm->connections[thread_index];
320 tc->c_thread_index = thread_index;
330 u8 thread_index = tc->c_thread_index;
332 pool_put (tm->connections[thread_index], tc);
335 pool_put (tm->connections[tc->c_thread_index], tc);
345 TCP_EVT (TCP_EVT_RST_RCVD, tc);
348 case TCP_STATE_SYN_RCVD:
353 case TCP_STATE_SYN_SENT:
357 case TCP_STATE_ESTABLISHED:
367 case TCP_STATE_CLOSE_WAIT:
368 case TCP_STATE_FIN_WAIT_1:
369 case TCP_STATE_FIN_WAIT_2:
370 case TCP_STATE_CLOSING:
371 case TCP_STATE_LAST_ACK:
380 case TCP_STATE_CLOSED:
381 case TCP_STATE_TIME_WAIT:
384 TCP_DBG (
"reset state: %u", tc->state);
409 case TCP_STATE_SYN_SENT:
414 case TCP_STATE_SYN_RCVD:
420 case TCP_STATE_ESTABLISHED:
434 tc->flags |= TCP_CONN_FINPNDG;
441 case TCP_STATE_CLOSE_WAIT:
450 tc->flags |= TCP_CONN_FINPNDG;
452 case TCP_STATE_FIN_WAIT_1:
455 case TCP_STATE_CLOSED:
463 TCP_DBG (
"state: %u", tc->state);
530 typedef struct ip4_tcp_hdr
536 typedef struct ip6_tcp_hdr
555 hdr.ip.protocol = IP_PROTOCOL_TCP;
556 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
557 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
558 hdr.tcp.src_port = tc->c_lcl_port;
559 hdr.tcp.dst_port = tc->c_rmt_port;
566 hdr.ip.protocol = IP_PROTOCOL_TCP;
571 hdr.tcp.src_port = tc->c_lcl_port;
572 hdr.tcp.dst_port = tc->c_rmt_port;
587 prefix.
fp_len = tc->c_is_ip4 ? 32 : 128;
596 u32 output_node_index;
603 tcp_connection_select_lb_bucket (tc, &fe->
fe_lb, &choice);
622 tcp_connection_stack_on_fib_entry (tc);
636 tmp = (
u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (
u64) tc->c_rmt_ip.ip4.as_u32;
638 tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1]
639 ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1];
641 tmp ^= tm->iss_seed.first | ((
u64) tc->c_lcl_port << 16 | tc->c_rmt_port);
642 tmp ^= tm->iss_seed.second;
644 return ((tmp >> 32) ^ (tmp & 0xffffffff));
666 u16 default_min_mss = 536;
671 tc->snd_mss =
clib_min (tc->rcv_opts.mss, tc->mss);
673 if (tc->snd_mss < 45)
676 tc->snd_mss = default_min_mss;
677 tc->rcv_opts.mss = default_min_mss;
681 ASSERT (tc->snd_mss > 45);
704 tc->snd_una = tc->iss;
705 tc->snd_nxt = tc->iss + 1;
706 tc->snd_una_max = tc->snd_nxt;
714 byte_rate = tc->cwnd / (tc->srtt *
TCP_TICK);
716 tc->mrtt_us = (
u32) ~ 0;
729 if (tc->state == TCP_STATE_SYN_RCVD)
743 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
747 tc->cfg_flags |= TCP_CFG_F_NO_TSO;
754 u16 * lcl_port,
u8 is_ip4)
759 index = tm->last_v4_addr_rotor++;
761 tm->last_v4_addr_rotor = 0;
762 lcl_addr->ip4.as_u32 =
tcp_cfg.ip4_src_addrs[index].as_u32;
766 index = tm->last_v6_addr_rotor++;
768 tm->last_v6_addr_rotor = 0;
787 ip46_address_t lcl_addr;
800 rmt, &lcl_addr, &lcl_port);
810 ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
811 ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
812 tc->c_rmt_port = rmt->port;
813 tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
814 tc->c_is_ip4 = rmt->is_ip4;
815 tc->c_proto = TRANSPORT_PROTO_TCP;
816 tc->c_fib_index = rmt->fib_index;
822 tc->state = TCP_STATE_SYN_SENT;
827 return tc->c_c_index;
831 #define _(sym, str) str, 844 s =
format (s,
"UNKNOWN (%d (0x%x))", state, state);
849 #define _(sym, str) str, 861 if (tc->cfg_flags & (1 << i))
863 for (i = 0; i <
last; i++)
865 if (tc->cfg_flags & (1 << i))
874 #define _(sym, str) str, 886 if (tc->flags & (1 << i))
888 for (i = 0; i <
last; i++)
890 if (tc->flags & (1 << i))
899 #define _(sym, str) str, 914 for (i = 0; i <
last; i++)
931 s =
format (s,
"recovery");
933 s =
format (s,
"fastrecovery");
942 return (
i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
952 s =
format (s,
"algo %s cwnd %u ssthresh %u bytes_acked %u\n",
953 tc->cc_algo->name, tc->cwnd, tc->ssthresh, tc->bytes_acked);
954 s =
format (s,
"%Ucc space %u prev_cwnd %u prev_ssthresh %u\n",
956 tc->prev_cwnd, tc->prev_ssthresh);
957 s =
format (s,
"%Usnd_cong %u dupack %u limited_tx %u\n",
959 tc->rcv_dupacks, tc->limited_transmit - tc->iss);
960 s =
format (s,
"%Urxt_bytes %u rxt_delivered %u rxt_head %u rxt_ts %u\n",
962 tc->rxt_delivered, tc->rxt_head - tc->iss,
966 s =
format (s,
"%Uprr_start %u prr_delivered %u prr space %u\n",
968 tc->prr_delivered, prr_space);
977 s =
format (s,
"in segs %lu dsegs %lu bytes %lu dupacks %u\n",
978 tc->segs_in, tc->data_segs_in, tc->bytes_in, tc->dupacks_in);
979 s =
format (s,
"%Uout segs %lu dsegs %lu bytes %lu dupacks %u\n",
981 tc->data_segs_out, tc->bytes_out, tc->dupacks_out);
982 s =
format (s,
"%Ufr %u tr %u rxt segs %lu bytes %lu duration %.3f\n",
984 tc->tr_occurences, tc->segs_retrans, tc->bytes_retrans,
986 s =
format (s,
"%Uerr wnd data below %u above %u ack below %u above %u",
988 tc->errors.above_data_wnd, tc->errors.below_ack_wnd,
989 tc->errors.above_ack_wnd);
997 s =
format (s,
" index: %u cfg: %U flags: %U timers: %U\n", tc->c_c_index,
1000 s =
format (s,
" snd_una %u snd_nxt %u snd_una_max %u",
1001 tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
1002 tc->snd_una_max - tc->iss);
1003 s =
format (s,
" rcv_nxt %u rcv_las %u\n",
1004 tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
1005 s =
format (s,
" snd_wnd %u rcv_wnd %u rcv_wscale %u ",
1006 tc->snd_wnd, tc->rcv_wnd, tc->rcv_wscale);
1007 s =
format (s,
"snd_wl1 %u snd_wl2 %u\n", tc->snd_wl1 - tc->irs,
1008 tc->snd_wl2 - tc->iss);
1009 s =
format (s,
" flight size %u out space %u rcv_wnd_av %u",
1012 s =
format (s,
" tsval_recent %u\n", tc->tsval_recent);
1013 s =
format (s,
" tsecr %u tsecr_last_ack %u tsval_recent_age %u",
1014 tc->rcv_opts.tsecr, tc->tsecr_last_ack,
1016 s =
format (s,
" snd_mss %u\n", tc->snd_mss);
1017 s =
format (s,
" rto %u rto_boff %u srtt %u us %.3f rttvar %u rtt_ts %.4f",
1018 tc->rto, tc->rto_boff, tc->srtt, tc->mrtt_us * 1000, tc->rttvar,
1020 s =
format (s,
" rtt_seq %u\n", tc->rtt_seq - tc->iss);
1023 if (tc->state >= TCP_STATE_ESTABLISHED)
1043 s =
format (s,
"[%d:%d][%s] %U:%d->%U:%d", tc->c_thread_index,
1046 &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
1050 s =
format (s,
"[%d:%d][%s] %U:%d->%U:%d", tc->c_thread_index,
1053 &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
1063 u32 verbose = va_arg (*args,
u32);
1081 u32 tci = va_arg (*args,
u32);
1082 u32 thread_index = va_arg (*args,
u32);
1083 u32 verbose = va_arg (*args,
u32);
1090 s =
format (s,
"empty\n");
1097 u32 tci = va_arg (*args,
u32);
1098 u32 __clib_unused thread_index = va_arg (*args,
u32);
1099 u32 verbose = va_arg (*args,
u32);
1110 u32 tci = va_arg (*args,
u32);
1111 u32 __clib_unused thread_index = va_arg (*args,
u32);
1125 for (i = 0; i < len - 1; i++)
1128 s =
format (s,
" start %u end %u\n", block->start - tc->irs,
1129 block->end - tc->irs);
1133 block = &sacks[len - 1];
1134 s =
format (s,
" start %u end %u", block->start - tc->irs,
1135 block->end - tc->irs);
1149 for (i = 0; i < len - 1; i++)
1152 s =
format (s,
" start %u end %u\n", block->start - tc->iss,
1153 block->end - tc->iss);
1157 block = &sacks[len - 1];
1158 s =
format (s,
" start %u end %u", block->start - tc->iss,
1159 block->end - tc->iss);
1170 s =
format (s,
" [%u, %u]", hole->start - tc->iss, hole->end - tc->iss);
1172 s =
format (s,
" [%u, %u]", hole->start, hole->end);
1184 s =
format (s,
"sacked %u last_sacked %u lost %u last_lost %u" 1186 sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes,
1187 sb->last_lost_bytes, sb->rxt_sacked);
1188 s =
format (s,
"%Ulast_delivered %u high_sacked %u is_reneging %u\n",
1190 sb->high_sacked - tc->iss, sb->is_reneging);
1191 s =
format (s,
"%Ucur_rxt_hole %u high_rxt %u rescue_rxt %u",
1193 sb->high_rxt - tc->iss, sb->rescue_rxt - tc->iss);
1198 indent, sb->head, sb->tail,
pool_elts (sb->holes),
1216 return &tc->connection;
1223 return &tc->connection;
1229 u16 goal_size = tc->snd_mss;
1232 goal_size =
clib_min (goal_size, tc->snd_wnd / 2);
1234 return goal_size > tc->snd_mss ? goal_size : tc->snd_mss;
1265 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
1271 return snd_space < tc->cwnd ? 0 : snd_space;
1274 return snd_space - (snd_space % tc->snd_mss);
1293 || tc->state == TCP_STATE_CLOSED))
1302 if (
PREDICT_FALSE (tc->rcv_dupacks != 0 || tc->sack_sb.sacked_bytes))
1304 if (tc->limited_transmit != tc->snd_nxt
1305 && (
seq_lt (tc->limited_transmit, tc->snd_nxt - 2 * tc->snd_mss)
1306 ||
seq_gt (tc->limited_transmit, tc->snd_nxt)))
1307 tc->limited_transmit = tc->snd_nxt;
1311 int snt_limited = tc->snd_nxt - tc->limited_transmit;
1312 snd_space =
clib_max ((
int) 2 * tc->snd_mss - snt_limited, 0);
1328 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
1339 return (tc->snd_nxt - tc->snd_una);
1348 tw_timer_expire_timers_16t_2w_512sl (&wrk->
timer_wheel, now);
1356 if (tc->flags & TCP_CONN_PSH_PENDING)
1358 tc->flags |= TCP_CONN_PSH_PENDING;
1384 .transport_options = {
1406 u64 rate = (
u64) window / srtt;
1421 case TCP_STATE_CLOSE_WAIT:
1425 if (!(tc->flags & TCP_CONN_FINPNDG))
1436 tc->snd_nxt = tc->snd_una;
1445 case TCP_STATE_FIN_WAIT_1:
1448 if (tc->flags & TCP_CONN_FINPNDG)
1464 case TCP_STATE_LAST_ACK:
1465 case TCP_STATE_CLOSING:
1492 u32 connection_index, timer_id;
1500 for (i = 0; i <
vec_len (expired_timers); i++)
1502 connection_index = expired_timers[
i] & 0x0FFFFFFF;
1503 timer_id = expired_timers[
i] >> 28;
1505 if (timer_id != TCP_TIMER_RETRANSMIT_SYN)
1510 TCP_EVT (TCP_EVT_TIMER_POP, connection_index, timer_id);
1518 for (i = 0; i <
vec_len (expired_timers); i++)
1520 connection_index = expired_timers[
i] & 0x0FFFFFFF;
1521 timer_id = expired_timers[
i] >> 28;
1530 tw_timer_wheel_16t_2w_512sl_t *tw;
1533 tw = &tm->wrk_ctx[ii].timer_wheel;
1547 tm->iss_seed.first = (
u64)
random_u32 (&default_seed) << 32;
1548 tm->iss_seed.second =
random_u64 (&time_now);
1555 u32 num_threads, n_workers, prealloc_conn_per_wrk;
1582 n_workers = num_threads == 1 ? 1 : vtm->
n_threads;
1583 prealloc_conn_per_wrk =
tcp_cfg.preallocated_connections / n_workers;
1585 for (thread = 0; thread < num_threads; thread++)
1587 vec_validate (tm->wrk_ctx[thread].pending_deq_acked, 255);
1588 vec_validate (tm->wrk_ctx[thread].pending_disconnects, 255);
1597 if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk)
1604 if (
tcp_cfg.preallocated_half_open_connections)
1606 tcp_cfg.preallocated_half_open_connections);
1613 if (num_threads > 1)
1649 tm->punt_unknown4 = is_add;
1651 tm->punt_unknown6 = is_add;
1663 tcp_cfg.max_rx_fifo = 32 << 20;
1664 tcp_cfg.min_rx_fifo = 4 << 10;
1667 tcp_cfg.initial_cwnd_multiplier = 0;
1671 tcp_cfg.rwnd_min_update_ack = 1;
1726 if (
unformat (input,
"%s", &cc_algo_name)
1727 && ((p =
hash_get_mem (tm->cc_algo_by_name, cc_algo_name))))
1747 if (!
unformat (input, cc_alg->name))
1750 if (cc_alg->unformat_cfg
1753 if (cc_alg->unformat_cfg (&sub_input))
1763 u32 cwnd_multiplier, tmp_time;
1768 if (
unformat (input,
"preallocated-connections %d",
1769 &
tcp_cfg.preallocated_connections))
1771 else if (
unformat (input,
"preallocated-half-open-connections %d",
1772 &
tcp_cfg.preallocated_half_open_connections))
1774 else if (
unformat (input,
"buffer-fail-fraction %f",
1775 &
tcp_cfg.buffer_fail_fraction))
1780 if (memory_size >= 0x100000000)
1783 (0,
"max-rx-fifo %llu (0x%llx) too large", memory_size,
1791 if (memory_size >= 0x100000000)
1794 (0,
"min-rx-fifo %llu (0x%llx) too large", memory_size,
1801 else if (
unformat (input,
"rwnd-min-update-ack %d",
1802 &
tcp_cfg.rwnd_min_update_ack))
1804 else if (
unformat (input,
"initial-cwnd-multiplier %u",
1806 tcp_cfg.initial_cwnd_multiplier = cwnd_multiplier;
1807 else if (
unformat (input,
"no-tx-pacing"))
1816 else if (
unformat (input,
"closewait-time %u", &tmp_time))
1818 else if (
unformat (input,
"timewait-time %u", &tmp_time))
1820 else if (
unformat (input,
"finwait1-time %u", &tmp_time))
1822 else if (
unformat (input,
"finwait2-time %u", &tmp_time))
1824 else if (
unformat (input,
"lastack-time %u", &tmp_time))
1826 else if (
unformat (input,
"closing-time %u", &tmp_time))
1828 else if (
unformat (input,
"cleanup-time %u", &tmp_time))
1855 u32 start_host_byte_order, end_host_byte_order;
1866 if (fib_index == ~0)
1867 return VNET_API_ERROR_NO_SUCH_FIB;
1869 start_host_byte_order = clib_net_to_host_u32 (start->
as_u32);
1870 end_host_byte_order = clib_net_to_host_u32 (end->
as_u32);
1873 if ((end_host_byte_order - start_host_byte_order) > (10 << 10))
1874 return VNET_API_ERROR_INVALID_ARGUMENT;
1885 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1920 start_host_byte_order++;
1921 start->
as_u32 = clib_host_to_net_u32 (start_host_byte_order);
1923 while (start_host_byte_order <= end_host_byte_order);
1951 if (fib_index == ~0)
1952 return VNET_API_ERROR_NO_SUCH_FIB;
1972 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1976 if (sw_if_index == (
u32) ~ 0)
1977 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1993 if (!memcmp (start, end,
sizeof (start[0])))
1998 for (i = 15; i >= 0; i--)
2001 if (tmp.
as_u8[i] != 0)
2027 memcpy (&v4end, &v4start,
sizeof (v4start));
2035 memcpy (&v6end, &v6start,
sizeof (v6start));
2038 else if (
unformat (input,
"fib-table %d", &table_id))
2044 if (!v4set && !v6set)
2056 case VNET_API_ERROR_NO_SUCH_FIB:
2059 case VNET_API_ERROR_INVALID_ARGUMENT:
2077 case VNET_API_ERROR_NO_SUCH_FIB:
2091 .path =
"tcp src-address",
2092 .short_help =
"tcp src-address <ip-addr> [- <ip-addr>] add src address range",
2100 #if TCP_SCOREBOARD_TRACE 2108 s =
format (s,
"scoreboard trace:");
2111 s =
format (s,
"{%u, %u, %u, %u, %u}, ", block->start, block->end,
2112 block->ack, block->snd_una_max, block->group);
2132 TRANSPORT_PROTO_TCP))
2154 .path =
"show tcp scoreboard trace",
2155 .short_help =
"show tcp scoreboard trace <connection>",
2165 u32 next_ack,
left, group, has_new_ack = 0;
2171 s =
format (s,
"scoreboard tracing not enabled");
2181 dummy_tc->rcv_opts.flags |= TCP_OPTS_FLAG_SACK;
2183 #if TCP_SCOREBOARD_TRACE 2184 trace = tc->sack_sb.trace;
2185 trace_len =
vec_len (tc->sack_sb.trace);
2188 for (i = 0; i < trace_len; i++)
2190 if (trace[i].ack != 0)
2192 dummy_tc->snd_una = trace[
i].ack - 1448;
2193 dummy_tc->snd_una_max = trace[
i].ack;
2198 while (left < trace_len)
2200 group = trace[
left].group;
2203 while (trace[left].group == group)
2205 if (trace[left].ack != 0)
2208 s =
format (s,
"Adding ack %u, snd_una_max %u, segs: ",
2209 trace[left].ack, trace[left].snd_una_max);
2210 dummy_tc->snd_una_max = trace[
left].snd_una_max;
2211 next_ack = trace[
left].ack;
2217 s =
format (s,
"[%u, %u], ", trace[left].start,
2219 vec_add2 (dummy_tc->rcv_opts.sacks, block, 1);
2220 block->start = trace[
left].start;
2221 block->end = trace[
left].end;
2229 dummy_tc->snd_una = next_ack;
2233 &dummy_tc->sack_sb);
2251 TRANSPORT_PROTO_TCP))
2278 .path =
"tcp replay scoreboard",
2279 .short_help =
"tcp replay scoreboard <connection>",
2293 tm->punt_unknown4 ?
"enabled" :
"disabled");
2295 tm->punt_unknown6 ?
"enabled" :
"disabled");
2301 .path =
"show tcp punt",
2302 .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) ...
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.
fib_protocol_t fp_proto
protocol type
#define foreach_tcp_cfg_flag
Connection configuration flags.
void() timer_expiration_handler(u32 index, u32 thread_index)
#define ENDPOINT_INVALID_INDEX
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)
static f64 tcp_time_now_us(u32 thread_index)
void ip_copy(ip46_address_t *dst, ip46_address_t *src, u8 is_ip4)
static uword random_default_seed(void)
Default random seed (unix/linux user-mode)
#define seq_leq(_s1, _s2)
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)
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)
#define tcp_opts_tstamp(_to)
static u32 tcp_session_send_space(transport_connection_t *trans_conn)
static transport_connection_t * tcp_half_open_session_get_transport(u32 conn_index)
void ip_set(ip46_address_t *dst, void *src, u8 is_ip4)
#define clib_memcpy_fast(a, b, c)
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)
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
struct _sack_scoreboard sack_scoreboard_t
void session_transport_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
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
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).
static u64 clib_cpu_time_now(void)
timer_expiration_handler tcp_timer_retransmit_handler
static u64 clib_xxhash(u64 key)
static heap_elt_t * last(heap_header_t *h)
u32 tcp_session_push_header(transport_connection_t *tconn, vlib_buffer_t *b)
void session_transport_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
#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.
#define hash_set_mem(h, key, value)
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 u64 random_u64(u64 *seed)
64-bit random number generator Again, constants courtesy of Donald Knuth.
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)
static void tcp_initialize_iss_seed(tcp_main_t *tm)
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.
vlib_main_t ** vlib_mains
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)
#define TCP_TICK
TCP tick period (s)
unformat_function_t * unformat_pg_edit
static void tcp_connection_set_state(tcp_connection_t *tc, tcp_state_t state)
void tcp_init_snd_vars(tcp_connection_t *tc)
Initialize connection send variables.
vl_api_interface_index_t sw_if_index
u8 * format_tcp_connection_id(u8 *s, va_list *args)
#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)
Aggregate type for a prefix.
tw_timer_wheel_16t_2w_512sl_t timer_wheel
worker timer wheel
#define clib_error_return(e, args...)
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]
int transport_alloc_local_endpoint(u8 proto, transport_endpoint_cfg_t *rmt_cfg, ip46_address_t *lcl_addr, u16 *lcl_port)
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)
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 i32 tcp_rcv_wnd_available(tcp_connection_t *tc)
#define hash_create_string(elts, value_bytes)
static void tcp_cc_init(tcp_connection_t *tc)
struct _transport_proto_vft transport_proto_vft_t
static void clib_spinlock_init(clib_spinlock_t *p)
static void tcp_timer_set(tcp_connection_t *tc, u8 timer_id, u32 interval)
uword unformat_tcp_cc_algo_cfg(unformat_input_t *input, va_list *va)
vl_api_fib_path_type_t type
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.
void tcp_bt_init(tcp_connection_t *tc)
Byte tracker initialize.
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)
int vnet_proxy_arp_enable_disable(vnet_main_t *vnm, u32 sw_if_index, u8 enable)
#define tcp_in_fastrecovery(tc)
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
void tcp_connection_tx_pacer_reset(tcp_connection_t *tc, u32 window, u32 start_bucket)
int tcp_fastrecovery_prr_snd_space(tcp_connection_t *tc)
Estimate send space using proportional rate reduction (RFC6937)
dpo_type_t dpoi_type
the type
format_function_t * format_header
tcp_connection_t * tcp_connection_alloc_w_base(u8 thread_index, tcp_connection_t *base)
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)
static void tcp_init_rcv_mss(tcp_connection_t *tc)
Initialize max segment size we're able to process.
void tcp_send_syn(tcp_connection_t *tc)
Send SYN.
tcp_connection_t * tcp_connection_alloc(u8 thread_index)
load-balancing over a choice of [un]equal cost paths
static transport_connection_t * tcp_session_get_listener(u32 listener_index)
static u32 transport_max_rx_dequeue(transport_connection_t *tc)
void tcp_connection_tx_pacer_update(tcp_connection_t *tc)
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)
void transport_connection_tx_pacer_init(transport_connection_t *tc, u64 rate_bytes_per_sec, u32 initial_bucket)
Initialize tx pacer for connection.
#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,...)
static u8 * format_tcp_stats(u8 *s, va_list *args)
u8 * format_tcp_scoreboard(u8 *s, va_list *args)
clib_error_t * vnet_tcp_enable_disable(vlib_main_t *vm, u8 is_en)
static u8 transport_connection_is_tx_paced(transport_connection_t *tc)
Check if transport connection is paced.
static u8 * format_tcp_cfg_flags(u8 *s, va_list *args)
#define foreach_vlib_main(body)
static void tcp_timer_waitclose_handler(u32 conn_index, u32 thread_index)
#define TCP_OPTION_LEN_TIMESTAMP
const char * tcp_cfg_flags_str[]
void transport_connection_tx_pacer_update(transport_connection_t *tc, u64 bytes_per_sec)
Update tx pacer pacing rate.
#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)
void tcp_connection_free(tcp_connection_t *tc)
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
#define pool_free(p)
Free a pool.
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.
void tcp_send_reset(tcp_connection_t *tc)
Build and set reset packet for connection.
#define vec_free(V)
Free vector's memory (no header).
static void tcp_session_flush_data(transport_connection_t *tconn)
#define clib_warning(format, args...)
static u8 * format_tcp_congestion(u8 *s, va_list *args)
struct _transport_connection transport_connection_t
static u8 * format_tcp_connection_flags(u8 *s, va_list *args)
u32 fib_node_index_t
A typedef of a node index.
uword unformat_tcp_cc_algo(unformat_input_t *input, va_list *va)
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 u32 transport_max_tx_dequeue(transport_connection_t *tc)
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.
static int tcp_session_open(transport_endpoint_cfg_t *rmt)
tcp_cc_algorithm_type_e tcp_cc_algo_new_type(const tcp_cc_algorithm_t *vft)
Register new cc algo type.
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)
static void tcp_configuration_init(void)
Initialize default values for tcp parameters.
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
void tcp_flush_frames_to_output(tcp_worker_ctx_t *wrk)
Flush v4 and v6 tcp and ip-lookup tx frames for thread index.
static load_balance_t * load_balance_get(index_t lbi)
#define seq_geq(_s1, _s2)
static void tcp_init_mss(tcp_connection_t *tc)
static u8 * format_tcp_congestion_status(u8 *s, va_list *args)
static u32 tcp_generate_random_iss(tcp_connection_t *tc)
Generate random iss as per rfc6528.
reliable transport protos
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)
Register exiting cc algo type.
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 vlib_main_t * vlib_get_main(void)
static u32 tcp_time_now_w_thread(u32 thread_index)
static clib_error_t * tcp_init(vlib_main_t *vm)
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)
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.
#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 void tcp_cc_cleanup(tcp_connection_t *tc)
uword unformat_vlib_cli_sub_input(unformat_input_t *i, va_list *args)
sack_scoreboard_hole_t * scoreboard_first_hole(sack_scoreboard_t *sb)
static u32 tcp_round_snd_space(tcp_connection_t *tc, u32 snd_space)
static tcp_worker_ctx_t * tcp_get_worker(u32 thread_index)
void session_transport_closed_notify(transport_connection_t *tc)
Notification from transport that it is closed.
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)
#define hash_get_mem(h, key)
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
#define TCP_TIMER_TICK
Timer tick in seconds.
int session_stream_connect_notify(transport_connection_t *tc, u8 is_fail)
static u16 tcp_session_cal_goal_size(tcp_connection_t *tc)
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.
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.
#define TCP_TSTAMP_RESOLUTION
Time stamp resolution.
static u8 * format_tcp_half_open_session(u8 *s, va_list *args)
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)
void tcp_enable_pacing(tcp_connection_t *tc)
static u64 tcp_cc_get_pacing_rate(tcp_connection_t *tc)
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
static void tcp_session_reset(u32 conn_index, u32 thread_index)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
static u32 tcp_set_time_now(tcp_worker_ctx_t *wrk)
void transport_connection_tx_pacer_reset(transport_connection_t *tc, u64 rate_bytes_per_sec, u32 start_bucket)
static clib_error_t * tcp_show_scoreboard_trace_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd_arg)
void tcp_bt_cleanup(tcp_connection_t *tc)
Byte tracker cleanup.
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.
#define TCP_EVT(_evt, _args...)
int tcp_session_custom_tx(void *conn, u32 max_burst_size)
static uword pool_elts(void *v)
Number of active elements in a pool.