X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Ftcp%2Ftcp_timer.h;h=d34fdcb146d8793787480c1207d38ba29ae61c7d;hb=77d98382824ca211fb55fcf842931930ccfb3baa;hp=fa25268c1bfd851a8e854063aa9613839fc91c77;hpb=68b0fb0c620c7451ef1a6380c43c39de6614db51;p=vpp.git diff --git a/src/vnet/tcp/tcp_timer.h b/src/vnet/tcp/tcp_timer.h index fa25268c1bf..d34fdcb146d 100644 --- a/src/vnet/tcp/tcp_timer.h +++ b/src/vnet/tcp/tcp_timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Cisco and/or its affiliates. + * Copyright (c) 2016-2019 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: @@ -15,8 +15,109 @@ #ifndef __included_tcp_timer_h__ #define __included_tcp_timer_h__ -#include -#include +#include + +always_inline void +tcp_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id, + u32 interval) +{ + ASSERT (tc->c_thread_index == vlib_get_thread_index ()); + ASSERT (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID); + tc->timers[timer_id] = tw_timer_start_16t_2w_512sl (tw, tc->c_c_index, + timer_id, interval); +} + +always_inline void +tcp_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id) +{ + ASSERT (tc->c_thread_index == vlib_get_thread_index ()); + if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID) + return; + + tw_timer_stop_16t_2w_512sl (tw, tc->timers[timer_id]); + tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID; +} + +always_inline void +tcp_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id, + u32 interval) +{ + ASSERT (tc->c_thread_index == vlib_get_thread_index ()); + if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID) + tw_timer_update_16t_2w_512sl (tw, tc->timers[timer_id], interval); + else + tc->timers[timer_id] = tw_timer_start_16t_2w_512sl (tw, tc->c_c_index, + timer_id, interval); +} + +always_inline void +tcp_retransmit_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + ASSERT (tc->snd_una != tc->snd_una_max); + tcp_timer_set (tw, tc, TCP_TIMER_RETRANSMIT, + clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); +} + +always_inline void +tcp_retransmit_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + tcp_timer_reset (tw, tc, TCP_TIMER_RETRANSMIT); +} + +always_inline void +tcp_retransmit_timer_force_update (tcp_timer_wheel_t * tw, + tcp_connection_t * tc) +{ + tcp_timer_update (tw, tc, TCP_TIMER_RETRANSMIT, + clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); +} + +always_inline void +tcp_persist_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + /* Reuse RTO. It's backed off in handler */ + tcp_timer_set (tw, tc, TCP_TIMER_PERSIST, + clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); +} + +always_inline void +tcp_persist_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + u32 interval; + + if (seq_leq (tc->snd_una, tc->snd_congestion + tc->burst_acked)) + interval = 1; + else + interval = clib_max (tc->rto * TCP_TO_TIMER_TICK, 1); + + tcp_timer_update (tw, tc, TCP_TIMER_PERSIST, interval); +} + +always_inline void +tcp_persist_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + tcp_timer_reset (tw, tc, TCP_TIMER_PERSIST); +} + +always_inline void +tcp_retransmit_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc) +{ + if (tc->snd_una == tc->snd_nxt) + { + tcp_retransmit_timer_reset (tw, tc); + if (tc->snd_wnd < tc->snd_mss) + tcp_persist_timer_update (tw, tc); + } + else + tcp_timer_update (tw, tc, TCP_TIMER_RETRANSMIT, + clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); +} + +always_inline u8 +tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer) +{ + return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID; +} #endif /* __included_tcp_timer_h__ */