Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -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 |
| 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 <vcl/vcl_locked.h> |
| 17 | #include <vcl/vcl_private.h> |
| 18 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 19 | typedef struct vls_shared_data_ |
| 20 | { |
| 21 | clib_spinlock_t lock; |
| 22 | u32 owner_wrk_index; |
| 23 | u32 *workers_subscribed; |
| 24 | clib_bitmap_t *listeners; |
| 25 | } vls_shared_data_t; |
| 26 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 27 | typedef struct vcl_locked_session_ |
| 28 | { |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 29 | clib_spinlock_t lock; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 30 | u32 session_index; |
| 31 | u32 worker_index; |
| 32 | u32 vls_index; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 33 | u32 shared_data_index; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 34 | /** VCL session owned by different workers because of migration */ |
| 35 | u32 owner_vcl_wrk_index; |
| 36 | uword *vcl_wrk_index_to_session_index; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 37 | } vcl_locked_session_t; |
| 38 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 39 | typedef struct vls_worker_ |
| 40 | { |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 41 | clib_rwlock_t sh_to_vlsh_table_lock; /** valid for multithread workers */ |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 42 | vcl_locked_session_t *vls_pool; |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 43 | uword *session_handle_to_vlsh_table; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 44 | u32 wrk_index; |
| 45 | } vls_worker_t; |
| 46 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 47 | typedef struct vls_local_ |
| 48 | { |
| 49 | int vls_wrk_index; |
| 50 | volatile int vls_mt_n_threads; |
| 51 | pthread_mutex_t vls_mt_mq_mlock; |
| 52 | pthread_mutex_t vls_mt_spool_mlock; |
| 53 | volatile u8 select_mp_check; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 54 | } vls_process_local_t; |
| 55 | |
| 56 | static vls_process_local_t vls_local; |
| 57 | static vls_process_local_t *vlsl = &vls_local; |
| 58 | |
| 59 | typedef struct vls_main_ |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 60 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 61 | vls_worker_t *workers; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 62 | clib_rwlock_t vls_table_lock; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 63 | /** Pool of data shared by sessions owned by different workers */ |
| 64 | vls_shared_data_t *shared_data_pool; |
| 65 | clib_rwlock_t shared_data_lock; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 66 | /** Lock to protect rpc among workers */ |
| 67 | clib_spinlock_t worker_rpc_lock; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 68 | } vls_main_t; |
| 69 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 70 | vls_main_t *vlsm; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 71 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 72 | typedef enum |
| 73 | { |
| 74 | VLS_RPC_STATE_INIT, |
| 75 | VLS_RPC_STATE_SUCCESS, |
| 76 | VLS_RPC_STATE_SESSION_NOT_EXIST, |
| 77 | } vls_rpc_state_e; |
| 78 | |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 79 | typedef enum vls_rpc_msg_type_ |
| 80 | { |
| 81 | VLS_RPC_CLONE_AND_SHARE, |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 82 | VLS_RPC_SESS_CLEANUP, |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 83 | } vls_rpc_msg_type_e; |
| 84 | |
| 85 | typedef struct vls_rpc_msg_ |
| 86 | { |
| 87 | u8 type; |
| 88 | u8 data[0]; |
| 89 | } vls_rpc_msg_t; |
| 90 | |
| 91 | typedef struct vls_clone_and_share_msg_ |
| 92 | { |
| 93 | u32 vls_index; /**< vls to be shared */ |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 94 | u32 session_index; /**< vcl session to be shared */ |
| 95 | u32 origin_vls_wrk; /**< vls worker that initiated the rpc */ |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 96 | u32 origin_vls_index; /**< vls session of the originator */ |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 97 | u32 origin_vcl_wrk; /**< vcl worker that initiated the rpc */ |
| 98 | u32 origin_session_index; /**< vcl session of the originator */ |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 99 | } vls_clone_and_share_msg_t; |
| 100 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 101 | typedef struct vls_sess_cleanup_msg_ |
| 102 | { |
| 103 | u32 session_index; /**< vcl session to be cleaned */ |
| 104 | u32 origin_vcl_wrk; /**< worker that initiated the rpc */ |
| 105 | } vls_sess_cleanup_msg_t; |
| 106 | |
| 107 | void vls_send_session_cleanup_rpc (vcl_worker_t * wrk, |
| 108 | u32 dst_wrk_index, u32 dst_session_index); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 109 | void vls_send_clone_and_share_rpc (vcl_worker_t *wrk, u32 origin_vls_index, |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 110 | u32 session_index, u32 vls_wrk_index, |
| 111 | u32 dst_wrk_index, u32 dst_vls_index, |
| 112 | u32 dst_session_index); |
| 113 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 114 | static inline u32 |
| 115 | vls_get_worker_index (void) |
| 116 | { |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 117 | if (vls_mt_wrk_supported ()) |
| 118 | return vlsl->vls_wrk_index; |
| 119 | else |
| 120 | return vcl_get_worker_index (); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static u32 |
| 124 | vls_shared_data_alloc (void) |
| 125 | { |
| 126 | vls_shared_data_t *vls_shd; |
| 127 | u32 shd_index; |
| 128 | |
| 129 | clib_rwlock_writer_lock (&vlsm->shared_data_lock); |
| 130 | pool_get_zero (vlsm->shared_data_pool, vls_shd); |
| 131 | clib_spinlock_init (&vls_shd->lock); |
| 132 | shd_index = vls_shd - vlsm->shared_data_pool; |
| 133 | clib_rwlock_writer_unlock (&vlsm->shared_data_lock); |
| 134 | |
| 135 | return shd_index; |
| 136 | } |
| 137 | |
| 138 | static u32 |
| 139 | vls_shared_data_index (vls_shared_data_t * vls_shd) |
| 140 | { |
| 141 | return vls_shd - vlsm->shared_data_pool; |
| 142 | } |
| 143 | |
| 144 | vls_shared_data_t * |
| 145 | vls_shared_data_get (u32 shd_index) |
| 146 | { |
| 147 | if (pool_is_free_index (vlsm->shared_data_pool, shd_index)) |
| 148 | return 0; |
| 149 | return pool_elt_at_index (vlsm->shared_data_pool, shd_index); |
| 150 | } |
| 151 | |
| 152 | static void |
| 153 | vls_shared_data_free (u32 shd_index) |
| 154 | { |
| 155 | vls_shared_data_t *vls_shd; |
| 156 | |
| 157 | clib_rwlock_writer_lock (&vlsm->shared_data_lock); |
| 158 | vls_shd = vls_shared_data_get (shd_index); |
| 159 | clib_spinlock_free (&vls_shd->lock); |
| 160 | clib_bitmap_free (vls_shd->listeners); |
| 161 | vec_free (vls_shd->workers_subscribed); |
| 162 | pool_put (vlsm->shared_data_pool, vls_shd); |
| 163 | clib_rwlock_writer_unlock (&vlsm->shared_data_lock); |
| 164 | } |
| 165 | |
| 166 | static inline void |
| 167 | vls_shared_data_pool_rlock (void) |
| 168 | { |
| 169 | clib_rwlock_reader_lock (&vlsm->shared_data_lock); |
| 170 | } |
| 171 | |
| 172 | static inline void |
| 173 | vls_shared_data_pool_runlock (void) |
| 174 | { |
| 175 | clib_rwlock_reader_unlock (&vlsm->shared_data_lock); |
| 176 | } |
| 177 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 178 | static inline void |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 179 | vls_mt_table_rlock (void) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 180 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 181 | if (vlsl->vls_mt_n_threads > 1) |
| 182 | clib_rwlock_reader_lock (&vlsm->vls_table_lock); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | static inline void |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 186 | vls_mt_table_runlock (void) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 187 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 188 | if (vlsl->vls_mt_n_threads > 1) |
| 189 | clib_rwlock_reader_unlock (&vlsm->vls_table_lock); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static inline void |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 193 | vls_mt_table_wlock (void) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 194 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 195 | if (vlsl->vls_mt_n_threads > 1) |
| 196 | clib_rwlock_writer_lock (&vlsm->vls_table_lock); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static inline void |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 200 | vls_mt_table_wunlock (void) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 201 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 202 | if (vlsl->vls_mt_n_threads > 1) |
| 203 | clib_rwlock_writer_unlock (&vlsm->vls_table_lock); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 204 | } |
| 205 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 206 | typedef enum |
| 207 | { |
| 208 | VLS_MT_OP_READ, |
| 209 | VLS_MT_OP_WRITE, |
| 210 | VLS_MT_OP_SPOOL, |
| 211 | VLS_MT_OP_XPOLL, |
| 212 | } vls_mt_ops_t; |
| 213 | |
| 214 | typedef enum |
| 215 | { |
| 216 | VLS_MT_LOCK_MQ = 1 << 0, |
| 217 | VLS_MT_LOCK_SPOOL = 1 << 1 |
| 218 | } vls_mt_lock_type_t; |
| 219 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 220 | static void |
| 221 | vls_mt_add (void) |
| 222 | { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 223 | vlsl->vls_mt_n_threads += 1; |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 224 | |
| 225 | /* If multi-thread workers are supported, for each new thread register a new |
| 226 | * vcl worker with vpp. Otherwise, all threads use the same vcl worker, so |
| 227 | * update the vcl worker's thread local worker index variable */ |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 228 | if (vls_mt_wrk_supported ()) |
wanghanlin | 492350e | 2020-09-11 17:19:32 +0800 | [diff] [blame] | 229 | { |
| 230 | if (vppcom_worker_register () != VPPCOM_OK) |
| 231 | VERR ("failed to register worker"); |
| 232 | } |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 233 | else |
| 234 | vcl_set_worker_index (vlsl->vls_wrk_index); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | static inline void |
| 238 | vls_mt_mq_lock (void) |
| 239 | { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 240 | pthread_mutex_lock (&vlsl->vls_mt_mq_mlock); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static inline void |
| 244 | vls_mt_mq_unlock (void) |
| 245 | { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 246 | pthread_mutex_unlock (&vlsl->vls_mt_mq_mlock); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | static inline void |
| 250 | vls_mt_spool_lock (void) |
| 251 | { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 252 | pthread_mutex_lock (&vlsl->vls_mt_spool_mlock); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | static inline void |
| 256 | vls_mt_create_unlock (void) |
| 257 | { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 258 | pthread_mutex_unlock (&vlsl->vls_mt_spool_mlock); |
| 259 | } |
| 260 | |
| 261 | static void |
| 262 | vls_mt_locks_init (void) |
| 263 | { |
| 264 | pthread_mutex_init (&vlsl->vls_mt_mq_mlock, NULL); |
| 265 | pthread_mutex_init (&vlsl->vls_mt_spool_mlock, NULL); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 266 | } |
| 267 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 268 | u8 |
| 269 | vls_is_shared (vcl_locked_session_t * vls) |
| 270 | { |
| 271 | return (vls->shared_data_index != ~0); |
| 272 | } |
| 273 | |
| 274 | static inline void |
| 275 | vls_lock (vcl_locked_session_t * vls) |
| 276 | { |
| 277 | if ((vlsl->vls_mt_n_threads > 1) || vls_is_shared (vls)) |
| 278 | clib_spinlock_lock (&vls->lock); |
| 279 | } |
| 280 | |
| 281 | static inline void |
| 282 | vls_unlock (vcl_locked_session_t * vls) |
| 283 | { |
| 284 | if ((vlsl->vls_mt_n_threads > 1) || vls_is_shared (vls)) |
| 285 | clib_spinlock_unlock (&vls->lock); |
| 286 | } |
| 287 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 288 | static inline vcl_session_handle_t |
| 289 | vls_to_sh (vcl_locked_session_t * vls) |
| 290 | { |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 291 | return vcl_session_handle_from_index (vls->session_index); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static inline vcl_session_handle_t |
| 295 | vls_to_sh_tu (vcl_locked_session_t * vls) |
| 296 | { |
| 297 | vcl_session_handle_t sh; |
| 298 | sh = vls_to_sh (vls); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 299 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 300 | return sh; |
| 301 | } |
| 302 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 303 | static vls_worker_t * |
| 304 | vls_worker_get_current (void) |
| 305 | { |
| 306 | return pool_elt_at_index (vlsm->workers, vls_get_worker_index ()); |
| 307 | } |
| 308 | |
| 309 | static void |
| 310 | vls_worker_alloc (void) |
| 311 | { |
| 312 | vls_worker_t *wrk; |
| 313 | |
| 314 | pool_get_zero (vlsm->workers, wrk); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 315 | if (vls_mt_wrk_supported ()) |
| 316 | clib_rwlock_init (&wrk->sh_to_vlsh_table_lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 317 | wrk->wrk_index = vcl_get_worker_index (); |
| 318 | } |
| 319 | |
| 320 | static void |
| 321 | vls_worker_free (vls_worker_t * wrk) |
| 322 | { |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 323 | hash_free (wrk->session_handle_to_vlsh_table); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 324 | if (vls_mt_wrk_supported ()) |
| 325 | clib_rwlock_free (&wrk->sh_to_vlsh_table_lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 326 | pool_free (wrk->vls_pool); |
| 327 | pool_put (vlsm->workers, wrk); |
| 328 | } |
| 329 | |
| 330 | static vls_worker_t * |
| 331 | vls_worker_get (u32 wrk_index) |
| 332 | { |
| 333 | if (pool_is_free_index (vlsm->workers, wrk_index)) |
| 334 | return 0; |
| 335 | return pool_elt_at_index (vlsm->workers, wrk_index); |
| 336 | } |
| 337 | |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 338 | static void |
| 339 | vls_sh_to_vlsh_table_add (vls_worker_t *wrk, vcl_session_handle_t sh, u32 vlsh) |
| 340 | { |
| 341 | if (vls_mt_wrk_supported ()) |
| 342 | clib_rwlock_writer_lock (&wrk->sh_to_vlsh_table_lock); |
| 343 | hash_set (wrk->session_handle_to_vlsh_table, sh, vlsh); |
| 344 | if (vls_mt_wrk_supported ()) |
| 345 | clib_rwlock_writer_unlock (&wrk->sh_to_vlsh_table_lock); |
| 346 | } |
| 347 | |
| 348 | static void |
| 349 | vls_sh_to_vlsh_table_del (vls_worker_t *wrk, vcl_session_handle_t sh) |
| 350 | { |
| 351 | if (vls_mt_wrk_supported ()) |
| 352 | clib_rwlock_writer_lock (&wrk->sh_to_vlsh_table_lock); |
| 353 | hash_unset (wrk->session_handle_to_vlsh_table, sh); |
| 354 | if (vls_mt_wrk_supported ()) |
| 355 | clib_rwlock_writer_unlock (&wrk->sh_to_vlsh_table_lock); |
| 356 | } |
| 357 | |
| 358 | static uword * |
| 359 | vls_sh_to_vlsh_table_get (vls_worker_t *wrk, vcl_session_handle_t sh) |
| 360 | { |
| 361 | if (vls_mt_wrk_supported ()) |
| 362 | clib_rwlock_reader_lock (&wrk->sh_to_vlsh_table_lock); |
| 363 | uword *vlshp = hash_get (wrk->session_handle_to_vlsh_table, sh); |
| 364 | if (vls_mt_wrk_supported ()) |
| 365 | clib_rwlock_reader_unlock (&wrk->sh_to_vlsh_table_lock); |
| 366 | return vlshp; |
| 367 | } |
| 368 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 369 | static vls_handle_t |
| 370 | vls_alloc (vcl_session_handle_t sh) |
| 371 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 372 | vls_worker_t *wrk = vls_worker_get_current (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 373 | vcl_locked_session_t *vls; |
| 374 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 375 | vls_mt_table_wlock (); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 376 | |
| 377 | pool_get_zero (wrk->vls_pool, vls); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 378 | vls->session_index = vppcom_session_index (sh); |
| 379 | vls->worker_index = vppcom_session_worker (sh); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 380 | vls->vls_index = vls - wrk->vls_pool; |
| 381 | vls->shared_data_index = ~0; |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 382 | vls_sh_to_vlsh_table_add (wrk, sh, vls->vls_index); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 383 | if (vls_mt_wrk_supported ()) |
| 384 | { |
| 385 | hash_set (vls->vcl_wrk_index_to_session_index, vls->worker_index, |
| 386 | vls->session_index); |
| 387 | vls->owner_vcl_wrk_index = vls->worker_index; |
| 388 | } |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 389 | clib_spinlock_init (&vls->lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 390 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 391 | vls_mt_table_wunlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 392 | return vls->vls_index; |
| 393 | } |
| 394 | |
| 395 | static vcl_locked_session_t * |
| 396 | vls_get (vls_handle_t vlsh) |
| 397 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 398 | vls_worker_t *wrk = vls_worker_get_current (); |
| 399 | if (pool_is_free_index (wrk->vls_pool, vlsh)) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 400 | return 0; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 401 | return pool_elt_at_index (wrk->vls_pool, vlsh); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | static void |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 405 | vls_free (vcl_locked_session_t * vls) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 406 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 407 | vls_worker_t *wrk = vls_worker_get_current (); |
| 408 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 409 | ASSERT (vls != 0); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 410 | vls_sh_to_vlsh_table_del ( |
| 411 | wrk, vcl_session_handle_from_index (vls->session_index)); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 412 | clib_spinlock_free (&vls->lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 413 | pool_put (wrk->vls_pool, vls); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static vcl_locked_session_t * |
| 417 | vls_get_and_lock (vls_handle_t vlsh) |
| 418 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 419 | vls_worker_t *wrk = vls_worker_get_current (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 420 | vcl_locked_session_t *vls; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 421 | if (pool_is_free_index (wrk->vls_pool, vlsh)) |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 422 | return 0; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 423 | vls = pool_elt_at_index (wrk->vls_pool, vlsh); |
| 424 | vls_lock (vls); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 425 | return vls; |
| 426 | } |
| 427 | |
| 428 | static vcl_locked_session_t * |
| 429 | vls_get_w_dlock (vls_handle_t vlsh) |
| 430 | { |
| 431 | vcl_locked_session_t *vls; |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 432 | vls_mt_table_rlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 433 | vls = vls_get_and_lock (vlsh); |
| 434 | if (!vls) |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 435 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 436 | return vls; |
| 437 | } |
| 438 | |
| 439 | static inline void |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 440 | vls_get_and_unlock (vls_handle_t vlsh) |
| 441 | { |
| 442 | vcl_locked_session_t *vls; |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 443 | vls_mt_table_rlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 444 | vls = vls_get (vlsh); |
| 445 | vls_unlock (vls); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 446 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | static inline void |
| 450 | vls_dunlock (vcl_locked_session_t * vls) |
| 451 | { |
| 452 | vls_unlock (vls); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 453 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 454 | } |
| 455 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 456 | static vcl_locked_session_t * |
| 457 | vls_session_get (vls_worker_t * wrk, u32 vls_index) |
| 458 | { |
| 459 | if (pool_is_free_index (wrk->vls_pool, vls_index)) |
| 460 | return 0; |
| 461 | return pool_elt_at_index (wrk->vls_pool, vls_index); |
| 462 | } |
| 463 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 464 | vcl_session_handle_t |
| 465 | vlsh_to_sh (vls_handle_t vlsh) |
| 466 | { |
| 467 | vcl_locked_session_t *vls; |
| 468 | int rv; |
| 469 | |
| 470 | vls = vls_get_w_dlock (vlsh); |
| 471 | if (!vls) |
| 472 | return INVALID_SESSION_ID; |
| 473 | rv = vls_to_sh (vls); |
| 474 | vls_dunlock (vls); |
| 475 | return rv; |
| 476 | } |
| 477 | |
| 478 | vcl_session_handle_t |
| 479 | vlsh_to_session_index (vls_handle_t vlsh) |
| 480 | { |
| 481 | vcl_session_handle_t sh; |
| 482 | sh = vlsh_to_sh (vlsh); |
| 483 | return vppcom_session_index (sh); |
| 484 | } |
| 485 | |
| 486 | vls_handle_t |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 487 | vls_si_wi_to_vlsh (u32 session_index, u32 vcl_wrk_index) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 488 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 489 | vls_worker_t *wrk = vls_worker_get_current (); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 490 | uword *vlshp = vls_sh_to_vlsh_table_get ( |
| 491 | wrk, |
| 492 | vcl_session_handle_from_wrk_session_index (session_index, vcl_wrk_index)); |
| 493 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 494 | return vlshp ? *vlshp : VLS_INVALID_HANDLE; |
| 495 | } |
| 496 | |
| 497 | vls_handle_t |
| 498 | vls_session_index_to_vlsh (uint32_t session_index) |
| 499 | { |
| 500 | vls_handle_t vlsh; |
| 501 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 502 | vls_mt_table_rlock (); |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 503 | vlsh = vls_si_wi_to_vlsh (session_index, vcl_get_worker_index ()); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 504 | vls_mt_table_runlock (); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 505 | |
| 506 | return vlsh; |
| 507 | } |
| 508 | |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 509 | u8 |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 510 | vls_is_shared_by_wrk (vcl_locked_session_t * vls, u32 wrk_index) |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 511 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 512 | vls_shared_data_t *vls_shd; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 513 | int i; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 514 | |
| 515 | if (vls->shared_data_index == ~0) |
| 516 | return 0; |
| 517 | |
| 518 | vls_shared_data_pool_rlock (); |
| 519 | |
| 520 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
| 521 | clib_spinlock_lock (&vls_shd->lock); |
| 522 | |
| 523 | for (i = 0; i < vec_len (vls_shd->workers_subscribed); i++) |
| 524 | if (vls_shd->workers_subscribed[i] == wrk_index) |
| 525 | { |
| 526 | clib_spinlock_unlock (&vls_shd->lock); |
| 527 | vls_shared_data_pool_runlock (); |
| 528 | return 1; |
| 529 | } |
| 530 | clib_spinlock_unlock (&vls_shd->lock); |
| 531 | |
| 532 | vls_shared_data_pool_runlock (); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 533 | return 0; |
| 534 | } |
| 535 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 536 | static void |
| 537 | vls_listener_wrk_set (vcl_locked_session_t * vls, u32 wrk_index, u8 is_active) |
| 538 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 539 | vls_shared_data_t *vls_shd; |
| 540 | |
| 541 | if (vls->shared_data_index == ~0) |
| 542 | { |
| 543 | clib_warning ("not a shared session"); |
| 544 | return; |
| 545 | } |
| 546 | |
| 547 | vls_shared_data_pool_rlock (); |
| 548 | |
| 549 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
| 550 | |
| 551 | clib_spinlock_lock (&vls_shd->lock); |
| 552 | clib_bitmap_set (vls_shd->listeners, wrk_index, is_active); |
| 553 | clib_spinlock_unlock (&vls_shd->lock); |
| 554 | |
| 555 | vls_shared_data_pool_runlock (); |
| 556 | } |
| 557 | |
| 558 | static u32 |
| 559 | vls_shared_get_owner (vcl_locked_session_t * vls) |
| 560 | { |
| 561 | vls_shared_data_t *vls_shd; |
| 562 | u32 owner_wrk; |
| 563 | |
| 564 | vls_shared_data_pool_rlock (); |
| 565 | |
| 566 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
| 567 | owner_wrk = vls_shd->owner_wrk_index; |
| 568 | |
| 569 | vls_shared_data_pool_runlock (); |
| 570 | |
| 571 | return owner_wrk; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | static u8 |
| 575 | vls_listener_wrk_is_active (vcl_locked_session_t * vls, u32 wrk_index) |
| 576 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 577 | vls_shared_data_t *vls_shd; |
| 578 | u8 is_set; |
| 579 | |
| 580 | if (vls->shared_data_index == ~0) |
| 581 | { |
| 582 | clib_warning ("not a shared session"); |
| 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | vls_shared_data_pool_rlock (); |
| 587 | |
| 588 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
| 589 | |
| 590 | clib_spinlock_lock (&vls_shd->lock); |
| 591 | is_set = clib_bitmap_get (vls_shd->listeners, wrk_index); |
| 592 | clib_spinlock_unlock (&vls_shd->lock); |
| 593 | |
| 594 | vls_shared_data_pool_runlock (); |
| 595 | |
| 596 | return (is_set == 1); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | static void |
| 600 | vls_listener_wrk_start_listen (vcl_locked_session_t * vls, u32 wrk_index) |
| 601 | { |
| 602 | vppcom_session_listen (vls_to_sh (vls), ~0); |
| 603 | vls_listener_wrk_set (vls, wrk_index, 1 /* is_active */ ); |
| 604 | } |
| 605 | |
| 606 | static void |
| 607 | vls_listener_wrk_stop_listen (vcl_locked_session_t * vls, u32 wrk_index) |
| 608 | { |
| 609 | vcl_worker_t *wrk; |
| 610 | vcl_session_t *s; |
| 611 | |
| 612 | wrk = vcl_worker_get (wrk_index); |
| 613 | s = vcl_session_get (wrk, vls->session_index); |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 614 | if (s->session_state != VCL_STATE_LISTEN) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 615 | return; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 616 | vcl_send_session_unlisten (wrk, s); |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 617 | s->session_state = VCL_STATE_LISTEN_NO_MQ; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 618 | vls_listener_wrk_set (vls, wrk_index, 0 /* is_active */ ); |
| 619 | } |
| 620 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 621 | static int |
| 622 | vls_shared_data_subscriber_position (vls_shared_data_t * vls_shd, |
| 623 | u32 wrk_index) |
| 624 | { |
| 625 | int i; |
| 626 | |
| 627 | for (i = 0; i < vec_len (vls_shd->workers_subscribed); i++) |
| 628 | { |
| 629 | if (vls_shd->workers_subscribed[i] == wrk_index) |
| 630 | return i; |
| 631 | } |
| 632 | return -1; |
| 633 | } |
| 634 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 635 | int |
| 636 | vls_unshare_session (vcl_locked_session_t * vls, vcl_worker_t * wrk) |
| 637 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 638 | vls_shared_data_t *vls_shd; |
Florin Coras | 311817f | 2020-03-07 17:45:47 +0000 | [diff] [blame] | 639 | int do_disconnect, pos; |
| 640 | u32 n_subscribers; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 641 | vcl_session_t *s; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 642 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 643 | if (vls->shared_data_index == ~0) |
| 644 | return 0; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 645 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 646 | s = vcl_session_get (wrk, vls->session_index); |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 647 | if (s->session_state == VCL_STATE_LISTEN) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 648 | vls_listener_wrk_set (vls, wrk->wrk_index, 0 /* is_active */ ); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 649 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 650 | vls_shared_data_pool_rlock (); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 651 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 652 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
| 653 | clib_spinlock_lock (&vls_shd->lock); |
| 654 | |
| 655 | pos = vls_shared_data_subscriber_position (vls_shd, wrk->wrk_index); |
| 656 | if (pos < 0) |
| 657 | { |
| 658 | clib_warning ("worker %u not subscribed for vls %u", wrk->wrk_index, |
| 659 | vls->worker_index); |
| 660 | goto done; |
| 661 | } |
| 662 | |
| 663 | /* |
| 664 | * Unsubscribe from share data and fifos |
| 665 | */ |
| 666 | if (s->rx_fifo) |
| 667 | { |
| 668 | svm_fifo_del_subscriber (s->rx_fifo, wrk->vpp_wrk_index); |
| 669 | svm_fifo_del_subscriber (s->tx_fifo, wrk->vpp_wrk_index); |
| 670 | } |
| 671 | vec_del1 (vls_shd->workers_subscribed, pos); |
| 672 | |
| 673 | /* |
| 674 | * Cleanup vcl state |
| 675 | */ |
| 676 | n_subscribers = vec_len (vls_shd->workers_subscribed); |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 677 | do_disconnect = s->session_state == VCL_STATE_LISTEN || !n_subscribers; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 678 | vcl_session_cleanup (wrk, s, vcl_session_handle (s), do_disconnect); |
| 679 | |
| 680 | /* |
| 681 | * No subscriber left, cleanup shared data |
| 682 | */ |
| 683 | if (!n_subscribers) |
| 684 | { |
| 685 | u32 shd_index = vls_shared_data_index (vls_shd); |
| 686 | |
| 687 | clib_spinlock_unlock (&vls_shd->lock); |
| 688 | vls_shared_data_pool_runlock (); |
| 689 | |
| 690 | vls_shared_data_free (shd_index); |
| 691 | |
| 692 | /* All locks have been dropped */ |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 693 | return 0; |
| 694 | } |
| 695 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 696 | /* Return, if this is not the owning worker */ |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 697 | if (vls_shd->owner_wrk_index != wrk->wrk_index) |
| 698 | goto done; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 699 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 700 | ASSERT (vec_len (vls_shd->workers_subscribed)); |
| 701 | |
| 702 | /* |
| 703 | * Check if we can change owner or close |
| 704 | */ |
| 705 | vls_shd->owner_wrk_index = vls_shd->workers_subscribed[0]; |
| 706 | vcl_send_session_worker_update (wrk, s, vls_shd->owner_wrk_index); |
| 707 | |
| 708 | /* XXX is this still needed? */ |
| 709 | if (vec_len (vls_shd->workers_subscribed) > 1) |
| 710 | clib_warning ("more workers need to be updated"); |
| 711 | |
| 712 | done: |
| 713 | |
| 714 | clib_spinlock_unlock (&vls_shd->lock); |
| 715 | vls_shared_data_pool_runlock (); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 716 | |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | void |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 721 | vls_init_share_session (vls_worker_t * vls_wrk, vcl_locked_session_t * vls) |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 722 | { |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 723 | vls_shared_data_t *vls_shd; |
| 724 | |
| 725 | u32 vls_shd_index = vls_shared_data_alloc (); |
| 726 | |
| 727 | vls_shared_data_pool_rlock (); |
| 728 | |
| 729 | vls_shd = vls_shared_data_get (vls_shd_index); |
| 730 | vls_shd->owner_wrk_index = vls_wrk->wrk_index; |
| 731 | vls->shared_data_index = vls_shd_index; |
| 732 | vec_add1 (vls_shd->workers_subscribed, vls_wrk->wrk_index); |
| 733 | |
| 734 | vls_shared_data_pool_runlock (); |
| 735 | } |
| 736 | |
| 737 | void |
| 738 | vls_share_session (vls_worker_t * vls_wrk, vcl_locked_session_t * vls) |
| 739 | { |
| 740 | vcl_worker_t *vcl_wrk = vcl_worker_get (vls_wrk->wrk_index); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 741 | vls_shared_data_t *vls_shd; |
| 742 | vcl_session_t *s; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 743 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 744 | s = vcl_session_get (vcl_wrk, vls->session_index); |
| 745 | if (!s) |
| 746 | { |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 747 | clib_warning ("wrk %u session %u vls %u NOT AVAILABLE", |
| 748 | vcl_wrk->wrk_index, vls->session_index, vls->vls_index); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 749 | return; |
| 750 | } |
| 751 | |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 752 | ASSERT (vls->shared_data_index != ~0); |
| 753 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 754 | /* Reinit session lock */ |
| 755 | clib_spinlock_init (&vls->lock); |
| 756 | |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 757 | vls_shared_data_pool_rlock (); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 758 | |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 759 | vls_shd = vls_shared_data_get (vls->shared_data_index); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 760 | |
| 761 | clib_spinlock_lock (&vls_shd->lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 762 | vec_add1 (vls_shd->workers_subscribed, vls_wrk->wrk_index); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 763 | clib_spinlock_unlock (&vls_shd->lock); |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 764 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 765 | vls_shared_data_pool_runlock (); |
| 766 | |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 767 | if (s->rx_fifo) |
| 768 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 769 | svm_fifo_add_subscriber (s->rx_fifo, vcl_wrk->vpp_wrk_index); |
| 770 | svm_fifo_add_subscriber (s->tx_fifo, vcl_wrk->vpp_wrk_index); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 771 | } |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 772 | else if (s->session_state == VCL_STATE_LISTEN) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 773 | { |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 774 | s->session_state = VCL_STATE_LISTEN_NO_MQ; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 775 | } |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 776 | } |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 777 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 778 | static void |
| 779 | vls_share_sessions (vls_worker_t * vls_parent_wrk, vls_worker_t * vls_wrk) |
| 780 | { |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 781 | vcl_locked_session_t *vls, *parent_vls; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 782 | |
| 783 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 784 | pool_foreach (vls, vls_wrk->vls_pool) { |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 785 | /* Initialize sharing on parent session */ |
| 786 | if (vls->shared_data_index == ~0) |
| 787 | { |
| 788 | parent_vls = vls_session_get (vls_parent_wrk, vls->vls_index); |
| 789 | vls_init_share_session (vls_parent_wrk, parent_vls); |
| 790 | vls->shared_data_index = parent_vls->shared_data_index; |
| 791 | } |
| 792 | vls_share_session (vls_wrk, vls); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 793 | } |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 794 | /* *INDENT-ON* */ |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | void |
| 798 | vls_worker_copy_on_fork (vcl_worker_t * parent_wrk) |
| 799 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 800 | vls_worker_t *vls_wrk = vls_worker_get_current (), *vls_parent_wrk; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 801 | vcl_worker_t *wrk = vcl_worker_get_current (); |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 802 | u32 vls_index, session_index, wrk_index; |
| 803 | vcl_session_handle_t sh; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 804 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 805 | /* |
| 806 | * init vcl worker |
| 807 | */ |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 808 | wrk->sessions = pool_dup (parent_wrk->sessions); |
| 809 | wrk->session_index_by_vpp_handles = |
| 810 | hash_dup (parent_wrk->session_index_by_vpp_handles); |
| 811 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 812 | /* |
| 813 | * init vls worker |
| 814 | */ |
| 815 | vls_parent_wrk = vls_worker_get (parent_wrk->wrk_index); |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 816 | /* *INDENT-OFF* */ |
| 817 | hash_foreach (sh, vls_index, vls_parent_wrk->session_handle_to_vlsh_table, |
| 818 | ({ |
| 819 | vcl_session_handle_parse (sh, &wrk_index, &session_index); |
| 820 | hash_set (vls_wrk->session_handle_to_vlsh_table, |
| 821 | vcl_session_handle_from_index (session_index), vls_index); |
| 822 | })); |
| 823 | /* *INDENT-ON* */ |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 824 | vls_wrk->vls_pool = pool_dup (vls_parent_wrk->vls_pool); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 825 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 826 | vls_share_sessions (vls_parent_wrk, vls_wrk); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 827 | } |
| 828 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 829 | static void |
| 830 | vls_mt_acq_locks (vcl_locked_session_t * vls, vls_mt_ops_t op, int *locks_acq) |
| 831 | { |
| 832 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 833 | vcl_session_t *s = 0; |
| 834 | int is_nonblk = 0; |
| 835 | |
| 836 | if (vls) |
| 837 | { |
| 838 | s = vcl_session_get (wrk, vls->session_index); |
| 839 | if (PREDICT_FALSE (!s)) |
| 840 | return; |
Florin Coras | ac422d6 | 2020-10-19 20:51:36 -0700 | [diff] [blame] | 841 | is_nonblk = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | switch (op) |
| 845 | { |
| 846 | case VLS_MT_OP_READ: |
| 847 | if (!is_nonblk) |
| 848 | is_nonblk = vcl_session_read_ready (s) != 0; |
| 849 | if (!is_nonblk) |
| 850 | { |
| 851 | vls_mt_mq_lock (); |
| 852 | *locks_acq |= VLS_MT_LOCK_MQ; |
| 853 | } |
| 854 | break; |
| 855 | case VLS_MT_OP_WRITE: |
Florin Coras | 78b5fa6 | 2019-02-21 20:04:15 -0800 | [diff] [blame] | 856 | ASSERT (s); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 857 | if (!is_nonblk) |
| 858 | is_nonblk = vcl_session_write_ready (s) != 0; |
| 859 | if (!is_nonblk) |
| 860 | { |
| 861 | vls_mt_mq_lock (); |
| 862 | *locks_acq |= VLS_MT_LOCK_MQ; |
| 863 | } |
| 864 | break; |
| 865 | case VLS_MT_OP_XPOLL: |
| 866 | vls_mt_mq_lock (); |
| 867 | *locks_acq |= VLS_MT_LOCK_MQ; |
| 868 | break; |
| 869 | case VLS_MT_OP_SPOOL: |
| 870 | vls_mt_spool_lock (); |
| 871 | *locks_acq |= VLS_MT_LOCK_SPOOL; |
| 872 | break; |
| 873 | default: |
| 874 | break; |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | static void |
| 879 | vls_mt_rel_locks (int locks_acq) |
| 880 | { |
| 881 | if (locks_acq & VLS_MT_LOCK_MQ) |
| 882 | vls_mt_mq_unlock (); |
| 883 | if (locks_acq & VLS_MT_LOCK_SPOOL) |
| 884 | vls_mt_create_unlock (); |
| 885 | } |
| 886 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 887 | static inline u8 |
| 888 | vls_mt_session_should_migrate (vcl_locked_session_t * vls) |
| 889 | { |
| 890 | return (vls_mt_wrk_supported () |
| 891 | && vls->worker_index != vcl_get_worker_index ()); |
| 892 | } |
| 893 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 894 | static vcl_locked_session_t * |
| 895 | vls_mt_session_migrate (vcl_locked_session_t *vls) |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 896 | { |
| 897 | u32 wrk_index = vcl_get_worker_index (); |
| 898 | vcl_worker_t *wrk; |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 899 | vls_worker_t *vls_wrk = vls_worker_get_current (); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 900 | u32 src_sid, sid, vls_index, own_vcl_wrk_index; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 901 | vcl_session_t *session; |
| 902 | uword *p; |
| 903 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 904 | ASSERT (vls_mt_wrk_supported () && vls->worker_index != wrk_index); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 905 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 906 | /* |
| 907 | * VCL session on current vcl worker already allocated. Update current |
| 908 | * owner worker and index and return |
| 909 | */ |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 910 | if ((p = hash_get (vls->vcl_wrk_index_to_session_index, wrk_index))) |
| 911 | { |
| 912 | vls->worker_index = wrk_index; |
| 913 | vls->session_index = (u32) p[0]; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 914 | return vls; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 915 | } |
| 916 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 917 | /* |
| 918 | * Ask vcl worker that owns the original vcl session to clone it into |
| 919 | * current vcl worker session pool |
| 920 | */ |
| 921 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 922 | if (!(p = hash_get (vls->vcl_wrk_index_to_session_index, |
| 923 | vls->owner_vcl_wrk_index))) |
| 924 | { |
| 925 | VERR ("session in owner worker(%u) is free", vls->owner_vcl_wrk_index); |
| 926 | ASSERT (0); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 927 | vls_unlock (vls); |
| 928 | vls_mt_table_runlock (); |
| 929 | return 0; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | src_sid = (u32) p[0]; |
| 933 | wrk = vcl_worker_get_current (); |
| 934 | session = vcl_session_alloc (wrk); |
| 935 | sid = session->session_index; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 936 | VDBG (1, "migrate session of worker (session): %u (%u) -> %u (%u)", |
| 937 | vls->owner_vcl_wrk_index, src_sid, wrk_index, sid); |
| 938 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 939 | /* Drop lock to prevent dead lock when dst wrk trying to get lock. */ |
| 940 | vls_index = vls->vls_index; |
| 941 | own_vcl_wrk_index = vls->owner_vcl_wrk_index; |
| 942 | vls_unlock (vls); |
| 943 | vls_mt_table_runlock (); |
| 944 | vls_send_clone_and_share_rpc (wrk, vls_index, sid, vls_get_worker_index (), |
| 945 | own_vcl_wrk_index, vls_index, src_sid); |
| 946 | |
| 947 | if (PREDICT_FALSE (wrk->rpc_done == VLS_RPC_STATE_SESSION_NOT_EXIST)) |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 948 | { |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 949 | VWRN ("session %u not exist", src_sid); |
| 950 | goto err; |
| 951 | } |
| 952 | else if (PREDICT_FALSE (wrk->rpc_done == VLS_RPC_STATE_INIT)) |
| 953 | { |
| 954 | VWRN ("failed to wait rpc response"); |
| 955 | goto err; |
| 956 | } |
| 957 | else if (PREDICT_FALSE ((session->flags & VCL_SESSION_F_IS_VEP) && |
| 958 | session->vep.next_sh != ~0)) |
| 959 | { |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 960 | VERR ("can't migrate nonempty epoll session"); |
| 961 | ASSERT (0); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 962 | goto err; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 963 | } |
Florin Coras | 6c3b218 | 2020-10-19 18:36:48 -0700 | [diff] [blame] | 964 | else if (PREDICT_FALSE (!(session->flags & VCL_SESSION_F_IS_VEP) && |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 965 | session->session_state != VCL_STATE_CLOSED)) |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 966 | { |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 967 | VERR ("migrate NOT supported, session_status (%u)", |
| 968 | session->session_state); |
| 969 | ASSERT (0); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 970 | goto err; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 971 | } |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 972 | |
| 973 | vls = vls_get_w_dlock (vls_index); |
| 974 | if (PREDICT_FALSE (!vls)) |
| 975 | { |
| 976 | VWRN ("failed to get vls %u", vls_index); |
| 977 | goto err; |
| 978 | } |
| 979 | |
| 980 | session->session_index = sid; |
| 981 | vls->worker_index = wrk_index; |
| 982 | vls->session_index = sid; |
| 983 | hash_set (vls->vcl_wrk_index_to_session_index, wrk_index, sid); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 984 | vls_sh_to_vlsh_table_add (vls_wrk, vcl_session_handle (session), |
| 985 | vls->vls_index); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 986 | return vls; |
| 987 | |
| 988 | err: |
| 989 | vcl_session_free (wrk, session); |
| 990 | return 0; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 991 | } |
| 992 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 993 | static inline void |
| 994 | vls_mt_detect (void) |
| 995 | { |
| 996 | if (PREDICT_FALSE (vcl_get_worker_index () == ~0)) |
| 997 | vls_mt_add (); |
| 998 | } |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 999 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1000 | #define vls_mt_guard(_vls, _op) \ |
| 1001 | int _locks_acq = 0; \ |
| 1002 | if (vls_mt_wrk_supported ()) \ |
| 1003 | { \ |
| 1004 | if (PREDICT_FALSE (_vls && \ |
| 1005 | ((vcl_locked_session_t *) _vls)->worker_index != \ |
| 1006 | vcl_get_worker_index ())) \ |
| 1007 | { \ |
| 1008 | _vls = vls_mt_session_migrate (_vls); \ |
| 1009 | if (PREDICT_FALSE (!_vls)) \ |
| 1010 | return VPPCOM_EBADFD; \ |
| 1011 | } \ |
| 1012 | } \ |
| 1013 | else \ |
| 1014 | { \ |
| 1015 | if (PREDICT_FALSE (vlsl->vls_mt_n_threads > 1)) \ |
| 1016 | vls_mt_acq_locks (_vls, _op, &_locks_acq); \ |
| 1017 | } |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1018 | |
| 1019 | #define vls_mt_unguard() \ |
| 1020 | if (PREDICT_FALSE (_locks_acq)) \ |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1021 | vls_mt_rel_locks (_locks_acq) |
| 1022 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1023 | int |
| 1024 | vls_write (vls_handle_t vlsh, void *buf, size_t nbytes) |
| 1025 | { |
| 1026 | vcl_locked_session_t *vls; |
| 1027 | int rv; |
| 1028 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1029 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1030 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1031 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1032 | |
| 1033 | vls_mt_guard (vls, VLS_MT_OP_WRITE); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1034 | rv = vppcom_session_write (vls_to_sh_tu (vls), buf, nbytes); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1035 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1036 | vls_get_and_unlock (vlsh); |
| 1037 | return rv; |
| 1038 | } |
| 1039 | |
| 1040 | int |
| 1041 | vls_write_msg (vls_handle_t vlsh, void *buf, size_t nbytes) |
| 1042 | { |
| 1043 | vcl_locked_session_t *vls; |
| 1044 | int rv; |
| 1045 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1046 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1047 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1048 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1049 | vls_mt_guard (vls, VLS_MT_OP_WRITE); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1050 | rv = vppcom_session_write_msg (vls_to_sh_tu (vls), buf, nbytes); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1051 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1052 | vls_get_and_unlock (vlsh); |
| 1053 | return rv; |
| 1054 | } |
| 1055 | |
| 1056 | int |
| 1057 | vls_sendto (vls_handle_t vlsh, void *buf, int buflen, int flags, |
| 1058 | vppcom_endpt_t * ep) |
| 1059 | { |
| 1060 | vcl_locked_session_t *vls; |
| 1061 | int rv; |
| 1062 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1063 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1064 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1065 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1066 | vls_mt_guard (vls, VLS_MT_OP_WRITE); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1067 | rv = vppcom_session_sendto (vls_to_sh_tu (vls), buf, buflen, flags, ep); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1068 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1069 | vls_get_and_unlock (vlsh); |
| 1070 | return rv; |
| 1071 | } |
| 1072 | |
| 1073 | ssize_t |
| 1074 | vls_read (vls_handle_t vlsh, void *buf, size_t nbytes) |
| 1075 | { |
| 1076 | vcl_locked_session_t *vls; |
| 1077 | int rv; |
| 1078 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1079 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1080 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1081 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1082 | vls_mt_guard (vls, VLS_MT_OP_READ); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1083 | rv = vppcom_session_read (vls_to_sh_tu (vls), buf, nbytes); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1084 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1085 | vls_get_and_unlock (vlsh); |
| 1086 | return rv; |
| 1087 | } |
| 1088 | |
| 1089 | ssize_t |
| 1090 | vls_recvfrom (vls_handle_t vlsh, void *buffer, uint32_t buflen, int flags, |
| 1091 | vppcom_endpt_t * ep) |
| 1092 | { |
| 1093 | vcl_locked_session_t *vls; |
| 1094 | int rv; |
| 1095 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1096 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1097 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1098 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1099 | vls_mt_guard (vls, VLS_MT_OP_READ); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1100 | rv = vppcom_session_recvfrom (vls_to_sh_tu (vls), buffer, buflen, flags, |
| 1101 | ep); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1102 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1103 | vls_get_and_unlock (vlsh); |
| 1104 | return rv; |
| 1105 | } |
| 1106 | |
| 1107 | int |
| 1108 | vls_attr (vls_handle_t vlsh, uint32_t op, void *buffer, uint32_t * buflen) |
| 1109 | { |
| 1110 | vcl_locked_session_t *vls; |
| 1111 | int rv; |
| 1112 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1113 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1114 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1115 | return VPPCOM_EBADFD; |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1116 | if (vls_mt_session_should_migrate (vls)) |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1117 | { |
| 1118 | vls = vls_mt_session_migrate (vls); |
| 1119 | if (PREDICT_FALSE (!vls)) |
| 1120 | return VPPCOM_EBADFD; |
| 1121 | } |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1122 | rv = vppcom_session_attr (vls_to_sh_tu (vls), op, buffer, buflen); |
| 1123 | vls_get_and_unlock (vlsh); |
| 1124 | return rv; |
| 1125 | } |
| 1126 | |
| 1127 | int |
| 1128 | vls_bind (vls_handle_t vlsh, vppcom_endpt_t * ep) |
| 1129 | { |
| 1130 | vcl_locked_session_t *vls; |
| 1131 | int rv; |
| 1132 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1133 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1134 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1135 | return VPPCOM_EBADFD; |
| 1136 | rv = vppcom_session_bind (vls_to_sh_tu (vls), ep); |
| 1137 | vls_get_and_unlock (vlsh); |
| 1138 | return rv; |
| 1139 | } |
| 1140 | |
| 1141 | int |
| 1142 | vls_listen (vls_handle_t vlsh, int q_len) |
| 1143 | { |
| 1144 | vcl_locked_session_t *vls; |
| 1145 | int rv; |
| 1146 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1147 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1148 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1149 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1150 | vls_mt_guard (vls, VLS_MT_OP_XPOLL); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1151 | rv = vppcom_session_listen (vls_to_sh_tu (vls), q_len); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1152 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1153 | vls_get_and_unlock (vlsh); |
| 1154 | return rv; |
| 1155 | } |
| 1156 | |
| 1157 | int |
| 1158 | vls_connect (vls_handle_t vlsh, vppcom_endpt_t * server_ep) |
| 1159 | { |
| 1160 | vcl_locked_session_t *vls; |
| 1161 | int rv; |
| 1162 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1163 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1164 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1165 | return VPPCOM_EBADFD; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1166 | vls_mt_guard (vls, VLS_MT_OP_XPOLL); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1167 | rv = vppcom_session_connect (vls_to_sh_tu (vls), server_ep); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1168 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1169 | vls_get_and_unlock (vlsh); |
| 1170 | return rv; |
| 1171 | } |
| 1172 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1173 | static inline void |
| 1174 | vls_mp_checks (vcl_locked_session_t * vls, int is_add) |
| 1175 | { |
| 1176 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 1177 | vcl_session_t *s; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1178 | u32 owner_wrk; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1179 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1180 | if (vls_mt_wrk_supported ()) |
| 1181 | return; |
| 1182 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1183 | s = vcl_session_get (wrk, vls->session_index); |
| 1184 | switch (s->session_state) |
| 1185 | { |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 1186 | case VCL_STATE_LISTEN: |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1187 | if (is_add) |
| 1188 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1189 | vls_listener_wrk_set (vls, vls->worker_index, 1 /* is_active */ ); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1190 | break; |
| 1191 | } |
| 1192 | vls_listener_wrk_stop_listen (vls, vls->worker_index); |
| 1193 | break; |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 1194 | case VCL_STATE_LISTEN_NO_MQ: |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1195 | if (!is_add) |
| 1196 | break; |
| 1197 | |
| 1198 | /* Register worker as listener */ |
| 1199 | vls_listener_wrk_start_listen (vls, wrk->wrk_index); |
| 1200 | |
| 1201 | /* If owner worker did not attempt to accept/xpoll on the session, |
| 1202 | * force a listen stop for it, since it may not be interested in |
| 1203 | * accepting new sessions. |
| 1204 | * This is pretty much a hack done to give app workers the illusion |
| 1205 | * that it is fine to listen and not accept new sessions for a |
| 1206 | * given listener. Without it, we would accumulate unhandled |
| 1207 | * accepts on the passive worker message queue. */ |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1208 | owner_wrk = vls_shared_get_owner (vls); |
| 1209 | if (!vls_listener_wrk_is_active (vls, owner_wrk)) |
| 1210 | vls_listener_wrk_stop_listen (vls, owner_wrk); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1211 | break; |
| 1212 | default: |
| 1213 | break; |
| 1214 | } |
| 1215 | } |
| 1216 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1217 | vls_handle_t |
| 1218 | vls_accept (vls_handle_t listener_vlsh, vppcom_endpt_t * ep, int flags) |
| 1219 | { |
| 1220 | vls_handle_t accepted_vlsh; |
| 1221 | vcl_locked_session_t *vls; |
| 1222 | int sh; |
| 1223 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1224 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1225 | if (!(vls = vls_get_w_dlock (listener_vlsh))) |
| 1226 | return VPPCOM_EBADFD; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1227 | if (vcl_n_workers () > 1) |
| 1228 | vls_mp_checks (vls, 1 /* is_add */ ); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1229 | vls_mt_guard (vls, VLS_MT_OP_SPOOL); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1230 | sh = vppcom_session_accept (vls_to_sh_tu (vls), ep, flags); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1231 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1232 | vls_get_and_unlock (listener_vlsh); |
| 1233 | if (sh < 0) |
| 1234 | return sh; |
| 1235 | accepted_vlsh = vls_alloc (sh); |
| 1236 | if (PREDICT_FALSE (accepted_vlsh == VLS_INVALID_HANDLE)) |
| 1237 | vppcom_session_close (sh); |
| 1238 | return accepted_vlsh; |
| 1239 | } |
| 1240 | |
| 1241 | vls_handle_t |
| 1242 | vls_create (uint8_t proto, uint8_t is_nonblocking) |
| 1243 | { |
| 1244 | vcl_session_handle_t sh; |
| 1245 | vls_handle_t vlsh; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1246 | vcl_locked_session_t *vls = NULL; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1247 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1248 | vls_mt_detect (); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1249 | vls_mt_guard (vls, VLS_MT_OP_SPOOL); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1250 | sh = vppcom_session_create (proto, is_nonblocking); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1251 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1252 | if (sh == INVALID_SESSION_ID) |
| 1253 | return VLS_INVALID_HANDLE; |
| 1254 | |
| 1255 | vlsh = vls_alloc (sh); |
| 1256 | if (PREDICT_FALSE (vlsh == VLS_INVALID_HANDLE)) |
| 1257 | vppcom_session_close (sh); |
| 1258 | |
| 1259 | return vlsh; |
| 1260 | } |
| 1261 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1262 | static void |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1263 | vls_mt_session_cleanup (vcl_locked_session_t * vls) |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1264 | { |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1265 | u32 session_index, wrk_index, current_vcl_wrk; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1266 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 1267 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1268 | ASSERT (vls_mt_wrk_supported ()); |
| 1269 | |
| 1270 | current_vcl_wrk = vcl_get_worker_index (); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1271 | |
| 1272 | /* *INDENT-OFF* */ |
| 1273 | hash_foreach (wrk_index, session_index, vls->vcl_wrk_index_to_session_index, |
| 1274 | ({ |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1275 | if (current_vcl_wrk != wrk_index) |
| 1276 | vls_send_session_cleanup_rpc (wrk, wrk_index, session_index); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1277 | })); |
| 1278 | /* *INDENT-ON* */ |
| 1279 | hash_free (vls->vcl_wrk_index_to_session_index); |
| 1280 | } |
| 1281 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1282 | int |
| 1283 | vls_close (vls_handle_t vlsh) |
| 1284 | { |
| 1285 | vcl_locked_session_t *vls; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1286 | int rv; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1287 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1288 | vls_mt_detect (); |
| 1289 | vls_mt_table_wlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1290 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1291 | vls = vls_get_and_lock (vlsh); |
| 1292 | if (!vls) |
| 1293 | { |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1294 | vls_mt_table_wunlock (); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1295 | return VPPCOM_EBADFD; |
| 1296 | } |
| 1297 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1298 | vls_mt_guard (vls, VLS_MT_OP_SPOOL); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1299 | |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1300 | if (vls_is_shared (vls)) |
| 1301 | rv = vls_unshare_session (vls, vcl_worker_get_current ()); |
| 1302 | else |
| 1303 | rv = vppcom_session_close (vls_to_sh (vls)); |
| 1304 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1305 | if (vls_mt_wrk_supported ()) |
| 1306 | vls_mt_session_cleanup (vls); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1307 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1308 | vls_free (vls); |
| 1309 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1310 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1311 | vls_mt_table_wunlock (); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1312 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1313 | return rv; |
| 1314 | } |
| 1315 | |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1316 | int |
liuyacan | 55c952e | 2021-06-13 14:54:55 +0800 | [diff] [blame] | 1317 | vls_shutdown (vls_handle_t vlsh, int how) |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1318 | { |
| 1319 | vcl_locked_session_t *vls; |
| 1320 | int rv; |
| 1321 | |
| 1322 | vls_mt_detect (); |
| 1323 | if (!(vls = vls_get_w_dlock (vlsh))) |
| 1324 | return VPPCOM_EBADFD; |
| 1325 | |
| 1326 | vls_mt_guard (vls, VLS_MT_OP_SPOOL); |
liuyacan | 55c952e | 2021-06-13 14:54:55 +0800 | [diff] [blame] | 1327 | rv = vppcom_session_shutdown (vls_to_sh (vls), how); |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1328 | vls_mt_unguard (); |
| 1329 | vls_get_and_unlock (vlsh); |
| 1330 | |
| 1331 | return rv; |
| 1332 | } |
| 1333 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1334 | vls_handle_t |
| 1335 | vls_epoll_create (void) |
| 1336 | { |
| 1337 | vcl_session_handle_t sh; |
| 1338 | vls_handle_t vlsh; |
| 1339 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1340 | vls_mt_detect (); |
Florin Coras | 63d3ac6 | 2019-03-29 08:29:25 -0700 | [diff] [blame] | 1341 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1342 | sh = vppcom_epoll_create (); |
| 1343 | if (sh == INVALID_SESSION_ID) |
| 1344 | return VLS_INVALID_HANDLE; |
| 1345 | |
| 1346 | vlsh = vls_alloc (sh); |
| 1347 | if (vlsh == VLS_INVALID_HANDLE) |
| 1348 | vppcom_session_close (sh); |
| 1349 | |
| 1350 | return vlsh; |
| 1351 | } |
| 1352 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1353 | static void |
| 1354 | vls_epoll_ctl_mp_checks (vcl_locked_session_t * vls, int op) |
| 1355 | { |
nandfan | dc2632e | 2021-03-26 16:46:58 +0800 | [diff] [blame] | 1356 | if (vcl_n_workers () <= 1 || op == EPOLL_CTL_MOD) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1357 | return; |
| 1358 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1359 | vls_mp_checks (vls, op == EPOLL_CTL_ADD); |
| 1360 | } |
| 1361 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1362 | int |
| 1363 | vls_epoll_ctl (vls_handle_t ep_vlsh, int op, vls_handle_t vlsh, |
| 1364 | struct epoll_event *event) |
| 1365 | { |
| 1366 | vcl_locked_session_t *ep_vls, *vls; |
| 1367 | vcl_session_handle_t ep_sh, sh; |
| 1368 | int rv; |
| 1369 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1370 | vls_mt_detect (); |
| 1371 | vls_mt_table_rlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1372 | ep_vls = vls_get_and_lock (ep_vlsh); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1373 | |
| 1374 | if (vls_mt_session_should_migrate (ep_vls)) |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1375 | { |
| 1376 | ep_vls = vls_mt_session_migrate (ep_vls); |
| 1377 | if (PREDICT_FALSE (!ep_vls)) |
| 1378 | return VPPCOM_EBADFD; |
| 1379 | } |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1380 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1381 | ep_sh = vls_to_sh (ep_vls); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1382 | vls = vls_get_and_lock (vlsh); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1383 | sh = vls_to_sh (vls); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1384 | |
nandfan | dc2632e | 2021-03-26 16:46:58 +0800 | [diff] [blame] | 1385 | vls_epoll_ctl_mp_checks (vls, op); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1386 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1387 | rv = vppcom_epoll_ctl (ep_sh, op, sh, event); |
| 1388 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1389 | vls_mt_table_rlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1390 | ep_vls = vls_get (ep_vlsh); |
| 1391 | vls = vls_get (vlsh); |
| 1392 | vls_unlock (vls); |
| 1393 | vls_unlock (ep_vls); |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1394 | vls_mt_table_runlock (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1395 | return rv; |
| 1396 | } |
| 1397 | |
| 1398 | int |
| 1399 | vls_epoll_wait (vls_handle_t ep_vlsh, struct epoll_event *events, |
| 1400 | int maxevents, double wait_for_time) |
| 1401 | { |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1402 | vcl_locked_session_t *vls, *vls_tmp = NULL; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1403 | int rv; |
| 1404 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1405 | vls_mt_detect (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1406 | if (!(vls = vls_get_w_dlock (ep_vlsh))) |
| 1407 | return VPPCOM_EBADFD; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1408 | vls_mt_guard (vls_tmp, VLS_MT_OP_XPOLL); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1409 | rv = vppcom_epoll_wait (vls_to_sh_tu (vls), events, maxevents, |
| 1410 | wait_for_time); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1411 | vls_mt_unguard (); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1412 | vls_get_and_unlock (ep_vlsh); |
| 1413 | return rv; |
| 1414 | } |
| 1415 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1416 | static void |
| 1417 | vls_select_mp_checks (vcl_si_set * read_map) |
| 1418 | { |
| 1419 | vcl_locked_session_t *vls; |
| 1420 | vcl_worker_t *wrk; |
| 1421 | vcl_session_t *s; |
| 1422 | u32 si; |
| 1423 | |
| 1424 | if (vcl_n_workers () <= 1) |
| 1425 | { |
| 1426 | vlsl->select_mp_check = 1; |
| 1427 | return; |
| 1428 | } |
| 1429 | |
| 1430 | if (!read_map) |
| 1431 | return; |
| 1432 | |
| 1433 | vlsl->select_mp_check = 1; |
| 1434 | wrk = vcl_worker_get_current (); |
| 1435 | |
| 1436 | /* *INDENT-OFF* */ |
Damjan Marion | f0ca1e8 | 2020-12-13 23:26:56 +0100 | [diff] [blame] | 1437 | clib_bitmap_foreach (si, read_map) { |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1438 | s = vcl_session_get (wrk, si); |
Florin Coras | c127d5a | 2020-10-14 16:35:58 -0700 | [diff] [blame] | 1439 | if (s->session_state == VCL_STATE_LISTEN) |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1440 | { |
| 1441 | vls = vls_get (vls_session_index_to_vlsh (si)); |
| 1442 | vls_mp_checks (vls, 1 /* is_add */); |
| 1443 | } |
Damjan Marion | f0ca1e8 | 2020-12-13 23:26:56 +0100 | [diff] [blame] | 1444 | } |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1445 | /* *INDENT-ON* */ |
| 1446 | } |
| 1447 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1448 | int |
| 1449 | vls_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map, |
| 1450 | vcl_si_set * except_map, double wait_for_time) |
| 1451 | { |
| 1452 | int rv; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1453 | vcl_locked_session_t *vls = NULL; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1454 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1455 | vls_mt_detect (); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1456 | vls_mt_guard (vls, VLS_MT_OP_XPOLL); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1457 | if (PREDICT_FALSE (!vlsl->select_mp_check)) |
| 1458 | vls_select_mp_checks (read_map); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1459 | rv = vppcom_select (n_bits, read_map, write_map, except_map, wait_for_time); |
| 1460 | vls_mt_unguard (); |
| 1461 | return rv; |
| 1462 | } |
| 1463 | |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1464 | static void |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1465 | vls_unshare_vcl_worker_sessions (vcl_worker_t * wrk) |
| 1466 | { |
| 1467 | u32 current_wrk, is_current; |
| 1468 | vcl_locked_session_t *vls; |
| 1469 | vcl_session_t *s; |
| 1470 | |
Florin Coras | 14ed6df | 2019-03-06 21:13:42 -0800 | [diff] [blame] | 1471 | if (pool_elts (vcm->workers) <= 1) |
| 1472 | return; |
| 1473 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1474 | current_wrk = vcl_get_worker_index (); |
| 1475 | is_current = current_wrk == wrk->wrk_index; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1476 | |
| 1477 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1478 | pool_foreach (s, wrk->sessions) { |
hanlin | f8e1363 | 2020-08-21 11:05:36 +0800 | [diff] [blame] | 1479 | vls = vls_get (vls_si_wi_to_vlsh (s->session_index, wrk->wrk_index)); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1480 | if (vls && (is_current || vls_is_shared_by_wrk (vls, current_wrk))) |
| 1481 | vls_unshare_session (vls, wrk); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1482 | } |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1483 | /* *INDENT-ON* */ |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1484 | } |
| 1485 | |
| 1486 | static void |
| 1487 | vls_cleanup_vcl_worker (vcl_worker_t * wrk) |
| 1488 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1489 | vls_worker_t *vls_wrk = vls_worker_get (wrk->wrk_index); |
| 1490 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1491 | /* Unshare sessions and also cleanup worker since child may have |
| 1492 | * called _exit () and therefore vcl may not catch the event */ |
| 1493 | vls_unshare_vcl_worker_sessions (wrk); |
| 1494 | vcl_worker_cleanup (wrk, 1 /* notify vpp */ ); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1495 | |
| 1496 | vls_worker_free (vls_wrk); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | static void |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1500 | vls_cleanup_forked_child (vcl_worker_t * wrk, vcl_worker_t * child_wrk) |
| 1501 | { |
| 1502 | vcl_worker_t *sub_child; |
| 1503 | int tries = 0; |
| 1504 | |
| 1505 | if (child_wrk->forked_child != ~0) |
| 1506 | { |
| 1507 | sub_child = vcl_worker_get_if_valid (child_wrk->forked_child); |
| 1508 | if (sub_child) |
| 1509 | { |
| 1510 | /* Wait a bit, maybe the process is going away */ |
| 1511 | while (kill (sub_child->current_pid, 0) >= 0 && tries++ < 50) |
| 1512 | usleep (1e3); |
| 1513 | if (kill (sub_child->current_pid, 0) < 0) |
| 1514 | vls_cleanup_forked_child (child_wrk, sub_child); |
| 1515 | } |
| 1516 | } |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1517 | vls_cleanup_vcl_worker (child_wrk); |
| 1518 | VDBG (0, "Cleaned up forked child wrk %u", child_wrk->wrk_index); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1519 | wrk->forked_child = ~0; |
| 1520 | } |
| 1521 | |
| 1522 | static struct sigaction old_sa; |
| 1523 | |
| 1524 | static void |
| 1525 | vls_intercept_sigchld_handler (int signum, siginfo_t * si, void *uc) |
| 1526 | { |
| 1527 | vcl_worker_t *wrk, *child_wrk; |
| 1528 | |
| 1529 | if (vcl_get_worker_index () == ~0) |
| 1530 | return; |
| 1531 | |
| 1532 | if (sigaction (SIGCHLD, &old_sa, 0)) |
| 1533 | { |
| 1534 | VERR ("couldn't restore sigchld"); |
| 1535 | exit (-1); |
| 1536 | } |
| 1537 | |
| 1538 | wrk = vcl_worker_get_current (); |
| 1539 | if (wrk->forked_child == ~0) |
| 1540 | return; |
| 1541 | |
| 1542 | child_wrk = vcl_worker_get_if_valid (wrk->forked_child); |
| 1543 | if (!child_wrk) |
| 1544 | goto done; |
| 1545 | |
| 1546 | if (si && si->si_pid != child_wrk->current_pid) |
| 1547 | { |
| 1548 | VDBG (0, "unexpected child pid %u", si->si_pid); |
| 1549 | goto done; |
| 1550 | } |
| 1551 | vls_cleanup_forked_child (wrk, child_wrk); |
| 1552 | |
| 1553 | done: |
| 1554 | if (old_sa.sa_flags & SA_SIGINFO) |
| 1555 | { |
| 1556 | void (*fn) (int, siginfo_t *, void *) = old_sa.sa_sigaction; |
| 1557 | fn (signum, si, uc); |
| 1558 | } |
| 1559 | else |
| 1560 | { |
| 1561 | void (*fn) (int) = old_sa.sa_handler; |
| 1562 | if (fn) |
| 1563 | fn (signum); |
| 1564 | } |
| 1565 | } |
| 1566 | |
| 1567 | static void |
| 1568 | vls_incercept_sigchld () |
| 1569 | { |
| 1570 | struct sigaction sa; |
nandfan | 5fdc47c | 2021-02-22 17:17:17 +0800 | [diff] [blame] | 1571 | if (old_sa.sa_sigaction) |
| 1572 | { |
| 1573 | VDBG (0, "have intercepted sigchld"); |
| 1574 | return; |
| 1575 | } |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1576 | clib_memset (&sa, 0, sizeof (sa)); |
| 1577 | sa.sa_sigaction = vls_intercept_sigchld_handler; |
| 1578 | sa.sa_flags = SA_SIGINFO; |
| 1579 | if (sigaction (SIGCHLD, &sa, &old_sa)) |
| 1580 | { |
| 1581 | VERR ("couldn't intercept sigchld"); |
| 1582 | exit (-1); |
| 1583 | } |
| 1584 | } |
| 1585 | |
| 1586 | static void |
| 1587 | vls_app_pre_fork (void) |
| 1588 | { |
| 1589 | vls_incercept_sigchld (); |
| 1590 | vcl_flush_mq_events (); |
| 1591 | } |
| 1592 | |
| 1593 | static void |
| 1594 | vls_app_fork_child_handler (void) |
| 1595 | { |
| 1596 | vcl_worker_t *parent_wrk; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1597 | int parent_wrk_index; |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1598 | |
| 1599 | parent_wrk_index = vcl_get_worker_index (); |
| 1600 | VDBG (0, "initializing forked child %u with parent wrk %u", getpid (), |
| 1601 | parent_wrk_index); |
| 1602 | |
| 1603 | /* |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1604 | * Clear old state |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1605 | */ |
| 1606 | vcl_set_worker_index (~0); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1607 | |
| 1608 | /* |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1609 | * Allocate and register vcl worker with vpp |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1610 | */ |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1611 | if (vppcom_worker_register ()) |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1612 | { |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1613 | VERR ("couldn't register new worker!"); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1614 | return; |
| 1615 | } |
| 1616 | |
| 1617 | /* |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 1618 | * Allocate/initialize vls worker and share sessions |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1619 | */ |
| 1620 | vls_worker_alloc (); |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1621 | parent_wrk = vcl_worker_get (parent_wrk_index); |
| 1622 | vls_worker_copy_on_fork (parent_wrk); |
| 1623 | parent_wrk->forked_child = vcl_get_worker_index (); |
| 1624 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1625 | /* Reset number of threads and set wrk index */ |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1626 | vlsl->vls_mt_n_threads = 0; |
| 1627 | vlsl->vls_wrk_index = vcl_get_worker_index (); |
| 1628 | vlsl->select_mp_check = 0; |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1629 | vls_mt_locks_init (); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1630 | |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1631 | VDBG (0, "forked child main worker initialized"); |
| 1632 | vcm->forking = 0; |
| 1633 | } |
| 1634 | |
| 1635 | static void |
| 1636 | vls_app_fork_parent_handler (void) |
| 1637 | { |
| 1638 | vcm->forking = 1; |
| 1639 | while (vcm->forking) |
| 1640 | ; |
| 1641 | } |
| 1642 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1643 | void |
| 1644 | vls_app_exit (void) |
| 1645 | { |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1646 | vls_worker_t *wrk = vls_worker_get_current (); |
| 1647 | |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1648 | /* Unshare the sessions. VCL will clean up the worker */ |
| 1649 | vls_unshare_vcl_worker_sessions (vcl_worker_get_current ()); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1650 | vls_worker_free (wrk); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1651 | } |
| 1652 | |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1653 | static void |
| 1654 | vls_clone_and_share_rpc_handler (void *args) |
| 1655 | { |
| 1656 | vls_clone_and_share_msg_t *msg = (vls_clone_and_share_msg_t *) args; |
| 1657 | vls_worker_t *wrk = vls_worker_get_current (), *dst_wrk; |
| 1658 | vcl_locked_session_t *vls, *dst_vls; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1659 | vcl_worker_t *vcl_wrk = vcl_worker_get_current (), *dst_vcl_wrk; |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1660 | vcl_session_t *s, *dst_s; |
| 1661 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1662 | VDBG (1, "process session clone of worker (session): %u (%u) -> %u (%u)", |
| 1663 | vcl_wrk->wrk_index, msg->session_index, msg->origin_vcl_wrk, |
| 1664 | msg->origin_session_index); |
| 1665 | |
| 1666 | /* VCL locked session can't been protected, so DONT touch it. |
| 1667 | * VCL session may been free, check it. |
| 1668 | */ |
| 1669 | dst_vcl_wrk = vcl_worker_get (msg->origin_vcl_wrk); |
| 1670 | s = vcl_session_get (vcl_wrk, msg->session_index); |
| 1671 | if (PREDICT_FALSE (!s)) |
| 1672 | { |
| 1673 | dst_vcl_wrk->rpc_done = VLS_RPC_STATE_SESSION_NOT_EXIST; |
| 1674 | return; |
| 1675 | } |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1676 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1677 | if (!vls_mt_wrk_supported ()) |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1678 | { |
| 1679 | vls = vls_session_get (wrk, msg->vls_index); |
| 1680 | vls_init_share_session (wrk, vls); |
| 1681 | dst_wrk = vls_worker_get (msg->origin_vls_wrk); |
| 1682 | dst_vls = vls_session_get (dst_wrk, msg->origin_vls_index); |
| 1683 | dst_vls->shared_data_index = vls->shared_data_index; |
| 1684 | } |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1685 | dst_s = vcl_session_get (dst_vcl_wrk, msg->origin_session_index); |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1686 | clib_memcpy (dst_s, s, sizeof (*s)); |
| 1687 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1688 | dst_vcl_wrk->rpc_done = VLS_RPC_STATE_SUCCESS; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | static void |
| 1692 | vls_session_cleanup_rpc_handler (void *args) |
| 1693 | { |
| 1694 | vls_sess_cleanup_msg_t *msg = (vls_sess_cleanup_msg_t *) args; |
| 1695 | vcl_worker_t *wrk = vcl_worker_get_current (); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 1696 | vls_worker_t *vls_wrk = vls_worker_get_current (); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1697 | vcl_session_handle_t sh = vcl_session_handle_from_index (msg->session_index); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1698 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1699 | VDBG (1, "process session cleanup of worker (session): %u (%u) from %u ()", |
| 1700 | wrk->wrk_index, msg->session_index, msg->origin_vcl_wrk); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1701 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1702 | vppcom_session_close (sh); |
wanghanlin | e8f848a | 2021-01-08 14:57:11 +0800 | [diff] [blame] | 1703 | vls_sh_to_vlsh_table_del (vls_wrk, sh); |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1704 | } |
| 1705 | |
| 1706 | static void |
| 1707 | vls_rpc_handler (void *args) |
| 1708 | { |
| 1709 | vls_rpc_msg_t *msg = (vls_rpc_msg_t *) args; |
| 1710 | switch (msg->type) |
| 1711 | { |
| 1712 | case VLS_RPC_CLONE_AND_SHARE: |
| 1713 | vls_clone_and_share_rpc_handler (msg->data); |
| 1714 | break; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1715 | case VLS_RPC_SESS_CLEANUP: |
| 1716 | vls_session_cleanup_rpc_handler (msg->data); |
| 1717 | break; |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1718 | default: |
| 1719 | break; |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | void |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1724 | vls_send_clone_and_share_rpc (vcl_worker_t *wrk, u32 origin_vls_index, |
| 1725 | u32 session_index, u32 vls_wrk_index, |
| 1726 | u32 dst_wrk_index, u32 dst_vls_index, |
| 1727 | u32 dst_session_index) |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1728 | { |
| 1729 | u8 data[sizeof (u8) + sizeof (vls_clone_and_share_msg_t)]; |
| 1730 | vls_clone_and_share_msg_t *msg; |
| 1731 | vls_rpc_msg_t *rpc; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1732 | int ret; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1733 | f64 timeout = clib_time_now (&wrk->clib_time) + VLS_WORKER_RPC_TIMEOUT; |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1734 | |
| 1735 | rpc = (vls_rpc_msg_t *) & data; |
| 1736 | rpc->type = VLS_RPC_CLONE_AND_SHARE; |
| 1737 | msg = (vls_clone_and_share_msg_t *) & rpc->data; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1738 | msg->origin_vls_wrk = vls_wrk_index; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1739 | msg->origin_vls_index = origin_vls_index; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1740 | msg->origin_vcl_wrk = wrk->wrk_index; |
| 1741 | msg->origin_session_index = session_index; |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1742 | msg->vls_index = dst_vls_index; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1743 | msg->session_index = dst_session_index; |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1744 | |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1745 | /* Try lock and handle rpcs if two threads send each other |
| 1746 | * clone requests at the same time. |
| 1747 | */ |
| 1748 | wrk->rpc_done = VLS_RPC_STATE_INIT; |
| 1749 | while (!clib_spinlock_trylock (&vlsm->worker_rpc_lock)) |
| 1750 | vcl_flush_mq_events (); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1751 | ret = vcl_send_worker_rpc (dst_wrk_index, rpc, sizeof (data)); |
| 1752 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1753 | VDBG (1, "send session clone to wrk (session): %u (%u) -> %u (%u), ret=%d", |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1754 | dst_wrk_index, msg->session_index, msg->origin_vcl_wrk, |
| 1755 | msg->origin_session_index, ret); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1756 | while (!ret && wrk->rpc_done == VLS_RPC_STATE_INIT && |
| 1757 | clib_time_now (&wrk->clib_time) < timeout) |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1758 | ; |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1759 | clib_spinlock_unlock (&vlsm->worker_rpc_lock); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | void |
| 1763 | vls_send_session_cleanup_rpc (vcl_worker_t * wrk, |
| 1764 | u32 dst_wrk_index, u32 dst_session_index) |
| 1765 | { |
| 1766 | u8 data[sizeof (u8) + sizeof (vls_sess_cleanup_msg_t)]; |
| 1767 | vls_sess_cleanup_msg_t *msg; |
| 1768 | vls_rpc_msg_t *rpc; |
| 1769 | int ret; |
| 1770 | |
| 1771 | rpc = (vls_rpc_msg_t *) & data; |
| 1772 | rpc->type = VLS_RPC_SESS_CLEANUP; |
| 1773 | msg = (vls_sess_cleanup_msg_t *) & rpc->data; |
| 1774 | msg->origin_vcl_wrk = wrk->wrk_index; |
| 1775 | msg->session_index = dst_session_index; |
| 1776 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1777 | ret = vcl_send_worker_rpc (dst_wrk_index, rpc, sizeof (data)); |
| 1778 | |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1779 | VDBG (1, "send session cleanup to wrk (session): %u (%u) from %u, ret=%d", |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1780 | dst_wrk_index, msg->session_index, msg->origin_vcl_wrk, ret); |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1781 | } |
| 1782 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1783 | int |
| 1784 | vls_app_create (char *app_name) |
| 1785 | { |
| 1786 | int rv; |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1787 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1788 | if ((rv = vppcom_app_create (app_name))) |
| 1789 | return rv; |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1790 | |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1791 | vlsm = clib_mem_alloc (sizeof (vls_main_t)); |
| 1792 | clib_memset (vlsm, 0, sizeof (*vlsm)); |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1793 | clib_rwlock_init (&vlsm->vls_table_lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1794 | clib_rwlock_init (&vlsm->shared_data_lock); |
wanghanlin | dcacdc4 | 2020-12-28 16:19:05 +0800 | [diff] [blame] | 1795 | clib_spinlock_init (&vlsm->worker_rpc_lock); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1796 | pool_alloc (vlsm->workers, vcm->cfg.max_workers); |
| 1797 | |
Florin Coras | f9240dc | 2019-01-15 08:03:17 -0800 | [diff] [blame] | 1798 | pthread_atfork (vls_app_pre_fork, vls_app_fork_parent_handler, |
| 1799 | vls_app_fork_child_handler); |
Florin Coras | 0ef8ef2 | 2019-01-18 08:37:13 -0800 | [diff] [blame] | 1800 | atexit (vls_app_exit); |
Florin Coras | 243edd5 | 2020-03-04 22:20:12 +0000 | [diff] [blame] | 1801 | vls_worker_alloc (); |
Florin Coras | 2d675d7 | 2019-01-28 15:54:27 -0800 | [diff] [blame] | 1802 | vlsl->vls_wrk_index = vcl_get_worker_index (); |
| 1803 | vls_mt_locks_init (); |
Florin Coras | 40c07ce | 2020-07-16 20:46:17 -0700 | [diff] [blame] | 1804 | vcm->wrk_rpc_fn = vls_rpc_handler; |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1805 | return VPPCOM_OK; |
| 1806 | } |
| 1807 | |
hanlin | 4266d4d | 2020-05-19 17:34:17 +0800 | [diff] [blame] | 1808 | unsigned char |
| 1809 | vls_use_eventfd (void) |
| 1810 | { |
| 1811 | return vcm->cfg.use_mq_eventfd; |
| 1812 | } |
| 1813 | |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1814 | unsigned char |
| 1815 | vls_mt_wrk_supported (void) |
| 1816 | { |
Florin Coras | ff40d8f | 2020-08-11 22:05:28 -0700 | [diff] [blame] | 1817 | return vcm->cfg.mt_wrk_supported; |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1818 | } |
| 1819 | |
| 1820 | int |
| 1821 | vls_use_real_epoll (void) |
| 1822 | { |
| 1823 | if (vcl_get_worker_index () == ~0) |
| 1824 | return 0; |
| 1825 | |
| 1826 | return vcl_worker_get_current ()->vcl_needs_real_epoll; |
| 1827 | } |
| 1828 | |
| 1829 | void |
| 1830 | vls_register_vcl_worker (void) |
| 1831 | { |
wanghanlin | 492350e | 2020-09-11 17:19:32 +0800 | [diff] [blame] | 1832 | vls_mt_add (); |
hanlin | a3a4896 | 2020-07-13 11:09:15 +0800 | [diff] [blame] | 1833 | } |
| 1834 | |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 1835 | /* |
| 1836 | * fd.io coding-style-patch-verification: ON |
| 1837 | * |
| 1838 | * Local Variables: |
| 1839 | * eval: (c-set-style "gnu") |
| 1840 | * End: |
| 1841 | */ |