Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1 | /* |
| 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 Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 19 | typedef 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 | |
| 25 | typedef struct ct_segment_ |
| 26 | { |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 27 | u32 client_n_sessions; |
| 28 | u32 server_n_sessions; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 29 | u32 seg_ctx_index; |
| 30 | u32 ct_seg_index; |
| 31 | u32 segment_index; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 32 | ct_segment_flags_t flags; |
| 33 | } ct_segment_t; |
| 34 | |
| 35 | typedef struct ct_segments_ |
| 36 | { |
| 37 | u32 sm_index; |
| 38 | u32 server_wrk; |
| 39 | u32 client_wrk; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 40 | u32 fifo_pair_bytes; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 41 | ct_segment_t *segments; |
| 42 | } ct_segments_ctx_t; |
| 43 | |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 44 | typedef struct ct_cleanup_req_ |
| 45 | { |
| 46 | u32 ct_index; |
| 47 | } ct_cleanup_req_t; |
| 48 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 49 | typedef struct ct_worker_ |
| 50 | { |
| 51 | ct_connection_t *connections; /**< Per-worker connection pools */ |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 52 | u32 *pending_connects; /**< Fifo of pending ho indices */ |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 53 | ct_cleanup_req_t *pending_cleanups; /**< Fifo of pending indices */ |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 54 | u8 have_connects; /**< Set if connect rpc pending */ |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 55 | u8 have_cleanups; /**< Set if cleanup rpc pending */ |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 56 | clib_spinlock_t pending_connects_lock; /**< Lock for pending connects */ |
| 57 | u32 *new_connects; /**< Burst of connects to be done */ |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 58 | } ct_worker_t; |
| 59 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 60 | typedef struct ct_main_ |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 61 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 62 | ct_worker_t *wrk; /**< Per-worker state */ |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 63 | u32 n_workers; /**< Number of vpp workers */ |
| 64 | u32 n_sessions; /**< Cumulative sessions counter */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 65 | u32 *ho_reusable; /**< Vector of reusable ho indices */ |
| 66 | clib_spinlock_t ho_reuseable_lock; /**< Lock for reusable ho indices */ |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 67 | clib_rwlock_t app_segs_lock; /**< RW lock for seg contexts */ |
| 68 | uword *app_segs_ctxs_table; /**< App handle to segment pool map */ |
| 69 | ct_segments_ctx_t *app_seg_ctxs; /**< Pool of ct segment contexts */ |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 70 | u32 **fwrk_pending_connects; /**< First wrk pending half-opens */ |
| 71 | u32 fwrk_thread; /**< First worker thread */ |
| 72 | u8 fwrk_have_flush; /**< Flag for connect flush rpc */ |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 73 | } ct_main_t; |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 74 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 75 | static ct_main_t ct_main; |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 76 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 77 | static inline ct_worker_t * |
| 78 | ct_worker_get (u32 thread_index) |
| 79 | { |
| 80 | return &ct_main.wrk[thread_index]; |
| 81 | } |
| 82 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 83 | static ct_connection_t * |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 84 | ct_connection_alloc (u32 thread_index) |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 85 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 86 | ct_worker_t *wrk = ct_worker_get (thread_index); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 87 | ct_connection_t *ct; |
| 88 | |
Florin Coras | 9688b3b | 2022-04-07 12:58:13 -0700 | [diff] [blame] | 89 | pool_get_aligned_safe (wrk->connections, ct, CLIB_CACHE_LINE_BYTES); |
| 90 | clib_memset (ct, 0, sizeof (*ct)); |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 91 | ct->c_c_index = ct - wrk->connections; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 92 | ct->c_thread_index = thread_index; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 93 | ct->client_wrk = ~0; |
| 94 | ct->server_wrk = ~0; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 95 | ct->seg_ctx_index = ~0; |
| 96 | ct->ct_seg_index = ~0; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 97 | return ct; |
| 98 | } |
| 99 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 100 | static ct_connection_t * |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 101 | ct_connection_get (u32 ct_index, u32 thread_index) |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 102 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 103 | ct_worker_t *wrk = ct_worker_get (thread_index); |
| 104 | |
| 105 | if (pool_is_free_index (wrk->connections, ct_index)) |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 106 | return 0; |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 107 | return pool_elt_at_index (wrk->connections, ct_index); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 108 | } |
| 109 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 110 | static void |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 111 | ct_connection_free (ct_connection_t * ct) |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 112 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 113 | ct_worker_t *wrk = ct_worker_get (ct->c_thread_index); |
| 114 | |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 115 | if (CLIB_DEBUG) |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 116 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 117 | clib_memset (ct, 0xfc, sizeof (*ct)); |
| 118 | pool_put (wrk->connections, ct); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 119 | return; |
| 120 | } |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 121 | pool_put (wrk->connections, ct); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 122 | } |
| 123 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 124 | static ct_connection_t * |
| 125 | ct_half_open_alloc (void) |
| 126 | { |
| 127 | ct_main_t *cm = &ct_main; |
| 128 | u32 *hip; |
| 129 | |
| 130 | clib_spinlock_lock (&cm->ho_reuseable_lock); |
| 131 | vec_foreach (hip, cm->ho_reusable) |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 132 | pool_put_index (cm->wrk[cm->fwrk_thread].connections, *hip); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 133 | vec_reset_length (cm->ho_reusable); |
| 134 | clib_spinlock_unlock (&cm->ho_reuseable_lock); |
| 135 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 136 | return ct_connection_alloc (cm->fwrk_thread); |
| 137 | } |
| 138 | |
| 139 | static ct_connection_t * |
| 140 | ct_half_open_get (u32 ho_index) |
| 141 | { |
| 142 | ct_main_t *cm = &ct_main; |
| 143 | return ct_connection_get (ho_index, cm->fwrk_thread); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | void |
| 147 | ct_half_open_add_reusable (u32 ho_index) |
| 148 | { |
| 149 | ct_main_t *cm = &ct_main; |
| 150 | |
| 151 | clib_spinlock_lock (&cm->ho_reuseable_lock); |
| 152 | vec_add1 (cm->ho_reusable, ho_index); |
| 153 | clib_spinlock_unlock (&cm->ho_reuseable_lock); |
| 154 | } |
| 155 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 156 | session_t * |
| 157 | ct_session_get_peer (session_t * s) |
| 158 | { |
| 159 | ct_connection_t *ct, *peer_ct; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 160 | ct = ct_connection_get (s->connection_index, s->thread_index); |
| 161 | peer_ct = ct_connection_get (ct->peer_index, s->thread_index); |
| 162 | return session_get (peer_ct->c_s_index, s->thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 163 | } |
| 164 | |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 165 | void |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 166 | ct_session_endpoint (session_t * ll, session_endpoint_t * sep) |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 167 | { |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 168 | ct_connection_t *ct; |
| 169 | ct = (ct_connection_t *) session_get_transport (ll); |
| 170 | sep->transport_proto = ct->actual_tp; |
| 171 | sep->port = ct->c_lcl_port; |
| 172 | sep->is_ip4 = ct->c_is_ip4; |
Florin Coras | ea7e708 | 2020-07-07 17:57:28 -0700 | [diff] [blame] | 173 | ip_copy (&sep->ip, &ct->c_lcl_ip, ct->c_is_ip4); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 174 | } |
| 175 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 176 | static void |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 177 | ct_set_invalid_app_wrk (ct_connection_t *ct, u8 is_client) |
| 178 | { |
| 179 | ct_connection_t *peer_ct; |
| 180 | |
| 181 | peer_ct = ct_connection_get (ct->peer_index, ct->c_thread_index); |
| 182 | |
| 183 | if (is_client) |
| 184 | { |
| 185 | ct->client_wrk = APP_INVALID_INDEX; |
| 186 | if (peer_ct) |
| 187 | ct->client_wrk = APP_INVALID_INDEX; |
| 188 | } |
| 189 | else |
| 190 | { |
| 191 | ct->server_wrk = APP_INVALID_INDEX; |
| 192 | if (peer_ct) |
| 193 | ct->server_wrk = APP_INVALID_INDEX; |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | static void |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 198 | ct_session_dealloc_fifos (ct_connection_t *ct, svm_fifo_t *rx_fifo, |
| 199 | svm_fifo_t *tx_fifo) |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 200 | { |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 201 | ct_segments_ctx_t *seg_ctx; |
| 202 | ct_main_t *cm = &ct_main; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 203 | segment_manager_t *sm; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 204 | app_worker_t *app_wrk; |
| 205 | ct_segment_t *ct_seg; |
| 206 | fifo_segment_t *fs; |
| 207 | u32 seg_index; |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 208 | session_t *s; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 209 | int cnt; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 210 | |
| 211 | /* |
| 212 | * Cleanup fifos |
| 213 | */ |
| 214 | |
| 215 | sm = segment_manager_get (rx_fifo->segment_manager); |
| 216 | seg_index = rx_fifo->segment_index; |
| 217 | |
| 218 | fs = segment_manager_get_segment_w_lock (sm, seg_index); |
| 219 | fifo_segment_free_fifo (fs, rx_fifo); |
| 220 | fifo_segment_free_fifo (fs, tx_fifo); |
| 221 | segment_manager_segment_reader_unlock (sm); |
| 222 | |
| 223 | /* |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 224 | * Atomically update segment context with readers lock |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 225 | */ |
| 226 | |
| 227 | clib_rwlock_reader_lock (&cm->app_segs_lock); |
| 228 | |
| 229 | seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index); |
| 230 | ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index); |
| 231 | |
| 232 | if (ct->flags & CT_CONN_F_CLIENT) |
| 233 | { |
| 234 | cnt = |
| 235 | __atomic_sub_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 236 | } |
| 237 | else |
| 238 | { |
| 239 | cnt = |
| 240 | __atomic_sub_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 243 | clib_rwlock_reader_unlock (&cm->app_segs_lock); |
| 244 | |
| 245 | /* |
| 246 | * No need to do any app updates, return |
| 247 | */ |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 248 | ASSERT (cnt >= 0); |
| 249 | if (cnt) |
| 250 | return; |
| 251 | |
| 252 | /* |
| 253 | * Grab exclusive lock and update flags unless some other thread |
| 254 | * added more sessions |
| 255 | */ |
| 256 | clib_rwlock_writer_lock (&cm->app_segs_lock); |
| 257 | |
| 258 | seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index); |
| 259 | ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index); |
| 260 | if (ct->flags & CT_CONN_F_CLIENT) |
| 261 | { |
| 262 | cnt = ct_seg->client_n_sessions; |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 263 | if (cnt) |
| 264 | goto done; |
| 265 | ct_seg->flags |= CT_SEGMENT_F_CLIENT_DETACHED; |
| 266 | s = session_get (ct->c_s_index, ct->c_thread_index); |
| 267 | if (s->app_wrk_index == APP_INVALID_INDEX) |
| 268 | ct_set_invalid_app_wrk (ct, 1 /* is_client */); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 269 | } |
| 270 | else |
| 271 | { |
| 272 | cnt = ct_seg->server_n_sessions; |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 273 | if (cnt) |
| 274 | goto done; |
| 275 | ct_seg->flags |= CT_SEGMENT_F_SERVER_DETACHED; |
| 276 | s = session_get (ct->c_s_index, ct->c_thread_index); |
| 277 | if (s->app_wrk_index == APP_INVALID_INDEX) |
| 278 | ct_set_invalid_app_wrk (ct, 0 /* is_client */); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 281 | if (!(ct_seg->flags & CT_SEGMENT_F_CLIENT_DETACHED) || |
| 282 | !(ct_seg->flags & CT_SEGMENT_F_SERVER_DETACHED)) |
| 283 | goto done; |
| 284 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Remove segment context because both client and server detached |
| 287 | */ |
| 288 | |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 289 | pool_put_index (seg_ctx->segments, ct->ct_seg_index); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 290 | |
| 291 | /* |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 292 | * No more segment indices left, remove the segments context |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 293 | */ |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 294 | if (!pool_elts (seg_ctx->segments)) |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 295 | { |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 296 | u64 table_handle = seg_ctx->client_wrk << 16 | seg_ctx->server_wrk; |
| 297 | table_handle = (u64) seg_ctx->sm_index << 32 | table_handle; |
| 298 | hash_unset (cm->app_segs_ctxs_table, table_handle); |
| 299 | pool_free (seg_ctx->segments); |
| 300 | pool_put_index (cm->app_seg_ctxs, ct->seg_ctx_index); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 301 | } |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 302 | |
| 303 | /* |
| 304 | * Segment to be removed so notify both apps |
| 305 | */ |
| 306 | |
| 307 | app_wrk = app_worker_get_if_valid (ct->client_wrk); |
| 308 | /* Determine if client app still needs notification, i.e., if it is |
| 309 | * still attached. If client detached and this is the last ct session |
| 310 | * on this segment, then its connects segment manager should also be |
| 311 | * detached, so do not send notification */ |
| 312 | if (app_wrk) |
| 313 | { |
| 314 | segment_manager_t *csm; |
| 315 | csm = app_worker_get_connect_segment_manager (app_wrk); |
| 316 | if (!segment_manager_app_detached (csm)) |
| 317 | app_worker_del_segment_notify (app_wrk, ct->segment_handle); |
| 318 | } |
| 319 | |
Florin Coras | 13987da | 2021-12-07 14:47:12 -0800 | [diff] [blame] | 320 | /* Notify server app and free segment */ |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 321 | segment_manager_lock_and_del_segment (sm, seg_index); |
| 322 | |
| 323 | /* Cleanup segment manager if needed. If server detaches there's a chance |
| 324 | * the client's sessions will hold up segment removal */ |
| 325 | if (segment_manager_app_detached (sm) && !segment_manager_has_fifos (sm)) |
| 326 | segment_manager_free_safe (sm); |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 327 | |
| 328 | done: |
| 329 | |
| 330 | clib_rwlock_writer_unlock (&cm->app_segs_lock); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 333 | static void |
| 334 | ct_session_force_disconnect_server (ct_connection_t *sct) |
| 335 | { |
| 336 | sct->peer_index = ~0; |
| 337 | session_transport_closing_notify (&sct->connection); |
| 338 | } |
| 339 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 340 | int |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 341 | ct_session_connect_notify (session_t *ss, session_error_t err) |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 342 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 343 | u32 ss_index, opaque, thread_index; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 344 | ct_connection_t *sct, *cct; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 345 | app_worker_t *client_wrk; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 346 | session_t *cs; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 347 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 348 | ss_index = ss->session_index; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 349 | thread_index = ss->thread_index; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 350 | sct = (ct_connection_t *) session_get_transport (ss); |
| 351 | client_wrk = app_worker_get (sct->client_wrk); |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 352 | opaque = sct->client_opaque; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 353 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 354 | cct = ct_connection_get (sct->peer_index, thread_index); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 355 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 356 | /* Client closed while waiting for reply from server */ |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 357 | if (PREDICT_FALSE (!cct)) |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 358 | { |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 359 | ct_session_force_disconnect_server (sct); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 360 | return 0; |
| 361 | } |
| 362 | |
| 363 | session_half_open_delete_notify (&cct->connection); |
| 364 | cct->flags &= ~CT_CONN_F_HALF_OPEN; |
| 365 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 366 | if (PREDICT_FALSE (err)) |
| 367 | goto connect_error; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 368 | |
| 369 | /* |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 370 | * Alloc client session, server session assumed to be established |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 371 | */ |
| 372 | |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 373 | ASSERT (ss->session_state >= SESSION_STATE_READY); |
| 374 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 375 | cs = session_alloc (thread_index); |
| 376 | ss = session_get (ss_index, thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 377 | cs->session_type = ss->session_type; |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 378 | cs->listener_handle = SESSION_INVALID_HANDLE; |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 379 | session_set_state (cs, SESSION_STATE_CONNECTING); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 380 | cs->app_wrk_index = client_wrk->wrk_index; |
| 381 | cs->connection_index = cct->c_c_index; |
Florin Coras | 2ceb818 | 2023-08-31 17:33:47 -0700 | [diff] [blame^] | 382 | cs->opaque = opaque; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 383 | cct->c_s_index = cs->session_index; |
| 384 | |
| 385 | /* This will allocate fifos for the session. They won't be used for |
| 386 | * exchanging data but they will be used to close the connection if |
| 387 | * the segment manager/worker is freed */ |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 388 | if ((err = app_worker_init_connected (client_wrk, cs))) |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 389 | { |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 390 | session_free (cs); |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 391 | ct_session_force_disconnect_server (sct); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 392 | err = SESSION_E_ALLOC; |
| 393 | goto connect_error; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 394 | } |
| 395 | |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 396 | session_set_state (cs, SESSION_STATE_CONNECTING); |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 397 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 398 | if (app_worker_connect_notify (client_wrk, cs, 0, opaque)) |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 399 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 400 | segment_manager_dealloc_fifos (cs->rx_fifo, cs->tx_fifo); |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 401 | session_free (cs); |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 402 | ct_session_force_disconnect_server (sct); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 403 | goto cleanup_client; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 404 | } |
| 405 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 406 | cs = session_get (cct->c_s_index, cct->c_thread_index); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 407 | session_set_state (cs, SESSION_STATE_READY); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 408 | |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 409 | return 0; |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 410 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 411 | connect_error: |
| 412 | |
| 413 | app_worker_connect_notify (client_wrk, 0, err, cct->client_opaque); |
| 414 | |
| 415 | cleanup_client: |
| 416 | |
| 417 | if (cct->client_rx_fifo) |
| 418 | ct_session_dealloc_fifos (cct, cct->client_rx_fifo, cct->client_tx_fifo); |
| 419 | ct_connection_free (cct); |
Florin Coras | dd7d24b | 2020-08-14 17:51:13 -0700 | [diff] [blame] | 420 | return -1; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 421 | } |
| 422 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 423 | static inline ct_segment_t * |
| 424 | ct_lookup_free_segment (ct_main_t *cm, segment_manager_t *sm, |
| 425 | u32 seg_ctx_index) |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 426 | { |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 427 | uword free_bytes, max_free_bytes; |
| 428 | ct_segment_t *ct_seg, *res = 0; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 429 | ct_segments_ctx_t *seg_ctx; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 430 | fifo_segment_t *fs; |
| 431 | u32 max_fifos; |
| 432 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 433 | seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, seg_ctx_index); |
| 434 | max_free_bytes = seg_ctx->fifo_pair_bytes; |
| 435 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 436 | pool_foreach (ct_seg, seg_ctx->segments) |
| 437 | { |
| 438 | /* Client or server has detached so segment cannot be used */ |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 439 | fs = segment_manager_get_segment (sm, ct_seg->segment_index); |
| 440 | free_bytes = fifo_segment_available_bytes (fs); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 441 | max_fifos = fifo_segment_size (fs) / seg_ctx->fifo_pair_bytes; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 442 | if (free_bytes > max_free_bytes && |
| 443 | fifo_segment_num_fifos (fs) / 2 < max_fifos) |
| 444 | { |
| 445 | max_free_bytes = free_bytes; |
| 446 | res = ct_seg; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | return res; |
| 451 | } |
| 452 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 453 | static ct_segment_t * |
| 454 | ct_alloc_segment (ct_main_t *cm, app_worker_t *server_wrk, u64 table_handle, |
| 455 | segment_manager_t *sm, u32 client_wrk_index) |
| 456 | { |
| 457 | u32 seg_ctx_index = ~0, sm_index, pair_bytes; |
| 458 | segment_manager_props_t *props; |
| 459 | const u32 margin = 16 << 10; |
| 460 | ct_segments_ctx_t *seg_ctx; |
| 461 | app_worker_t *client_wrk; |
| 462 | u64 seg_size, seg_handle; |
| 463 | application_t *server; |
| 464 | ct_segment_t *ct_seg; |
| 465 | uword *spp; |
| 466 | int fs_index; |
| 467 | |
| 468 | server = application_get (server_wrk->app_index); |
| 469 | props = application_segment_manager_properties (server); |
| 470 | sm_index = segment_manager_index (sm); |
| 471 | pair_bytes = props->rx_fifo_size + props->tx_fifo_size + margin; |
| 472 | |
| 473 | /* |
| 474 | * Make sure another thread did not alloc a segment while acquiring the lock |
| 475 | */ |
| 476 | |
| 477 | spp = hash_get (cm->app_segs_ctxs_table, table_handle); |
| 478 | if (spp) |
| 479 | { |
| 480 | seg_ctx_index = *spp; |
| 481 | ct_seg = ct_lookup_free_segment (cm, sm, seg_ctx_index); |
| 482 | if (ct_seg) |
| 483 | return ct_seg; |
| 484 | } |
| 485 | |
| 486 | /* |
| 487 | * No segment, try to alloc one and notify the server and the client. |
| 488 | * Make sure the segment is not used for other fifos |
| 489 | */ |
| 490 | seg_size = clib_max (props->segment_size, 128 << 20); |
| 491 | fs_index = |
| 492 | segment_manager_add_segment2 (sm, seg_size, FIFO_SEGMENT_F_CUSTOM_USE); |
| 493 | if (fs_index < 0) |
| 494 | return 0; |
| 495 | |
| 496 | if (seg_ctx_index == ~0) |
| 497 | { |
| 498 | pool_get_zero (cm->app_seg_ctxs, seg_ctx); |
| 499 | seg_ctx_index = seg_ctx - cm->app_seg_ctxs; |
| 500 | hash_set (cm->app_segs_ctxs_table, table_handle, seg_ctx_index); |
| 501 | seg_ctx->server_wrk = server_wrk->wrk_index; |
| 502 | seg_ctx->client_wrk = client_wrk_index; |
| 503 | seg_ctx->sm_index = sm_index; |
| 504 | seg_ctx->fifo_pair_bytes = pair_bytes; |
| 505 | } |
| 506 | else |
| 507 | { |
| 508 | seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, seg_ctx_index); |
| 509 | } |
| 510 | |
| 511 | pool_get_zero (seg_ctx->segments, ct_seg); |
| 512 | ct_seg->segment_index = fs_index; |
| 513 | ct_seg->server_n_sessions = 0; |
| 514 | ct_seg->client_n_sessions = 0; |
| 515 | ct_seg->ct_seg_index = ct_seg - seg_ctx->segments; |
| 516 | ct_seg->seg_ctx_index = seg_ctx_index; |
| 517 | |
| 518 | /* New segment, notify the server and client */ |
| 519 | seg_handle = segment_manager_make_segment_handle (sm_index, fs_index); |
| 520 | if (app_worker_add_segment_notify (server_wrk, seg_handle)) |
| 521 | goto error; |
| 522 | |
| 523 | client_wrk = app_worker_get (client_wrk_index); |
| 524 | if (app_worker_add_segment_notify (client_wrk, seg_handle)) |
| 525 | { |
| 526 | app_worker_del_segment_notify (server_wrk, seg_handle); |
| 527 | goto error; |
| 528 | } |
| 529 | |
| 530 | return ct_seg; |
| 531 | |
| 532 | error: |
| 533 | |
| 534 | segment_manager_lock_and_del_segment (sm, fs_index); |
| 535 | pool_put_index (seg_ctx->segments, ct_seg->seg_ctx_index); |
| 536 | return 0; |
| 537 | } |
| 538 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 539 | static int |
| 540 | ct_init_accepted_session (app_worker_t *server_wrk, ct_connection_t *ct, |
| 541 | session_t *ls, session_t *ll) |
| 542 | { |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 543 | segment_manager_props_t *props; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 544 | u64 seg_handle, table_handle; |
| 545 | u32 sm_index, fs_index = ~0; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 546 | ct_segments_ctx_t *seg_ctx; |
| 547 | ct_main_t *cm = &ct_main; |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 548 | application_t *server; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 549 | segment_manager_t *sm; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 550 | ct_segment_t *ct_seg; |
| 551 | fifo_segment_t *fs; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 552 | uword *spp; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 553 | int rv; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 554 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 555 | sm = app_worker_get_listen_segment_manager (server_wrk, ll); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 556 | sm_index = segment_manager_index (sm); |
| 557 | server = application_get (server_wrk->app_index); |
| 558 | props = application_segment_manager_properties (server); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 559 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 560 | table_handle = ct->client_wrk << 16 | server_wrk->wrk_index; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 561 | table_handle = (u64) sm_index << 32 | table_handle; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 562 | |
| 563 | /* |
| 564 | * Check if we already have a segment that can hold the fifos |
| 565 | */ |
| 566 | |
| 567 | clib_rwlock_reader_lock (&cm->app_segs_lock); |
| 568 | |
| 569 | spp = hash_get (cm->app_segs_ctxs_table, table_handle); |
| 570 | if (spp) |
| 571 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 572 | ct_seg = ct_lookup_free_segment (cm, sm, *spp); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 573 | if (ct_seg) |
| 574 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 575 | ct->seg_ctx_index = ct_seg->seg_ctx_index; |
| 576 | ct->ct_seg_index = ct_seg->ct_seg_index; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 577 | fs_index = ct_seg->segment_index; |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 578 | ct_seg->flags &= |
| 579 | ~(CT_SEGMENT_F_SERVER_DETACHED | CT_SEGMENT_F_CLIENT_DETACHED); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 580 | __atomic_add_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 581 | __atomic_add_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | |
| 585 | clib_rwlock_reader_unlock (&cm->app_segs_lock); |
| 586 | |
| 587 | /* |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 588 | * If not, grab exclusive lock and allocate segment |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 589 | */ |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 590 | if (fs_index == ~0) |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 591 | { |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 592 | clib_rwlock_writer_lock (&cm->app_segs_lock); |
| 593 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 594 | ct_seg = |
| 595 | ct_alloc_segment (cm, server_wrk, table_handle, sm, ct->client_wrk); |
| 596 | if (!ct_seg) |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 597 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 598 | clib_rwlock_writer_unlock (&cm->app_segs_lock); |
| 599 | return -1; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 600 | } |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 601 | |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 602 | ct->seg_ctx_index = ct_seg->seg_ctx_index; |
| 603 | ct->ct_seg_index = ct_seg->ct_seg_index; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 604 | ct_seg->server_n_sessions += 1; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 605 | ct_seg->client_n_sessions += 1; |
| 606 | fs_index = ct_seg->segment_index; |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 607 | |
| 608 | clib_rwlock_writer_unlock (&cm->app_segs_lock); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | /* |
| 612 | * Allocate and initialize the fifos |
| 613 | */ |
| 614 | fs = segment_manager_get_segment_w_lock (sm, fs_index); |
| 615 | rv = segment_manager_try_alloc_fifos ( |
| 616 | fs, ls->thread_index, props->rx_fifo_size, props->tx_fifo_size, |
| 617 | &ls->rx_fifo, &ls->tx_fifo); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 618 | if (rv) |
| 619 | { |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 620 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 621 | |
| 622 | clib_rwlock_reader_lock (&cm->app_segs_lock); |
| 623 | |
| 624 | seg_ctx = pool_elt_at_index (cm->app_seg_ctxs, ct->seg_ctx_index); |
| 625 | ct_seg = pool_elt_at_index (seg_ctx->segments, ct->ct_seg_index); |
| 626 | __atomic_sub_fetch (&ct_seg->server_n_sessions, 1, __ATOMIC_RELAXED); |
| 627 | __atomic_sub_fetch (&ct_seg->client_n_sessions, 1, __ATOMIC_RELAXED); |
| 628 | |
| 629 | clib_rwlock_reader_unlock (&cm->app_segs_lock); |
| 630 | |
| 631 | return rv; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 632 | } |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 633 | |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 634 | ls->rx_fifo->shr->master_session_index = ls->session_index; |
| 635 | ls->tx_fifo->shr->master_session_index = ls->session_index; |
Florin Coras | ce252ca | 2020-11-04 13:08:35 -0800 | [diff] [blame] | 636 | ls->rx_fifo->master_thread_index = ls->thread_index; |
| 637 | ls->tx_fifo->master_thread_index = ls->thread_index; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 638 | |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 639 | seg_handle = segment_manager_segment_handle (sm, fs); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 640 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 641 | |
| 642 | ct->segment_handle = seg_handle; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 643 | |
| 644 | return 0; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 645 | } |
| 646 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 647 | static void |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 648 | ct_accept_one (u32 thread_index, u32 ho_index) |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 649 | { |
Florin Coras | ba02641 | 2021-06-12 11:56:19 -0700 | [diff] [blame] | 650 | ct_connection_t *sct, *cct, *ho; |
| 651 | transport_connection_t *ll_ct; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 652 | app_worker_t *server_wrk; |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 653 | u32 cct_index, ll_index; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 654 | session_t *ss, *ll; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 655 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 656 | /* |
| 657 | * Alloc client ct and initialize from ho |
| 658 | */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 659 | cct = ct_connection_alloc (thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 660 | cct_index = cct->c_c_index; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 661 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 662 | ho = ct_half_open_get (ho_index); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 663 | |
| 664 | /* Unlikely but half-open session and transport could have been freed */ |
| 665 | if (PREDICT_FALSE (!ho)) |
| 666 | { |
| 667 | ct_connection_free (cct); |
| 668 | return; |
| 669 | } |
| 670 | |
| 671 | clib_memcpy (cct, ho, sizeof (*ho)); |
| 672 | cct->c_c_index = cct_index; |
| 673 | cct->c_thread_index = thread_index; |
| 674 | cct->flags |= CT_CONN_F_HALF_OPEN; |
| 675 | |
| 676 | /* Notify session layer that half-open is on a different thread |
| 677 | * and mark ho connection index reusable. Avoids another rpc |
| 678 | */ |
| 679 | session_half_open_migrate_notify (&cct->connection); |
| 680 | session_half_open_migrated_notify (&cct->connection); |
| 681 | ct_half_open_add_reusable (ho_index); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 682 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 683 | /* |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 684 | * Alloc and init server transport |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 685 | */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 686 | |
| 687 | ll_index = cct->peer_index; |
| 688 | ll = listen_session_get (ll_index); |
| 689 | sct = ct_connection_alloc (thread_index); |
Florin Coras | ba02641 | 2021-06-12 11:56:19 -0700 | [diff] [blame] | 690 | /* Transport not necessarily ct but it might, so grab after sct alloc */ |
| 691 | ll_ct = listen_session_get_transport (ll); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 692 | |
| 693 | /* Make sure cct is valid after sct alloc */ |
| 694 | cct = ct_connection_get (cct_index, thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 695 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 696 | sct->c_rmt_port = 0; |
Florin Coras | ba02641 | 2021-06-12 11:56:19 -0700 | [diff] [blame] | 697 | sct->c_lcl_port = ll_ct->lcl_port; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 698 | sct->c_is_ip4 = cct->c_is_ip4; |
Florin Coras | d9e9870 | 2021-10-11 18:10:41 -0700 | [diff] [blame] | 699 | clib_memcpy (&sct->c_lcl_ip, &cct->c_rmt_ip, sizeof (cct->c_rmt_ip)); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 700 | sct->client_wrk = cct->client_wrk; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 701 | sct->c_proto = TRANSPORT_PROTO_NONE; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 702 | sct->client_opaque = cct->client_opaque; |
Florin Coras | ba02641 | 2021-06-12 11:56:19 -0700 | [diff] [blame] | 703 | sct->actual_tp = cct->actual_tp; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 704 | |
| 705 | sct->peer_index = cct->c_c_index; |
| 706 | cct->peer_index = sct->c_c_index; |
| 707 | |
| 708 | /* |
| 709 | * Accept server session. Client session is created only after |
| 710 | * server confirms accept. |
| 711 | */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 712 | ss = session_alloc (thread_index); |
| 713 | ll = listen_session_get (ll_index); |
Florin Coras | 9f1a543 | 2019-03-10 21:03:20 -0700 | [diff] [blame] | 714 | ss->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, |
| 715 | sct->c_is_ip4); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 716 | ss->connection_index = sct->c_c_index; |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 717 | ss->listener_handle = listen_session_get_handle (ll); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 718 | session_set_state (ss, SESSION_STATE_CREATED); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 719 | |
| 720 | server_wrk = application_listener_select_worker (ll); |
| 721 | ss->app_wrk_index = server_wrk->wrk_index; |
| 722 | |
| 723 | sct->c_s_index = ss->session_index; |
| 724 | sct->server_wrk = ss->app_wrk_index; |
| 725 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 726 | if (ct_init_accepted_session (server_wrk, sct, ss, ll)) |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 727 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 728 | ct_session_connect_notify (ss, SESSION_E_ALLOC); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 729 | ct_connection_free (sct); |
| 730 | session_free (ss); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 731 | return; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 732 | } |
| 733 | |
Florin Coras | 9895238 | 2021-11-14 15:33:59 -0800 | [diff] [blame] | 734 | cct->server_wrk = sct->server_wrk; |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 735 | cct->seg_ctx_index = sct->seg_ctx_index; |
| 736 | cct->ct_seg_index = sct->ct_seg_index; |
| 737 | cct->client_rx_fifo = ss->tx_fifo; |
| 738 | cct->client_tx_fifo = ss->rx_fifo; |
| 739 | cct->client_rx_fifo->refcnt++; |
| 740 | cct->client_tx_fifo->refcnt++; |
| 741 | cct->segment_handle = sct->segment_handle; |
| 742 | |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 743 | session_set_state (ss, SESSION_STATE_ACCEPTING); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 744 | if (app_worker_accept_notify (server_wrk, ss)) |
| 745 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 746 | ct_session_connect_notify (ss, SESSION_E_REFUSED); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 747 | ct_session_dealloc_fifos (sct, ss->rx_fifo, ss->tx_fifo); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 748 | ct_connection_free (sct); |
Florin Coras | 12813d5 | 2020-04-09 20:59:20 +0000 | [diff] [blame] | 749 | session_free (ss); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 750 | } |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 751 | } |
| 752 | |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 753 | static void |
| 754 | ct_accept_rpc_wrk_handler (void *rpc_args) |
| 755 | { |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 756 | u32 thread_index, n_connects, i, n_pending; |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 757 | const u32 max_connects = 32; |
| 758 | ct_worker_t *wrk; |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 759 | u8 need_rpc = 0; |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 760 | |
| 761 | thread_index = pointer_to_uword (rpc_args); |
| 762 | wrk = ct_worker_get (thread_index); |
| 763 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 764 | /* Connects could be handled without worker barrier so grab lock */ |
| 765 | clib_spinlock_lock (&wrk->pending_connects_lock); |
| 766 | |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 767 | n_pending = clib_fifo_elts (wrk->pending_connects); |
| 768 | n_connects = clib_min (n_pending, max_connects); |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 769 | vec_validate (wrk->new_connects, n_connects); |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 770 | |
| 771 | for (i = 0; i < n_connects; i++) |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 772 | clib_fifo_sub1 (wrk->pending_connects, wrk->new_connects[i]); |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 773 | |
| 774 | if (n_pending == n_connects) |
| 775 | wrk->have_connects = 0; |
| 776 | else |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 777 | need_rpc = 1; |
| 778 | |
| 779 | clib_spinlock_unlock (&wrk->pending_connects_lock); |
| 780 | |
| 781 | for (i = 0; i < n_connects; i++) |
| 782 | ct_accept_one (thread_index, wrk->new_connects[i]); |
| 783 | |
| 784 | if (need_rpc) |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 785 | session_send_rpc_evt_to_thread_force ( |
| 786 | thread_index, ct_accept_rpc_wrk_handler, |
| 787 | uword_to_pointer (thread_index, void *)); |
| 788 | } |
| 789 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 790 | static void |
| 791 | ct_fwrk_flush_connects (void *rpc_args) |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 792 | { |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 793 | u32 thread_index, fwrk_index, n_workers; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 794 | ct_main_t *cm = &ct_main; |
Florin Coras | c215e5a | 2021-11-15 19:01:52 -0800 | [diff] [blame] | 795 | ct_worker_t *wrk; |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 796 | u8 need_rpc; |
| 797 | |
Florin Coras | 1315d14 | 2023-04-04 11:51:37 -0700 | [diff] [blame] | 798 | fwrk_index = cm->fwrk_thread; |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 799 | n_workers = vec_len (cm->fwrk_pending_connects); |
| 800 | |
| 801 | for (thread_index = fwrk_index; thread_index < n_workers; thread_index++) |
| 802 | { |
Florin Coras | 1315d14 | 2023-04-04 11:51:37 -0700 | [diff] [blame] | 803 | if (!vec_len (cm->fwrk_pending_connects[thread_index])) |
| 804 | continue; |
| 805 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 806 | wrk = ct_worker_get (thread_index); |
| 807 | |
| 808 | /* Connects can be done without worker barrier, grab dst worker lock */ |
| 809 | if (thread_index != fwrk_index) |
| 810 | clib_spinlock_lock (&wrk->pending_connects_lock); |
| 811 | |
| 812 | clib_fifo_add (wrk->pending_connects, |
| 813 | cm->fwrk_pending_connects[thread_index], |
| 814 | vec_len (cm->fwrk_pending_connects[thread_index])); |
| 815 | if (!wrk->have_connects) |
| 816 | { |
| 817 | wrk->have_connects = 1; |
| 818 | need_rpc = 1; |
| 819 | } |
| 820 | |
| 821 | if (thread_index != fwrk_index) |
| 822 | clib_spinlock_unlock (&wrk->pending_connects_lock); |
| 823 | |
| 824 | vec_reset_length (cm->fwrk_pending_connects[thread_index]); |
| 825 | |
| 826 | if (need_rpc) |
| 827 | session_send_rpc_evt_to_thread_force ( |
| 828 | thread_index, ct_accept_rpc_wrk_handler, |
| 829 | uword_to_pointer (thread_index, void *)); |
| 830 | } |
| 831 | |
| 832 | cm->fwrk_have_flush = 0; |
| 833 | } |
| 834 | |
| 835 | static void |
| 836 | ct_program_connect_to_wrk (u32 ho_index) |
| 837 | { |
| 838 | ct_main_t *cm = &ct_main; |
| 839 | u32 thread_index; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 840 | |
| 841 | /* Simple round-robin policy for spreading sessions over workers. We skip |
| 842 | * thread index 0, i.e., offset the index by 1, when we have workers as it |
| 843 | * is the one dedicated to main thread. Note that n_workers does not include |
| 844 | * main thread */ |
| 845 | cm->n_sessions += 1; |
| 846 | thread_index = cm->n_workers ? (cm->n_sessions % cm->n_workers) + 1 : 0; |
| 847 | |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 848 | /* Pospone flushing of connect request to dst worker until after session |
| 849 | * layer fully initializes the half-open session. */ |
| 850 | vec_add1 (cm->fwrk_pending_connects[thread_index], ho_index); |
| 851 | if (!cm->fwrk_have_flush) |
| 852 | { |
| 853 | session_send_rpc_evt_to_thread_force ( |
| 854 | cm->fwrk_thread, ct_fwrk_flush_connects, |
| 855 | uword_to_pointer (thread_index, void *)); |
| 856 | cm->fwrk_have_flush = 1; |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | static int |
| 861 | ct_connect (app_worker_t *client_wrk, session_t *ll, |
| 862 | session_endpoint_cfg_t *sep) |
| 863 | { |
| 864 | ct_connection_t *ho; |
| 865 | u32 ho_index; |
| 866 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 867 | /* |
| 868 | * Alloc and init client half-open transport |
| 869 | */ |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 870 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 871 | ho = ct_half_open_alloc (); |
| 872 | ho_index = ho->c_c_index; |
| 873 | ho->c_rmt_port = sep->port; |
| 874 | ho->c_lcl_port = 0; |
| 875 | ho->c_is_ip4 = sep->is_ip4; |
| 876 | ho->client_opaque = sep->opaque; |
| 877 | ho->client_wrk = client_wrk->wrk_index; |
| 878 | ho->peer_index = ll->session_index; |
| 879 | ho->c_proto = TRANSPORT_PROTO_NONE; |
| 880 | ho->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Florin Coras | d5a5882 | 2021-05-14 20:11:14 -0700 | [diff] [blame] | 881 | clib_memcpy (&ho->c_rmt_ip, &sep->ip, sizeof (sep->ip)); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 882 | ho->flags |= CT_CONN_F_CLIENT; |
| 883 | ho->c_s_index = ~0; |
Florin Coras | feb6702 | 2021-11-11 09:24:34 -0800 | [diff] [blame] | 884 | ho->actual_tp = sep->original_tp; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 885 | |
| 886 | /* |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 887 | * Program connect on a worker, connected reply comes |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 888 | * after server accepts the connection. |
| 889 | */ |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 890 | ct_program_connect_to_wrk (ho_index); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 891 | |
| 892 | return ho_index; |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 893 | } |
| 894 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 895 | static u32 |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 896 | ct_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep) |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 897 | { |
| 898 | session_endpoint_cfg_t *sep; |
| 899 | ct_connection_t *ct; |
| 900 | |
| 901 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 902 | ct = ct_connection_alloc (0); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 903 | ct->server_wrk = sep->app_wrk_index; |
| 904 | ct->c_is_ip4 = sep->is_ip4; |
| 905 | clib_memcpy (&ct->c_lcl_ip, &sep->ip, sizeof (sep->ip)); |
| 906 | ct->c_lcl_port = sep->port; |
Florin Coras | a837508 | 2020-10-25 19:06:57 -0700 | [diff] [blame] | 907 | ct->c_s_index = app_listener_index; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 908 | ct->actual_tp = sep->transport_proto; |
| 909 | return ct->c_c_index; |
| 910 | } |
| 911 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 912 | static u32 |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 913 | ct_stop_listen (u32 ct_index) |
| 914 | { |
| 915 | ct_connection_t *ct; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 916 | ct = ct_connection_get (ct_index, 0); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 917 | ct_connection_free (ct); |
| 918 | return 0; |
| 919 | } |
| 920 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 921 | static transport_connection_t * |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 922 | ct_listener_get (u32 ct_index) |
| 923 | { |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 924 | return (transport_connection_t *) ct_connection_get (ct_index, 0); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 925 | } |
| 926 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 927 | static transport_connection_t * |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 928 | ct_session_half_open_get (u32 ct_index) |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 929 | { |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 930 | return (transport_connection_t *) ct_half_open_get (ct_index); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | static void |
| 934 | ct_session_cleanup (u32 conn_index, u32 thread_index) |
| 935 | { |
| 936 | ct_connection_t *ct, *peer_ct; |
| 937 | |
| 938 | ct = ct_connection_get (conn_index, thread_index); |
| 939 | if (!ct) |
| 940 | return; |
| 941 | |
| 942 | peer_ct = ct_connection_get (ct->peer_index, thread_index); |
| 943 | if (peer_ct) |
| 944 | peer_ct->peer_index = ~0; |
| 945 | |
| 946 | ct_connection_free (ct); |
| 947 | } |
| 948 | |
| 949 | static void |
| 950 | ct_cleanup_ho (u32 ho_index) |
| 951 | { |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 952 | ct_connection_t *ho; |
| 953 | |
| 954 | ho = ct_half_open_get (ho_index); |
| 955 | ct_connection_free (ho); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 956 | } |
| 957 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 958 | static int |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 959 | ct_session_connect (transport_endpoint_cfg_t * tep) |
| 960 | { |
| 961 | session_endpoint_cfg_t *sep_ext; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 962 | session_endpoint_t _sep, *sep = &_sep; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 963 | app_worker_t *app_wrk; |
| 964 | session_handle_t lh; |
| 965 | application_t *app; |
| 966 | app_listener_t *al; |
| 967 | u32 table_index; |
| 968 | session_t *ll; |
| 969 | u8 fib_proto; |
| 970 | |
| 971 | sep_ext = (session_endpoint_cfg_t *) tep; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 972 | _sep = *(session_endpoint_t *) tep; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 973 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
| 974 | app = application_get (app_wrk->app_index); |
| 975 | |
| 976 | sep->transport_proto = sep_ext->original_tp; |
| 977 | table_index = application_local_session_table (app); |
| 978 | lh = session_lookup_local_endpoint (table_index, sep); |
| 979 | if (lh == SESSION_DROP_HANDLE) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 980 | return SESSION_E_FILTERED; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 981 | |
| 982 | if (lh == SESSION_INVALID_HANDLE) |
| 983 | goto global_scope; |
| 984 | |
| 985 | ll = listen_session_get_from_handle (lh); |
| 986 | al = app_listener_get_w_session (ll); |
| 987 | |
| 988 | /* |
| 989 | * Break loop if rule in local table points to connecting app. This |
| 990 | * can happen if client is a generic proxy. Route connect through |
| 991 | * global table instead. |
| 992 | */ |
| 993 | if (al->app_index == app->app_index) |
| 994 | goto global_scope; |
| 995 | |
| 996 | return ct_connect (app_wrk, ll, sep_ext); |
| 997 | |
| 998 | /* |
| 999 | * If nothing found, check the global scope for locally attached |
| 1000 | * destinations. Make sure first that we're allowed to. |
| 1001 | */ |
| 1002 | |
| 1003 | global_scope: |
| 1004 | if (session_endpoint_is_local (sep)) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 1005 | return SESSION_E_NOROUTE; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1006 | |
| 1007 | if (!application_has_global_scope (app)) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 1008 | return SESSION_E_SCOPE; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1009 | |
| 1010 | fib_proto = session_endpoint_fib_proto (sep); |
Florin Coras | 95cd864 | 2019-12-30 21:53:19 -0800 | [diff] [blame] | 1011 | table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index); |
Florin Coras | 9f1a543 | 2019-03-10 21:03:20 -0700 | [diff] [blame] | 1012 | ll = session_lookup_listener_wildcard (table_index, sep); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1013 | |
Florin Coras | 821b500 | 2021-06-02 21:32:39 -0700 | [diff] [blame] | 1014 | /* Avoid connecting app to own listener */ |
| 1015 | if (ll && ll->app_index != app->app_index) |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1016 | return ct_connect (app_wrk, ll, sep_ext); |
| 1017 | |
| 1018 | /* Failed to connect but no error */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1019 | return SESSION_E_LOCAL_CONNECT; |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1020 | } |
| 1021 | |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1022 | static inline int |
| 1023 | ct_close_is_reset (ct_connection_t *ct, session_t *s) |
| 1024 | { |
| 1025 | if (ct->flags & CT_CONN_F_CLIENT) |
| 1026 | return (svm_fifo_max_dequeue (ct->client_rx_fifo) > 0); |
| 1027 | else |
| 1028 | return (svm_fifo_max_dequeue (s->rx_fifo) > 0); |
| 1029 | } |
| 1030 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1031 | static void |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1032 | ct_session_cleanup_server_session (session_t *s) |
| 1033 | { |
| 1034 | ct_connection_t *ct; |
| 1035 | |
| 1036 | ct = (ct_connection_t *) session_get_transport (s); |
| 1037 | ct_session_dealloc_fifos (ct, s->rx_fifo, s->tx_fifo); |
| 1038 | session_free (s); |
| 1039 | ct_connection_free (ct); |
| 1040 | } |
| 1041 | |
| 1042 | static void |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1043 | ct_session_postponed_cleanup (ct_connection_t *ct) |
| 1044 | { |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1045 | ct_connection_t *peer_ct; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1046 | app_worker_t *app_wrk; |
| 1047 | session_t *s; |
| 1048 | |
| 1049 | s = session_get (ct->c_s_index, ct->c_thread_index); |
| 1050 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 1051 | |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1052 | peer_ct = ct_connection_get (ct->peer_index, ct->c_thread_index); |
| 1053 | if (peer_ct) |
| 1054 | { |
| 1055 | if (ct_close_is_reset (ct, s)) |
| 1056 | session_transport_reset_notify (&peer_ct->connection); |
| 1057 | else |
| 1058 | session_transport_closing_notify (&peer_ct->connection); |
| 1059 | } |
| 1060 | session_transport_closed_notify (&ct->connection); |
| 1061 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1062 | /* It would be cleaner to call session_transport_delete_notify |
| 1063 | * but then we can't control session cleanup lower */ |
| 1064 | session_set_state (s, SESSION_STATE_TRANSPORT_DELETED); |
| 1065 | if (app_wrk) |
| 1066 | app_worker_cleanup_notify (app_wrk, s, SESSION_CLEANUP_TRANSPORT); |
| 1067 | |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1068 | if (ct->flags & CT_CONN_F_CLIENT) |
| 1069 | { |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1070 | /* Normal free for client session as the fifos are allocated through |
| 1071 | * the connects segment manager in a segment that's not shared with |
| 1072 | * the server */ |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1073 | ct_session_dealloc_fifos (ct, ct->client_rx_fifo, ct->client_tx_fifo); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1074 | session_program_cleanup (s); |
| 1075 | ct_connection_free (ct); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1076 | } |
| 1077 | else |
| 1078 | { |
| 1079 | /* Manual session and fifo segment cleanup to avoid implicit |
| 1080 | * segment manager cleanups and notifications */ |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1081 | if (app_wrk) |
| 1082 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1083 | /* Remove custom cleanup notify infra when/if switching to normal |
| 1084 | * session cleanup. Note that ct is freed in the cb function */ |
| 1085 | app_worker_cleanup_notify_custom (app_wrk, s, |
| 1086 | SESSION_CLEANUP_SESSION, |
| 1087 | ct_session_cleanup_server_session); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1088 | } |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1089 | else |
| 1090 | { |
| 1091 | ct_connection_free (ct); |
| 1092 | } |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1093 | } |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | static void |
| 1097 | ct_handle_cleanups (void *args) |
| 1098 | { |
| 1099 | uword thread_index = pointer_to_uword (args); |
| 1100 | const u32 max_cleanups = 100; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1101 | ct_cleanup_req_t *req; |
| 1102 | ct_connection_t *ct; |
| 1103 | u32 n_to_handle = 0; |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1104 | ct_worker_t *wrk; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1105 | session_t *s; |
| 1106 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1107 | wrk = ct_worker_get (thread_index); |
| 1108 | wrk->have_cleanups = 0; |
| 1109 | n_to_handle = clib_fifo_elts (wrk->pending_cleanups); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1110 | n_to_handle = clib_min (n_to_handle, max_cleanups); |
| 1111 | |
| 1112 | while (n_to_handle) |
| 1113 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1114 | clib_fifo_sub2 (wrk->pending_cleanups, req); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1115 | ct = ct_connection_get (req->ct_index, thread_index); |
| 1116 | s = session_get (ct->c_s_index, ct->c_thread_index); |
| 1117 | if (!svm_fifo_has_event (s->tx_fifo)) |
| 1118 | ct_session_postponed_cleanup (ct); |
| 1119 | else |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1120 | clib_fifo_add1 (wrk->pending_cleanups, *req); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1121 | n_to_handle -= 1; |
| 1122 | } |
| 1123 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1124 | if (clib_fifo_elts (wrk->pending_cleanups)) |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1125 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1126 | wrk->have_cleanups = 1; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1127 | session_send_rpc_evt_to_thread_force ( |
| 1128 | thread_index, ct_handle_cleanups, |
| 1129 | uword_to_pointer (thread_index, void *)); |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | static void |
| 1134 | ct_program_cleanup (ct_connection_t *ct) |
| 1135 | { |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1136 | ct_cleanup_req_t *req; |
| 1137 | uword thread_index; |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1138 | ct_worker_t *wrk; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1139 | |
| 1140 | thread_index = ct->c_thread_index; |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1141 | wrk = ct_worker_get (ct->c_thread_index); |
| 1142 | |
| 1143 | clib_fifo_add2 (wrk->pending_cleanups, req); |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1144 | req->ct_index = ct->c_c_index; |
| 1145 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1146 | if (wrk->have_cleanups) |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1147 | return; |
| 1148 | |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1149 | wrk->have_cleanups = 1; |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1150 | session_send_rpc_evt_to_thread_force ( |
| 1151 | thread_index, ct_handle_cleanups, uword_to_pointer (thread_index, void *)); |
| 1152 | } |
| 1153 | |
| 1154 | static void |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1155 | ct_session_close (u32 ct_index, u32 thread_index) |
| 1156 | { |
| 1157 | ct_connection_t *ct, *peer_ct; |
| 1158 | session_t *s; |
| 1159 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1160 | ct = ct_connection_get (ct_index, thread_index); |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 1161 | s = session_get (ct->c_s_index, ct->c_thread_index); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1162 | peer_ct = ct_connection_get (ct->peer_index, thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1163 | if (peer_ct) |
| 1164 | { |
| 1165 | peer_ct->peer_index = ~0; |
Florin Coras | 06ac4bb | 2020-10-28 16:41:26 -0700 | [diff] [blame] | 1166 | /* Make sure session was allocated */ |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1167 | if (peer_ct->flags & CT_CONN_F_HALF_OPEN) |
| 1168 | { |
Florin Coras | 6973c73 | 2021-06-17 15:53:38 -0700 | [diff] [blame] | 1169 | ct_session_connect_notify (s, SESSION_E_REFUSED); |
Florin Coras | a7bd826 | 2021-11-25 12:14:25 -0800 | [diff] [blame] | 1170 | ct->peer_index = ~0; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1171 | } |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1172 | else if (peer_ct->c_s_index == ~0) |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1173 | { |
| 1174 | /* should not happen */ |
| 1175 | clib_warning ("ct peer without session"); |
| 1176 | ct_connection_free (peer_ct); |
| 1177 | } |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1178 | } |
| 1179 | |
Florin Coras | 440c7b5 | 2021-11-09 08:38:24 -0800 | [diff] [blame] | 1180 | /* Do not send closed notify to make sure pending tx events are |
| 1181 | * still delivered and program cleanup */ |
| 1182 | ct_program_cleanup (ct); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1183 | } |
| 1184 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1185 | static transport_connection_t * |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1186 | ct_session_get (u32 ct_index, u32 thread_index) |
| 1187 | { |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1188 | return (transport_connection_t *) ct_connection_get (ct_index, |
| 1189 | thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1190 | } |
| 1191 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1192 | static u8 * |
| 1193 | format_ct_connection_id (u8 * s, va_list * args) |
| 1194 | { |
| 1195 | ct_connection_t *ct = va_arg (*args, ct_connection_t *); |
| 1196 | if (!ct) |
| 1197 | return s; |
| 1198 | if (ct->c_is_ip4) |
| 1199 | { |
| 1200 | s = format (s, "[%d:%d][CT:%U] %U:%d->%U:%d", ct->c_thread_index, |
| 1201 | ct->c_s_index, format_transport_proto_short, ct->actual_tp, |
| 1202 | format_ip4_address, &ct->c_lcl_ip4, |
| 1203 | clib_net_to_host_u16 (ct->c_lcl_port), format_ip4_address, |
| 1204 | &ct->c_rmt_ip4, clib_net_to_host_u16 (ct->c_rmt_port)); |
| 1205 | } |
| 1206 | else |
| 1207 | { |
| 1208 | s = format (s, "[%d:%d][CT:%U] %U:%d->%U:%d", ct->c_thread_index, |
| 1209 | ct->c_s_index, format_transport_proto_short, ct->actual_tp, |
| 1210 | format_ip6_address, &ct->c_lcl_ip6, |
| 1211 | clib_net_to_host_u16 (ct->c_lcl_port), format_ip6_address, |
| 1212 | &ct->c_rmt_ip6, clib_net_to_host_u16 (ct->c_rmt_port)); |
| 1213 | } |
| 1214 | |
| 1215 | return s; |
| 1216 | } |
| 1217 | |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1218 | static int |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 1219 | ct_custom_tx (void *session, transport_send_params_t * sp) |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1220 | { |
| 1221 | session_t *s = (session_t *) session; |
Florin Coras | 074f397 | 2021-12-07 15:12:06 -0800 | [diff] [blame] | 1222 | if (session_has_transport (s)) |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1223 | return 0; |
Florin Coras | 1b9d2c2 | 2021-01-26 14:10:43 -0800 | [diff] [blame] | 1224 | /* If event enqueued towards peer, remove from scheduler and remove |
| 1225 | * session tx flag, i.e., accept new tx events. Unset fifo flag now to |
| 1226 | * avoid missing events if peer did not clear fifo flag yet, which is |
| 1227 | * interpreted as successful notification and session is descheduled. */ |
| 1228 | svm_fifo_unset_event (s->tx_fifo); |
Florin Coras | d689456 | 2020-10-28 00:37:15 -0700 | [diff] [blame] | 1229 | if (!ct_session_tx (s)) |
Florin Coras | 1b9d2c2 | 2021-01-26 14:10:43 -0800 | [diff] [blame] | 1230 | sp->flags = TRANSPORT_SND_F_DESCHED; |
| 1231 | |
Florin Coras | d689456 | 2020-10-28 00:37:15 -0700 | [diff] [blame] | 1232 | /* The scheduler uses packet count as a means of upper bounding the amount |
| 1233 | * of work done per dispatch. So make it look like we have sent something */ |
| 1234 | return 1; |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1235 | } |
| 1236 | |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 1237 | static int |
| 1238 | ct_app_rx_evt (transport_connection_t * tc) |
| 1239 | { |
| 1240 | ct_connection_t *ct = (ct_connection_t *) tc, *peer_ct; |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1241 | session_t *ps, *s; |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 1242 | |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1243 | s = session_get (ct->c_s_index, ct->c_thread_index); |
| 1244 | if (session_has_transport (s) || s->session_state < SESSION_STATE_READY) |
| 1245 | return -1; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1246 | peer_ct = ct_connection_get (ct->peer_index, tc->thread_index); |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1247 | if (!peer_ct || (peer_ct->flags & CT_CONN_F_HALF_OPEN)) |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 1248 | return -1; |
| 1249 | ps = session_get (peer_ct->c_s_index, peer_ct->c_thread_index); |
Florin Coras | 9439a36 | 2021-11-25 16:18:39 -0800 | [diff] [blame] | 1250 | if (ps->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1251 | return -1; |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 1252 | return session_dequeue_notify (ps); |
| 1253 | } |
| 1254 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1255 | static u8 * |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1256 | format_ct_listener (u8 * s, va_list * args) |
| 1257 | { |
| 1258 | u32 tc_index = va_arg (*args, u32); |
Aloys Augustin | a0abbff | 2019-07-12 12:16:16 +0200 | [diff] [blame] | 1259 | u32 __clib_unused thread_index = va_arg (*args, u32); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1260 | u32 __clib_unused verbose = va_arg (*args, u32); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1261 | ct_connection_t *ct = ct_connection_get (tc_index, 0); |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1262 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1263 | if (verbose) |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1264 | s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "LISTEN"); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1265 | return s; |
| 1266 | } |
| 1267 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1268 | static u8 * |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1269 | format_ct_half_open (u8 *s, va_list *args) |
| 1270 | { |
| 1271 | u32 ho_index = va_arg (*args, u32); |
| 1272 | u32 verbose = va_arg (*args, u32); |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1273 | ct_connection_t *ct = ct_half_open_get (ho_index); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1274 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct); |
| 1275 | if (verbose) |
| 1276 | s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "HALF-OPEN"); |
| 1277 | return s; |
| 1278 | } |
| 1279 | |
| 1280 | static u8 * |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1281 | format_ct_connection (u8 * s, va_list * args) |
| 1282 | { |
| 1283 | ct_connection_t *ct = va_arg (*args, ct_connection_t *); |
| 1284 | u32 verbose = va_arg (*args, u32); |
| 1285 | |
| 1286 | if (!ct) |
| 1287 | return s; |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1288 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_ct_connection_id, ct); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1289 | if (verbose) |
| 1290 | { |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1291 | s = format (s, "%-" SESSION_CLI_STATE_LEN "s", "ESTABLISHED"); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1292 | if (verbose > 1) |
| 1293 | { |
| 1294 | s = format (s, "\n"); |
| 1295 | } |
| 1296 | } |
| 1297 | return s; |
| 1298 | } |
| 1299 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1300 | static u8 * |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1301 | format_ct_session (u8 * s, va_list * args) |
| 1302 | { |
| 1303 | u32 ct_index = va_arg (*args, u32); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1304 | u32 thread_index = va_arg (*args, u32); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1305 | u32 verbose = va_arg (*args, u32); |
| 1306 | ct_connection_t *ct; |
| 1307 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1308 | ct = ct_connection_get (ct_index, thread_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1309 | if (!ct) |
| 1310 | { |
| 1311 | s = format (s, "empty\n"); |
| 1312 | return s; |
| 1313 | } |
| 1314 | |
| 1315 | s = format (s, "%U", format_ct_connection, ct, verbose); |
| 1316 | return s; |
| 1317 | } |
| 1318 | |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1319 | clib_error_t * |
| 1320 | ct_enable_disable (vlib_main_t * vm, u8 is_en) |
| 1321 | { |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1322 | vlib_thread_main_t *vtm = &vlib_thread_main; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1323 | ct_main_t *cm = &ct_main; |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1324 | ct_worker_t *wrk; |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1325 | |
| 1326 | cm->n_workers = vlib_num_workers (); |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1327 | cm->fwrk_thread = transport_cl_thread (); |
Florin Coras | 7fe0069 | 2021-11-15 14:01:02 -0800 | [diff] [blame] | 1328 | vec_validate (cm->wrk, vtm->n_vlib_mains); |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1329 | vec_foreach (wrk, cm->wrk) |
| 1330 | clib_spinlock_init (&wrk->pending_connects_lock); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1331 | clib_spinlock_init (&cm->ho_reuseable_lock); |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 1332 | clib_rwlock_init (&cm->app_segs_lock); |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1333 | vec_validate (cm->fwrk_pending_connects, cm->n_workers); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1334 | return 0; |
| 1335 | } |
| 1336 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1337 | /* *INDENT-OFF* */ |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1338 | static const transport_proto_vft_t cut_thru_proto = { |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1339 | .enable = ct_enable_disable, |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1340 | .start_listen = ct_start_listen, |
| 1341 | .stop_listen = ct_stop_listen, |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1342 | .get_connection = ct_session_get, |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1343 | .get_listener = ct_listener_get, |
Florin Coras | 55686e1 | 2023-03-20 09:58:01 -0700 | [diff] [blame] | 1344 | .get_half_open = ct_session_half_open_get, |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1345 | .cleanup = ct_session_cleanup, |
| 1346 | .cleanup_ho = ct_cleanup_ho, |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1347 | .connect = ct_session_connect, |
| 1348 | .close = ct_session_close, |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1349 | .custom_tx = ct_custom_tx, |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 1350 | .app_rx_evt = ct_app_rx_evt, |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1351 | .format_listener = format_ct_listener, |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1352 | .format_half_open = format_ct_half_open, |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1353 | .format_connection = format_ct_session, |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1354 | .transport_options = { |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 1355 | .name = "ct", |
| 1356 | .short_name = "C", |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1357 | .tx_type = TRANSPORT_TX_INTERNAL, |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 1358 | .service_type = TRANSPORT_SERVICE_VC, |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1359 | }, |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1360 | }; |
| 1361 | /* *INDENT-ON* */ |
| 1362 | |
Florin Coras | 074f397 | 2021-12-07 15:12:06 -0800 | [diff] [blame] | 1363 | static inline int |
| 1364 | ct_session_can_tx (session_t *s) |
| 1365 | { |
| 1366 | return (s->session_state == SESSION_STATE_READY || |
| 1367 | s->session_state == SESSION_STATE_CLOSING || |
| 1368 | s->session_state == SESSION_STATE_APP_CLOSED); |
| 1369 | } |
| 1370 | |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1371 | int |
| 1372 | ct_session_tx (session_t * s) |
| 1373 | { |
| 1374 | ct_connection_t *ct, *peer_ct; |
| 1375 | session_t *peer_s; |
| 1376 | |
Florin Coras | 074f397 | 2021-12-07 15:12:06 -0800 | [diff] [blame] | 1377 | if (!ct_session_can_tx (s)) |
| 1378 | return 0; |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1379 | ct = (ct_connection_t *) session_get_transport (s); |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1380 | peer_ct = ct_connection_get (ct->peer_index, ct->c_thread_index); |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1381 | if (!peer_ct) |
Florin Coras | bcdc50d | 2020-08-25 19:07:02 -0700 | [diff] [blame] | 1382 | return 0; |
Florin Coras | 2d0e3de | 2020-10-23 16:31:40 -0700 | [diff] [blame] | 1383 | peer_s = session_get (peer_ct->c_s_index, peer_ct->c_thread_index); |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1384 | if (peer_s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1385 | return 0; |
Florin Coras | d689456 | 2020-10-28 00:37:15 -0700 | [diff] [blame] | 1386 | return session_enqueue_notify (peer_s); |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1387 | } |
| 1388 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1389 | static clib_error_t * |
| 1390 | ct_transport_init (vlib_main_t * vm) |
| 1391 | { |
| 1392 | transport_register_protocol (TRANSPORT_PROTO_NONE, &cut_thru_proto, |
| 1393 | FIB_PROTOCOL_IP4, ~0); |
Florin Coras | 653e43f | 2019-03-04 10:56:23 -0800 | [diff] [blame] | 1394 | transport_register_protocol (TRANSPORT_PROTO_NONE, &cut_thru_proto, |
| 1395 | FIB_PROTOCOL_IP6, ~0); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1396 | return 0; |
| 1397 | } |
| 1398 | |
| 1399 | VLIB_INIT_FUNCTION (ct_transport_init); |
| 1400 | |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1401 | /* |
| 1402 | * fd.io coding-style-patch-verification: ON |
| 1403 | * |
| 1404 | * Local Variables: |
| 1405 | * eval: (c-set-style "gnu") |
| 1406 | * End: |
| 1407 | */ |