blob: 54d2dc6334b0aab70e66fe24596486c719f659c1 [file] [log] [blame]
Florin Coras999840c2020-03-18 20:31:34 +00001/*
2 * Copyright (c) 2020 Cisco and/or its affiliates.
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 */
15
16#ifndef SRC_VNET_TCP_TCP_CC_H_
17#define SRC_VNET_TCP_TCP_CC_H_
18
19#include <vnet/tcp/tcp_types.h>
20
21always_inline void
22tcp_cc_rcv_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
23{
24 tc->cc_algo->rcv_ack (tc, rs);
25 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
26}
27
28static inline void
29tcp_cc_rcv_cong_ack (tcp_connection_t * tc, tcp_cc_ack_t ack_type,
30 tcp_rate_sample_t * rs)
31{
32 tc->cc_algo->rcv_cong_ack (tc, ack_type, rs);
33}
34
35static inline void
36tcp_cc_congestion (tcp_connection_t * tc)
37{
38 tc->cc_algo->congestion (tc);
39}
40
41static inline void
42tcp_cc_loss (tcp_connection_t * tc)
43{
44 tc->cc_algo->loss (tc);
45}
46
47static inline void
48tcp_cc_recovered (tcp_connection_t * tc)
49{
50 tc->cc_algo->recovered (tc);
51}
52
53static inline void
54tcp_cc_undo_recovery (tcp_connection_t * tc)
55{
56 if (tc->cc_algo->undo_recovery)
57 tc->cc_algo->undo_recovery (tc);
58}
59
60static inline void
61tcp_cc_event (tcp_connection_t * tc, tcp_cc_event_t evt)
62{
63 if (tc->cc_algo->event)
64 tc->cc_algo->event (tc, evt);
65}
66
67static inline u64
68tcp_cc_get_pacing_rate (tcp_connection_t * tc)
69{
70 if (tc->cc_algo->get_pacing_rate)
71 return tc->cc_algo->get_pacing_rate (tc);
72
73 f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
74
75 /* TODO should constrain to interface's max throughput but
76 * we don't have link speeds for sw ifs ..*/
77 return ((f64) tc->cwnd / srtt);
78}
79
80static inline void *
81tcp_cc_data (tcp_connection_t * tc)
82{
83 return (void *) tc->cc_data;
84}
85
86/**
87 * Register exiting cc algo type
88 */
89void tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
90 const tcp_cc_algorithm_t * vft);
91
92/**
93 * Register new cc algo type
94 */
95tcp_cc_algorithm_type_e tcp_cc_algo_new_type (const tcp_cc_algorithm_t * vft);
96tcp_cc_algorithm_t *tcp_cc_algo_get (tcp_cc_algorithm_type_e type);
97
98
99void newreno_rcv_cong_ack (tcp_connection_t * tc, tcp_cc_ack_t ack_type,
100 tcp_rate_sample_t * rs);
101
102
103#endif /* SRC_VNET_TCP_TCP_CC_H_ */
104
105/*
106 * fd.io coding-style-patch-verification: ON
107 *
108 * Local Variables:
109 * eval: (c-set-style "gnu")
110 * End:
111 */