Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 15 | #ifndef __included_tcp_timer_h__ |
| 16 | #define __included_tcp_timer_h__ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 17 | |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame^] | 18 | #include <vnet/tcp/tcp_types.h> |
| 19 | |
| 20 | always_inline void |
| 21 | tcp_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id, |
| 22 | u32 interval) |
| 23 | { |
| 24 | ASSERT (tc->c_thread_index == vlib_get_thread_index ()); |
| 25 | ASSERT (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID); |
| 26 | tc->timers[timer_id] = tw_timer_start_16t_2w_512sl (tw, tc->c_c_index, |
| 27 | timer_id, interval); |
| 28 | } |
| 29 | |
| 30 | always_inline void |
| 31 | tcp_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id) |
| 32 | { |
| 33 | ASSERT (tc->c_thread_index == vlib_get_thread_index ()); |
| 34 | if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID) |
| 35 | return; |
| 36 | |
| 37 | tw_timer_stop_16t_2w_512sl (tw, tc->timers[timer_id]); |
| 38 | tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID; |
| 39 | } |
| 40 | |
| 41 | always_inline void |
| 42 | tcp_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc, u8 timer_id, |
| 43 | u32 interval) |
| 44 | { |
| 45 | ASSERT (tc->c_thread_index == vlib_get_thread_index ()); |
| 46 | if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID) |
| 47 | tw_timer_update_16t_2w_512sl (tw, tc->timers[timer_id], interval); |
| 48 | else |
| 49 | tc->timers[timer_id] = tw_timer_start_16t_2w_512sl (tw, tc->c_c_index, |
| 50 | timer_id, interval); |
| 51 | } |
| 52 | |
| 53 | always_inline void |
| 54 | tcp_retransmit_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 55 | { |
| 56 | ASSERT (tc->snd_una != tc->snd_una_max); |
| 57 | tcp_timer_set (tw, tc, TCP_TIMER_RETRANSMIT, |
| 58 | clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); |
| 59 | } |
| 60 | |
| 61 | always_inline void |
| 62 | tcp_retransmit_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 63 | { |
| 64 | tcp_timer_reset (tw, tc, TCP_TIMER_RETRANSMIT); |
| 65 | } |
| 66 | |
| 67 | always_inline void |
| 68 | tcp_retransmit_timer_force_update (tcp_timer_wheel_t * tw, |
| 69 | tcp_connection_t * tc) |
| 70 | { |
| 71 | tcp_timer_update (tw, tc, TCP_TIMER_RETRANSMIT, |
| 72 | clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); |
| 73 | } |
| 74 | |
| 75 | always_inline void |
| 76 | tcp_persist_timer_set (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 77 | { |
| 78 | /* Reuse RTO. It's backed off in handler */ |
| 79 | tcp_timer_set (tw, tc, TCP_TIMER_PERSIST, |
| 80 | clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); |
| 81 | } |
| 82 | |
| 83 | always_inline void |
| 84 | tcp_persist_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 85 | { |
| 86 | u32 interval; |
| 87 | |
| 88 | if (seq_leq (tc->snd_una, tc->snd_congestion + tc->burst_acked)) |
| 89 | interval = 1; |
| 90 | else |
| 91 | interval = clib_max (tc->rto * TCP_TO_TIMER_TICK, 1); |
| 92 | |
| 93 | tcp_timer_update (tw, tc, TCP_TIMER_PERSIST, interval); |
| 94 | } |
| 95 | |
| 96 | always_inline void |
| 97 | tcp_persist_timer_reset (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 98 | { |
| 99 | tcp_timer_reset (tw, tc, TCP_TIMER_PERSIST); |
| 100 | } |
| 101 | |
| 102 | always_inline void |
| 103 | tcp_retransmit_timer_update (tcp_timer_wheel_t * tw, tcp_connection_t * tc) |
| 104 | { |
| 105 | if (tc->snd_una == tc->snd_nxt) |
| 106 | { |
| 107 | tcp_retransmit_timer_reset (tw, tc); |
| 108 | if (tc->snd_wnd < tc->snd_mss) |
| 109 | tcp_persist_timer_update (tw, tc); |
| 110 | } |
| 111 | else |
| 112 | tcp_timer_update (tw, tc, TCP_TIMER_RETRANSMIT, |
| 113 | clib_max (tc->rto * TCP_TO_TIMER_TICK, 1)); |
| 114 | } |
| 115 | |
| 116 | always_inline u8 |
| 117 | tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer) |
| 118 | { |
| 119 | return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID; |
| 120 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 121 | |
| 122 | #endif /* __included_tcp_timer_h__ */ |
| 123 | |
| 124 | /* |
| 125 | * fd.io coding-style-patch-verification: ON |
| 126 | * |
| 127 | * Local Variables: |
| 128 | * eval: (c-set-style "gnu") |
| 129 | * End: |
| 130 | */ |