blob: 88536dc27c696f193cf47a1fa6ae8b5b088a103b [file] [log] [blame]
Florin Corasba7d8f52019-02-22 13:11:38 -08001/*
2 * Copyright (c) 2019 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#include <vnet/session/application_local.h>
17#include <vnet/session/session.h>
18
Florin Corasda78c5a2021-06-09 14:55:24 -070019typedef enum ct_segment_flags_
20{
21 CT_SEGMENT_F_CLIENT_DETACHED = 1 << 0,
22 CT_SEGMENT_F_SERVER_DETACHED = 1 << 1,
23} ct_segment_flags_t;
24
25typedef struct ct_segment_
26{
Florin Corasda78c5a2021-06-09 14:55:24 -070027 u32 client_n_sessions;
28 u32 server_n_sessions;
Florin Coras6973c732021-06-17 15:53:38 -070029 u32 seg_ctx_index;
30 u32 ct_seg_index;
31 u32 segment_index;
Florin Corasda78c5a2021-06-09 14:55:24 -070032 ct_segment_flags_t flags;
33} ct_segment_t;
34
35typedef struct ct_segments_
36{
37 u32 sm_index;
38 u32 server_wrk;
39 u32 client_wrk;
Florin Coras6973c732021-06-17 15:53:38 -070040 u32 fifo_pair_bytes;
Florin Corasda78c5a2021-06-09 14:55:24 -070041 ct_segment_t *segments;
42} ct_segments_ctx_t;
43
Florin Coras440c7b52021-11-09 08:38:24 -080044typedef struct ct_cleanup_req_
45{
46 u32 ct_index;
47} ct_cleanup_req_t;
48
Florin Coras2d0e3de2020-10-23 16:31:40 -070049typedef struct ct_main_
Florin Coras653e43f2019-03-04 10:56:23 -080050{
Florin Coras2d0e3de2020-10-23 16:31:40 -070051 ct_connection_t **connections; /**< Per-worker connection pools */
Florin Coras440c7b52021-11-09 08:38:24 -080052 ct_cleanup_req_t **pending_cleanups;
53 u8 *heave_cleanups;
Florin Coras2d0e3de2020-10-23 16:31:40 -070054 u32 n_workers; /**< Number of vpp workers */
55 u32 n_sessions; /**< Cumulative sessions counter */
Florin Coras374df7a2021-05-13 11:37:43 -070056 u32 *ho_reusable; /**< Vector of reusable ho indices */
57 clib_spinlock_t ho_reuseable_lock; /**< Lock for reusable ho indices */
Florin Corasda78c5a2021-06-09 14:55:24 -070058 clib_rwlock_t app_segs_lock; /**< RW lock for seg contexts */
59 uword *app_segs_ctxs_table; /**< App handle to segment pool map */
60 ct_segments_ctx_t *app_seg_ctxs; /**< Pool of ct segment contexts */
Florin Coras2d0e3de2020-10-23 16:31:40 -070061} ct_main_t;
Florin Coras653e43f2019-03-04 10:56:23 -080062
Florin Coras2d0e3de2020-10-23 16:31:40 -070063static ct_main_t ct_main;
Florin Coras653e43f2019-03-04 10:56:23 -080064
65static ct_connection_t *
Florin Coras2d0e3de2020-10-23 16:31:40 -070066ct_connection_alloc (u32 thread_index)
Florin Corasd4295e62019-02-22 13:11:38 -080067{
68 ct_connection_t *ct;
69
Florin Coras2d0e3de2020-10-23 16:31:40 -070070 pool_get_zero (ct_main.connections[thread_index], ct);
71 ct->c_c_index = ct - ct_main.connections[thread_index];
72 ct->c_thread_index = thread_index;
Florin Corasd4295e62019-02-22 13:11:38 -080073 ct->client_wrk = ~0;
74 ct->server_wrk = ~0;
Florin Corasda78c5a2021-06-09 14:55:24 -070075 ct->seg_ctx_index = ~0;
76 ct->ct_seg_index = ~0;
Florin Corasd4295e62019-02-22 13:11:38 -080077 return ct;
78}
79
Florin Coras653e43f2019-03-04 10:56:23 -080080static ct_connection_t *
Florin Coras2d0e3de2020-10-23 16:31:40 -070081ct_connection_get (u32 ct_index, u32 thread_index)
Florin Corasd4295e62019-02-22 13:11:38 -080082{
Florin Coras2d0e3de2020-10-23 16:31:40 -070083 if (pool_is_free_index (ct_main.connections[thread_index], ct_index))
Florin Corasd4295e62019-02-22 13:11:38 -080084 return 0;
Florin Coras2d0e3de2020-10-23 16:31:40 -070085 return pool_elt_at_index (ct_main.connections[thread_index], ct_index);
Florin Corasba7d8f52019-02-22 13:11:38 -080086}
87
Florin Coras653e43f2019-03-04 10:56:23 -080088static void
Florin Corasd4295e62019-02-22 13:11:38 -080089ct_connection_free (ct_connection_t * ct)
Florin Corasba7d8f52019-02-22 13:11:38 -080090{
Florin Corasba7d8f52019-02-22 13:11:38 -080091 if (CLIB_DEBUG)
Florin Coras2d0e3de2020-10-23 16:31:40 -070092 {
93 u32 thread_index = ct->c_thread_index;
94 memset (ct, 0xfc, sizeof (*ct));
95 pool_put (ct_main.connections[thread_index], ct);
96 return;
97 }
98 pool_put (ct_main.connections[ct->c_thread_index], ct);
Florin Corasba7d8f52019-02-22 13:11:38 -080099}
100
Florin Coras374df7a2021-05-13 11:37:43 -0700101static ct_connection_t *
102ct_half_open_alloc (void)
103{
104 ct_main_t *cm = &ct_main;
105 u32 *hip;
106
107 clib_spinlock_lock (&cm->ho_reuseable_lock);
108 vec_foreach (hip, cm->ho_reusable)
109 pool_put_index (cm->connections[0], *hip);
110 vec_reset_length (cm->ho_reusable);
111 clib_spinlock_unlock (&cm->ho_reuseable_lock);
112
113 return ct_connection_alloc (0);
114}
115
116void
117ct_half_open_add_reusable (u32 ho_index)
118{
119 ct_main_t *cm = &ct_main;
120
121 clib_spinlock_lock (&cm->ho_reuseable_lock);
122 vec_add1 (cm->ho_reusable, ho_index);
123 clib_spinlock_unlock (&cm->ho_reuseable_lock);
124}
125
Florin Coras2b81e3c2019-02-27 07:55:46 -0800126session_t *
127ct_session_get_peer (session_t * s)
128{
129 ct_connection_t *ct, *peer_ct;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700130 ct = ct_connection_get (s->connection_index, s->thread_index);
131 peer_ct = ct_connection_get (ct->peer_index, s->thread_index);
132 return session_get (peer_ct->c_s_index, s->thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800133}
134
Florin Corasba7d8f52019-02-22 13:11:38 -0800135void
Florin Coras2b81e3c2019-02-27 07:55:46 -0800136ct_session_endpoint (session_t * ll, session_endpoint_t * sep)
Florin Corasba7d8f52019-02-22 13:11:38 -0800137{
Florin Corasd4295e62019-02-22 13:11:38 -0800138 ct_connection_t *ct;
139 ct = (ct_connection_t *) session_get_transport (ll);
140 sep->transport_proto = ct->actual_tp;
141 sep->port = ct->c_lcl_port;
142 sep->is_ip4 = ct->c_is_ip4;
Florin Corasea7e7082020-07-07 17:57:28 -0700143 ip_copy (&sep->ip, &ct->c_lcl_ip, ct->c_is_ip4);
Florin Corasba7d8f52019-02-22 13:11:38 -0800144}
145
Florin Corasda78c5a2021-06-09 14:55:24 -0700146static void
147ct_session_dealloc_fifos (ct_connection_t *ct, svm_fifo_t *rx_fifo,
148 svm_fifo_t *tx_fifo)
Florin Corasba7d8f52019-02-22 13:11:38 -0800149{
Florin Corasda78c5a2021-06-09 14:55:24 -0700150 ct_segments_ctx_t *seg_ctx;
151 ct_main_t *cm = &ct_main;
Florin Corasba7d8f52019-02-22 13:11:38 -0800152 segment_manager_t *sm;
Florin Corasda78c5a2021-06-09 14:55:24 -0700153 app_worker_t *app_wrk;
154 ct_segment_t *ct_seg;
155 fifo_segment_t *fs;
Florin Coras6973c732021-06-17 15:53:38 -0700156 u8 del_segment = 0;
Florin Corasda78c5a2021-06-09 14:55:24 -0700157 u32 seg_index;
Florin Coras6973c732021-06-17 15:53:38 -0700158 int cnt;
Florin Corasda78c5a2021-06-09 14:55:24 -0700159
160 /*
161 * Cleanup fifos
162 */
163
164 sm = segment_manager_get (rx_fifo->segment_manager);
165 seg_index = rx_fifo->segment_index;
166
167 fs = segment_manager_get_segment_w_lock (sm, seg_index);
168 fifo_segment_free_fifo (fs, rx_fifo);
169 fifo_segment_free_fifo (fs, tx_fifo);
170 segment_manager_segment_reader_unlock (sm);
171
172 /*
Florin Coras6973c732021-06-17 15:53:38 -0700173 * Atomically update segment context with readers lock
Florin Corasda78c5a2021-06-09 14:55:24 -0700174 */
175
176 clib_rwlock_reader_lock (&cm->app_segs_lock);
177
178 seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index);
179 ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index);
180
181 if (ct->flags & CT_CONN_F_CLIENT)
182 {
183 cnt =
184 __atomic_sub_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED);
Florin Corasda78c5a2021-06-09 14:55:24 -0700185 }
186 else
187 {
188 cnt =
189 __atomic_sub_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED);
Florin Corasda78c5a2021-06-09 14:55:24 -0700190 }
191
Florin Corasda78c5a2021-06-09 14:55:24 -0700192 clib_rwlock_reader_unlock (&cm->app_segs_lock);
193
194 /*
195 * No need to do any app updates, return
196 */
Florin Coras6973c732021-06-17 15:53:38 -0700197 ASSERT (cnt >= 0);
198 if (cnt)
199 return;
200
201 /*
202 * Grab exclusive lock and update flags unless some other thread
203 * added more sessions
204 */
205 clib_rwlock_writer_lock (&cm->app_segs_lock);
206
207 seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index);
208 ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index);
209 if (ct->flags & CT_CONN_F_CLIENT)
210 {
211 cnt = ct_seg->client_n_sessions;
212 if (!cnt)
213 ct_seg->flags |= CT_SEGMENT_F_CLIENT_DETACHED;
214 }
215 else
216 {
217 cnt = ct_seg->server_n_sessions;
218 if (!cnt)
219 ct_seg->flags |= CT_SEGMENT_F_SERVER_DETACHED;
220 }
221
222 /*
223 * Remove segment context because both client and server detached
224 */
225
226 if (!cnt && (ct_seg->flags & CT_SEGMENT_F_CLIENT_DETACHED) &&
227 (ct_seg->flags & CT_SEGMENT_F_SERVER_DETACHED))
228 {
229 pool_put_index (seg_ctx->segments, ct->ct_seg_index);
230
231 /*
232 * No more segment indices left, remove the segments context
233 */
234 if (!pool_elts (seg_ctx->segments))
235 {
236 u64 table_handle = seg_ctx->client_wrk << 16 | seg_ctx->server_wrk;
237 table_handle = (u64) seg_ctx->sm_index << 32 | table_handle;
238 hash_unset (cm->app_segs_ctxs_table, table_handle);
239 pool_free (seg_ctx->segments);
240 pool_put_index (cm->app_seg_ctxs, ct->seg_ctx_index);
241 }
242 del_segment = 1;
243 }
244
245 clib_rwlock_writer_unlock (&cm->app_segs_lock);
246
247 /*
248 * Session counter went to zero, notify the app that detached
249 */
Florin Corasda78c5a2021-06-09 14:55:24 -0700250 if (cnt)
251 return;
252
253 if (ct->flags & CT_CONN_F_CLIENT)
254 {
255 app_wrk = app_worker_get_if_valid (ct->client_wrk);
256 /* Determine if client app still needs notification, i.e., if it is
257 * still attached. If client detached and this is the last ct session
258 * on this segment, then its connects segment manager should also be
259 * detached, so do not send notification */
260 if (app_wrk)
261 {
262 segment_manager_t *csm;
263 csm = app_worker_get_connect_segment_manager (app_wrk);
264 if (!segment_manager_app_detached (csm))
265 app_worker_del_segment_notify (app_wrk, ct->segment_handle);
266 }
267 }
268 else if (!segment_manager_app_detached (sm))
269 {
270 app_wrk = app_worker_get (ct->server_wrk);
271 app_worker_del_segment_notify (app_wrk, ct->segment_handle);
272 }
273
Florin Coras6973c732021-06-17 15:53:38 -0700274 if (!del_segment)
Florin Corasda78c5a2021-06-09 14:55:24 -0700275 return;
276
Florin Corasda78c5a2021-06-09 14:55:24 -0700277 segment_manager_lock_and_del_segment (sm, seg_index);
278
279 /* Cleanup segment manager if needed. If server detaches there's a chance
280 * the client's sessions will hold up segment removal */
281 if (segment_manager_app_detached (sm) && !segment_manager_has_fifos (sm))
282 segment_manager_free_safe (sm);
283}
284
285int
Florin Coras6973c732021-06-17 15:53:38 -0700286ct_session_connect_notify (session_t *ss, session_error_t err)
Florin Corasda78c5a2021-06-09 14:55:24 -0700287{
Florin Coras6973c732021-06-17 15:53:38 -0700288 u32 ss_index, opaque, thread_index;
Florin Corasda78c5a2021-06-09 14:55:24 -0700289 ct_connection_t *sct, *cct;
Florin Corasda78c5a2021-06-09 14:55:24 -0700290 app_worker_t *client_wrk;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800291 session_t *cs;
Florin Corasba7d8f52019-02-22 13:11:38 -0800292
Florin Coras2b81e3c2019-02-27 07:55:46 -0800293 ss_index = ss->session_index;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700294 thread_index = ss->thread_index;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800295 sct = (ct_connection_t *) session_get_transport (ss);
296 client_wrk = app_worker_get (sct->client_wrk);
Florin Corasdd7d24b2020-08-14 17:51:13 -0700297 opaque = sct->client_opaque;
Florin Corasba7d8f52019-02-22 13:11:38 -0800298
Florin Coras2d0e3de2020-10-23 16:31:40 -0700299 cct = ct_connection_get (sct->peer_index, thread_index);
Florin Corasba7d8f52019-02-22 13:11:38 -0800300
Florin Coras374df7a2021-05-13 11:37:43 -0700301 /* Client closed while waiting for reply from server */
Florin Coras6973c732021-06-17 15:53:38 -0700302 if (PREDICT_FALSE (!cct))
Florin Coras374df7a2021-05-13 11:37:43 -0700303 {
304 session_transport_closing_notify (&sct->connection);
305 session_transport_delete_notify (&sct->connection);
306 ct_connection_free (sct);
307 return 0;
308 }
309
310 session_half_open_delete_notify (&cct->connection);
311 cct->flags &= ~CT_CONN_F_HALF_OPEN;
312
Florin Coras6973c732021-06-17 15:53:38 -0700313 if (PREDICT_FALSE (err))
314 goto connect_error;
Florin Corasda78c5a2021-06-09 14:55:24 -0700315
316 /*
317 * Alloc client session
318 */
319
Florin Coras2d0e3de2020-10-23 16:31:40 -0700320 cs = session_alloc (thread_index);
321 ss = session_get (ss_index, thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800322 cs->session_type = ss->session_type;
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200323 cs->listener_handle = SESSION_INVALID_HANDLE;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800324 cs->session_state = SESSION_STATE_CONNECTING;
325 cs->app_wrk_index = client_wrk->wrk_index;
326 cs->connection_index = cct->c_c_index;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800327 cct->c_s_index = cs->session_index;
328
329 /* This will allocate fifos for the session. They won't be used for
330 * exchanging data but they will be used to close the connection if
331 * the segment manager/worker is freed */
Florin Corasdd7d24b2020-08-14 17:51:13 -0700332 if ((err = app_worker_init_connected (client_wrk, cs)))
Florin Coras2b81e3c2019-02-27 07:55:46 -0800333 {
Florin Corasdd7d24b2020-08-14 17:51:13 -0700334 session_free (cs);
Florin Coras6973c732021-06-17 15:53:38 -0700335 session_close (ss);
336 err = SESSION_E_ALLOC;
337 goto connect_error;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800338 }
339
Florin Corasdd7d24b2020-08-14 17:51:13 -0700340 cs->session_state = SESSION_STATE_CONNECTING;
341
Florin Coras6973c732021-06-17 15:53:38 -0700342 if (app_worker_connect_notify (client_wrk, cs, 0, opaque))
Florin Coras2b81e3c2019-02-27 07:55:46 -0800343 {
Florin Coras6973c732021-06-17 15:53:38 -0700344 segment_manager_dealloc_fifos (cs->rx_fifo, cs->tx_fifo);
Florin Corasdd7d24b2020-08-14 17:51:13 -0700345 session_free (cs);
Florin Coras6973c732021-06-17 15:53:38 -0700346 session_close (ss);
347 goto cleanup_client;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800348 }
349
Florin Coras2d0e3de2020-10-23 16:31:40 -0700350 cs = session_get (cct->c_s_index, cct->c_thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800351 cs->session_state = SESSION_STATE_READY;
352
Florin Corasba7d8f52019-02-22 13:11:38 -0800353 return 0;
Florin Corasdd7d24b2020-08-14 17:51:13 -0700354
Florin Coras6973c732021-06-17 15:53:38 -0700355connect_error:
356
357 app_worker_connect_notify (client_wrk, 0, err, cct->client_opaque);
358
359cleanup_client:
360
361 if (cct->client_rx_fifo)
362 ct_session_dealloc_fifos (cct, cct->client_rx_fifo, cct->client_tx_fifo);
363 ct_connection_free (cct);
Florin Corasdd7d24b2020-08-14 17:51:13 -0700364 return -1;
Florin Corasba7d8f52019-02-22 13:11:38 -0800365}
366
Florin Coras6973c732021-06-17 15:53:38 -0700367static inline ct_segment_t *
368ct_lookup_free_segment (ct_main_t *cm, segment_manager_t *sm,
369 u32 seg_ctx_index)
Florin Corasba7d8f52019-02-22 13:11:38 -0800370{
Florin Corasda78c5a2021-06-09 14:55:24 -0700371 uword free_bytes, max_free_bytes;
372 ct_segment_t *ct_seg, *res = 0;
Florin Coras6973c732021-06-17 15:53:38 -0700373 ct_segments_ctx_t *seg_ctx;
Florin Corasda78c5a2021-06-09 14:55:24 -0700374 fifo_segment_t *fs;
375 u32 max_fifos;
376
Florin Coras6973c732021-06-17 15:53:38 -0700377 seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, seg_ctx_index);
378 max_free_bytes = seg_ctx->fifo_pair_bytes;
379
Florin Corasda78c5a2021-06-09 14:55:24 -0700380 pool_foreach (ct_seg, seg_ctx->segments)
381 {
382 /* Client or server has detached so segment cannot be used */
383 if ((ct_seg->flags & CT_SEGMENT_F_SERVER_DETACHED) ||
384 (ct_seg->flags & CT_SEGMENT_F_CLIENT_DETACHED))
385 continue;
386 fs = segment_manager_get_segment (sm, ct_seg->segment_index);
387 free_bytes = fifo_segment_available_bytes (fs);
Florin Coras6973c732021-06-17 15:53:38 -0700388 max_fifos = fifo_segment_size (fs) / seg_ctx->fifo_pair_bytes;
Florin Corasda78c5a2021-06-09 14:55:24 -0700389 if (free_bytes > max_free_bytes &&
390 fifo_segment_num_fifos (fs) / 2 < max_fifos)
391 {
392 max_free_bytes = free_bytes;
393 res = ct_seg;
394 }
395 }
396
397 return res;
398}
399
Florin Coras6973c732021-06-17 15:53:38 -0700400static ct_segment_t *
401ct_alloc_segment (ct_main_t *cm, app_worker_t *server_wrk, u64 table_handle,
402 segment_manager_t *sm, u32 client_wrk_index)
403{
404 u32 seg_ctx_index = ~0, sm_index, pair_bytes;
405 segment_manager_props_t *props;
406 const u32 margin = 16 << 10;
407 ct_segments_ctx_t *seg_ctx;
408 app_worker_t *client_wrk;
409 u64 seg_size, seg_handle;
410 application_t *server;
411 ct_segment_t *ct_seg;
412 uword *spp;
413 int fs_index;
414
415 server = application_get (server_wrk->app_index);
416 props = application_segment_manager_properties (server);
417 sm_index = segment_manager_index (sm);
418 pair_bytes = props->rx_fifo_size + props->tx_fifo_size + margin;
419
420 /*
421 * Make sure another thread did not alloc a segment while acquiring the lock
422 */
423
424 spp = hash_get (cm->app_segs_ctxs_table, table_handle);
425 if (spp)
426 {
427 seg_ctx_index = *spp;
428 ct_seg = ct_lookup_free_segment (cm, sm, seg_ctx_index);
429 if (ct_seg)
430 return ct_seg;
431 }
432
433 /*
434 * No segment, try to alloc one and notify the server and the client.
435 * Make sure the segment is not used for other fifos
436 */
437 seg_size = clib_max (props->segment_size, 128 << 20);
438 fs_index =
439 segment_manager_add_segment2 (sm, seg_size, FIFO_SEGMENT_F_CUSTOM_USE);
440 if (fs_index < 0)
441 return 0;
442
443 if (seg_ctx_index == ~0)
444 {
445 pool_get_zero (cm->app_seg_ctxs, seg_ctx);
446 seg_ctx_index = seg_ctx - cm->app_seg_ctxs;
447 hash_set (cm->app_segs_ctxs_table, table_handle, seg_ctx_index);
448 seg_ctx->server_wrk = server_wrk->wrk_index;
449 seg_ctx->client_wrk = client_wrk_index;
450 seg_ctx->sm_index = sm_index;
451 seg_ctx->fifo_pair_bytes = pair_bytes;
452 }
453 else
454 {
455 seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, seg_ctx_index);
456 }
457
458 pool_get_zero (seg_ctx->segments, ct_seg);
459 ct_seg->segment_index = fs_index;
460 ct_seg->server_n_sessions = 0;
461 ct_seg->client_n_sessions = 0;
462 ct_seg->ct_seg_index = ct_seg - seg_ctx->segments;
463 ct_seg->seg_ctx_index = seg_ctx_index;
464
465 /* New segment, notify the server and client */
466 seg_handle = segment_manager_make_segment_handle (sm_index, fs_index);
467 if (app_worker_add_segment_notify (server_wrk, seg_handle))
468 goto error;
469
470 client_wrk = app_worker_get (client_wrk_index);
471 if (app_worker_add_segment_notify (client_wrk, seg_handle))
472 {
473 app_worker_del_segment_notify (server_wrk, seg_handle);
474 goto error;
475 }
476
477 return ct_seg;
478
479error:
480
481 segment_manager_lock_and_del_segment (sm, fs_index);
482 pool_put_index (seg_ctx->segments, ct_seg->seg_ctx_index);
483 return 0;
484}
485
Florin Corasda78c5a2021-06-09 14:55:24 -0700486static int
487ct_init_accepted_session (app_worker_t *server_wrk, ct_connection_t *ct,
488 session_t *ls, session_t *ll)
489{
Florin Coras88001c62019-04-24 14:44:46 -0700490 segment_manager_props_t *props;
Florin Coras6973c732021-06-17 15:53:38 -0700491 u64 seg_handle, table_handle;
492 u32 sm_index, fs_index = ~0;
Florin Corasda78c5a2021-06-09 14:55:24 -0700493 ct_segments_ctx_t *seg_ctx;
494 ct_main_t *cm = &ct_main;
Florin Coras653e43f2019-03-04 10:56:23 -0800495 application_t *server;
Florin Corasba7d8f52019-02-22 13:11:38 -0800496 segment_manager_t *sm;
Florin Corasda78c5a2021-06-09 14:55:24 -0700497 ct_segment_t *ct_seg;
498 fifo_segment_t *fs;
Florin Corasda78c5a2021-06-09 14:55:24 -0700499 uword *spp;
Florin Coras6973c732021-06-17 15:53:38 -0700500 int rv;
Florin Corasba7d8f52019-02-22 13:11:38 -0800501
Florin Coras2b81e3c2019-02-27 07:55:46 -0800502 sm = app_worker_get_listen_segment_manager (server_wrk, ll);
Florin Corasda78c5a2021-06-09 14:55:24 -0700503 sm_index = segment_manager_index (sm);
504 server = application_get (server_wrk->app_index);
505 props = application_segment_manager_properties (server);
Florin Corasba7d8f52019-02-22 13:11:38 -0800506
Florin Corasda78c5a2021-06-09 14:55:24 -0700507 table_handle = ct->client_wrk << 16 | server_wrk->wrk_index;
Florin Coras6973c732021-06-17 15:53:38 -0700508 table_handle = (u64) sm_index << 32 | table_handle;
Florin Corasda78c5a2021-06-09 14:55:24 -0700509
510 /*
511 * Check if we already have a segment that can hold the fifos
512 */
513
514 clib_rwlock_reader_lock (&cm->app_segs_lock);
515
516 spp = hash_get (cm->app_segs_ctxs_table, table_handle);
517 if (spp)
518 {
Florin Coras6973c732021-06-17 15:53:38 -0700519 ct_seg = ct_lookup_free_segment (cm, sm, *spp);
Florin Corasda78c5a2021-06-09 14:55:24 -0700520 if (ct_seg)
521 {
Florin Coras6973c732021-06-17 15:53:38 -0700522 ct->seg_ctx_index = ct_seg->seg_ctx_index;
523 ct->ct_seg_index = ct_seg->ct_seg_index;
Florin Corasda78c5a2021-06-09 14:55:24 -0700524 fs_index = ct_seg->segment_index;
525 __atomic_add_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED);
Florin Coras6973c732021-06-17 15:53:38 -0700526 __atomic_add_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED);
Florin Corasda78c5a2021-06-09 14:55:24 -0700527 }
528 }
529
530 clib_rwlock_reader_unlock (&cm->app_segs_lock);
531
532 /*
Florin Coras6973c732021-06-17 15:53:38 -0700533 * If not, grab exclusive lock and allocate segment
Florin Corasda78c5a2021-06-09 14:55:24 -0700534 */
Florin Coras6973c732021-06-17 15:53:38 -0700535 if (fs_index == ~0)
Florin Corasda78c5a2021-06-09 14:55:24 -0700536 {
Florin Corasda78c5a2021-06-09 14:55:24 -0700537 clib_rwlock_writer_lock (&cm->app_segs_lock);
538
Florin Coras6973c732021-06-17 15:53:38 -0700539 ct_seg =
540 ct_alloc_segment (cm, server_wrk, table_handle, sm, ct->client_wrk);
541 if (!ct_seg)
Florin Corasda78c5a2021-06-09 14:55:24 -0700542 {
Florin Coras6973c732021-06-17 15:53:38 -0700543 clib_rwlock_writer_unlock (&cm->app_segs_lock);
544 return -1;
Florin Corasda78c5a2021-06-09 14:55:24 -0700545 }
Florin Corasda78c5a2021-06-09 14:55:24 -0700546
Florin Coras6973c732021-06-17 15:53:38 -0700547 ct->seg_ctx_index = ct_seg->seg_ctx_index;
548 ct->ct_seg_index = ct_seg->ct_seg_index;
Florin Corasda78c5a2021-06-09 14:55:24 -0700549 ct_seg->server_n_sessions += 1;
Florin Coras6973c732021-06-17 15:53:38 -0700550 ct_seg->client_n_sessions += 1;
551 fs_index = ct_seg->segment_index;
Florin Corasda78c5a2021-06-09 14:55:24 -0700552
553 clib_rwlock_writer_unlock (&cm->app_segs_lock);
Florin Corasda78c5a2021-06-09 14:55:24 -0700554 }
555
556 /*
557 * Allocate and initialize the fifos
558 */
559 fs = segment_manager_get_segment_w_lock (sm, fs_index);
560 rv = segment_manager_try_alloc_fifos (
561 fs, ls->thread_index, props->rx_fifo_size, props->tx_fifo_size,
562 &ls->rx_fifo, &ls->tx_fifo);
Florin Corasba7d8f52019-02-22 13:11:38 -0800563 if (rv)
564 {
Florin Corasba7d8f52019-02-22 13:11:38 -0800565 segment_manager_segment_reader_unlock (sm);
Florin Coras6973c732021-06-17 15:53:38 -0700566
567 clib_rwlock_reader_lock (&cm->app_segs_lock);
568
569 seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index);
570 ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index);
571 __atomic_sub_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED);
572 __atomic_sub_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED);
573
574 clib_rwlock_reader_unlock (&cm->app_segs_lock);
575
576 return rv;
Florin Corasba7d8f52019-02-22 13:11:38 -0800577 }
Florin Coras2b81e3c2019-02-27 07:55:46 -0800578
Florin Corasc547e912020-12-08 17:50:45 -0800579 ls->rx_fifo->shr->master_session_index = ls->session_index;
580 ls->tx_fifo->shr->master_session_index = ls->session_index;
Florin Corasce252ca2020-11-04 13:08:35 -0800581 ls->rx_fifo->master_thread_index = ls->thread_index;
582 ls->tx_fifo->master_thread_index = ls->thread_index;
Florin Corasba7d8f52019-02-22 13:11:38 -0800583 ls->rx_fifo->segment_manager = sm_index;
584 ls->tx_fifo->segment_manager = sm_index;
Florin Corasda78c5a2021-06-09 14:55:24 -0700585 ls->rx_fifo->segment_index = fs_index;
586 ls->tx_fifo->segment_index = fs_index;
Florin Corasba7d8f52019-02-22 13:11:38 -0800587
Florin Corasda78c5a2021-06-09 14:55:24 -0700588 seg_handle = segment_manager_segment_handle (sm, fs);
Florin Corasba7d8f52019-02-22 13:11:38 -0800589 segment_manager_segment_reader_unlock (sm);
Florin Corasda78c5a2021-06-09 14:55:24 -0700590
591 ct->segment_handle = seg_handle;
Florin Corasba7d8f52019-02-22 13:11:38 -0800592
593 return 0;
Florin Corasba7d8f52019-02-22 13:11:38 -0800594}
595
Florin Coras2d0e3de2020-10-23 16:31:40 -0700596static void
597ct_accept_rpc_wrk_handler (void *accept_args)
598{
Florin Coras374df7a2021-05-13 11:37:43 -0700599 u32 cct_index, ho_index, thread_index, ll_index;
Florin Corasba026412021-06-12 11:56:19 -0700600 ct_connection_t *sct, *cct, *ho;
601 transport_connection_t *ll_ct;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800602 app_worker_t *server_wrk;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700603 session_t *ss, *ll;
Florin Corasba7d8f52019-02-22 13:11:38 -0800604
Florin Coras374df7a2021-05-13 11:37:43 -0700605 /*
606 * Alloc client ct and initialize from ho
607 */
608 thread_index = vlib_get_thread_index ();
609 cct = ct_connection_alloc (thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800610 cct_index = cct->c_c_index;
Florin Coras374df7a2021-05-13 11:37:43 -0700611
612 ho_index = pointer_to_uword (accept_args);
613 ho = ct_connection_get (ho_index, 0);
614
615 /* Unlikely but half-open session and transport could have been freed */
616 if (PREDICT_FALSE (!ho))
617 {
618 ct_connection_free (cct);
619 return;
620 }
621
622 clib_memcpy (cct, ho, sizeof (*ho));
623 cct->c_c_index = cct_index;
624 cct->c_thread_index = thread_index;
625 cct->flags |= CT_CONN_F_HALF_OPEN;
626
627 /* Notify session layer that half-open is on a different thread
628 * and mark ho connection index reusable. Avoids another rpc
629 */
630 session_half_open_migrate_notify (&cct->connection);
631 session_half_open_migrated_notify (&cct->connection);
632 ct_half_open_add_reusable (ho_index);
Florin Corasba7d8f52019-02-22 13:11:38 -0800633
Florin Coras2b81e3c2019-02-27 07:55:46 -0800634 /*
Florin Coras374df7a2021-05-13 11:37:43 -0700635 * Alloc and init server transport
Florin Coras2b81e3c2019-02-27 07:55:46 -0800636 */
Florin Coras374df7a2021-05-13 11:37:43 -0700637
638 ll_index = cct->peer_index;
639 ll = listen_session_get (ll_index);
640 sct = ct_connection_alloc (thread_index);
Florin Corasba026412021-06-12 11:56:19 -0700641 /* Transport not necessarily ct but it might, so grab after sct alloc */
642 ll_ct = listen_session_get_transport (ll);
Florin Coras374df7a2021-05-13 11:37:43 -0700643
644 /* Make sure cct is valid after sct alloc */
645 cct = ct_connection_get (cct_index, thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800646
Florin Coras2b81e3c2019-02-27 07:55:46 -0800647 sct->c_rmt_port = 0;
Florin Corasba026412021-06-12 11:56:19 -0700648 sct->c_lcl_port = ll_ct->lcl_port;
Florin Coras374df7a2021-05-13 11:37:43 -0700649 sct->c_is_ip4 = cct->c_is_ip4;
Florin Corasd9e98702021-10-11 18:10:41 -0700650 clib_memcpy (&sct->c_lcl_ip, &cct->c_rmt_ip, sizeof (cct->c_rmt_ip));
Florin Coras374df7a2021-05-13 11:37:43 -0700651 sct->client_wrk = cct->client_wrk;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800652 sct->c_proto = TRANSPORT_PROTO_NONE;
Florin Coras374df7a2021-05-13 11:37:43 -0700653 sct->client_opaque = cct->client_opaque;
Florin Corasba026412021-06-12 11:56:19 -0700654 sct->actual_tp = cct->actual_tp;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800655
656 sct->peer_index = cct->c_c_index;
657 cct->peer_index = sct->c_c_index;
658
659 /*
660 * Accept server session. Client session is created only after
661 * server confirms accept.
662 */
Florin Coras374df7a2021-05-13 11:37:43 -0700663 ss = session_alloc (thread_index);
664 ll = listen_session_get (ll_index);
Florin Coras9f1a5432019-03-10 21:03:20 -0700665 ss->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE,
666 sct->c_is_ip4);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800667 ss->connection_index = sct->c_c_index;
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200668 ss->listener_handle = listen_session_get_handle (ll);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800669 ss->session_state = SESSION_STATE_CREATED;
670
671 server_wrk = application_listener_select_worker (ll);
672 ss->app_wrk_index = server_wrk->wrk_index;
673
674 sct->c_s_index = ss->session_index;
675 sct->server_wrk = ss->app_wrk_index;
676
Florin Coras2d0e3de2020-10-23 16:31:40 -0700677 if (ct_init_accepted_session (server_wrk, sct, ss, ll))
Florin Corasba7d8f52019-02-22 13:11:38 -0800678 {
Florin Coras6973c732021-06-17 15:53:38 -0700679 ct_session_connect_notify (ss, SESSION_E_ALLOC);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800680 ct_connection_free (sct);
681 session_free (ss);
Florin Coras2d0e3de2020-10-23 16:31:40 -0700682 return;
Florin Corasba7d8f52019-02-22 13:11:38 -0800683 }
684
Florin Coras6973c732021-06-17 15:53:38 -0700685 cct->seg_ctx_index = sct->seg_ctx_index;
686 cct->ct_seg_index = sct->ct_seg_index;
687 cct->client_rx_fifo = ss->tx_fifo;
688 cct->client_tx_fifo = ss->rx_fifo;
689 cct->client_rx_fifo->refcnt++;
690 cct->client_tx_fifo->refcnt++;
691 cct->segment_handle = sct->segment_handle;
692
Florin Coras2b81e3c2019-02-27 07:55:46 -0800693 ss->session_state = SESSION_STATE_ACCEPTING;
694 if (app_worker_accept_notify (server_wrk, ss))
695 {
Florin Coras6973c732021-06-17 15:53:38 -0700696 ct_session_connect_notify (ss, SESSION_E_REFUSED);
Florin Corasda78c5a2021-06-09 14:55:24 -0700697 ct_session_dealloc_fifos (sct, ss->rx_fifo, ss->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800698 ct_connection_free (sct);
Florin Coras12813d52020-04-09 20:59:20 +0000699 session_free (ss);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800700 }
Florin Coras2d0e3de2020-10-23 16:31:40 -0700701}
702
703static int
704ct_connect (app_worker_t * client_wrk, session_t * ll,
705 session_endpoint_cfg_t * sep)
706{
Florin Coras374df7a2021-05-13 11:37:43 -0700707 u32 thread_index, ho_index;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700708 ct_main_t *cm = &ct_main;
Florin Coras374df7a2021-05-13 11:37:43 -0700709 ct_connection_t *ho;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700710
711 /* Simple round-robin policy for spreading sessions over workers. We skip
712 * thread index 0, i.e., offset the index by 1, when we have workers as it
713 * is the one dedicated to main thread. Note that n_workers does not include
714 * main thread */
715 cm->n_sessions += 1;
716 thread_index = cm->n_workers ? (cm->n_sessions % cm->n_workers) + 1 : 0;
717
Florin Coras374df7a2021-05-13 11:37:43 -0700718 /*
719 * Alloc and init client half-open transport
720 */
Florin Coras2d0e3de2020-10-23 16:31:40 -0700721
Florin Coras374df7a2021-05-13 11:37:43 -0700722 ho = ct_half_open_alloc ();
723 ho_index = ho->c_c_index;
724 ho->c_rmt_port = sep->port;
725 ho->c_lcl_port = 0;
726 ho->c_is_ip4 = sep->is_ip4;
727 ho->client_opaque = sep->opaque;
728 ho->client_wrk = client_wrk->wrk_index;
729 ho->peer_index = ll->session_index;
730 ho->c_proto = TRANSPORT_PROTO_NONE;
731 ho->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
Florin Corasd5a58822021-05-14 20:11:14 -0700732 clib_memcpy (&ho->c_rmt_ip, &sep->ip, sizeof (sep->ip));
Florin Coras374df7a2021-05-13 11:37:43 -0700733 ho->flags |= CT_CONN_F_CLIENT;
734 ho->c_s_index = ~0;
Florin Corasba026412021-06-12 11:56:19 -0700735 ho->actual_tp = sep->transport_proto;
Florin Coras374df7a2021-05-13 11:37:43 -0700736
737 /*
738 * Accept connection on thread selected above. Connected reply comes
739 * after server accepts the connection.
740 */
741
742 session_send_rpc_evt_to_thread_force (thread_index,
743 ct_accept_rpc_wrk_handler,
744 uword_to_pointer (ho_index, void *));
745
746 return ho_index;
Florin Corasba7d8f52019-02-22 13:11:38 -0800747}
748
Florin Coras653e43f2019-03-04 10:56:23 -0800749static u32
Florin Corasd4295e62019-02-22 13:11:38 -0800750ct_start_listen (u32 app_listener_index, transport_endpoint_t * tep)
751{
752 session_endpoint_cfg_t *sep;
753 ct_connection_t *ct;
754
755 sep = (session_endpoint_cfg_t *) tep;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700756 ct = ct_connection_alloc (0);
Florin Corasd4295e62019-02-22 13:11:38 -0800757 ct->server_wrk = sep->app_wrk_index;
758 ct->c_is_ip4 = sep->is_ip4;
759 clib_memcpy (&ct->c_lcl_ip, &sep->ip, sizeof (sep->ip));
760 ct->c_lcl_port = sep->port;
Florin Corasa8375082020-10-25 19:06:57 -0700761 ct->c_s_index = app_listener_index;
Florin Corasd4295e62019-02-22 13:11:38 -0800762 ct->actual_tp = sep->transport_proto;
763 return ct->c_c_index;
764}
765
Florin Coras653e43f2019-03-04 10:56:23 -0800766static u32
Florin Corasd4295e62019-02-22 13:11:38 -0800767ct_stop_listen (u32 ct_index)
768{
769 ct_connection_t *ct;
Florin Coras2d0e3de2020-10-23 16:31:40 -0700770 ct = ct_connection_get (ct_index, 0);
Florin Corasd4295e62019-02-22 13:11:38 -0800771 ct_connection_free (ct);
772 return 0;
773}
774
Florin Coras653e43f2019-03-04 10:56:23 -0800775static transport_connection_t *
Florin Corasd4295e62019-02-22 13:11:38 -0800776ct_listener_get (u32 ct_index)
777{
Florin Coras2d0e3de2020-10-23 16:31:40 -0700778 return (transport_connection_t *) ct_connection_get (ct_index, 0);
Florin Corasd4295e62019-02-22 13:11:38 -0800779}
780
Florin Coras374df7a2021-05-13 11:37:43 -0700781static transport_connection_t *
782ct_half_open_get (u32 ct_index)
783{
784 return (transport_connection_t *) ct_connection_get (ct_index, 0);
785}
786
787static void
788ct_session_cleanup (u32 conn_index, u32 thread_index)
789{
790 ct_connection_t *ct, *peer_ct;
791
792 ct = ct_connection_get (conn_index, thread_index);
793 if (!ct)
794 return;
795
796 peer_ct = ct_connection_get (ct->peer_index, thread_index);
797 if (peer_ct)
798 peer_ct->peer_index = ~0;
799
800 ct_connection_free (ct);
801}
802
803static void
804ct_cleanup_ho (u32 ho_index)
805{
806 ct_connection_free (ct_connection_get (ho_index, 0));
807}
808
Florin Coras653e43f2019-03-04 10:56:23 -0800809static int
Florin Coras2b81e3c2019-02-27 07:55:46 -0800810ct_session_connect (transport_endpoint_cfg_t * tep)
811{
812 session_endpoint_cfg_t *sep_ext;
Florin Coras374df7a2021-05-13 11:37:43 -0700813 session_endpoint_t _sep, *sep = &_sep;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800814 app_worker_t *app_wrk;
815 session_handle_t lh;
816 application_t *app;
817 app_listener_t *al;
818 u32 table_index;
819 session_t *ll;
820 u8 fib_proto;
821
822 sep_ext = (session_endpoint_cfg_t *) tep;
Florin Coras374df7a2021-05-13 11:37:43 -0700823 _sep = *(session_endpoint_t *) tep;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800824 app_wrk = app_worker_get (sep_ext->app_wrk_index);
825 app = application_get (app_wrk->app_index);
826
827 sep->transport_proto = sep_ext->original_tp;
828 table_index = application_local_session_table (app);
829 lh = session_lookup_local_endpoint (table_index, sep);
830 if (lh == SESSION_DROP_HANDLE)
Florin Coras00e01d32019-10-21 16:07:46 -0700831 return SESSION_E_FILTERED;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800832
833 if (lh == SESSION_INVALID_HANDLE)
834 goto global_scope;
835
836 ll = listen_session_get_from_handle (lh);
837 al = app_listener_get_w_session (ll);
838
839 /*
840 * Break loop if rule in local table points to connecting app. This
841 * can happen if client is a generic proxy. Route connect through
842 * global table instead.
843 */
844 if (al->app_index == app->app_index)
845 goto global_scope;
846
847 return ct_connect (app_wrk, ll, sep_ext);
848
849 /*
850 * If nothing found, check the global scope for locally attached
851 * destinations. Make sure first that we're allowed to.
852 */
853
854global_scope:
855 if (session_endpoint_is_local (sep))
Florin Coras00e01d32019-10-21 16:07:46 -0700856 return SESSION_E_NOROUTE;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800857
858 if (!application_has_global_scope (app))
Florin Coras00e01d32019-10-21 16:07:46 -0700859 return SESSION_E_SCOPE;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800860
861 fib_proto = session_endpoint_fib_proto (sep);
Florin Coras95cd8642019-12-30 21:53:19 -0800862 table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
Florin Coras9f1a5432019-03-10 21:03:20 -0700863 ll = session_lookup_listener_wildcard (table_index, sep);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800864
Florin Coras821b5002021-06-02 21:32:39 -0700865 /* Avoid connecting app to own listener */
866 if (ll && ll->app_index != app->app_index)
Florin Coras2b81e3c2019-02-27 07:55:46 -0800867 return ct_connect (app_wrk, ll, sep_ext);
868
869 /* Failed to connect but no error */
Florin Coras374df7a2021-05-13 11:37:43 -0700870 return SESSION_E_LOCAL_CONNECT;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800871}
872
Florin Coras653e43f2019-03-04 10:56:23 -0800873static void
Florin Coras440c7b52021-11-09 08:38:24 -0800874ct_session_postponed_cleanup (ct_connection_t *ct)
875{
876 app_worker_t *app_wrk;
877 session_t *s;
878
879 s = session_get (ct->c_s_index, ct->c_thread_index);
880 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
881
882 if (ct->flags & CT_CONN_F_CLIENT)
883 {
884 if (app_wrk)
885 app_worker_cleanup_notify (app_wrk, s, SESSION_CLEANUP_TRANSPORT);
886
887 /* Normal free for client session as the fifos are allocated through
888 * the connects segment manager in a segment that's not shared with
889 * the server */
890 session_free_w_fifos (s);
891 ct_session_dealloc_fifos (ct, ct->client_rx_fifo, ct->client_tx_fifo);
892 }
893 else
894 {
895 /* Manual session and fifo segment cleanup to avoid implicit
896 * segment manager cleanups and notifications */
897 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
898 if (app_wrk)
899 {
900 app_worker_cleanup_notify (app_wrk, s, SESSION_CLEANUP_TRANSPORT);
901 app_worker_cleanup_notify (app_wrk, s, SESSION_CLEANUP_SESSION);
902 }
903
904 ct_session_dealloc_fifos (ct, s->rx_fifo, s->tx_fifo);
905 session_free (s);
906 }
907
908 ct_connection_free (ct);
909}
910
911static void
912ct_handle_cleanups (void *args)
913{
914 uword thread_index = pointer_to_uword (args);
915 const u32 max_cleanups = 100;
916 ct_main_t *cm = &ct_main;
917 ct_cleanup_req_t *req;
918 ct_connection_t *ct;
919 u32 n_to_handle = 0;
920 session_t *s;
921
922 cm->heave_cleanups[thread_index] = 0;
923 n_to_handle = clib_fifo_elts (cm->pending_cleanups[thread_index]);
924 n_to_handle = clib_min (n_to_handle, max_cleanups);
925
926 while (n_to_handle)
927 {
928 clib_fifo_sub2 (cm->pending_cleanups[thread_index], req);
929 ct = ct_connection_get (req->ct_index, thread_index);
930 s = session_get (ct->c_s_index, ct->c_thread_index);
931 if (!svm_fifo_has_event (s->tx_fifo))
932 ct_session_postponed_cleanup (ct);
933 else
934 clib_fifo_add1 (cm->pending_cleanups[thread_index], *req);
935 n_to_handle -= 1;
936 }
937
938 if (clib_fifo_elts (cm->pending_cleanups[thread_index]))
939 {
940 cm->heave_cleanups[thread_index] = 1;
941 session_send_rpc_evt_to_thread_force (
942 thread_index, ct_handle_cleanups,
943 uword_to_pointer (thread_index, void *));
944 }
945}
946
947static void
948ct_program_cleanup (ct_connection_t *ct)
949{
950 ct_main_t *cm = &ct_main;
951 ct_cleanup_req_t *req;
952 uword thread_index;
953
954 thread_index = ct->c_thread_index;
955 clib_fifo_add2 (cm->pending_cleanups[thread_index], req);
956 req->ct_index = ct->c_c_index;
957
958 if (cm->heave_cleanups[thread_index])
959 return;
960
961 cm->heave_cleanups[thread_index] = 1;
962 session_send_rpc_evt_to_thread_force (
963 thread_index, ct_handle_cleanups, uword_to_pointer (thread_index, void *));
964}
965
966static void
Florin Coras2b81e3c2019-02-27 07:55:46 -0800967ct_session_close (u32 ct_index, u32 thread_index)
968{
969 ct_connection_t *ct, *peer_ct;
970 session_t *s;
971
Florin Coras2d0e3de2020-10-23 16:31:40 -0700972 ct = ct_connection_get (ct_index, thread_index);
Florin Coras6973c732021-06-17 15:53:38 -0700973 s = session_get (ct->c_s_index, ct->c_thread_index);
Florin Coras2d0e3de2020-10-23 16:31:40 -0700974 peer_ct = ct_connection_get (ct->peer_index, thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800975 if (peer_ct)
976 {
977 peer_ct->peer_index = ~0;
Florin Coras06ac4bb2020-10-28 16:41:26 -0700978 /* Make sure session was allocated */
Florin Coras374df7a2021-05-13 11:37:43 -0700979 if (peer_ct->flags & CT_CONN_F_HALF_OPEN)
980 {
Florin Coras6973c732021-06-17 15:53:38 -0700981 ct_session_connect_notify (s, SESSION_E_REFUSED);
Florin Coras374df7a2021-05-13 11:37:43 -0700982 }
983 else if (peer_ct->c_s_index != ~0)
Florin Coras06ac4bb2020-10-28 16:41:26 -0700984 session_transport_closing_notify (&peer_ct->connection);
985 else
Florin Coras440c7b52021-11-09 08:38:24 -0800986 {
987 /* should not happen */
988 clib_warning ("ct peer without session");
989 ct_connection_free (peer_ct);
990 }
Florin Coras2b81e3c2019-02-27 07:55:46 -0800991 }
992
Florin Coras440c7b52021-11-09 08:38:24 -0800993 /* Do not send closed notify to make sure pending tx events are
994 * still delivered and program cleanup */
995 ct_program_cleanup (ct);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800996}
997
Florin Coras653e43f2019-03-04 10:56:23 -0800998static transport_connection_t *
Florin Coras2b81e3c2019-02-27 07:55:46 -0800999ct_session_get (u32 ct_index, u32 thread_index)
1000{
Florin Coras2d0e3de2020-10-23 16:31:40 -07001001 return (transport_connection_t *) ct_connection_get (ct_index,
1002 thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -08001003}
1004
Florin Corasd4295e62019-02-22 13:11:38 -08001005static u8 *
1006format_ct_connection_id (u8 * s, va_list * args)
1007{
1008 ct_connection_t *ct = va_arg (*args, ct_connection_t *);
1009 if (!ct)
1010 return s;
1011 if (ct->c_is_ip4)
1012 {
1013 s = format (s, "[%d:%d][CT:%U] %U:%d->%U:%d", ct->c_thread_index,
1014 ct->c_s_index, format_transport_proto_short, ct->actual_tp,
1015 format_ip4_address, &ct->c_lcl_ip4,
1016 clib_net_to_host_u16 (ct->c_lcl_port), format_ip4_address,
1017 &ct->c_rmt_ip4, clib_net_to_host_u16 (ct->c_rmt_port));
1018 }
1019 else
1020 {
1021 s = format (s, "[%d:%d][CT:%U] %U:%d->%U:%d", ct->c_thread_index,
1022 ct->c_s_index, format_transport_proto_short, ct->actual_tp,
1023 format_ip6_address, &ct->c_lcl_ip6,
1024 clib_net_to_host_u16 (ct->c_lcl_port), format_ip6_address,
1025 &ct->c_rmt_ip6, clib_net_to_host_u16 (ct->c_rmt_port));
1026 }
1027
1028 return s;
1029}
1030
Florin Corasf940f8a2019-03-06 10:44:38 -08001031static int
Florin Coras9f86d222020-03-23 15:34:22 +00001032ct_custom_tx (void *session, transport_send_params_t * sp)
Florin Corasf940f8a2019-03-06 10:44:38 -08001033{
1034 session_t *s = (session_t *) session;
1035 if (session_has_transport (s))
1036 return 0;
Florin Coras1b9d2c22021-01-26 14:10:43 -08001037 /* If event enqueued towards peer, remove from scheduler and remove
1038 * session tx flag, i.e., accept new tx events. Unset fifo flag now to
1039 * avoid missing events if peer did not clear fifo flag yet, which is
1040 * interpreted as successful notification and session is descheduled. */
1041 svm_fifo_unset_event (s->tx_fifo);
Florin Corasd6894562020-10-28 00:37:15 -07001042 if (!ct_session_tx (s))
Florin Coras1b9d2c22021-01-26 14:10:43 -08001043 sp->flags = TRANSPORT_SND_F_DESCHED;
1044
Florin Corasd6894562020-10-28 00:37:15 -07001045 /* The scheduler uses packet count as a means of upper bounding the amount
1046 * of work done per dispatch. So make it look like we have sent something */
1047 return 1;
Florin Corasf940f8a2019-03-06 10:44:38 -08001048}
1049
Florin Coras317b8e02019-04-17 09:57:46 -07001050static int
1051ct_app_rx_evt (transport_connection_t * tc)
1052{
1053 ct_connection_t *ct = (ct_connection_t *) tc, *peer_ct;
1054 session_t *ps;
1055
Florin Coras2d0e3de2020-10-23 16:31:40 -07001056 peer_ct = ct_connection_get (ct->peer_index, tc->thread_index);
Florin Coras317b8e02019-04-17 09:57:46 -07001057 if (!peer_ct)
1058 return -1;
1059 ps = session_get (peer_ct->c_s_index, peer_ct->c_thread_index);
1060 return session_dequeue_notify (ps);
1061}
1062
Florin Coras653e43f2019-03-04 10:56:23 -08001063static u8 *
Florin Corasd4295e62019-02-22 13:11:38 -08001064format_ct_listener (u8 * s, va_list * args)
1065{
1066 u32 tc_index = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +02001067 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Corasd4295e62019-02-22 13:11:38 -08001068 u32 __clib_unused verbose = va_arg (*args, u32);
Florin Coras2d0e3de2020-10-23 16:31:40 -07001069 ct_connection_t *ct = ct_connection_get (tc_index, 0);
Florin Coras7bf6ed62020-09-23 12:02:08 -07001070 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct);
Florin Corasd4295e62019-02-22 13:11:38 -08001071 if (verbose)
Florin Coras7bf6ed62020-09-23 12:02:08 -07001072 s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "LISTEN");
Florin Corasd4295e62019-02-22 13:11:38 -08001073 return s;
1074}
1075
Florin Coras653e43f2019-03-04 10:56:23 -08001076static u8 *
Florin Coras374df7a2021-05-13 11:37:43 -07001077format_ct_half_open (u8 *s, va_list *args)
1078{
1079 u32 ho_index = va_arg (*args, u32);
1080 u32 verbose = va_arg (*args, u32);
1081 ct_connection_t *ct = ct_connection_get (ho_index, 0);
1082 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct);
1083 if (verbose)
1084 s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "HALF-OPEN");
1085 return s;
1086}
1087
1088static u8 *
Florin Coras2b81e3c2019-02-27 07:55:46 -08001089format_ct_connection (u8 * s, va_list * args)
1090{
1091 ct_connection_t *ct = va_arg (*args, ct_connection_t *);
1092 u32 verbose = va_arg (*args, u32);
1093
1094 if (!ct)
1095 return s;
Florin Coras7bf6ed62020-09-23 12:02:08 -07001096 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct);
Florin Coras2b81e3c2019-02-27 07:55:46 -08001097 if (verbose)
1098 {
Florin Coras7bf6ed62020-09-23 12:02:08 -07001099 s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "ESTABLISHED");
Florin Coras2b81e3c2019-02-27 07:55:46 -08001100 if (verbose > 1)
1101 {
1102 s = format (s, "\n");
1103 }
1104 }
1105 return s;
1106}
1107
Florin Coras653e43f2019-03-04 10:56:23 -08001108static u8 *
Florin Coras2b81e3c2019-02-27 07:55:46 -08001109format_ct_session (u8 * s, va_list * args)
1110{
1111 u32 ct_index = va_arg (*args, u32);
Florin Coras2d0e3de2020-10-23 16:31:40 -07001112 u32 thread_index = va_arg (*args, u32);
Florin Coras2b81e3c2019-02-27 07:55:46 -08001113 u32 verbose = va_arg (*args, u32);
1114 ct_connection_t *ct;
1115
Florin Coras2d0e3de2020-10-23 16:31:40 -07001116 ct = ct_connection_get (ct_index, thread_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -08001117 if (!ct)
1118 {
1119 s = format (s, "empty\n");
1120 return s;
1121 }
1122
1123 s = format (s, "%U", format_ct_connection, ct, verbose);
1124 return s;
1125}
1126
Florin Coras2d0e3de2020-10-23 16:31:40 -07001127clib_error_t *
1128ct_enable_disable (vlib_main_t * vm, u8 is_en)
1129{
Florin Coras374df7a2021-05-13 11:37:43 -07001130 ct_main_t *cm = &ct_main;
1131
1132 cm->n_workers = vlib_num_workers ();
1133 vec_validate (cm->connections, cm->n_workers);
Florin Coras440c7b52021-11-09 08:38:24 -08001134 vec_validate (cm->pending_cleanups, cm->n_workers);
1135 vec_validate (cm->heave_cleanups, cm->n_workers);
Florin Coras374df7a2021-05-13 11:37:43 -07001136 clib_spinlock_init (&cm->ho_reuseable_lock);
Florin Corasda78c5a2021-06-09 14:55:24 -07001137 clib_rwlock_init (&cm->app_segs_lock);
Florin Coras2d0e3de2020-10-23 16:31:40 -07001138 return 0;
1139}
1140
Florin Corasd4295e62019-02-22 13:11:38 -08001141/* *INDENT-OFF* */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001142static const transport_proto_vft_t cut_thru_proto = {
Florin Coras2d0e3de2020-10-23 16:31:40 -07001143 .enable = ct_enable_disable,
Florin Corasd4295e62019-02-22 13:11:38 -08001144 .start_listen = ct_start_listen,
1145 .stop_listen = ct_stop_listen,
Florin Coras374df7a2021-05-13 11:37:43 -07001146 .get_connection = ct_session_get,
Florin Corasd4295e62019-02-22 13:11:38 -08001147 .get_listener = ct_listener_get,
Florin Coras374df7a2021-05-13 11:37:43 -07001148 .get_half_open = ct_half_open_get,
1149 .cleanup = ct_session_cleanup,
1150 .cleanup_ho = ct_cleanup_ho,
Florin Coras2b81e3c2019-02-27 07:55:46 -08001151 .connect = ct_session_connect,
1152 .close = ct_session_close,
Florin Corasf940f8a2019-03-06 10:44:38 -08001153 .custom_tx = ct_custom_tx,
Florin Coras317b8e02019-04-17 09:57:46 -07001154 .app_rx_evt = ct_app_rx_evt,
Florin Corasd4295e62019-02-22 13:11:38 -08001155 .format_listener = format_ct_listener,
Florin Coras374df7a2021-05-13 11:37:43 -07001156 .format_half_open = format_ct_half_open,
Florin Coras2b81e3c2019-02-27 07:55:46 -08001157 .format_connection = format_ct_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001158 .transport_options = {
Florin Coras07063b82020-03-13 04:44:51 +00001159 .name = "ct",
1160 .short_name = "C",
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001161 .tx_type = TRANSPORT_TX_INTERNAL,
Florin Coras374df7a2021-05-13 11:37:43 -07001162 .service_type = TRANSPORT_SERVICE_VC,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001163 },
Florin Corasd4295e62019-02-22 13:11:38 -08001164};
1165/* *INDENT-ON* */
1166
Florin Coras653e43f2019-03-04 10:56:23 -08001167int
1168ct_session_tx (session_t * s)
1169{
1170 ct_connection_t *ct, *peer_ct;
1171 session_t *peer_s;
1172
1173 ct = (ct_connection_t *) session_get_transport (s);
Florin Coras2d0e3de2020-10-23 16:31:40 -07001174 peer_ct = ct_connection_get (ct->peer_index, ct->c_thread_index);
Florin Coras653e43f2019-03-04 10:56:23 -08001175 if (!peer_ct)
Florin Corasbcdc50d2020-08-25 19:07:02 -07001176 return 0;
Florin Coras2d0e3de2020-10-23 16:31:40 -07001177 peer_s = session_get (peer_ct->c_s_index, peer_ct->c_thread_index);
Florin Coras653e43f2019-03-04 10:56:23 -08001178 if (peer_s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1179 return 0;
Florin Corasd6894562020-10-28 00:37:15 -07001180 return session_enqueue_notify (peer_s);
Florin Coras653e43f2019-03-04 10:56:23 -08001181}
1182
Florin Corasd4295e62019-02-22 13:11:38 -08001183static clib_error_t *
1184ct_transport_init (vlib_main_t * vm)
1185{
1186 transport_register_protocol (TRANSPORT_PROTO_NONE, &cut_thru_proto,
1187 FIB_PROTOCOL_IP4, ~0);
Florin Coras653e43f2019-03-04 10:56:23 -08001188 transport_register_protocol (TRANSPORT_PROTO_NONE, &cut_thru_proto,
1189 FIB_PROTOCOL_IP6, ~0);
Florin Corasd4295e62019-02-22 13:11:38 -08001190 return 0;
1191}
1192
1193VLIB_INIT_FUNCTION (ct_transport_init);
1194
Florin Corasba7d8f52019-02-22 13:11:38 -08001195/*
1196 * fd.io coding-style-patch-verification: ON
1197 *
1198 * Local Variables:
1199 * eval: (c-set-style "gnu")
1200 * End:
1201 */