blob: 26e69eb797b631e046225326b3256a77f2c7b73a [file] [log] [blame]
Marco Varlese191a5942017-10-30 18:17:21 +01001/*
2 * Copyright (c) 2017 SUSE LLC.
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#ifndef included_vnet_sctp_h
16#define included_vnet_sctp_h
17
18#include <vnet/vnet.h>
19#include <vnet/ip/ip.h>
20#include <vnet/sctp/sctp_timer.h>
21#include <vnet/sctp/sctp_packet.h>
22#include <vnet/session/transport.h>
23#include <vnet/session/session.h>
24
25/* SCTP timers */
26#define foreach_sctp_timer \
27 _(T1_INIT, "T1_INIT") \
28 _(T1_COOKIE, "T1_COOKIE") \
29 _(T2_SHUTDOWN, "T2_SHUTDOWN") \
30 _(T3_RXTX, "T3_RXTX") \
Marco Varlese8ad6a2d2018-01-26 16:50:01 +010031 _(T4_HEARTBEAT, "T4_HB") \
Marco Varlese191a5942017-10-30 18:17:21 +010032 _(T5_SHUTDOWN_GUARD, "T5_SHUTDOWN_GUARD")
33
34typedef enum _sctp_timers
35{
36#define _(sym, str) SCTP_TIMER_##sym,
37 foreach_sctp_timer
38#undef _
39 SCTP_N_TIMERS
40} sctp_timers_e;
41
42#define SCTP_TIMER_HANDLE_INVALID ((u32) ~0)
43
Marco Varlesedf5a99c2018-02-06 13:48:30 +010044always_inline char *
45sctp_timer_to_string (u8 timer_id)
46{
47 switch (timer_id)
48 {
49 case SCTP_TIMER_T1_INIT:
50 return "SCTP_TIMER_T1_INIT";
51 case SCTP_TIMER_T1_COOKIE:
52 return "SCTP_TIMER_T1_COOKIE";
53 case SCTP_TIMER_T2_SHUTDOWN:
54 return "SCTP_TIMER_T2_SHUTDOWN";
55 case SCTP_TIMER_T3_RXTX:
56 return "SCTP_TIMER_T3_RXTX";
57 case SCTP_TIMER_T4_HEARTBEAT:
58 return "SCTP_TIMER_T4_HEARTBEAT";
59 case SCTP_TIMER_T5_SHUTDOWN_GUARD:
60 return "SCTP_TIMER_T5_SHUTDOWN_GUARD";
61 }
62 return NULL;
63}
64
Marco Varlese191a5942017-10-30 18:17:21 +010065typedef enum _sctp_error
66{
67#define sctp_error(n,s) SCTP_ERROR_##n,
68#include <vnet/sctp/sctp_error.def>
69#undef sctp_error
70 SCTP_N_ERROR,
71} sctp_error_t;
72
73#define NO_FLAG 0
74
75#define IS_T_BIT_SET(var) ((var) & (1))
76#define IS_E_BIT_SET(var) ((var) & (1))
77#define IS_B_BIT_SET(var) ((var) & (1<<1))
78#define IS_U_BIT_SET(var) ((var) & (1<<2))
79
Marco Varlesef3ab4892018-02-19 15:23:13 +010080#define MAX_SCTP_CONNECTIONS 8
Marco Varlesec7fe4f32018-03-05 15:12:29 +010081#define SCTP_PRIMARY_PATH_IDX 0
Marco Varlese191a5942017-10-30 18:17:21 +010082
83#if (VLIB_BUFFER_TRACE_TRAJECTORY)
84#define sctp_trajectory_add_start(b, start) \
85{ \
86 (*vlib_buffer_trace_trajectory_cb) (b, start); \
87}
88#else
89#define sctp_trajectory_add_start(b, start)
90#endif
91
Marco Varlese54432f82018-02-15 17:01:56 +010092enum _sctp_subconn_state
93{
94 SCTP_SUBCONN_STATE_DOWN = 0,
95 SCTP_SUBCONN_STATE_UP,
Marco Varlese6e4d4a32018-03-12 12:36:59 +010096 SCTP_SUBCONN_STATE_ALLOW_HB,
97 SCTP_SUBCONN_AWAITING_SACK,
98 SCTP_SUBCONN_SACK_RECEIVED
Marco Varlese54432f82018-02-15 17:01:56 +010099};
100
Marco Varlesef3ab4892018-02-19 15:23:13 +0100101#define SCTP_INITIAL_SSHTRESH 65535
Marco Varlese191a5942017-10-30 18:17:21 +0100102typedef struct _sctp_sub_connection
103{
104 transport_connection_t connection; /**< Common transport data. First! */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100105
Marco Varlese04e5d642018-02-23 17:43:06 +0100106 u8 subconn_idx; /**< This indicates the position of this sub-connection in the super-set container of connections pool */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100107 u32 error_count; /**< The current error count for this destination. */
108 u32 error_threshold; /**< Current error threshold for this destination,
109 i.e. what value marks the destination down if error count reaches this value. */
Marco Varlesef3ab4892018-02-19 15:23:13 +0100110 u32 cwnd; /**< Congestion control window (cwnd, in bytes), which is adjusted by
111 the sender based on observed network conditions. */
112 u32 ssthresh; /**< Slow-start threshold (in bytes), which is used by the
113 sender to distinguish slow-start and congestion avoidance phases. */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100114
Marco Varlese93826732018-09-27 16:43:57 +0200115 u64 rtt_ts; /**< USED to hold the timestamp of when the packet has been sent */
Marco Varlese21c8baf2018-02-02 17:17:51 +0100116
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100117 u32 RTO; /**< The current retransmission timeout value. */
Marco Varlese93826732018-09-27 16:43:57 +0200118 u64 SRTT; /**< The current smoothed round-trip time. */
119 f64 RTTVAR; /**< The current RTT variation. */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100120
121 u32 partially_acked_bytes; /**< The tracking method for increase of cwnd when in
122 congestion avoidance mode (see Section 7.2.2).*/
123
124 u8 state; /**< The current state of this destination, i.e., DOWN, UP, ALLOW-HB, NO-HEARTBEAT, etc. */
125
126 u16 PMTU; /**< The current known path MTU. */
127
128 u32 timers[SCTP_N_TIMERS]; /**< A timer used by each destination. */
129
130 u8 RTO_pending; /**< A flag used to track if one of the DATA chunks sent to
131 this address is currently being used to compute an RTT.
132 If this flag is 0, the next DATA chunk sent to this destination
133 should be used to compute an RTT and this flag should be set.
134 Every time the RTT calculation completes (i.e., the DATA chunk is SACK'd),
135 clear this flag. */
136
Marco Varlese93826732018-09-27 16:43:57 +0200137 u64 last_seen; /**< The time to which this destination was last sent a packet to.
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100138 This can be used to determine if a HEARTBEAT is needed. */
Marco Varlese191a5942017-10-30 18:17:21 +0100139
Marco Varlese93826732018-09-27 16:43:57 +0200140 u64 last_data_ts; /**< Used to hold the timestamp value of last time we sent a DATA chunk */
Marco Varlesef3ab4892018-02-19 15:23:13 +0100141
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100142 u8 unacknowledged_hb; /**< Used to track how many unacknowledged heartbeats we had;
Marco Varlese54432f82018-02-15 17:01:56 +0100143 If more than SCTP_PATH_MAX_RETRANS then connection is considered unreachable. */
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100144
Marco Varlesea38783e2018-02-13 12:38:52 +0100145 u8 is_retransmitting; /**< A flag (0 = no, 1 = yes) indicating whether the connection is retransmitting a previous packet */
146
Marco Varlesef3ab4892018-02-19 15:23:13 +0100147 u8 enqueue_state; /**< if set to 1 indicates that DATA is still being handled hence cannot shutdown this connection yet */
Marco Varlese54432f82018-02-15 17:01:56 +0100148
Marco Varlese191a5942017-10-30 18:17:21 +0100149} sctp_sub_connection_t;
150
151typedef struct
152{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100153 u32 a_rwnd; /**< Maximum segment size advertised */
Marco Varlese191a5942017-10-30 18:17:21 +0100154
155} sctp_options_t;
156
Marco Varlese91389ac2018-01-31 11:00:01 +0100157/* Useful macros to deal with the out_of_order_map (array of bit) */
158#define SET_BIT(A,k) ( A[(k/32)] |= (1 << (k%32)) )
159#define CLEAR_BIT(A,k) ( A[(k/32)] &= ~(1 << (k%32)) )
160#define TEST_BIT(A,k) ( A[(k/32)] & (1 << (k%32)) )
161
162always_inline void
163_bytes_swap (void *pv, size_t n)
164{
165 char *p = pv;
166 size_t lo, hi;
167 for (lo = 0, hi = n - 1; hi > lo; lo++, hi--)
168 {
169 char tmp = p[lo];
170 p[lo] = p[hi];
171 p[hi] = tmp;
172 }
173}
174
175#define ENDIANESS_SWAP(x) _bytes_swap(&x, sizeof(x));
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100176
177#define MAX_INFLIGHT_PACKETS 128
178#define MAX_ENQUEABLE_SACKS 2
179
180/* This parameter indicates to the receiver how much increment in
181 * milliseconds the sender wishes the receiver to add to its default
182 * cookie life-span.
183 */
184#define SUGGESTED_COOKIE_LIFE_SPAN_INCREMENT 1000
185
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100186typedef struct _sctp_user_configuration
187{
188 u8 never_delay_sack;
189 u8 never_bundle;
190
191} sctp_user_configuration_t;
192
Marco Varlese191a5942017-10-30 18:17:21 +0100193typedef struct _sctp_connection
194{
Dave Baracheb987d32018-05-03 08:26:39 -0400195 /** Required for pool_get_aligned */
196 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
197
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100198 sctp_sub_connection_t sub_conn[MAX_SCTP_CONNECTIONS]; /**< Common transport data. First! */
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100199 sctp_user_configuration_t conn_config; /**< Allows tuning of some SCTP behaviors */
Marco Varlese191a5942017-10-30 18:17:21 +0100200
201 u8 state; /**< SCTP state as per sctp_state_t */
202 u16 flags; /**< Chunk flag (see sctp_chunks_common_hdr_t) */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100203
Marco Varlese191a5942017-10-30 18:17:21 +0100204 u32 local_tag; /**< INIT_TAG generated locally */
205 u32 remote_tag; /**< INIT_TAG generated by the remote peer */
Marco Varlese191a5942017-10-30 18:17:21 +0100206
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100207 u32 local_initial_tsn; /**< Initial TSN generated locally */
208 u32 remote_initial_tsn; /**< Initial TSN generated by the remote-peer */
Marco Varlese191a5942017-10-30 18:17:21 +0100209
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100210 u32 peer_cookie_life_span_increment;
Marco Varlese191a5942017-10-30 18:17:21 +0100211
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100212 u32 overall_err_count; /**< The overall association error count. */
213 u32 overall_err_treshold; /**< The threshold for this association that if the Overall Error Count
214 reaches will cause this association to be torn down. */
Marco Varlese191a5942017-10-30 18:17:21 +0100215
Marco Varlese9e09ff32018-03-05 12:31:45 +0100216 u8 init_retransmit_err; /**< Error counter for the INIT transmission phase */
217
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100218 u32 peer_rwnd; /**< Current calculated value of the peer's rwnd. */
219
220 u32 next_tsn; /**< The next TSN number to be assigned to a new DATA chunk.
221 This is sent in the INIT or INIT ACK chunk to the peer
222 and incremented each time a DATA chunk is assigned a
223 TSN (normally just prior to transmit or during
224 fragmentation). */
225
Marco Varlesef3ab4892018-02-19 15:23:13 +0100226 u32 last_unacked_tsn; /** < Last TSN number still unacked */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100227 u32 next_tsn_expected; /**< The next TSN number expected to be received. */
228
229 u32 last_rcvd_tsn; /**< This is the last TSN received in sequence. This value
230 is set initially by taking the peer's initial TSN,
231 received in the INIT or INIT ACK chunk, and
232 subtracting one from it. */
233
234 u32 out_of_order_map[MAX_INFLIGHT_PACKETS]; /**< An array of bits or bytes indicating which out-of-order
235 TSNs have been received (relative to the Last Rcvd TSN).
236 If no gaps exist, i.e., no out-of-order packets have been received,
237 this array will be set to all zero. */
238
239 u8 ack_state; /**< This flag indicates if the next received packet is set to be responded to with a SACK.
240 This is initialized to 0. When a packet is received it is incremented.
241 If this value reaches 2 or more, a SACK is sent and the value is reset to 0.
242 Note: This is used only when no DATA chunks are received out-of-order.
243 When DATA chunks are out-of-order, SACKs are not delayed (see Section 6). */
244
Marco Varlesef3ab4892018-02-19 15:23:13 +0100245 u8 smallest_PMTU_idx; /** The index of the sub-connection with the smallest PMTU discovered across all peer's transport addresses. */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100246
Marco Varlese91389ac2018-01-31 11:00:01 +0100247 u8 overall_sending_status; /**< 0 indicates first fragment of a user message
248 1 indicates normal stream
249 2 indicates last fragment of a user message */
250
Marco Varleseeacf3cf2018-02-26 14:52:25 +0100251 u8 forming_association_changed; /**< This is a flag indicating whether the original association has been modified during
252 the life-span of the association itself. For instance, a new sub-connection might have been added. */
253
Marco Varlese9e09ff32018-03-05 12:31:45 +0100254 sctp_state_cookie_param_t cookie_param; /**< Temporary location to save cookie information; it can be used to
255 when timeout expires and sending again a COOKIE is require. */
256
Marco Varlese191a5942017-10-30 18:17:21 +0100257} sctp_connection_t;
258
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100259typedef void (sctp_timer_expiration_handler) (u32 conn_index, u32 timer_id);
Marco Varlese191a5942017-10-30 18:17:21 +0100260
261sctp_connection_t *sctp_connection_new (u8 thread_index);
Marco Varlese3c6a9762018-03-01 11:19:59 +0100262
263u8
264sctp_sub_connection_add_ip4 (vlib_main_t * vm,
265 ip4_address_t * lcl_addr,
266 ip4_address_t * rmt_addr);
267
268u8
269sctp_sub_connection_add_ip6 (vlib_main_t * vm,
270 ip6_address_t * lcl_addr,
271 ip6_address_t * rmt_addr);
272
Marco Varlese465c0872018-03-01 14:01:46 +0100273u8
274sctp_sub_connection_del_ip4 (ip4_address_t * lcl_addr,
275 ip4_address_t * rmt_addr);
276
277u8
278sctp_sub_connection_del_ip6 (ip6_address_t * lcl_addr,
279 ip6_address_t * rmt_addr);
280
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100281u8 sctp_configure (sctp_user_configuration_t config);
282
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100283void sctp_connection_close (sctp_connection_t * sctp_conn);
284void sctp_connection_cleanup (sctp_connection_t * sctp_conn);
285void sctp_connection_del (sctp_connection_t * sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100286
287u32 sctp_push_header (transport_connection_t * tconn, vlib_buffer_t * b);
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100288void sctp_send_init (sctp_connection_t * sctp_conn);
Marco Varlese9e09ff32018-03-05 12:31:45 +0100289void sctp_send_cookie_echo (sctp_connection_t * sctp_conn);
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100290void sctp_send_shutdown (sctp_connection_t * sctp_conn);
Marco Varlese54432f82018-02-15 17:01:56 +0100291void sctp_send_shutdown_ack (sctp_connection_t * sctp_conn, u8 idx,
Marco Varlesebe2251b2018-02-07 12:22:41 +0100292 vlib_buffer_t * b);
Marco Varlese54432f82018-02-15 17:01:56 +0100293void sctp_send_shutdown_complete (sctp_connection_t * sctp_conn, u8 idx,
Marco Varlesefae40392018-02-14 15:38:35 +0100294 vlib_buffer_t * b0);
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100295void sctp_send_heartbeat (sctp_connection_t * sctp_conn);
Marco Varlese9e09ff32018-03-05 12:31:45 +0100296void sctp_data_retransmit (sctp_connection_t * sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100297void sctp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index,
298 u8 is_ip4);
299void sctp_flush_frames_to_output (u8 thread_index);
300void sctp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
301
302format_function_t format_sctp_state;
303
304u8 *format_sctp_connection_id (u8 * s, va_list * args);
305u8 *format_sctp_connection (u8 * s, va_list * args);
306u8 *format_sctp_scoreboard (u8 * s, va_list * args);
307u8 *format_sctp_header (u8 * s, va_list * args);
308u8 *format_sctp_tx_trace (u8 * s, va_list * args);
309
310clib_error_t *sctp_init (vlib_main_t * vm);
Marco Varlese54432f82018-02-15 17:01:56 +0100311void sctp_connection_timers_init (sctp_connection_t * sctp_conn);
312void sctp_connection_timers_reset (sctp_connection_t * sctp_conn);
313void sctp_init_snd_vars (sctp_connection_t * sctp_conn);
314void sctp_init_mss (sctp_connection_t * sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100315
Marco Varlese54432f82018-02-15 17:01:56 +0100316void sctp_prepare_initack_chunk (sctp_connection_t * sctp_conn, u8 idx,
317 vlib_buffer_t * b, ip4_address_t * ip4_addr,
Marco Varlese216c35b2018-04-17 16:41:51 +0200318 u8 add_ip4, ip6_address_t * ip6_addr,
319 u8 add_ip6);
320void sctp_prepare_initack_chunk_for_collision (sctp_connection_t * sctp_conn,
321 u8 idx, vlib_buffer_t * b,
322 ip4_address_t * ip4_addr,
323 ip6_address_t * ip6_addr);
Marco Varleseeacf3cf2018-02-26 14:52:25 +0100324void sctp_prepare_abort_for_collision (sctp_connection_t * sctp_conn, u8 idx,
325 vlib_buffer_t * b,
326 ip4_address_t * ip4_addr,
327 ip6_address_t * ip6_addr);
Marco Varlese216c35b2018-04-17 16:41:51 +0200328void sctp_prepare_operation_error (sctp_connection_t * sctp_conn, u8 idx,
329 vlib_buffer_t * b, u8 err_cause);
Marco Varlese54432f82018-02-15 17:01:56 +0100330void sctp_prepare_cookie_echo_chunk (sctp_connection_t * sctp_conn, u8 idx,
Marco Varlese9e09ff32018-03-05 12:31:45 +0100331 vlib_buffer_t * b, u8 reuse_buffer);
Marco Varlese54432f82018-02-15 17:01:56 +0100332void sctp_prepare_cookie_ack_chunk (sctp_connection_t * sctp_conn, u8 idx,
Marco Varlese191a5942017-10-30 18:17:21 +0100333 vlib_buffer_t * b);
Marco Varlese54432f82018-02-15 17:01:56 +0100334void sctp_prepare_sack_chunk (sctp_connection_t * sctp_conn, u8 idx,
335 vlib_buffer_t * b);
336void sctp_prepare_heartbeat_ack_chunk (sctp_connection_t * sctp_conn, u8 idx,
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100337 vlib_buffer_t * b);
Marco Varlese191a5942017-10-30 18:17:21 +0100338
Marco Varlese54432f82018-02-15 17:01:56 +0100339u16 sctp_check_outstanding_data_chunks (sctp_connection_t * sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100340
Marco Varlese3c6a9762018-03-01 11:19:59 +0100341void sctp_api_reference (void);
342
Marco Varlese191a5942017-10-30 18:17:21 +0100343#define IP_PROTOCOL_SCTP 132
344
345/** SSCTP FSM state definitions as per RFC4960. */
346#define foreach_sctp_fsm_state \
347 _(CLOSED, "CLOSED") \
348 _(COOKIE_WAIT, "COOKIE_WAIT") \
349 _(COOKIE_ECHOED, "COOKIE_ECHOED") \
350 _(ESTABLISHED, "ESTABLISHED") \
351 _(SHUTDOWN_PENDING, "SHUTDOWN_PENDING") \
352 _(SHUTDOWN_SENT, "SHUTDOWN_SENT") \
353 _(SHUTDOWN_RECEIVED, "SHUTDOWN_RECEIVED") \
354 _(SHUTDOWN_ACK_SENT, "SHUTDOWN_ACK_SENT")
355
356typedef enum _sctp_state
357{
358#define _(sym, str) SCTP_STATE_##sym,
359 foreach_sctp_fsm_state
360#undef _
361 SCTP_N_STATES
362} sctp_state_t;
363
364always_inline char *
365sctp_state_to_string (u8 state)
366{
367 switch (state)
368 {
369 case SCTP_STATE_CLOSED:
370 return "SCTP_STATE_CLOSED";
371 case SCTP_STATE_COOKIE_WAIT:
372 return "SCTP_STATE_COOKIE_WAIT";
373 case SCTP_STATE_COOKIE_ECHOED:
374 return "SCTP_STATE_COOKIE_ECHOED";
375 case SCTP_STATE_ESTABLISHED:
376 return "SCTP_STATE_ESTABLISHED";
377 case SCTP_STATE_SHUTDOWN_PENDING:
378 return "SCTP_STATE_SHUTDOWN_PENDING";
379 case SCTP_STATE_SHUTDOWN_SENT:
380 return "SCTP_STATE_SHUTDOWN_SENT";
381 case SCTP_STATE_SHUTDOWN_RECEIVED:
382 return "SCTP_STATE_SHUTDOWN_RECEIVED";
383 case SCTP_STATE_SHUTDOWN_ACK_SENT:
384 return "SCTP_STATE_SHUTDOWN_ACK_SENT";
385 }
386 return NULL;
387}
388
389always_inline char *
390sctp_chunk_to_string (u8 type)
391{
392 switch (type)
393 {
394 case DATA:
395 return "DATA";
396 case INIT:
397 return "INIT";
398 case INIT_ACK:
399 return "INIT_ACK";
400 case SACK:
401 return "SACK";
402 case HEARTBEAT:
403 return "HEARTBEAT";
404 case HEARTBEAT_ACK:
405 return "HEARTBEAT_ACK";
406 case ABORT:
407 return "ABORT";
408 case SHUTDOWN:
409 return "SHUTDOWN";
410 case SHUTDOWN_ACK:
411 return "SHUTDOWN_ACK";
412 case OPERATION_ERROR:
413 return "OPERATION_ERROR";
414 case COOKIE_ECHO:
415 return "COOKIE_ECHO";
416 case COOKIE_ACK:
417 return "COOKIE_ACK";
418 case ECNE:
419 return "ECNE";
420 case CWR:
421 return "CWR";
422 case SHUTDOWN_COMPLETE:
423 return "SHUTDOWN_COMPLETE";
424 }
425 return NULL;
426}
427
428always_inline char *
429sctp_optparam_type_to_string (u8 type)
430{
431 switch (type)
432 {
433 case SCTP_IPV4_ADDRESS_TYPE:
434 return "SCTP_IPV4_ADDRESS_TYPE";
435 case SCTP_IPV6_ADDRESS_TYPE:
436 return "SCTP_IPV6_ADDRESS_TYPE";
437 case SCTP_STATE_COOKIE_TYPE:
438 return "SCTP_STATE_COOKIE_TYPE";
439 case SCTP_UNRECOGNIZED_TYPE:
440 return "SCTP_UNRECOGNIZED_TYPE";
441 case SCTP_COOKIE_PRESERVATIVE_TYPE:
442 return "SCTP_COOKIE_PRESERVATIVE_TYPE";
443 case SCTP_HOSTNAME_ADDRESS_TYPE:
444 return "SCTP_HOSTNAME_ADDRESS_TYPE";
445 case SCTP_SUPPORTED_ADDRESS_TYPES:
446 return "SCTP_SUPPORTED_ADDRESS_TYPES";
447 }
448 return NULL;
449}
450
451#define SCTP_TICK 0.001 /**< SCTP tick period (s) */
452#define SHZ (u32) (1/SCTP_TICK) /**< SCTP tick frequency */
Marco Varlesea38783e2018-02-13 12:38:52 +0100453#define SCTP_TSTAMP_RESOLUTION SCTP_TICK /**< Time stamp resolution */
Marco Varlese191a5942017-10-30 18:17:21 +0100454
455/* As per RFC4960, page 83 */
456#define SCTP_RTO_INIT 3 * SHZ /* 3 seconds */
457#define SCTP_RTO_MIN 1 * SHZ /* 1 second */
458#define SCTP_RTO_MAX 60 * SHZ /* 60 seconds */
Marco Varlesef3ab4892018-02-19 15:23:13 +0100459#define SCTP_RTO_BURST 4
Marco Varlese191a5942017-10-30 18:17:21 +0100460#define SCTP_RTO_ALPHA 1/8
461#define SCTP_RTO_BETA 1/4
462#define SCTP_VALID_COOKIE_LIFE 60 * SHZ /* 60 seconds */
Marco Varlese54432f82018-02-15 17:01:56 +0100463#define SCTP_ASSOCIATION_MAX_RETRANS 10 // the overall connection
464#define SCTP_PATH_MAX_RETRANS 5 // number of attempts per destination address
465#define SCTP_MAX_INIT_RETRANS 8 // number of attempts
466#define SCTP_HB_INTERVAL 30 * SHZ
467#define SCTP_HB_MAX_BURST 1
Marco Varlesef3ab4892018-02-19 15:23:13 +0100468#define SCTP_DATA_IDLE_INTERVAL 15 * SHZ /* 15 seconds; the time-interval after which the connetion is considered IDLE */
Marco Varlese191a5942017-10-30 18:17:21 +0100469#define SCTP_TO_TIMER_TICK SCTP_TICK*10 /* Period for converting from SCTP_TICK */
470
Marco Varlese3e9b4652018-03-13 15:44:56 +0100471#define SCTP_CONN_RECOVERY 1 << 1
472#define SCTP_FAST_RECOVERY 1 << 2
473
Marco Varlese191a5942017-10-30 18:17:21 +0100474typedef struct _sctp_lookup_dispatch
475{
476 u8 next, error;
477} sctp_lookup_dispatch_t;
478
479typedef struct _sctp_main
480{
481 /* Per-worker thread SCTP connection pools */
482 sctp_connection_t **connections;
483
484 /* Pool of listeners. */
485 sctp_connection_t *listener_pool;
486
487 /** Dispatch table by state and flags */
488 sctp_lookup_dispatch_t dispatch_table[SCTP_N_STATES][64];
489
490 u8 log2_tstamp_clocks_per_tick;
491 f64 tstamp_ticks_per_clock;
Marco Varlese93826732018-09-27 16:43:57 +0200492 u64 *time_now;
Marco Varlese191a5942017-10-30 18:17:21 +0100493
494 /** per-worker tx buffer free lists */
495 u32 **tx_buffers;
496 /** per-worker tx frames to SCTP 4/6 output nodes */
497 vlib_frame_t **tx_frames[2];
498 /** per-worker tx frames to ip 4/6 lookup nodes */
499 vlib_frame_t **ip_lookup_tx_frames[2];
500
501 /* Per worker-thread timer wheel for connections timers */
502 tw_timer_wheel_16t_2w_512sl_t *timer_wheels;
503
504 /* Pool of half-open connections on which we've sent a SYN */
505 sctp_connection_t *half_open_connections;
506 clib_spinlock_t half_open_lock;
507
508 /* TODO: Congestion control algorithms registered */
509 /* sctp_cc_algorithm_t *cc_algos; */
510
511 /* Flag that indicates if stack is on or off */
512 u8 is_enabled;
513
514 /** Number of preallocated connections */
515 u32 preallocated_connections;
516
517 /** Transport table (preallocation) size parameters */
518 u32 local_endpoints_table_memory;
519 u32 local_endpoints_table_buckets;
520
521 /** Vectors of src addresses. Optional unless one needs > 63K active-opens */
522 ip4_address_t *ip4_src_addresses;
523 u32 last_v4_address_rotor;
524 u32 last_v6_address_rotor;
525 ip6_address_t *ip6_src_addresses;
526
527 /** vlib buffer size */
528 u32 bytes_per_buffer;
529
530 u8 punt_unknown4;
531 u8 punt_unknown6;
532
Filip Tehlara5a458f2019-03-05 06:50:19 -0800533 u32 sctp4_established_phase_node_index;
534 u32 sctp6_established_phase_node_index;
Marco Varlese191a5942017-10-30 18:17:21 +0100535} sctp_main_t;
536
537extern sctp_main_t sctp_main;
538extern vlib_node_registration_t sctp4_input_node;
539extern vlib_node_registration_t sctp6_input_node;
540extern vlib_node_registration_t sctp4_output_node;
541extern vlib_node_registration_t sctp6_output_node;
542
543always_inline sctp_main_t *
544vnet_get_sctp_main ()
545{
546 return &sctp_main;
547}
548
549always_inline sctp_header_t *
550sctp_buffer_hdr (vlib_buffer_t * b)
551{
552 ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
553 return (sctp_header_t *) (b->data + b->current_data
554 + vnet_buffer (b)->sctp.hdr_offset);
555}
556
557clib_error_t *vnet_sctp_enable_disable (vlib_main_t * vm, u8 is_en);
558
559always_inline sctp_connection_t *
560sctp_half_open_connection_get (u32 conn_index)
561{
562 sctp_connection_t *tc = 0;
563 clib_spinlock_lock_if_init (&sctp_main.half_open_lock);
564 if (!pool_is_free_index (sctp_main.half_open_connections, conn_index))
565 tc = pool_elt_at_index (sctp_main.half_open_connections, conn_index);
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100566 tc->sub_conn[SCTP_PRIMARY_PATH_IDX].subconn_idx = SCTP_PRIMARY_PATH_IDX;
Marco Varlese191a5942017-10-30 18:17:21 +0100567 clib_spinlock_unlock_if_init (&sctp_main.half_open_lock);
568 return tc;
569}
570
571/**
572 * Cleanup half-open connection
573 *
574 */
575always_inline void
576sctp_half_open_connection_del (sctp_connection_t * tc)
577{
Marco Varlese15cc6a82018-02-21 12:39:52 +0100578 sctp_main_t *sctp_main = vnet_get_sctp_main ();
579 clib_spinlock_lock_if_init (&sctp_main->half_open_lock);
580 pool_put_index (sctp_main->half_open_connections,
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100581 tc->sub_conn[SCTP_PRIMARY_PATH_IDX].c_c_index);
Marco Varlese191a5942017-10-30 18:17:21 +0100582 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400583 clib_memset (tc, 0xFA, sizeof (*tc));
Marco Varlese15cc6a82018-02-21 12:39:52 +0100584 clib_spinlock_unlock_if_init (&sctp_main->half_open_lock);
Marco Varlese191a5942017-10-30 18:17:21 +0100585}
586
Marco Varlese93826732018-09-27 16:43:57 +0200587always_inline u64
Marco Varlese191a5942017-10-30 18:17:21 +0100588sctp_set_time_now (u32 thread_index)
589{
590 sctp_main.time_now[thread_index] = clib_cpu_time_now ()
591 * sctp_main.tstamp_ticks_per_clock;
592 return sctp_main.time_now[thread_index];
593}
594
595always_inline void
596sctp_timer_set (sctp_connection_t * tc, u8 conn_idx, u8 timer_id,
597 u32 interval)
598{
599 ASSERT (tc->sub_conn[conn_idx].connection.thread_index ==
600 vlib_get_thread_index ());
601 ASSERT (tc->sub_conn[conn_idx].timers[timer_id] ==
602 SCTP_TIMER_HANDLE_INVALID);
603
604 sctp_sub_connection_t *sub = &tc->sub_conn[conn_idx];
Marco Varlese21c8baf2018-02-02 17:17:51 +0100605 sub->timers[timer_id] =
Marco Varlese191a5942017-10-30 18:17:21 +0100606 tw_timer_start_16t_2w_512sl (&sctp_main.timer_wheels[sub->c_thread_index],
607 sub->c_c_index, timer_id, interval);
608}
609
610always_inline void
611sctp_timer_reset (sctp_connection_t * tc, u8 conn_idx, u8 timer_id)
612{
613 ASSERT (tc->sub_conn[conn_idx].c_thread_index == vlib_get_thread_index ());
614 if (tc->sub_conn[conn_idx].timers[timer_id] == SCTP_TIMER_HANDLE_INVALID)
615 return;
616
617 sctp_sub_connection_t *sub = &tc->sub_conn[conn_idx];
618
619 tw_timer_stop_16t_2w_512sl (&sctp_main.timer_wheels[sub->c_thread_index],
620 sub->timers[timer_id]);
621 sub->timers[timer_id] = SCTP_TIMER_HANDLE_INVALID;
622}
623
Marco Varlese191a5942017-10-30 18:17:21 +0100624/**
625 * Try to cleanup half-open connection
626 *
627 * If called from a thread that doesn't own tc, the call won't have any
628 * effect.
629 *
630 * @param tc - connection to be cleaned up
631 * @return non-zero if cleanup failed.
632 */
633always_inline int
634sctp_half_open_connection_cleanup (sctp_connection_t * tc)
635{
636 /* Make sure this is the owning thread */
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100637 if (tc->sub_conn[SCTP_PRIMARY_PATH_IDX].c_thread_index !=
Marco Varlese191a5942017-10-30 18:17:21 +0100638 vlib_get_thread_index ())
639 return 1;
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100640 sctp_timer_reset (tc, SCTP_PRIMARY_PATH_IDX, SCTP_TIMER_T1_INIT);
Marco Varlese191a5942017-10-30 18:17:21 +0100641 sctp_half_open_connection_del (tc);
642 return 0;
643}
644
645always_inline u32
646sctp_header_bytes ()
647{
648 return sizeof (sctp_header_t);
649}
650
651always_inline sctp_connection_t *
652sctp_get_connection_from_transport (transport_connection_t * tconn)
653{
654 ASSERT (tconn != NULL);
655
656 sctp_sub_connection_t *sub = (sctp_sub_connection_t *) tconn;
657#if SCTP_ADV_DEBUG
658 if (sub == NULL)
659 SCTP_ADV_DBG ("sub == NULL");
660 if (sub->parent == NULL)
661 SCTP_ADV_DBG ("sub->parent == NULL");
662#endif
Marco Varlese04e5d642018-02-23 17:43:06 +0100663 if (sub->subconn_idx > 0)
664 return (sctp_connection_t *) sub -
665 (sizeof (sctp_sub_connection_t) * (sub->subconn_idx - 1));
666
667 return (sctp_connection_t *) sub;
Marco Varlese191a5942017-10-30 18:17:21 +0100668}
669
Marco Varlese93826732018-09-27 16:43:57 +0200670always_inline u64
Marco Varlese191a5942017-10-30 18:17:21 +0100671sctp_time_now (void)
672{
673 return sctp_main.time_now[vlib_get_thread_index ()];
674}
675
Marco Varlese21c8baf2018-02-02 17:17:51 +0100676#define ABS(x) ((x) > 0) ? (x) : -(x);
677
678always_inline void
679sctp_calculate_rto (sctp_connection_t * sctp_conn, u8 conn_idx)
680{
681 /* See RFC4960, 6.3.1. RTO Calculation */
Marco Varlese93826732018-09-27 16:43:57 +0200682 u64 RTO = 0;
683 f64 RTTVAR = 0;
684 u64 now = sctp_time_now ();
685 u64 prev_ts = sctp_conn->sub_conn[conn_idx].rtt_ts;
686 u64 R = prev_ts - now;
Marco Varlese21c8baf2018-02-02 17:17:51 +0100687
688 if (sctp_conn->sub_conn[conn_idx].RTO == 0) // C1: Let's initialize our RTO
689 {
690 sctp_conn->sub_conn[conn_idx].RTO = SCTP_RTO_MIN;
691 return;
692 }
693
694 if (sctp_conn->sub_conn[conn_idx].RTO == SCTP_RTO_MIN && sctp_conn->sub_conn[conn_idx].SRTT == 0) // C2: First RTT calculation
695 {
696 sctp_conn->sub_conn[conn_idx].SRTT = R;
697 RTTVAR = R / 2;
698
699 if (RTTVAR == 0)
700 RTTVAR = 100e-3; /* 100 ms */
701
702 sctp_conn->sub_conn[conn_idx].RTTVAR = RTTVAR;
703 }
704 else // C3: RTT already exists; let's recalculate
705 {
706 RTTVAR = (1 - SCTP_RTO_BETA) * sctp_conn->sub_conn[conn_idx].RTTVAR +
707 SCTP_RTO_BETA * ABS (sctp_conn->sub_conn[conn_idx].SRTT - R);
708
709 if (RTTVAR == 0)
710 RTTVAR = 100e-3; /* 100 ms */
711
712 sctp_conn->sub_conn[conn_idx].RTTVAR = RTTVAR;
713
714 sctp_conn->sub_conn[conn_idx].SRTT =
715 (1 - SCTP_RTO_ALPHA) * sctp_conn->sub_conn[conn_idx].SRTT +
716 SCTP_RTO_ALPHA * R;
717 }
718
719 RTO =
720 sctp_conn->sub_conn[conn_idx].SRTT +
721 4 * sctp_conn->sub_conn[conn_idx].RTTVAR;
722 if (RTO < SCTP_RTO_MIN) // C6
723 RTO = SCTP_RTO_MIN;
724
725 if (RTO > SCTP_RTO_MAX) // C7
726 RTO = SCTP_RTO_MAX;
727
728 sctp_conn->sub_conn[conn_idx].RTO = RTO;
729}
730
Marco Varlese191a5942017-10-30 18:17:21 +0100731always_inline void
732sctp_timer_update (sctp_connection_t * tc, u8 conn_idx, u8 timer_id,
733 u32 interval)
734{
735 ASSERT (tc->sub_conn[conn_idx].connection.thread_index ==
736 vlib_get_thread_index ());
737 sctp_sub_connection_t *sub = &tc->sub_conn[conn_idx];
738
739 if (tc->sub_conn[conn_idx].timers[timer_id] != SCTP_TIMER_HANDLE_INVALID)
740 tw_timer_stop_16t_2w_512sl (&sctp_main.timer_wheels[sub->c_thread_index],
741 sub->timers[timer_id]);
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100742
Marco Varlese191a5942017-10-30 18:17:21 +0100743 tc->sub_conn[conn_idx].timers[timer_id] =
744 tw_timer_start_16t_2w_512sl (&sctp_main.timer_wheels[sub->c_thread_index],
745 sub->c_c_index, timer_id, interval);
746}
747
748always_inline sctp_connection_t *
749sctp_listener_get (u32 tli)
750{
751 return pool_elt_at_index (sctp_main.listener_pool, tli);
752}
753
754#endif
755
756always_inline sctp_connection_t *
757sctp_connection_get (u32 conn_index, u32 thread_index)
758{
759 if (PREDICT_FALSE
760 (pool_is_free_index (sctp_main.connections[thread_index], conn_index)))
761 return 0;
762 return pool_elt_at_index (sctp_main.connections[thread_index], conn_index);
763}
764
Marco Varlese54432f82018-02-15 17:01:56 +0100765#define SELECT_MAX_RETRIES 8
Marco Varlese191a5942017-10-30 18:17:21 +0100766
Marco Varlese54432f82018-02-15 17:01:56 +0100767always_inline u8
768sctp_data_subconn_select (sctp_connection_t * sctp_conn)
769{
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100770 u32 sub = SCTP_PRIMARY_PATH_IDX;
771 u8 i, cwnd = sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].cwnd;
Marco Varlesef3ab4892018-02-19 15:23:13 +0100772 for (i = 1; i < MAX_SCTP_CONNECTIONS; i++)
Marco Varlese191a5942017-10-30 18:17:21 +0100773 {
Marco Varlesef3ab4892018-02-19 15:23:13 +0100774 if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN)
775 continue;
776
777 if (sctp_conn->sub_conn[i].cwnd > cwnd)
778 {
779 sub = i;
780 cwnd = sctp_conn->sub_conn[i].cwnd;
781 }
Marco Varlese191a5942017-10-30 18:17:21 +0100782 }
Marco Varlese54432f82018-02-15 17:01:56 +0100783 return sub;
Marco Varlese191a5942017-10-30 18:17:21 +0100784}
785
786always_inline u8
Marco Varlese54432f82018-02-15 17:01:56 +0100787sctp_sub_conn_id_via_ip6h (sctp_connection_t * sctp_conn, ip6_header_t * ip6h)
Marco Varlese191a5942017-10-30 18:17:21 +0100788{
Marco Varlese54432f82018-02-15 17:01:56 +0100789 u8 i;
Marco Varlese191a5942017-10-30 18:17:21 +0100790
Marco Varlese54432f82018-02-15 17:01:56 +0100791 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
Marco Varlese191a5942017-10-30 18:17:21 +0100792 {
Marco Varlese54432f82018-02-15 17:01:56 +0100793 if (sctp_conn->sub_conn[i].connection.lcl_ip.ip6.as_u64[0] ==
794 ip6h->dst_address.as_u64[0] &&
795 sctp_conn->sub_conn[i].connection.lcl_ip.ip6.as_u64[1] ==
796 ip6h->dst_address.as_u64[1] &&
797 sctp_conn->sub_conn[i].connection.rmt_ip.ip6.as_u64[0] ==
798 ip6h->src_address.as_u64[0] &&
799 sctp_conn->sub_conn[i].connection.rmt_ip.ip6.as_u64[1] ==
800 ip6h->src_address.as_u64[1])
801 return i;
Marco Varlese191a5942017-10-30 18:17:21 +0100802 }
Marco Varlese54432f82018-02-15 17:01:56 +0100803 clib_warning ("Did not find a sub-connection; defaulting to %u",
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100804 SCTP_PRIMARY_PATH_IDX);
805 return SCTP_PRIMARY_PATH_IDX;
Marco Varlese54432f82018-02-15 17:01:56 +0100806}
807
808always_inline u8
809sctp_sub_conn_id_via_ip4h (sctp_connection_t * sctp_conn, ip4_header_t * ip4h)
810{
811 u8 i;
812
813 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
814 {
815 if (sctp_conn->sub_conn[i].connection.lcl_ip.ip4.as_u32 ==
816 ip4h->dst_address.as_u32
817 && sctp_conn->sub_conn[i].connection.rmt_ip.ip4.as_u32 ==
818 ip4h->src_address.as_u32)
819 return i;
820 }
821 clib_warning ("Did not find a sub-connection; defaulting to %u",
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100822 SCTP_PRIMARY_PATH_IDX);
823 return SCTP_PRIMARY_PATH_IDX;
Marco Varlese191a5942017-10-30 18:17:21 +0100824}
825
826/**
827 * Push SCTP header to buffer
828 *
829 * @param vm - vlib_main
830 * @param b - buffer to write the header to
831 * @param sp_net - source port net order
832 * @param dp_net - destination port net order
833 * @param sctp_hdr_opts_len - header and options length in bytes
834 *
835 * @return - pointer to start of SCTP header
836 */
837always_inline void *
838vlib_buffer_push_sctp_net_order (vlib_buffer_t * b, u16 sp, u16 dp,
839 u8 sctp_hdr_opts_len)
840{
841 sctp_full_hdr_t *full_hdr;
842
843 full_hdr = vlib_buffer_push_uninit (b, sctp_hdr_opts_len);
844
845 full_hdr->hdr.src_port = sp;
846 full_hdr->hdr.dst_port = dp;
847 full_hdr->hdr.checksum = 0;
848 return full_hdr;
849}
850
851/**
852 * Push SCTP header to buffer
853 *
854 * @param b - buffer to write the header to
855 * @param sp_net - source port net order
856 * @param dp_net - destination port net order
857 * @param sctp_hdr_opts_len - header and options length in bytes
858 *
859 * @return - pointer to start of SCTP header
860 */
861always_inline void *
862vlib_buffer_push_sctp (vlib_buffer_t * b, u16 sp_net, u16 dp_net,
863 u8 sctp_hdr_opts_len)
864{
865 return vlib_buffer_push_sctp_net_order (b, sp_net, dp_net,
866 sctp_hdr_opts_len);
867}
868
Marco Varlese3c6a9762018-03-01 11:19:59 +0100869always_inline u8
870sctp_next_avail_subconn (sctp_connection_t * sctp_conn)
871{
872 u8 i;
873
874 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
875 {
876 if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN)
877 return i;
878 }
879 return MAX_SCTP_CONNECTIONS;
880}
881
Marco Varlesef3ab4892018-02-19 15:23:13 +0100882always_inline void
883update_smallest_pmtu_idx (sctp_connection_t * sctp_conn)
884{
885 u8 i;
Marco Varlesec7fe4f32018-03-05 15:12:29 +0100886 u8 smallest_pmtu_index = SCTP_PRIMARY_PATH_IDX;
Marco Varlesef3ab4892018-02-19 15:23:13 +0100887
888 for (i = 1; i < MAX_SCTP_CONNECTIONS; i++)
889 {
890 if (sctp_conn->sub_conn[i].state != SCTP_SUBCONN_STATE_DOWN)
891 {
892 if (sctp_conn->sub_conn[i].PMTU <
893 sctp_conn->sub_conn[smallest_pmtu_index].PMTU)
894 smallest_pmtu_index = i;
895 }
896 }
897
898 sctp_conn->smallest_PMTU_idx = smallest_pmtu_index;
899}
900
901/* As per RFC4960; section 7.2.1: Slow-Start */
902always_inline void
903sctp_init_cwnd (sctp_connection_t * sctp_conn)
904{
905 u8 i;
906 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
907 {
908 /* Section 7.2.1; point (1) */
909 sctp_conn->sub_conn[i].cwnd =
910 clib_min (4 * sctp_conn->sub_conn[i].PMTU,
911 clib_max (2 * sctp_conn->sub_conn[i].PMTU, 4380));
912
913 /* Section 7.2.1; point (3) */
914 sctp_conn->sub_conn[i].ssthresh = SCTP_INITIAL_SSHTRESH;
915
916 /* Section 7.2.2; point (1) */
917 sctp_conn->sub_conn[i].partially_acked_bytes = 0;
918 }
919}
920
921always_inline u8
922sctp_in_cong_recovery (sctp_connection_t * sctp_conn, u8 idx)
923{
924 return 0;
925}
926
927always_inline u8
928cwnd_fully_utilized (sctp_connection_t * sctp_conn, u8 idx)
929{
Marco Varlese6e4d4a32018-03-12 12:36:59 +0100930 if (sctp_conn->sub_conn[idx].cwnd == 0)
931 return 1;
Marco Varlesef3ab4892018-02-19 15:23:13 +0100932 return 0;
933}
934
935/* As per RFC4960; section 7.2.1: Slow-Start */
936always_inline void
937update_cwnd (sctp_connection_t * sctp_conn)
938{
939 u8 i;
Marco Varlese6e4d4a32018-03-12 12:36:59 +0100940 u32 inflight = sctp_conn->next_tsn - sctp_conn->last_unacked_tsn;
Marco Varlesef3ab4892018-02-19 15:23:13 +0100941
942 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
943 {
944 /* Section 7.2.1; point (2) */
945 if (sctp_conn->sub_conn[i].is_retransmitting)
946 {
947 sctp_conn->sub_conn[i].cwnd = 1 * sctp_conn->sub_conn[i].PMTU;
948 continue;
949 }
950
951 /* Section 7.2.2; point (4) */
952 if (sctp_conn->sub_conn[i].last_data_ts >
953 sctp_time_now () + SCTP_DATA_IDLE_INTERVAL)
954 {
955 sctp_conn->sub_conn[i].cwnd =
956 clib_max (sctp_conn->sub_conn[i].cwnd / 2,
957 4 * sctp_conn->sub_conn[i].PMTU);
958 continue;
959 }
960
961 /* Section 7.2.1; point (5) */
962 if (sctp_conn->sub_conn[i].cwnd <= sctp_conn->sub_conn[i].ssthresh)
963 {
964 if (!cwnd_fully_utilized (sctp_conn, i))
965 continue;
966
967 if (sctp_in_cong_recovery (sctp_conn, i))
968 continue;
969
970 sctp_conn->sub_conn[i].cwnd =
971 clib_min (sctp_conn->sub_conn[i].PMTU, 1);
972 }
Marco Varlese6e4d4a32018-03-12 12:36:59 +0100973
974 /* Section 6.1; point (D) */
975 if ((inflight + SCTP_RTO_BURST * sctp_conn->sub_conn[i].PMTU) <
976 sctp_conn->sub_conn[i].cwnd)
977 sctp_conn->sub_conn[i].cwnd =
978 inflight + SCTP_RTO_BURST * sctp_conn->sub_conn[i].PMTU;
Marco Varlesef3ab4892018-02-19 15:23:13 +0100979 }
980}
981
Marco Varlese191a5942017-10-30 18:17:21 +0100982/*
983 * fd.io coding-style-patch-verification: ON
984 *
985 * Local Variables:
986 * eval: (c-set-style "gnu")
987 * End:
988 */