blob: b1186a62052c1b814fae804df415376db1ebfc1b [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#include <vnet/sctp/sctp.h>
16#include <vnet/sctp/sctp_debug.h>
17
18sctp_main_t sctp_main;
19
20static u32
21sctp_connection_bind (u32 session_index, transport_endpoint_t * tep)
22{
23 sctp_main_t *tm = &sctp_main;
24 sctp_connection_t *listener;
25 void *iface_ip;
26
27 pool_get (tm->listener_pool, listener);
28 memset (listener, 0, sizeof (*listener));
29
Marco Varlese04e5d642018-02-23 17:43:06 +010030 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].subconn_idx =
31 MAIN_SCTP_SUB_CONN_IDX;
Marco Varlese191a5942017-10-30 18:17:21 +010032 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_c_index =
33 listener - tm->listener_pool;
34 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.lcl_port = tep->port;
35
36 /* If we are provided a sw_if_index, bind using one of its IPs */
37 if (ip_is_zero (&tep->ip, 1) && tep->sw_if_index != ENDPOINT_INVALID_INDEX)
38 {
39 if ((iface_ip = ip_interface_get_first_ip (tep->sw_if_index,
40 tep->is_ip4)))
41 ip_set (&tep->ip, iface_ip, tep->is_ip4);
42 }
43 ip_copy (&listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.lcl_ip,
44 &tep->ip, tep->is_ip4);
45
Marco Varlesef3ab4892018-02-19 15:23:13 +010046 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].PMTU =
47 vnet_sw_interface_get_mtu (vnet_get_main (), tep->sw_if_index, VLIB_TX);
Marco Varlese191a5942017-10-30 18:17:21 +010048 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.is_ip4 = tep->is_ip4;
49 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.proto =
50 TRANSPORT_PROTO_SCTP;
51 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_s_index = session_index;
52 listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.fib_index =
53 tep->fib_index;
54 listener->state = SCTP_STATE_CLOSED;
55
56 sctp_connection_timers_init (listener);
57
58 return listener->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_c_index;
59}
60
61u32
62sctp_session_bind (u32 session_index, transport_endpoint_t * tep)
63{
64 return sctp_connection_bind (session_index, tep);
65}
66
67static void
68sctp_connection_unbind (u32 listener_index)
69{
70 sctp_main_t *tm = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +010071 sctp_connection_t *sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +010072
Marco Varlese8ad6a2d2018-01-26 16:50:01 +010073 sctp_conn = pool_elt_at_index (tm->listener_pool, listener_index);
Marco Varlese191a5942017-10-30 18:17:21 +010074
75 /* Poison the entry */
76 if (CLIB_DEBUG > 0)
Marco Varlese8ad6a2d2018-01-26 16:50:01 +010077 memset (sctp_conn, 0xFA, sizeof (*sctp_conn));
Marco Varlese191a5942017-10-30 18:17:21 +010078
79 pool_put_index (tm->listener_pool, listener_index);
80}
81
82u32
83sctp_session_unbind (u32 listener_index)
84{
85 sctp_connection_unbind (listener_index);
86 return 0;
87}
88
89void
90sctp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
91{
92 sctp_main_t *tm = &sctp_main;
93 if (is_ip4)
94 tm->punt_unknown4 = is_add;
95 else
96 tm->punt_unknown6 = is_add;
97}
98
99static int
100sctp_alloc_custom_local_endpoint (sctp_main_t * tm, ip46_address_t * lcl_addr,
101 u16 * lcl_port, u8 is_ip4)
102{
103 int index, port;
104 if (is_ip4)
105 {
106 index = tm->last_v4_address_rotor++;
107 if (tm->last_v4_address_rotor >= vec_len (tm->ip4_src_addresses))
108 tm->last_v4_address_rotor = 0;
109 lcl_addr->ip4.as_u32 = tm->ip4_src_addresses[index].as_u32;
110 }
111 else
112 {
113 index = tm->last_v6_address_rotor++;
114 if (tm->last_v6_address_rotor >= vec_len (tm->ip6_src_addresses))
115 tm->last_v6_address_rotor = 0;
116 clib_memcpy (&lcl_addr->ip6, &tm->ip6_src_addresses[index],
117 sizeof (ip6_address_t));
118 }
119 port = transport_alloc_local_port (TRANSPORT_PROTO_SCTP, lcl_addr);
120 if (port < 1)
121 {
122 clib_warning ("Failed to allocate src port");
123 return -1;
124 }
125 *lcl_port = port;
126 return 0;
127}
128
129/**
130 * Initialize all connection timers as invalid
131 */
132void
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100133sctp_connection_timers_init (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100134{
135 int i, j;
136
137 /* Set all to invalid */
138 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100139 {
140 sctp_conn->sub_conn[i].RTO = SCTP_RTO_INIT;
Marco Varlese21c8baf2018-02-02 17:17:51 +0100141
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100142 for (j = 0; j < SCTP_N_TIMERS; j++)
143 {
144 sctp_conn->sub_conn[i].timers[j] = SCTP_TIMER_HANDLE_INVALID;
145 }
146 }
Marco Varlese191a5942017-10-30 18:17:21 +0100147}
148
149/**
150 * Stop all connection timers
151 */
152void
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100153sctp_connection_timers_reset (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100154{
155 int i, j;
156 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
157 {
158 for (j = 0; j < SCTP_N_TIMERS; j++)
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100159 sctp_timer_reset (sctp_conn, i, j);
Marco Varlese191a5942017-10-30 18:17:21 +0100160 }
161}
162
163const char *sctp_fsm_states[] = {
164#define _(sym, str) str,
165 foreach_sctp_fsm_state
166#undef _
167};
168
169u8 *
170format_sctp_state (u8 * s, va_list * args)
171{
172 u32 state = va_arg (*args, u32);
173
174 if (state < SCTP_N_STATES)
175 s = format (s, "%s", sctp_fsm_states[state]);
176 else
177 s = format (s, "UNKNOWN (%d (0x%x))", state, state);
178 return s;
179}
180
181u8 *
182format_sctp_connection_id (u8 * s, va_list * args)
183{
Marco Varlesef3ab4892018-02-19 15:23:13 +0100184 sctp_connection_t *sctp_conn = va_arg (*args, sctp_connection_t *);
185 if (!sctp_conn)
186 return s;
187
188 u8 i;
189 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
190 {
191 if (sctp_conn->sub_conn[i].connection.is_ip4)
192 {
193 s = format (s, "%U[#%d][%s] %U:%d->%U:%d",
194 s,
195 sctp_conn->sub_conn[i].connection.thread_index,
196 "T",
197 format_ip4_address,
198 &sctp_conn->sub_conn[i].connection.lcl_ip.ip4,
199 clib_net_to_host_u16 (sctp_conn->sub_conn[i].
200 connection.lcl_port),
201 format_ip4_address,
202 &sctp_conn->sub_conn[i].connection.rmt_ip.ip4,
203 clib_net_to_host_u16 (sctp_conn->sub_conn[i].
204 connection.rmt_port));
205 }
206 else
207 {
208 s = format (s, "%U[#%d][%s] %U:%d->%U:%d",
209 s,
210 sctp_conn->sub_conn[i].connection.thread_index,
211 "T",
212 format_ip6_address,
213 &sctp_conn->sub_conn[i].connection.lcl_ip.ip6,
214 clib_net_to_host_u16 (sctp_conn->sub_conn[i].
215 connection.lcl_port),
216 format_ip6_address,
217 &sctp_conn->sub_conn[i].connection.rmt_ip.ip6,
218 clib_net_to_host_u16 (sctp_conn->sub_conn[i].
219 connection.rmt_port));
220 }
221 }
Marco Varlese191a5942017-10-30 18:17:21 +0100222 return s;
223}
224
225u8 *
226format_sctp_connection (u8 * s, va_list * args)
227{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100228 sctp_connection_t *sctp_conn = va_arg (*args, sctp_connection_t *);
Marco Varlese191a5942017-10-30 18:17:21 +0100229 u32 verbose = va_arg (*args, u32);
230
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100231 if (!sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100232 return s;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100233 s = format (s, "%-50U", format_sctp_connection_id, sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100234 if (verbose)
235 {
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100236 s = format (s, "%-15U", format_sctp_state, sctp_conn->state);
Marco Varlese191a5942017-10-30 18:17:21 +0100237 }
238
239 return s;
240}
241
242/**
243 * Initialize connection send variables.
244 */
245void
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100246sctp_init_snd_vars (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100247{
248 u32 time_now;
Marco Varlese191a5942017-10-30 18:17:21 +0100249 /*
250 * We use the time to randomize iss and for setting up the initial
251 * timestamp. Make sure it's updated otherwise syn and ack in the
252 * handshake may make it look as if time has flown in the opposite
253 * direction for us.
254 */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100255
Marco Varlese191a5942017-10-30 18:17:21 +0100256 sctp_set_time_now (vlib_get_thread_index ());
257 time_now = sctp_time_now ();
258
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100259 sctp_conn->local_initial_tsn = random_u32 (&time_now);
Marco Varlesef3ab4892018-02-19 15:23:13 +0100260 sctp_conn->last_unacked_tsn = sctp_conn->local_initial_tsn;
261 sctp_conn->next_tsn = sctp_conn->local_initial_tsn + 1;
262
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100263 sctp_conn->remote_initial_tsn = 0x0;
264 sctp_conn->last_rcvd_tsn = sctp_conn->remote_initial_tsn;
Marco Varlese191a5942017-10-30 18:17:21 +0100265}
266
267always_inline sctp_connection_t *
268sctp_sub_connection_add (u8 thread_index)
269{
270 sctp_main_t *tm = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100271 sctp_connection_t *sctp_conn = tm->connections[thread_index];
Marco Varlese191a5942017-10-30 18:17:21 +0100272
Marco Varlese3c6a9762018-03-01 11:19:59 +0100273 u8 subconn_idx = sctp_next_avail_subconn (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100274
Marco Varlese3c6a9762018-03-01 11:19:59 +0100275 ASSERT (subconn_idx < MAX_SCTP_CONNECTIONS);
276
277 sctp_conn->sub_conn[subconn_idx].connection.c_index =
278 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.c_index;
279 sctp_conn->sub_conn[subconn_idx].connection.thread_index = thread_index;
280 sctp_conn->sub_conn[subconn_idx].subconn_idx = subconn_idx;
Marco Varlese191a5942017-10-30 18:17:21 +0100281
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100282 return sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100283}
284
Marco Varlese3c6a9762018-03-01 11:19:59 +0100285u8
286sctp_sub_connection_add_ip4 (vlib_main_t * vm,
287 ip4_address_t * lcl_addr,
288 ip4_address_t * rmt_addr)
Marco Varlese191a5942017-10-30 18:17:21 +0100289{
Marco Varlese3c6a9762018-03-01 11:19:59 +0100290 sctp_connection_t *sctp_conn = sctp_sub_connection_add (vm->thread_index);
Marco Varlese191a5942017-10-30 18:17:21 +0100291
Marco Varlese3c6a9762018-03-01 11:19:59 +0100292 u8 subconn_idx = sctp_next_avail_subconn (sctp_conn);
293
294 if (subconn_idx == MAX_SCTP_CONNECTIONS)
295 return SCTP_ERROR_MAX_CONNECTIONS;
296
297 clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.lcl_ip,
298 &lcl_addr, sizeof (lcl_addr));
299
300 clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.rmt_ip,
301 &rmt_addr, sizeof (rmt_addr));
Marco Varleseeacf3cf2018-02-26 14:52:25 +0100302
303 sctp_conn->forming_association_changed = 1;
Marco Varlese3c6a9762018-03-01 11:19:59 +0100304
305 return SCTP_ERROR_NONE;
Marco Varlese191a5942017-10-30 18:17:21 +0100306}
307
Marco Varlese3c6a9762018-03-01 11:19:59 +0100308u8
309sctp_sub_connection_add_ip6 (vlib_main_t * vm,
310 ip6_address_t * lcl_addr,
311 ip6_address_t * rmt_addr)
Marco Varlese191a5942017-10-30 18:17:21 +0100312{
Marco Varlese3c6a9762018-03-01 11:19:59 +0100313 sctp_connection_t *sctp_conn = sctp_sub_connection_add (vm->thread_index);
Marco Varlese191a5942017-10-30 18:17:21 +0100314
Marco Varlese3c6a9762018-03-01 11:19:59 +0100315 u8 subconn_idx = sctp_next_avail_subconn (sctp_conn);
316
317 if (subconn_idx == MAX_SCTP_CONNECTIONS)
318 return SCTP_ERROR_MAX_CONNECTIONS;
319
320 clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.lcl_ip,
321 &lcl_addr, sizeof (lcl_addr));
322
323 clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.rmt_ip,
324 &rmt_addr, sizeof (rmt_addr));
Marco Varleseeacf3cf2018-02-26 14:52:25 +0100325
326 sctp_conn->forming_association_changed = 1;
Marco Varlese3c6a9762018-03-01 11:19:59 +0100327
328 return SCTP_ERROR_NONE;
Marco Varlese191a5942017-10-30 18:17:21 +0100329}
330
331sctp_connection_t *
332sctp_connection_new (u8 thread_index)
333{
Marco Varlese15cc6a82018-02-21 12:39:52 +0100334 sctp_main_t *sctp_main = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100335 sctp_connection_t *sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100336
Marco Varlese15cc6a82018-02-21 12:39:52 +0100337 pool_get (sctp_main->connections[thread_index], sctp_conn);
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100338 memset (sctp_conn, 0, sizeof (*sctp_conn));
Marco Varlese04e5d642018-02-23 17:43:06 +0100339 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].subconn_idx =
340 MAIN_SCTP_SUB_CONN_IDX;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100341 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_c_index =
Marco Varlese15cc6a82018-02-21 12:39:52 +0100342 sctp_conn - sctp_main->connections[thread_index];
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100343 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_thread_index = thread_index;
344 sctp_conn->local_tag = 0;
Marco Varlese191a5942017-10-30 18:17:21 +0100345
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100346 return sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100347}
348
349sctp_connection_t *
350sctp_half_open_connection_new (u8 thread_index)
351{
352 sctp_main_t *tm = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100353 sctp_connection_t *sctp_conn = 0;
Marco Varlese191a5942017-10-30 18:17:21 +0100354 ASSERT (vlib_get_thread_index () == 0);
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100355 pool_get (tm->half_open_connections, sctp_conn);
356 memset (sctp_conn, 0, sizeof (*sctp_conn));
357 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].c_c_index =
358 sctp_conn - tm->half_open_connections;
Marco Varlese04e5d642018-02-23 17:43:06 +0100359 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].subconn_idx =
360 MAIN_SCTP_SUB_CONN_IDX;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100361 return sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100362}
363
364static inline int
365sctp_connection_open (transport_endpoint_t * rmt)
366{
367 sctp_main_t *tm = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100368 sctp_connection_t *sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100369 ip46_address_t lcl_addr;
370 u16 lcl_port;
371 uword thread_id;
372 int rv;
373
Marco Varlese54432f82018-02-15 17:01:56 +0100374 u8 idx = MAIN_SCTP_SUB_CONN_IDX;
Marco Varlese191a5942017-10-30 18:17:21 +0100375
376 /*
377 * Allocate local endpoint
378 */
379 if ((rmt->is_ip4 && vec_len (tm->ip4_src_addresses))
380 || (!rmt->is_ip4 && vec_len (tm->ip6_src_addresses)))
381 rv = sctp_alloc_custom_local_endpoint (tm, &lcl_addr, &lcl_port,
382 rmt->is_ip4);
383 else
384 rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_SCTP,
385 rmt, &lcl_addr, &lcl_port);
386
387 if (rv)
388 return -1;
389
390 /*
391 * Create connection and send INIT CHUNK
392 */
393 thread_id = vlib_get_thread_index ();
394 ASSERT (thread_id == 0);
395
396 clib_spinlock_lock_if_init (&tm->half_open_lock);
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100397 sctp_conn = sctp_half_open_connection_new (thread_id);
Marco Varlesef3ab4892018-02-19 15:23:13 +0100398 sctp_conn->sub_conn[idx].PMTU =
399 vnet_sw_interface_get_mtu (vnet_get_main (), rmt->sw_if_index, VLIB_TX);
Marco Varlese191a5942017-10-30 18:17:21 +0100400
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100401 transport_connection_t *trans_conn = &sctp_conn->sub_conn[idx].connection;
402 ip_copy (&trans_conn->rmt_ip, &rmt->ip, rmt->is_ip4);
403 ip_copy (&trans_conn->lcl_ip, &lcl_addr, rmt->is_ip4);
Marco Varlese04e5d642018-02-23 17:43:06 +0100404 sctp_conn->sub_conn[idx].subconn_idx = idx;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100405 trans_conn->rmt_port = rmt->port;
406 trans_conn->lcl_port = clib_host_to_net_u16 (lcl_port);
407 trans_conn->is_ip4 = rmt->is_ip4;
408 trans_conn->proto = TRANSPORT_PROTO_SCTP;
409 trans_conn->fib_index = rmt->fib_index;
Marco Varlese191a5942017-10-30 18:17:21 +0100410
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100411 sctp_connection_timers_init (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100412 /* The other connection vars will be initialized after INIT_ACK chunk received */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100413 sctp_init_snd_vars (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100414
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100415 sctp_send_init (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100416
417 clib_spinlock_unlock_if_init (&tm->half_open_lock);
418
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100419 return sctp_conn->sub_conn[idx].connection.c_index;
Marco Varlese191a5942017-10-30 18:17:21 +0100420}
421
422/**
423 * Cleans up connection state.
424 *
425 * No notifications.
426 */
427void
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100428sctp_connection_cleanup (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100429{
430 sctp_main_t *tm = &sctp_main;
431 u8 i;
432
433 /* Cleanup local endpoint if this was an active connect */
434 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
435 transport_endpoint_cleanup (TRANSPORT_PROTO_SCTP,
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100436 &sctp_conn->sub_conn[i].connection.lcl_ip,
437 sctp_conn->sub_conn[i].connection.lcl_port);
Marco Varlese191a5942017-10-30 18:17:21 +0100438
Marco Varlese200fa322018-02-26 16:33:54 +0100439 int thread_index =
440 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.thread_index;
Marco Varlese191a5942017-10-30 18:17:21 +0100441
Marco Varlese200fa322018-02-26 16:33:54 +0100442 /* Make sure all timers are cleared */
443 sctp_connection_timers_reset (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100444
Marco Varlese200fa322018-02-26 16:33:54 +0100445 /* Poison the entry */
446 if (CLIB_DEBUG > 0)
447 memset (sctp_conn, 0xFA, sizeof (*sctp_conn));
448 pool_put (tm->connections[thread_index], sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100449}
450
451int
452sctp_session_open (transport_endpoint_t * tep)
453{
454 return sctp_connection_open (tep);
455}
456
457u16
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100458sctp_check_outstanding_data_chunks (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100459{
Marco Varlese54432f82018-02-15 17:01:56 +0100460 u8 i;
461 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
462 {
463 if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN)
464 continue;
465
466 if (sctp_conn->sub_conn[i].is_retransmitting == 1 ||
467 sctp_conn->sub_conn[i].enqueue_state != SCTP_ERROR_ENQUEUED)
468 {
469 SCTP_DBG_OUTPUT
Marco Varlesef3ab4892018-02-19 15:23:13 +0100470 ("Connection %u has still DATA to be enqueued inboud / outboud",
471 sctp_conn->sub_conn[i].connection.c_index);
Marco Varlese54432f82018-02-15 17:01:56 +0100472 return 1;
473 }
474
475 }
Marco Varlese191a5942017-10-30 18:17:21 +0100476 return 0; /* Indicates no more data to be read/sent */
477}
478
479void
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100480sctp_connection_close (sctp_connection_t * sctp_conn)
Marco Varlese191a5942017-10-30 18:17:21 +0100481{
482 SCTP_DBG ("Closing connection %u...",
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100483 sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection.c_index);
Marco Varlese191a5942017-10-30 18:17:21 +0100484
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100485 sctp_conn->state = SCTP_STATE_SHUTDOWN_PENDING;
Marco Varlese191a5942017-10-30 18:17:21 +0100486
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100487 sctp_send_shutdown (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100488}
489
490void
491sctp_session_close (u32 conn_index, u32 thread_index)
492{
493 ASSERT (thread_index == 0);
Marco Varlesef3ab4892018-02-19 15:23:13 +0100494
Marco Varlese15cc6a82018-02-21 12:39:52 +0100495 sctp_connection_t *sctp_conn =
496 sctp_connection_get (conn_index, thread_index);
Marco Varlesea38783e2018-02-13 12:38:52 +0100497 if (sctp_conn != NULL)
498 sctp_connection_close (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100499}
500
501void
502sctp_session_cleanup (u32 conn_index, u32 thread_index)
503{
Marco Varlese15cc6a82018-02-21 12:39:52 +0100504 sctp_connection_t *sctp_conn =
505 sctp_connection_get (conn_index, thread_index);
Marco Varlese191a5942017-10-30 18:17:21 +0100506
Marco Varlesea38783e2018-02-13 12:38:52 +0100507 if (sctp_conn != NULL)
508 {
509 sctp_connection_timers_reset (sctp_conn);
510 /* Wait for the session tx events to clear */
511 sctp_conn->state = SCTP_STATE_CLOSED;
512 }
Marco Varlese191a5942017-10-30 18:17:21 +0100513}
514
515/**
Marco Varlesef3ab4892018-02-19 15:23:13 +0100516 * Compute maximum segment size for session layer.
Marco Varlese191a5942017-10-30 18:17:21 +0100517 */
Marco Varlese191a5942017-10-30 18:17:21 +0100518u16
519sctp_session_send_mss (transport_connection_t * trans_conn)
520{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100521 sctp_connection_t *sctp_conn =
522 sctp_get_connection_from_transport (trans_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100523
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100524 if (sctp_conn == NULL)
Marco Varlese191a5942017-10-30 18:17:21 +0100525 {
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100526 SCTP_DBG ("sctp_conn == NULL");
Marco Varlese191a5942017-10-30 18:17:21 +0100527 return 0;
528 }
Marco Varlese191a5942017-10-30 18:17:21 +0100529
Marco Varlesef3ab4892018-02-19 15:23:13 +0100530 update_cwnd (sctp_conn);
531 update_smallest_pmtu_idx (sctp_conn);
532
533 return sctp_conn->sub_conn[sctp_conn->smallest_PMTU_idx].cwnd;
Marco Varlese191a5942017-10-30 18:17:21 +0100534}
535
536u16
537sctp_snd_space (sctp_connection_t * sctp_conn)
538{
Marco Varlesef3ab4892018-02-19 15:23:13 +0100539 /* Finally, let's subtract the DATA chunk headers overhead */
540 return sctp_conn->sub_conn[sctp_conn->smallest_PMTU_idx].cwnd -
541 sizeof (sctp_payload_data_chunk_t) - sizeof (sctp_full_hdr_t);
Marco Varlese191a5942017-10-30 18:17:21 +0100542}
543
Marco Varlesef3ab4892018-02-19 15:23:13 +0100544/**
545 * Compute TX window session is allowed to fill.
546 */
Marco Varlese191a5942017-10-30 18:17:21 +0100547u32
548sctp_session_send_space (transport_connection_t * trans_conn)
549{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100550 sctp_connection_t *sctp_conn =
551 sctp_get_connection_from_transport (trans_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100552
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100553 return sctp_snd_space (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100554}
555
556transport_connection_t *
557sctp_session_get_transport (u32 conn_index, u32 thread_index)
558{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100559 sctp_connection_t *sctp_conn =
560 sctp_connection_get (conn_index, thread_index);
Marco Varlese2802bd72018-02-15 13:45:39 +0100561
562 if (PREDICT_TRUE (sctp_conn != NULL))
563 return &sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection;
564
565 return NULL;
Marco Varlese191a5942017-10-30 18:17:21 +0100566}
567
568transport_connection_t *
569sctp_session_get_listener (u32 listener_index)
570{
571 sctp_main_t *tm = vnet_get_sctp_main ();
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100572 sctp_connection_t *sctp_conn;
573 sctp_conn = pool_elt_at_index (tm->listener_pool, listener_index);
574 return &sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection;
Marco Varlese191a5942017-10-30 18:17:21 +0100575}
576
577u8 *
578format_sctp_session (u8 * s, va_list * args)
579{
Marco Varlesef3ab4892018-02-19 15:23:13 +0100580 u32 tci = va_arg (*args, u32);
581 u32 thread_index = va_arg (*args, u32);
582 u32 verbose = va_arg (*args, u32);
583 sctp_connection_t *tc;
584
585 tc = sctp_connection_get (tci, thread_index);
586 if (tc)
587 s = format (s, "%U", format_sctp_connection, tc, verbose);
588 else
589 s = format (s, "empty\n");
590 return s;
Marco Varlese191a5942017-10-30 18:17:21 +0100591}
592
593u8 *
594format_sctp_listener_session (u8 * s, va_list * args)
595{
Marco Varlesef3ab4892018-02-19 15:23:13 +0100596 u32 tci = va_arg (*args, u32);
597 sctp_connection_t *tc = sctp_listener_get (tci);
598 return format (s, "%U", format_sctp_connection_id, tc);
Marco Varlese191a5942017-10-30 18:17:21 +0100599}
600
601void
Marco Varlesef47276f2018-02-06 09:01:39 +0100602sctp_expired_timers_cb (u32 conn_index, u32 timer_id)
Marco Varlese191a5942017-10-30 18:17:21 +0100603{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100604 sctp_connection_t *sctp_conn;
Marco Varlese191a5942017-10-30 18:17:21 +0100605
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100606 sctp_conn = sctp_connection_get (conn_index, vlib_get_thread_index ());
Marco Varlese191a5942017-10-30 18:17:21 +0100607 /* note: the connection may have already disappeared */
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100608 if (PREDICT_FALSE (sctp_conn == 0))
Marco Varlese191a5942017-10-30 18:17:21 +0100609 return;
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100610
611 SCTP_DBG ("%s expired", sctp_timer_to_string (timer_id));
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100612
613 switch (timer_id)
614 {
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100615 case SCTP_TIMER_T1_INIT:
616 case SCTP_TIMER_T1_COOKIE:
617 case SCTP_TIMER_T2_SHUTDOWN:
618 case SCTP_TIMER_T3_RXTX:
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100619 sctp_timer_reset (sctp_conn, conn_index, timer_id);
620 break;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100621 case SCTP_TIMER_T4_HEARTBEAT:
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100622 sctp_timer_reset (sctp_conn, conn_index, timer_id);
623 goto heartbeat;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100624 }
Marco Varlese191a5942017-10-30 18:17:21 +0100625
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100626 if (sctp_conn->sub_conn[conn_index].unacknowledged_hb >
Marco Varlese54432f82018-02-15 17:01:56 +0100627 SCTP_PATH_MAX_RETRANS)
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100628 {
629 // The remote-peer is considered to be unreachable hence shutting down
Marco Varlese54432f82018-02-15 17:01:56 +0100630 u8 i, total_subs_down = 1;
631 for (i = 0; i < MAX_SCTP_CONNECTIONS; i++)
632 {
633 if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN)
634 continue;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100635
Marco Varlese54432f82018-02-15 17:01:56 +0100636 u32 now = sctp_time_now ();
637 if (now > (sctp_conn->sub_conn[i].last_seen + SCTP_HB_INTERVAL))
638 {
639 total_subs_down += 1;
640 sctp_conn->sub_conn[i].state = SCTP_SUBCONN_STATE_DOWN;
641 }
642 }
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100643
Marco Varlese54432f82018-02-15 17:01:56 +0100644 if (total_subs_down == MAX_SCTP_CONNECTIONS)
645 {
646 /* Start cleanup. App wasn't notified yet so use delete notify as
647 * opposed to delete to cleanup session layer state. */
648 stream_session_delete_notify (&sctp_conn->sub_conn
649 [MAIN_SCTP_SUB_CONN_IDX].connection);
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100650
Marco Varlese54432f82018-02-15 17:01:56 +0100651 sctp_connection_timers_reset (sctp_conn);
652
653 sctp_connection_cleanup (sctp_conn);
654 }
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100655 }
656 return;
657
658heartbeat:
659 sctp_send_heartbeat (sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100660}
661
Marco Varlese191a5942017-10-30 18:17:21 +0100662static void
663sctp_expired_timers_dispatch (u32 * expired_timers)
664{
665 int i;
666 u32 connection_index, timer_id;
667
668 for (i = 0; i < vec_len (expired_timers); i++)
669 {
670 /* Get session index and timer id */
671 connection_index = expired_timers[i] & 0x0FFFFFFF;
672 timer_id = expired_timers[i] >> 28;
673
Marco Varlesef47276f2018-02-06 09:01:39 +0100674 SCTP_DBG ("Expired timer ID: %u", timer_id);
675
Marco Varlese191a5942017-10-30 18:17:21 +0100676 /* Handle expiration */
Marco Varlesedf5a99c2018-02-06 13:48:30 +0100677 sctp_expired_timers_cb (connection_index, timer_id);
Marco Varlese191a5942017-10-30 18:17:21 +0100678 }
679}
680
681void
682sctp_initialize_timer_wheels (sctp_main_t * tm)
683{
684 tw_timer_wheel_16t_2w_512sl_t *tw;
685 /* *INDENT-OFF* */
686 foreach_vlib_main (({
687 tw = &tm->timer_wheels[ii];
688 tw_timer_wheel_init_16t_2w_512sl (tw, sctp_expired_timers_dispatch,
689 100e-3 /* timer period 100ms */ , ~0);
690 tw->last_run_time = vlib_time_now (this_vlib_main);
691 }));
692 /* *INDENT-ON* */
693}
694
695clib_error_t *
696sctp_main_enable (vlib_main_t * vm)
697{
698 sctp_main_t *tm = vnet_get_sctp_main ();
699 vlib_thread_main_t *vtm = vlib_get_thread_main ();
700 clib_error_t *error = 0;
701 u32 num_threads;
702 int thread;
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100703 sctp_connection_t *sctp_conn __attribute__ ((unused));
Marco Varlese191a5942017-10-30 18:17:21 +0100704 u32 preallocated_connections_per_thread;
705
706 if ((error = vlib_call_init_function (vm, ip_main_init)))
707 return error;
708 if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
709 return error;
710 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
711 return error;
712
713 /*
714 * Registrations
715 */
716
717 ip4_register_protocol (IP_PROTOCOL_SCTP, sctp4_input_node.index);
718 ip6_register_protocol (IP_PROTOCOL_SCTP, sctp6_input_node.index);
719
720 /*
721 * Initialize data structures
722 */
723
724 num_threads = 1 /* main thread */ + vtm->n_threads;
725 vec_validate (tm->connections, num_threads - 1);
726
727 /*
728 * Preallocate connections. Assume that thread 0 won't
729 * use preallocated threads when running multi-core
730 */
731 if (num_threads == 1)
732 {
733 thread = 0;
734 preallocated_connections_per_thread = tm->preallocated_connections;
735 }
736 else
737 {
738 thread = 1;
739 preallocated_connections_per_thread =
740 tm->preallocated_connections / (num_threads - 1);
741 }
742 for (; thread < num_threads; thread++)
743 {
744 if (preallocated_connections_per_thread)
745 pool_init_fixed (tm->connections[thread],
746 preallocated_connections_per_thread);
747 }
748
749 /* Initialize per worker thread tx buffers (used for control messages) */
750 vec_validate (tm->tx_buffers, num_threads - 1);
751
752 /* Initialize timer wheels */
753 vec_validate (tm->timer_wheels, num_threads - 1);
754 sctp_initialize_timer_wheels (tm);
755
756 /* Initialize clocks per tick for SCTP timestamp. Used to compute
757 * monotonically increasing timestamps. */
758 tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
759 / SCTP_TSTAMP_RESOLUTION;
760
761 if (num_threads > 1)
762 {
Marco Varlesef47276f2018-02-06 09:01:39 +0100763 clib_spinlock_init (&tm->half_open_lock);
Marco Varlese191a5942017-10-30 18:17:21 +0100764 }
765
766 vec_validate (tm->tx_frames[0], num_threads - 1);
767 vec_validate (tm->tx_frames[1], num_threads - 1);
768 vec_validate (tm->ip_lookup_tx_frames[0], num_threads - 1);
769 vec_validate (tm->ip_lookup_tx_frames[1], num_threads - 1);
770
771 tm->bytes_per_buffer = vlib_buffer_free_list_buffer_size
772 (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
773
774 vec_validate (tm->time_now, num_threads - 1);
775 return error;
776}
777
778clib_error_t *
779sctp_enable_disable (vlib_main_t * vm, u8 is_en)
780{
781 if (is_en)
782 {
783 if (sctp_main.is_enabled)
784 return 0;
785
786 return sctp_main_enable (vm);
787 }
788 else
789 {
790 sctp_main.is_enabled = 0;
791 }
792
793 return 0;
794}
795
796transport_connection_t *
797sctp_half_open_session_get_transport (u32 conn_index)
798{
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100799 sctp_connection_t *sctp_conn = sctp_half_open_connection_get (conn_index);
800 return &sctp_conn->sub_conn[MAIN_SCTP_SUB_CONN_IDX].connection;
Marco Varlese191a5942017-10-30 18:17:21 +0100801}
802
803u8 *
804format_sctp_half_open (u8 * s, va_list * args)
805{
806 u32 tci = va_arg (*args, u32);
Marco Varlese8ad6a2d2018-01-26 16:50:01 +0100807 sctp_connection_t *sctp_conn = sctp_half_open_connection_get (tci);
808 return format (s, "%U", format_sctp_connection_id, sctp_conn);
Marco Varlese191a5942017-10-30 18:17:21 +0100809}
810
Marco Varlese21c8baf2018-02-02 17:17:51 +0100811void
812sctp_update_time (f64 now, u8 thread_index)
813{
814 sctp_set_time_now (thread_index);
815 tw_timer_expire_timers_16t_2w_512sl (&sctp_main.timer_wheels[thread_index],
816 now);
817 sctp_flush_frames_to_output (thread_index);
818}
819
Marco Varlese191a5942017-10-30 18:17:21 +0100820/* *INDENT OFF* */
821const static transport_proto_vft_t sctp_proto = {
822 .enable = sctp_enable_disable,
823 .bind = sctp_session_bind,
824 .unbind = sctp_session_unbind,
825 .open = sctp_session_open,
826 .close = sctp_session_close,
827 .cleanup = sctp_session_cleanup,
828 .push_header = sctp_push_header,
829 .send_mss = sctp_session_send_mss,
830 .send_space = sctp_session_send_space,
Marco Varlese21c8baf2018-02-02 17:17:51 +0100831 .update_time = sctp_update_time,
Marco Varlese191a5942017-10-30 18:17:21 +0100832 .get_connection = sctp_session_get_transport,
833 .get_listener = sctp_session_get_listener,
834 .get_half_open = sctp_half_open_session_get_transport,
835 .format_connection = format_sctp_session,
836 .format_listener = format_sctp_listener_session,
837 .format_half_open = format_sctp_half_open,
838};
839
840/* *INDENT ON* */
841
842clib_error_t *
843sctp_init (vlib_main_t * vm)
844{
845 sctp_main_t *tm = vnet_get_sctp_main ();
846 ip_main_t *im = &ip_main;
847 ip_protocol_info_t *pi;
848 /* Session layer, and by implication SCTP, are disabled by default */
849 tm->is_enabled = 0;
850
851 /* Register with IP for header parsing */
852 pi = ip_get_protocol_info (im, IP_PROTOCOL_SCTP);
853 if (pi == 0)
854 return clib_error_return (0, "SCTP protocol info AWOL");
855 pi->format_header = format_sctp_header;
856 pi->unformat_pg_edit = unformat_pg_sctp_header;
857
858 /* Register as transport with session layer */
859 transport_register_protocol (TRANSPORT_PROTO_SCTP, &sctp_proto,
860 FIB_PROTOCOL_IP4, sctp4_output_node.index);
861 transport_register_protocol (TRANSPORT_PROTO_SCTP, &sctp_proto,
862 FIB_PROTOCOL_IP6, sctp6_output_node.index);
863
Marco Varlese3c6a9762018-03-01 11:19:59 +0100864 sctp_api_reference ();
865
Marco Varlese191a5942017-10-30 18:17:21 +0100866 return 0;
867}
868
869VLIB_INIT_FUNCTION (sctp_init);
870
871/*
872 * fd.io coding-style-patch-verification: ON
873 *
874 * Local Variables:
875 * eval: (c-set-style "gnu")
876 * End:
877 */