blob: ce94d7500a49c58df34a2dd819c948ca61aae817 [file] [log] [blame]
Florin Coras7baeb712019-01-04 17:05:43 -08001/*
2 * Copyright (c) 2019 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
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 Coras243edd52020-03-04 22:20:12 +000019typedef 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 Coras7baeb712019-01-04 17:05:43 -080027typedef struct vcl_locked_session_
28{
Florin Corasf9240dc2019-01-15 08:03:17 -080029 clib_spinlock_t lock;
Florin Coras7baeb712019-01-04 17:05:43 -080030 u32 session_index;
31 u32 worker_index;
32 u32 vls_index;
Florin Coras243edd52020-03-04 22:20:12 +000033 u32 shared_data_index;
hanlina3a48962020-07-13 11:09:15 +080034 /** VCL session owned by different workers because of migration */
35 u32 owner_vcl_wrk_index;
36 uword *vcl_wrk_index_to_session_index;
Florin Coras7baeb712019-01-04 17:05:43 -080037} vcl_locked_session_t;
38
Florin Coras243edd52020-03-04 22:20:12 +000039typedef struct vls_worker_
40{
41 vcl_locked_session_t *vls_pool;
hanlinf8e13632020-08-21 11:05:36 +080042 uword *session_handle_to_vlsh_table;
Florin Coras243edd52020-03-04 22:20:12 +000043 u32 wrk_index;
44} vls_worker_t;
45
Florin Coras2d675d72019-01-28 15:54:27 -080046typedef struct vls_local_
47{
48 int vls_wrk_index;
49 volatile int vls_mt_n_threads;
50 pthread_mutex_t vls_mt_mq_mlock;
51 pthread_mutex_t vls_mt_spool_mlock;
52 volatile u8 select_mp_check;
53 volatile u8 epoll_mp_check;
54} vls_process_local_t;
55
56static vls_process_local_t vls_local;
57static vls_process_local_t *vlsl = &vls_local;
58
59typedef struct vls_main_
Florin Coras7baeb712019-01-04 17:05:43 -080060{
Florin Coras243edd52020-03-04 22:20:12 +000061 vls_worker_t *workers;
Florin Coras7baeb712019-01-04 17:05:43 -080062 clib_rwlock_t vls_table_lock;
Florin Coras243edd52020-03-04 22:20:12 +000063 /** 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;
Florin Coras7baeb712019-01-04 17:05:43 -080066} vls_main_t;
67
Florin Coras2d675d72019-01-28 15:54:27 -080068vls_main_t *vlsm;
Florin Coras7baeb712019-01-04 17:05:43 -080069
Florin Coras40c07ce2020-07-16 20:46:17 -070070typedef enum vls_rpc_msg_type_
71{
72 VLS_RPC_CLONE_AND_SHARE,
hanlina3a48962020-07-13 11:09:15 +080073 VLS_RPC_SESS_CLEANUP,
Florin Coras40c07ce2020-07-16 20:46:17 -070074} vls_rpc_msg_type_e;
75
76typedef struct vls_rpc_msg_
77{
78 u8 type;
79 u8 data[0];
80} vls_rpc_msg_t;
81
82typedef struct vls_clone_and_share_msg_
83{
84 u32 vls_index; /**< vls to be shared */
hanlina3a48962020-07-13 11:09:15 +080085 u32 session_index; /**< vcl session to be shared */
86 u32 origin_vls_wrk; /**< vls worker that initiated the rpc */
Florin Coras40c07ce2020-07-16 20:46:17 -070087 u32 origin_vls_index; /**< vls session of the originator */
hanlina3a48962020-07-13 11:09:15 +080088 u32 origin_vcl_wrk; /**< vcl worker that initiated the rpc */
89 u32 origin_session_index; /**< vcl session of the originator */
Florin Coras40c07ce2020-07-16 20:46:17 -070090} vls_clone_and_share_msg_t;
91
hanlina3a48962020-07-13 11:09:15 +080092typedef struct vls_sess_cleanup_msg_
93{
94 u32 session_index; /**< vcl session to be cleaned */
95 u32 origin_vcl_wrk; /**< worker that initiated the rpc */
96} vls_sess_cleanup_msg_t;
97
98void vls_send_session_cleanup_rpc (vcl_worker_t * wrk,
99 u32 dst_wrk_index, u32 dst_session_index);
100void vls_send_clone_and_share_rpc (vcl_worker_t * wrk,
101 vcl_locked_session_t * vls,
102 u32 session_index, u32 vls_wrk_index,
103 u32 dst_wrk_index, u32 dst_vls_index,
104 u32 dst_session_index);
105
106
Florin Coras243edd52020-03-04 22:20:12 +0000107static inline u32
108vls_get_worker_index (void)
109{
hanlina3a48962020-07-13 11:09:15 +0800110 if (vls_mt_wrk_supported ())
111 return vlsl->vls_wrk_index;
112 else
113 return vcl_get_worker_index ();
Florin Coras243edd52020-03-04 22:20:12 +0000114}
115
116static u32
117vls_shared_data_alloc (void)
118{
119 vls_shared_data_t *vls_shd;
120 u32 shd_index;
121
122 clib_rwlock_writer_lock (&vlsm->shared_data_lock);
123 pool_get_zero (vlsm->shared_data_pool, vls_shd);
124 clib_spinlock_init (&vls_shd->lock);
125 shd_index = vls_shd - vlsm->shared_data_pool;
126 clib_rwlock_writer_unlock (&vlsm->shared_data_lock);
127
128 return shd_index;
129}
130
131static u32
132vls_shared_data_index (vls_shared_data_t * vls_shd)
133{
134 return vls_shd - vlsm->shared_data_pool;
135}
136
137vls_shared_data_t *
138vls_shared_data_get (u32 shd_index)
139{
140 if (pool_is_free_index (vlsm->shared_data_pool, shd_index))
141 return 0;
142 return pool_elt_at_index (vlsm->shared_data_pool, shd_index);
143}
144
145static void
146vls_shared_data_free (u32 shd_index)
147{
148 vls_shared_data_t *vls_shd;
149
150 clib_rwlock_writer_lock (&vlsm->shared_data_lock);
151 vls_shd = vls_shared_data_get (shd_index);
152 clib_spinlock_free (&vls_shd->lock);
153 clib_bitmap_free (vls_shd->listeners);
154 vec_free (vls_shd->workers_subscribed);
155 pool_put (vlsm->shared_data_pool, vls_shd);
156 clib_rwlock_writer_unlock (&vlsm->shared_data_lock);
157}
158
159static inline void
160vls_shared_data_pool_rlock (void)
161{
162 clib_rwlock_reader_lock (&vlsm->shared_data_lock);
163}
164
165static inline void
166vls_shared_data_pool_runlock (void)
167{
168 clib_rwlock_reader_unlock (&vlsm->shared_data_lock);
169}
170
Florin Coras7baeb712019-01-04 17:05:43 -0800171static inline void
Florin Corasff40d8f2020-08-11 22:05:28 -0700172vls_mt_table_rlock (void)
Florin Coras7baeb712019-01-04 17:05:43 -0800173{
Florin Coras243edd52020-03-04 22:20:12 +0000174 if (vlsl->vls_mt_n_threads > 1)
175 clib_rwlock_reader_lock (&vlsm->vls_table_lock);
Florin Coras7baeb712019-01-04 17:05:43 -0800176}
177
178static inline void
Florin Corasff40d8f2020-08-11 22:05:28 -0700179vls_mt_table_runlock (void)
Florin Coras7baeb712019-01-04 17:05:43 -0800180{
Florin Coras243edd52020-03-04 22:20:12 +0000181 if (vlsl->vls_mt_n_threads > 1)
182 clib_rwlock_reader_unlock (&vlsm->vls_table_lock);
Florin Coras7baeb712019-01-04 17:05:43 -0800183}
184
185static inline void
Florin Corasff40d8f2020-08-11 22:05:28 -0700186vls_mt_table_wlock (void)
Florin Coras7baeb712019-01-04 17:05:43 -0800187{
Florin Coras243edd52020-03-04 22:20:12 +0000188 if (vlsl->vls_mt_n_threads > 1)
189 clib_rwlock_writer_lock (&vlsm->vls_table_lock);
Florin Coras7baeb712019-01-04 17:05:43 -0800190}
191
192static inline void
Florin Corasff40d8f2020-08-11 22:05:28 -0700193vls_mt_table_wunlock (void)
Florin Coras7baeb712019-01-04 17:05:43 -0800194{
Florin Coras243edd52020-03-04 22:20:12 +0000195 if (vlsl->vls_mt_n_threads > 1)
196 clib_rwlock_writer_unlock (&vlsm->vls_table_lock);
Florin Coras7baeb712019-01-04 17:05:43 -0800197}
198
Florin Coras0ef8ef22019-01-18 08:37:13 -0800199typedef enum
200{
201 VLS_MT_OP_READ,
202 VLS_MT_OP_WRITE,
203 VLS_MT_OP_SPOOL,
204 VLS_MT_OP_XPOLL,
205} vls_mt_ops_t;
206
207typedef enum
208{
209 VLS_MT_LOCK_MQ = 1 << 0,
210 VLS_MT_LOCK_SPOOL = 1 << 1
211} vls_mt_lock_type_t;
212
Florin Coras0ef8ef22019-01-18 08:37:13 -0800213static void
214vls_mt_add (void)
215{
Florin Coras2d675d72019-01-28 15:54:27 -0800216 vlsl->vls_mt_n_threads += 1;
Florin Corasff40d8f2020-08-11 22:05:28 -0700217
218 /* If multi-thread workers are supported, for each new thread register a new
219 * vcl worker with vpp. Otherwise, all threads use the same vcl worker, so
220 * update the vcl worker's thread local worker index variable */
hanlina3a48962020-07-13 11:09:15 +0800221 if (vls_mt_wrk_supported ())
222 vls_register_vcl_worker ();
223 else
224 vcl_set_worker_index (vlsl->vls_wrk_index);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800225}
226
227static inline void
228vls_mt_mq_lock (void)
229{
Florin Coras2d675d72019-01-28 15:54:27 -0800230 pthread_mutex_lock (&vlsl->vls_mt_mq_mlock);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800231}
232
233static inline void
234vls_mt_mq_unlock (void)
235{
Florin Coras2d675d72019-01-28 15:54:27 -0800236 pthread_mutex_unlock (&vlsl->vls_mt_mq_mlock);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800237}
238
239static inline void
240vls_mt_spool_lock (void)
241{
Florin Coras2d675d72019-01-28 15:54:27 -0800242 pthread_mutex_lock (&vlsl->vls_mt_spool_mlock);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800243}
244
245static inline void
246vls_mt_create_unlock (void)
247{
Florin Coras2d675d72019-01-28 15:54:27 -0800248 pthread_mutex_unlock (&vlsl->vls_mt_spool_mlock);
249}
250
251static void
252vls_mt_locks_init (void)
253{
254 pthread_mutex_init (&vlsl->vls_mt_mq_mlock, NULL);
255 pthread_mutex_init (&vlsl->vls_mt_spool_mlock, NULL);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800256}
257
Florin Coras243edd52020-03-04 22:20:12 +0000258u8
259vls_is_shared (vcl_locked_session_t * vls)
260{
261 return (vls->shared_data_index != ~0);
262}
263
264static inline void
265vls_lock (vcl_locked_session_t * vls)
266{
267 if ((vlsl->vls_mt_n_threads > 1) || vls_is_shared (vls))
268 clib_spinlock_lock (&vls->lock);
269}
270
271static inline void
272vls_unlock (vcl_locked_session_t * vls)
273{
274 if ((vlsl->vls_mt_n_threads > 1) || vls_is_shared (vls))
275 clib_spinlock_unlock (&vls->lock);
276}
277
Florin Coras7baeb712019-01-04 17:05:43 -0800278static inline vcl_session_handle_t
279vls_to_sh (vcl_locked_session_t * vls)
280{
Florin Corasf9240dc2019-01-15 08:03:17 -0800281 return vcl_session_handle_from_index (vls->session_index);
Florin Coras7baeb712019-01-04 17:05:43 -0800282}
283
284static inline vcl_session_handle_t
285vls_to_sh_tu (vcl_locked_session_t * vls)
286{
287 vcl_session_handle_t sh;
288 sh = vls_to_sh (vls);
Florin Corasff40d8f2020-08-11 22:05:28 -0700289 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800290 return sh;
291}
292
Florin Coras243edd52020-03-04 22:20:12 +0000293static vls_worker_t *
294vls_worker_get_current (void)
295{
296 return pool_elt_at_index (vlsm->workers, vls_get_worker_index ());
297}
298
299static void
300vls_worker_alloc (void)
301{
302 vls_worker_t *wrk;
303
304 pool_get_zero (vlsm->workers, wrk);
305 wrk->wrk_index = vcl_get_worker_index ();
306}
307
308static void
309vls_worker_free (vls_worker_t * wrk)
310{
hanlinf8e13632020-08-21 11:05:36 +0800311 hash_free (wrk->session_handle_to_vlsh_table);
Florin Coras243edd52020-03-04 22:20:12 +0000312 pool_free (wrk->vls_pool);
313 pool_put (vlsm->workers, wrk);
314}
315
316static vls_worker_t *
317vls_worker_get (u32 wrk_index)
318{
319 if (pool_is_free_index (vlsm->workers, wrk_index))
320 return 0;
321 return pool_elt_at_index (vlsm->workers, wrk_index);
322}
323
Florin Coras7baeb712019-01-04 17:05:43 -0800324static vls_handle_t
325vls_alloc (vcl_session_handle_t sh)
326{
Florin Coras243edd52020-03-04 22:20:12 +0000327 vls_worker_t *wrk = vls_worker_get_current ();
Florin Coras7baeb712019-01-04 17:05:43 -0800328 vcl_locked_session_t *vls;
329
Florin Corasff40d8f2020-08-11 22:05:28 -0700330 vls_mt_table_wlock ();
Florin Coras243edd52020-03-04 22:20:12 +0000331
332 pool_get_zero (wrk->vls_pool, vls);
Florin Coras7baeb712019-01-04 17:05:43 -0800333 vls->session_index = vppcom_session_index (sh);
334 vls->worker_index = vppcom_session_worker (sh);
Florin Coras243edd52020-03-04 22:20:12 +0000335 vls->vls_index = vls - wrk->vls_pool;
336 vls->shared_data_index = ~0;
hanlinf8e13632020-08-21 11:05:36 +0800337 hash_set (wrk->session_handle_to_vlsh_table, sh, vls->vls_index);
hanlina3a48962020-07-13 11:09:15 +0800338 if (vls_mt_wrk_supported ())
339 {
340 hash_set (vls->vcl_wrk_index_to_session_index, vls->worker_index,
341 vls->session_index);
342 vls->owner_vcl_wrk_index = vls->worker_index;
343 }
Florin Coras7baeb712019-01-04 17:05:43 -0800344 clib_spinlock_init (&vls->lock);
Florin Coras243edd52020-03-04 22:20:12 +0000345
Florin Corasff40d8f2020-08-11 22:05:28 -0700346 vls_mt_table_wunlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800347 return vls->vls_index;
348}
349
350static vcl_locked_session_t *
351vls_get (vls_handle_t vlsh)
352{
Florin Coras243edd52020-03-04 22:20:12 +0000353 vls_worker_t *wrk = vls_worker_get_current ();
354 if (pool_is_free_index (wrk->vls_pool, vlsh))
Florin Coras7baeb712019-01-04 17:05:43 -0800355 return 0;
Florin Coras243edd52020-03-04 22:20:12 +0000356 return pool_elt_at_index (wrk->vls_pool, vlsh);
Florin Coras7baeb712019-01-04 17:05:43 -0800357}
358
359static void
Florin Coras0ef8ef22019-01-18 08:37:13 -0800360vls_free (vcl_locked_session_t * vls)
Florin Coras7baeb712019-01-04 17:05:43 -0800361{
Florin Coras243edd52020-03-04 22:20:12 +0000362 vls_worker_t *wrk = vls_worker_get_current ();
363
Florin Coras0ef8ef22019-01-18 08:37:13 -0800364 ASSERT (vls != 0);
hanlinf8e13632020-08-21 11:05:36 +0800365 hash_unset (wrk->session_handle_to_vlsh_table,
366 vcl_session_handle_from_index (vls->session_index));
Florin Coras0ef8ef22019-01-18 08:37:13 -0800367 clib_spinlock_free (&vls->lock);
Florin Coras243edd52020-03-04 22:20:12 +0000368 pool_put (wrk->vls_pool, vls);
Florin Coras7baeb712019-01-04 17:05:43 -0800369}
370
371static vcl_locked_session_t *
372vls_get_and_lock (vls_handle_t vlsh)
373{
Florin Coras243edd52020-03-04 22:20:12 +0000374 vls_worker_t *wrk = vls_worker_get_current ();
Florin Coras7baeb712019-01-04 17:05:43 -0800375 vcl_locked_session_t *vls;
Florin Coras243edd52020-03-04 22:20:12 +0000376 if (pool_is_free_index (wrk->vls_pool, vlsh))
Florin Coras7baeb712019-01-04 17:05:43 -0800377 return 0;
Florin Coras243edd52020-03-04 22:20:12 +0000378 vls = pool_elt_at_index (wrk->vls_pool, vlsh);
379 vls_lock (vls);
Florin Coras7baeb712019-01-04 17:05:43 -0800380 return vls;
381}
382
383static vcl_locked_session_t *
384vls_get_w_dlock (vls_handle_t vlsh)
385{
386 vcl_locked_session_t *vls;
Florin Corasff40d8f2020-08-11 22:05:28 -0700387 vls_mt_table_rlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800388 vls = vls_get_and_lock (vlsh);
389 if (!vls)
Florin Corasff40d8f2020-08-11 22:05:28 -0700390 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800391 return vls;
392}
393
394static inline void
Florin Coras7baeb712019-01-04 17:05:43 -0800395vls_get_and_unlock (vls_handle_t vlsh)
396{
397 vcl_locked_session_t *vls;
Florin Corasff40d8f2020-08-11 22:05:28 -0700398 vls_mt_table_rlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800399 vls = vls_get (vlsh);
400 vls_unlock (vls);
Florin Corasff40d8f2020-08-11 22:05:28 -0700401 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800402}
403
404static inline void
405vls_dunlock (vcl_locked_session_t * vls)
406{
407 vls_unlock (vls);
Florin Corasff40d8f2020-08-11 22:05:28 -0700408 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -0800409}
410
Florin Coras243edd52020-03-04 22:20:12 +0000411static vcl_locked_session_t *
412vls_session_get (vls_worker_t * wrk, u32 vls_index)
413{
414 if (pool_is_free_index (wrk->vls_pool, vls_index))
415 return 0;
416 return pool_elt_at_index (wrk->vls_pool, vls_index);
417}
418
Florin Coras2d675d72019-01-28 15:54:27 -0800419vcl_session_handle_t
420vlsh_to_sh (vls_handle_t vlsh)
421{
422 vcl_locked_session_t *vls;
423 int rv;
424
425 vls = vls_get_w_dlock (vlsh);
426 if (!vls)
427 return INVALID_SESSION_ID;
428 rv = vls_to_sh (vls);
429 vls_dunlock (vls);
430 return rv;
431}
432
433vcl_session_handle_t
434vlsh_to_session_index (vls_handle_t vlsh)
435{
436 vcl_session_handle_t sh;
437 sh = vlsh_to_sh (vlsh);
438 return vppcom_session_index (sh);
439}
440
441vls_handle_t
hanlinf8e13632020-08-21 11:05:36 +0800442vls_si_wi_to_vlsh (u32 session_index, u32 vcl_wrk_index)
Florin Coras2d675d72019-01-28 15:54:27 -0800443{
Florin Coras243edd52020-03-04 22:20:12 +0000444 vls_worker_t *wrk = vls_worker_get_current ();
Florin Coras2d675d72019-01-28 15:54:27 -0800445 uword *vlshp;
hanlinf8e13632020-08-21 11:05:36 +0800446 vlshp = hash_get (wrk->session_handle_to_vlsh_table,
447 vcl_session_handle_from_wrk_session_index (session_index,
448 vcl_wrk_index));
Florin Coras2d675d72019-01-28 15:54:27 -0800449 return vlshp ? *vlshp : VLS_INVALID_HANDLE;
450}
451
452vls_handle_t
453vls_session_index_to_vlsh (uint32_t session_index)
454{
455 vls_handle_t vlsh;
456
Florin Corasff40d8f2020-08-11 22:05:28 -0700457 vls_mt_table_rlock ();
hanlinf8e13632020-08-21 11:05:36 +0800458 vlsh = vls_si_wi_to_vlsh (session_index, vcl_get_worker_index ());
Florin Corasff40d8f2020-08-11 22:05:28 -0700459 vls_mt_table_runlock ();
Florin Coras2d675d72019-01-28 15:54:27 -0800460
461 return vlsh;
462}
463
Florin Corasf9240dc2019-01-15 08:03:17 -0800464u8
Florin Coras0ef8ef22019-01-18 08:37:13 -0800465vls_is_shared_by_wrk (vcl_locked_session_t * vls, u32 wrk_index)
Florin Corasf9240dc2019-01-15 08:03:17 -0800466{
Florin Coras243edd52020-03-04 22:20:12 +0000467 vls_shared_data_t *vls_shd;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800468 int i;
Florin Coras243edd52020-03-04 22:20:12 +0000469
470 if (vls->shared_data_index == ~0)
471 return 0;
472
473 vls_shared_data_pool_rlock ();
474
475 vls_shd = vls_shared_data_get (vls->shared_data_index);
476 clib_spinlock_lock (&vls_shd->lock);
477
478 for (i = 0; i < vec_len (vls_shd->workers_subscribed); i++)
479 if (vls_shd->workers_subscribed[i] == wrk_index)
480 {
481 clib_spinlock_unlock (&vls_shd->lock);
482 vls_shared_data_pool_runlock ();
483 return 1;
484 }
485 clib_spinlock_unlock (&vls_shd->lock);
486
487 vls_shared_data_pool_runlock ();
Florin Coras0ef8ef22019-01-18 08:37:13 -0800488 return 0;
489}
490
Florin Coras2d675d72019-01-28 15:54:27 -0800491static void
492vls_listener_wrk_set (vcl_locked_session_t * vls, u32 wrk_index, u8 is_active)
493{
Florin Coras243edd52020-03-04 22:20:12 +0000494 vls_shared_data_t *vls_shd;
495
496 if (vls->shared_data_index == ~0)
497 {
498 clib_warning ("not a shared session");
499 return;
500 }
501
502 vls_shared_data_pool_rlock ();
503
504 vls_shd = vls_shared_data_get (vls->shared_data_index);
505
506 clib_spinlock_lock (&vls_shd->lock);
507 clib_bitmap_set (vls_shd->listeners, wrk_index, is_active);
508 clib_spinlock_unlock (&vls_shd->lock);
509
510 vls_shared_data_pool_runlock ();
511}
512
513static u32
514vls_shared_get_owner (vcl_locked_session_t * vls)
515{
516 vls_shared_data_t *vls_shd;
517 u32 owner_wrk;
518
519 vls_shared_data_pool_rlock ();
520
521 vls_shd = vls_shared_data_get (vls->shared_data_index);
522 owner_wrk = vls_shd->owner_wrk_index;
523
524 vls_shared_data_pool_runlock ();
525
526 return owner_wrk;
Florin Coras2d675d72019-01-28 15:54:27 -0800527}
528
529static u8
530vls_listener_wrk_is_active (vcl_locked_session_t * vls, u32 wrk_index)
531{
Florin Coras243edd52020-03-04 22:20:12 +0000532 vls_shared_data_t *vls_shd;
533 u8 is_set;
534
535 if (vls->shared_data_index == ~0)
536 {
537 clib_warning ("not a shared session");
538 return 0;
539 }
540
541 vls_shared_data_pool_rlock ();
542
543 vls_shd = vls_shared_data_get (vls->shared_data_index);
544
545 clib_spinlock_lock (&vls_shd->lock);
546 is_set = clib_bitmap_get (vls_shd->listeners, wrk_index);
547 clib_spinlock_unlock (&vls_shd->lock);
548
549 vls_shared_data_pool_runlock ();
550
551 return (is_set == 1);
Florin Coras2d675d72019-01-28 15:54:27 -0800552}
553
554static void
555vls_listener_wrk_start_listen (vcl_locked_session_t * vls, u32 wrk_index)
556{
557 vppcom_session_listen (vls_to_sh (vls), ~0);
558 vls_listener_wrk_set (vls, wrk_index, 1 /* is_active */ );
559}
560
561static void
562vls_listener_wrk_stop_listen (vcl_locked_session_t * vls, u32 wrk_index)
563{
564 vcl_worker_t *wrk;
565 vcl_session_t *s;
566
567 wrk = vcl_worker_get (wrk_index);
568 s = vcl_session_get (wrk, vls->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700569 if (s->session_state != VCL_STATE_LISTEN)
Florin Coras2d675d72019-01-28 15:54:27 -0800570 return;
Florin Coras458089b2019-08-21 16:20:44 -0700571 vcl_send_session_unlisten (wrk, s);
Florin Corasc127d5a2020-10-14 16:35:58 -0700572 s->session_state = VCL_STATE_LISTEN_NO_MQ;
Florin Coras2d675d72019-01-28 15:54:27 -0800573 vls_listener_wrk_set (vls, wrk_index, 0 /* is_active */ );
574}
575
Florin Coras243edd52020-03-04 22:20:12 +0000576static int
577vls_shared_data_subscriber_position (vls_shared_data_t * vls_shd,
578 u32 wrk_index)
579{
580 int i;
581
582 for (i = 0; i < vec_len (vls_shd->workers_subscribed); i++)
583 {
584 if (vls_shd->workers_subscribed[i] == wrk_index)
585 return i;
586 }
587 return -1;
588}
589
Florin Coras0ef8ef22019-01-18 08:37:13 -0800590int
591vls_unshare_session (vcl_locked_session_t * vls, vcl_worker_t * wrk)
592{
Florin Coras243edd52020-03-04 22:20:12 +0000593 vls_shared_data_t *vls_shd;
Florin Coras311817f2020-03-07 17:45:47 +0000594 int do_disconnect, pos;
595 u32 n_subscribers;
Florin Corasf9240dc2019-01-15 08:03:17 -0800596 vcl_session_t *s;
Florin Coras2d675d72019-01-28 15:54:27 -0800597
hanlina3a48962020-07-13 11:09:15 +0800598 if (vls->shared_data_index == ~0)
599 return 0;
Florin Coras243edd52020-03-04 22:20:12 +0000600
Florin Coras2d675d72019-01-28 15:54:27 -0800601 s = vcl_session_get (wrk, vls->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700602 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras2d675d72019-01-28 15:54:27 -0800603 vls_listener_wrk_set (vls, wrk->wrk_index, 0 /* is_active */ );
Florin Corasf9240dc2019-01-15 08:03:17 -0800604
Florin Coras243edd52020-03-04 22:20:12 +0000605 vls_shared_data_pool_rlock ();
Florin Corasf9240dc2019-01-15 08:03:17 -0800606
Florin Coras243edd52020-03-04 22:20:12 +0000607 vls_shd = vls_shared_data_get (vls->shared_data_index);
608 clib_spinlock_lock (&vls_shd->lock);
609
610 pos = vls_shared_data_subscriber_position (vls_shd, wrk->wrk_index);
611 if (pos < 0)
612 {
613 clib_warning ("worker %u not subscribed for vls %u", wrk->wrk_index,
614 vls->worker_index);
615 goto done;
616 }
617
618 /*
619 * Unsubscribe from share data and fifos
620 */
621 if (s->rx_fifo)
622 {
623 svm_fifo_del_subscriber (s->rx_fifo, wrk->vpp_wrk_index);
624 svm_fifo_del_subscriber (s->tx_fifo, wrk->vpp_wrk_index);
625 }
626 vec_del1 (vls_shd->workers_subscribed, pos);
627
628 /*
629 * Cleanup vcl state
630 */
631 n_subscribers = vec_len (vls_shd->workers_subscribed);
Florin Corasc127d5a2020-10-14 16:35:58 -0700632 do_disconnect = s->session_state == VCL_STATE_LISTEN || !n_subscribers;
Florin Coras243edd52020-03-04 22:20:12 +0000633 vcl_session_cleanup (wrk, s, vcl_session_handle (s), do_disconnect);
634
635 /*
636 * No subscriber left, cleanup shared data
637 */
638 if (!n_subscribers)
639 {
640 u32 shd_index = vls_shared_data_index (vls_shd);
641
642 clib_spinlock_unlock (&vls_shd->lock);
643 vls_shared_data_pool_runlock ();
644
645 vls_shared_data_free (shd_index);
646
647 /* All locks have been dropped */
Florin Corasf9240dc2019-01-15 08:03:17 -0800648 return 0;
649 }
650
Florin Coras0ef8ef22019-01-18 08:37:13 -0800651 /* Return, if this is not the owning worker */
Florin Coras243edd52020-03-04 22:20:12 +0000652 if (vls_shd->owner_wrk_index != wrk->wrk_index)
653 goto done;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800654
Florin Coras243edd52020-03-04 22:20:12 +0000655 ASSERT (vec_len (vls_shd->workers_subscribed));
656
657 /*
658 * Check if we can change owner or close
659 */
660 vls_shd->owner_wrk_index = vls_shd->workers_subscribed[0];
661 vcl_send_session_worker_update (wrk, s, vls_shd->owner_wrk_index);
662
663 /* XXX is this still needed? */
664 if (vec_len (vls_shd->workers_subscribed) > 1)
665 clib_warning ("more workers need to be updated");
666
667done:
668
669 clib_spinlock_unlock (&vls_shd->lock);
670 vls_shared_data_pool_runlock ();
Florin Corasf9240dc2019-01-15 08:03:17 -0800671
672 return 0;
673}
674
675void
Florin Coras40c07ce2020-07-16 20:46:17 -0700676vls_init_share_session (vls_worker_t * vls_wrk, vcl_locked_session_t * vls)
Florin Corasf9240dc2019-01-15 08:03:17 -0800677{
Florin Coras40c07ce2020-07-16 20:46:17 -0700678 vls_shared_data_t *vls_shd;
679
680 u32 vls_shd_index = vls_shared_data_alloc ();
681
682 vls_shared_data_pool_rlock ();
683
684 vls_shd = vls_shared_data_get (vls_shd_index);
685 vls_shd->owner_wrk_index = vls_wrk->wrk_index;
686 vls->shared_data_index = vls_shd_index;
687 vec_add1 (vls_shd->workers_subscribed, vls_wrk->wrk_index);
688
689 vls_shared_data_pool_runlock ();
690}
691
692void
693vls_share_session (vls_worker_t * vls_wrk, vcl_locked_session_t * vls)
694{
695 vcl_worker_t *vcl_wrk = vcl_worker_get (vls_wrk->wrk_index);
Florin Coras243edd52020-03-04 22:20:12 +0000696 vls_shared_data_t *vls_shd;
697 vcl_session_t *s;
Florin Corasf9240dc2019-01-15 08:03:17 -0800698
Florin Coras243edd52020-03-04 22:20:12 +0000699 s = vcl_session_get (vcl_wrk, vls->session_index);
700 if (!s)
701 {
Florin Coras40c07ce2020-07-16 20:46:17 -0700702 clib_warning ("wrk %u session %u vls %u NOT AVAILABLE",
703 vcl_wrk->wrk_index, vls->session_index, vls->vls_index);
Florin Coras243edd52020-03-04 22:20:12 +0000704 return;
705 }
706
Florin Coras40c07ce2020-07-16 20:46:17 -0700707 ASSERT (vls->shared_data_index != ~0);
708
Florin Coras243edd52020-03-04 22:20:12 +0000709 /* Reinit session lock */
710 clib_spinlock_init (&vls->lock);
711
Florin Coras40c07ce2020-07-16 20:46:17 -0700712 vls_shared_data_pool_rlock ();
Florin Coras243edd52020-03-04 22:20:12 +0000713
Florin Coras40c07ce2020-07-16 20:46:17 -0700714 vls_shd = vls_shared_data_get (vls->shared_data_index);
Florin Coras243edd52020-03-04 22:20:12 +0000715
716 clib_spinlock_lock (&vls_shd->lock);
Florin Coras243edd52020-03-04 22:20:12 +0000717 vec_add1 (vls_shd->workers_subscribed, vls_wrk->wrk_index);
Florin Coras243edd52020-03-04 22:20:12 +0000718 clib_spinlock_unlock (&vls_shd->lock);
Florin Coras40c07ce2020-07-16 20:46:17 -0700719
Florin Coras243edd52020-03-04 22:20:12 +0000720 vls_shared_data_pool_runlock ();
721
Florin Corasf9240dc2019-01-15 08:03:17 -0800722 if (s->rx_fifo)
723 {
Florin Coras243edd52020-03-04 22:20:12 +0000724 svm_fifo_add_subscriber (s->rx_fifo, vcl_wrk->vpp_wrk_index);
725 svm_fifo_add_subscriber (s->tx_fifo, vcl_wrk->vpp_wrk_index);
Florin Corasf9240dc2019-01-15 08:03:17 -0800726 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700727 else if (s->session_state == VCL_STATE_LISTEN)
Florin Coras2d675d72019-01-28 15:54:27 -0800728 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700729 s->session_state = VCL_STATE_LISTEN_NO_MQ;
Florin Coras2d675d72019-01-28 15:54:27 -0800730 }
Florin Coras243edd52020-03-04 22:20:12 +0000731}
Florin Coras2d675d72019-01-28 15:54:27 -0800732
Florin Coras243edd52020-03-04 22:20:12 +0000733static void
734vls_share_sessions (vls_worker_t * vls_parent_wrk, vls_worker_t * vls_wrk)
735{
Florin Coras40c07ce2020-07-16 20:46:17 -0700736 vcl_locked_session_t *vls, *parent_vls;
Florin Coras243edd52020-03-04 22:20:12 +0000737
738 /* *INDENT-OFF* */
739 pool_foreach (vls, vls_wrk->vls_pool, ({
Florin Coras40c07ce2020-07-16 20:46:17 -0700740 /* Initialize sharing on parent session */
741 if (vls->shared_data_index == ~0)
742 {
743 parent_vls = vls_session_get (vls_parent_wrk, vls->vls_index);
744 vls_init_share_session (vls_parent_wrk, parent_vls);
745 vls->shared_data_index = parent_vls->shared_data_index;
746 }
747 vls_share_session (vls_wrk, vls);
Florin Coras243edd52020-03-04 22:20:12 +0000748 }));
749 /* *INDENT-ON* */
Florin Corasf9240dc2019-01-15 08:03:17 -0800750}
751
752void
753vls_worker_copy_on_fork (vcl_worker_t * parent_wrk)
754{
Florin Coras243edd52020-03-04 22:20:12 +0000755 vls_worker_t *vls_wrk = vls_worker_get_current (), *vls_parent_wrk;
Florin Corasf9240dc2019-01-15 08:03:17 -0800756 vcl_worker_t *wrk = vcl_worker_get_current ();
hanlinf8e13632020-08-21 11:05:36 +0800757 u32 vls_index, session_index, wrk_index;
758 vcl_session_handle_t sh;
Florin Corasf9240dc2019-01-15 08:03:17 -0800759
Florin Coras243edd52020-03-04 22:20:12 +0000760 /*
761 * init vcl worker
762 */
Florin Corasf9240dc2019-01-15 08:03:17 -0800763 wrk->vpp_event_queues = vec_dup (parent_wrk->vpp_event_queues);
764 wrk->sessions = pool_dup (parent_wrk->sessions);
765 wrk->session_index_by_vpp_handles =
766 hash_dup (parent_wrk->session_index_by_vpp_handles);
767
Florin Coras243edd52020-03-04 22:20:12 +0000768 /*
769 * init vls worker
770 */
771 vls_parent_wrk = vls_worker_get (parent_wrk->wrk_index);
hanlinf8e13632020-08-21 11:05:36 +0800772 /* *INDENT-OFF* */
773 hash_foreach (sh, vls_index, vls_parent_wrk->session_handle_to_vlsh_table,
774 ({
775 vcl_session_handle_parse (sh, &wrk_index, &session_index);
776 hash_set (vls_wrk->session_handle_to_vlsh_table,
777 vcl_session_handle_from_index (session_index), vls_index);
778 }));
779 /* *INDENT-ON* */
Florin Coras243edd52020-03-04 22:20:12 +0000780 vls_wrk->vls_pool = pool_dup (vls_parent_wrk->vls_pool);
Florin Coras2d675d72019-01-28 15:54:27 -0800781
Florin Coras243edd52020-03-04 22:20:12 +0000782 vls_share_sessions (vls_parent_wrk, vls_wrk);
Florin Corasf9240dc2019-01-15 08:03:17 -0800783}
784
Florin Coras0ef8ef22019-01-18 08:37:13 -0800785static void
786vls_mt_acq_locks (vcl_locked_session_t * vls, vls_mt_ops_t op, int *locks_acq)
787{
788 vcl_worker_t *wrk = vcl_worker_get_current ();
789 vcl_session_t *s = 0;
790 int is_nonblk = 0;
791
792 if (vls)
793 {
794 s = vcl_session_get (wrk, vls->session_index);
795 if (PREDICT_FALSE (!s))
796 return;
Florin Corasac422d62020-10-19 20:51:36 -0700797 is_nonblk = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800798 }
799
800 switch (op)
801 {
802 case VLS_MT_OP_READ:
803 if (!is_nonblk)
804 is_nonblk = vcl_session_read_ready (s) != 0;
805 if (!is_nonblk)
806 {
807 vls_mt_mq_lock ();
808 *locks_acq |= VLS_MT_LOCK_MQ;
809 }
810 break;
811 case VLS_MT_OP_WRITE:
Florin Coras78b5fa62019-02-21 20:04:15 -0800812 ASSERT (s);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800813 if (!is_nonblk)
814 is_nonblk = vcl_session_write_ready (s) != 0;
815 if (!is_nonblk)
816 {
817 vls_mt_mq_lock ();
818 *locks_acq |= VLS_MT_LOCK_MQ;
819 }
820 break;
821 case VLS_MT_OP_XPOLL:
822 vls_mt_mq_lock ();
823 *locks_acq |= VLS_MT_LOCK_MQ;
824 break;
825 case VLS_MT_OP_SPOOL:
826 vls_mt_spool_lock ();
827 *locks_acq |= VLS_MT_LOCK_SPOOL;
828 break;
829 default:
830 break;
831 }
832}
833
834static void
835vls_mt_rel_locks (int locks_acq)
836{
837 if (locks_acq & VLS_MT_LOCK_MQ)
838 vls_mt_mq_unlock ();
839 if (locks_acq & VLS_MT_LOCK_SPOOL)
840 vls_mt_create_unlock ();
841}
842
Florin Corasff40d8f2020-08-11 22:05:28 -0700843static inline u8
844vls_mt_session_should_migrate (vcl_locked_session_t * vls)
845{
846 return (vls_mt_wrk_supported ()
847 && vls->worker_index != vcl_get_worker_index ());
848}
849
hanlina3a48962020-07-13 11:09:15 +0800850static void
Florin Corasff40d8f2020-08-11 22:05:28 -0700851vls_mt_session_migrate (vcl_locked_session_t * vls)
hanlina3a48962020-07-13 11:09:15 +0800852{
853 u32 wrk_index = vcl_get_worker_index ();
854 vcl_worker_t *wrk;
855 u32 src_sid, sid;
856 vcl_session_t *session;
857 uword *p;
858
Florin Corasff40d8f2020-08-11 22:05:28 -0700859 ASSERT (vls_mt_wrk_supported () && vls->worker_index != wrk_index);
hanlina3a48962020-07-13 11:09:15 +0800860
Florin Corasff40d8f2020-08-11 22:05:28 -0700861 /*
862 * VCL session on current vcl worker already allocated. Update current
863 * owner worker and index and return
864 */
hanlina3a48962020-07-13 11:09:15 +0800865 if ((p = hash_get (vls->vcl_wrk_index_to_session_index, wrk_index)))
866 {
867 vls->worker_index = wrk_index;
868 vls->session_index = (u32) p[0];
869 return;
870 }
871
Florin Corasff40d8f2020-08-11 22:05:28 -0700872 /*
873 * Ask vcl worker that owns the original vcl session to clone it into
874 * current vcl worker session pool
875 */
876
hanlina3a48962020-07-13 11:09:15 +0800877 if (!(p = hash_get (vls->vcl_wrk_index_to_session_index,
878 vls->owner_vcl_wrk_index)))
879 {
880 VERR ("session in owner worker(%u) is free", vls->owner_vcl_wrk_index);
881 ASSERT (0);
882 return;
883 }
884
885 src_sid = (u32) p[0];
886 wrk = vcl_worker_get_current ();
887 session = vcl_session_alloc (wrk);
888 sid = session->session_index;
889 vls_send_clone_and_share_rpc (wrk, vls, sid, vls_get_worker_index (),
890 vls->owner_vcl_wrk_index, vls->vls_index,
891 src_sid);
892 session->session_index = sid;
893 vls->worker_index = wrk_index;
894 vls->session_index = sid;
895 hash_set (vls->vcl_wrk_index_to_session_index, wrk_index, sid);
896 VDBG (1, "migrate session of worker (session): %u (%u) -> %u (%u)",
897 vls->owner_vcl_wrk_index, src_sid, wrk_index, sid);
898
Florin Coras6c3b2182020-10-19 18:36:48 -0700899 if (PREDICT_FALSE ((session->flags & VCL_SESSION_F_IS_VEP)
900 && session->vep.next_sh != ~0))
hanlina3a48962020-07-13 11:09:15 +0800901 {
902 /* TODO: rollback? */
903 VERR ("can't migrate nonempty epoll session");
904 ASSERT (0);
905 return;
906 }
Florin Coras6c3b2182020-10-19 18:36:48 -0700907 else if (PREDICT_FALSE (!(session->flags & VCL_SESSION_F_IS_VEP) &&
Florin Corasc127d5a2020-10-14 16:35:58 -0700908 session->session_state != VCL_STATE_CLOSED))
hanlina3a48962020-07-13 11:09:15 +0800909 {
910 /* TODO: rollback? */
911 VERR ("migrate NOT supported, session_status (%u)",
912 session->session_state);
913 ASSERT (0);
914 return;
915 }
916}
917
Florin Corasff40d8f2020-08-11 22:05:28 -0700918static inline void
919vls_mt_detect (void)
920{
921 if (PREDICT_FALSE (vcl_get_worker_index () == ~0))
922 vls_mt_add ();
923}
Florin Coras0ef8ef22019-01-18 08:37:13 -0800924
Florin Corasff40d8f2020-08-11 22:05:28 -0700925#define vls_mt_guard(_vls, _op) \
926 int _locks_acq = 0; \
927 if (vls_mt_wrk_supported ()) \
928 { \
929 if (PREDICT_FALSE (_vls \
930 && ((vcl_locked_session_t *)_vls)->worker_index != \
931 vcl_get_worker_index ())) \
932 vls_mt_session_migrate (_vls); \
933 } \
934 else \
935 { \
936 if (PREDICT_FALSE (vlsl->vls_mt_n_threads > 1)) \
937 vls_mt_acq_locks (_vls, _op, &_locks_acq); \
938 } \
939
940#define vls_mt_unguard() \
941 if (PREDICT_FALSE (_locks_acq)) \
Florin Coras0ef8ef22019-01-18 08:37:13 -0800942 vls_mt_rel_locks (_locks_acq)
943
Florin Coras7baeb712019-01-04 17:05:43 -0800944int
945vls_write (vls_handle_t vlsh, void *buf, size_t nbytes)
946{
947 vcl_locked_session_t *vls;
948 int rv;
949
Florin Corasff40d8f2020-08-11 22:05:28 -0700950 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -0800951 if (!(vls = vls_get_w_dlock (vlsh)))
952 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800953
954 vls_mt_guard (vls, VLS_MT_OP_WRITE);
Florin Coras7baeb712019-01-04 17:05:43 -0800955 rv = vppcom_session_write (vls_to_sh_tu (vls), buf, nbytes);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800956 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -0800957 vls_get_and_unlock (vlsh);
958 return rv;
959}
960
961int
962vls_write_msg (vls_handle_t vlsh, void *buf, size_t nbytes)
963{
964 vcl_locked_session_t *vls;
965 int rv;
966
Florin Corasff40d8f2020-08-11 22:05:28 -0700967 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -0800968 if (!(vls = vls_get_w_dlock (vlsh)))
969 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800970 vls_mt_guard (vls, VLS_MT_OP_WRITE);
Florin Coras7baeb712019-01-04 17:05:43 -0800971 rv = vppcom_session_write_msg (vls_to_sh_tu (vls), buf, nbytes);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800972 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -0800973 vls_get_and_unlock (vlsh);
974 return rv;
975}
976
977int
978vls_sendto (vls_handle_t vlsh, void *buf, int buflen, int flags,
979 vppcom_endpt_t * ep)
980{
981 vcl_locked_session_t *vls;
982 int rv;
983
Florin Corasff40d8f2020-08-11 22:05:28 -0700984 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -0800985 if (!(vls = vls_get_w_dlock (vlsh)))
986 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800987 vls_mt_guard (vls, VLS_MT_OP_WRITE);
Florin Coras7baeb712019-01-04 17:05:43 -0800988 rv = vppcom_session_sendto (vls_to_sh_tu (vls), buf, buflen, flags, ep);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800989 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -0800990 vls_get_and_unlock (vlsh);
991 return rv;
992}
993
994ssize_t
995vls_read (vls_handle_t vlsh, void *buf, size_t nbytes)
996{
997 vcl_locked_session_t *vls;
998 int rv;
999
Florin Corasff40d8f2020-08-11 22:05:28 -07001000 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001001 if (!(vls = vls_get_w_dlock (vlsh)))
1002 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001003 vls_mt_guard (vls, VLS_MT_OP_READ);
Florin Coras7baeb712019-01-04 17:05:43 -08001004 rv = vppcom_session_read (vls_to_sh_tu (vls), buf, nbytes);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001005 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001006 vls_get_and_unlock (vlsh);
1007 return rv;
1008}
1009
1010ssize_t
1011vls_recvfrom (vls_handle_t vlsh, void *buffer, uint32_t buflen, int flags,
1012 vppcom_endpt_t * ep)
1013{
1014 vcl_locked_session_t *vls;
1015 int rv;
1016
Florin Corasff40d8f2020-08-11 22:05:28 -07001017 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001018 if (!(vls = vls_get_w_dlock (vlsh)))
1019 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001020 vls_mt_guard (vls, VLS_MT_OP_READ);
Florin Coras7baeb712019-01-04 17:05:43 -08001021 rv = vppcom_session_recvfrom (vls_to_sh_tu (vls), buffer, buflen, flags,
1022 ep);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001023 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001024 vls_get_and_unlock (vlsh);
1025 return rv;
1026}
1027
1028int
1029vls_attr (vls_handle_t vlsh, uint32_t op, void *buffer, uint32_t * buflen)
1030{
1031 vcl_locked_session_t *vls;
1032 int rv;
1033
Florin Corasff40d8f2020-08-11 22:05:28 -07001034 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001035 if (!(vls = vls_get_w_dlock (vlsh)))
1036 return VPPCOM_EBADFD;
Florin Corasff40d8f2020-08-11 22:05:28 -07001037 if (vls_mt_session_should_migrate (vls))
1038 vls_mt_session_migrate (vls);
Florin Coras7baeb712019-01-04 17:05:43 -08001039 rv = vppcom_session_attr (vls_to_sh_tu (vls), op, buffer, buflen);
1040 vls_get_and_unlock (vlsh);
1041 return rv;
1042}
1043
1044int
1045vls_bind (vls_handle_t vlsh, vppcom_endpt_t * ep)
1046{
1047 vcl_locked_session_t *vls;
1048 int rv;
1049
Florin Corasff40d8f2020-08-11 22:05:28 -07001050 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001051 if (!(vls = vls_get_w_dlock (vlsh)))
1052 return VPPCOM_EBADFD;
1053 rv = vppcom_session_bind (vls_to_sh_tu (vls), ep);
1054 vls_get_and_unlock (vlsh);
1055 return rv;
1056}
1057
1058int
1059vls_listen (vls_handle_t vlsh, int q_len)
1060{
1061 vcl_locked_session_t *vls;
1062 int rv;
1063
Florin Corasff40d8f2020-08-11 22:05:28 -07001064 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001065 if (!(vls = vls_get_w_dlock (vlsh)))
1066 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001067 vls_mt_guard (vls, VLS_MT_OP_XPOLL);
Florin Coras7baeb712019-01-04 17:05:43 -08001068 rv = vppcom_session_listen (vls_to_sh_tu (vls), q_len);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001069 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001070 vls_get_and_unlock (vlsh);
1071 return rv;
1072}
1073
1074int
1075vls_connect (vls_handle_t vlsh, vppcom_endpt_t * server_ep)
1076{
1077 vcl_locked_session_t *vls;
1078 int rv;
1079
Florin Corasff40d8f2020-08-11 22:05:28 -07001080 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001081 if (!(vls = vls_get_w_dlock (vlsh)))
1082 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001083 vls_mt_guard (vls, VLS_MT_OP_XPOLL);
Florin Coras7baeb712019-01-04 17:05:43 -08001084 rv = vppcom_session_connect (vls_to_sh_tu (vls), server_ep);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001085 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001086 vls_get_and_unlock (vlsh);
1087 return rv;
1088}
1089
Florin Coras2d675d72019-01-28 15:54:27 -08001090static inline void
1091vls_mp_checks (vcl_locked_session_t * vls, int is_add)
1092{
1093 vcl_worker_t *wrk = vcl_worker_get_current ();
1094 vcl_session_t *s;
Florin Coras243edd52020-03-04 22:20:12 +00001095 u32 owner_wrk;
Florin Coras2d675d72019-01-28 15:54:27 -08001096
hanlina3a48962020-07-13 11:09:15 +08001097 if (vls_mt_wrk_supported ())
1098 return;
1099
Florin Coras2d675d72019-01-28 15:54:27 -08001100 s = vcl_session_get (wrk, vls->session_index);
1101 switch (s->session_state)
1102 {
Florin Corasc127d5a2020-10-14 16:35:58 -07001103 case VCL_STATE_LISTEN:
Florin Coras2d675d72019-01-28 15:54:27 -08001104 if (is_add)
1105 {
Florin Coras243edd52020-03-04 22:20:12 +00001106 vls_listener_wrk_set (vls, vls->worker_index, 1 /* is_active */ );
Florin Coras2d675d72019-01-28 15:54:27 -08001107 break;
1108 }
1109 vls_listener_wrk_stop_listen (vls, vls->worker_index);
1110 break;
Florin Corasc127d5a2020-10-14 16:35:58 -07001111 case VCL_STATE_LISTEN_NO_MQ:
Florin Coras2d675d72019-01-28 15:54:27 -08001112 if (!is_add)
1113 break;
1114
1115 /* Register worker as listener */
1116 vls_listener_wrk_start_listen (vls, wrk->wrk_index);
1117
1118 /* If owner worker did not attempt to accept/xpoll on the session,
1119 * force a listen stop for it, since it may not be interested in
1120 * accepting new sessions.
1121 * This is pretty much a hack done to give app workers the illusion
1122 * that it is fine to listen and not accept new sessions for a
1123 * given listener. Without it, we would accumulate unhandled
1124 * accepts on the passive worker message queue. */
Florin Coras243edd52020-03-04 22:20:12 +00001125 owner_wrk = vls_shared_get_owner (vls);
1126 if (!vls_listener_wrk_is_active (vls, owner_wrk))
1127 vls_listener_wrk_stop_listen (vls, owner_wrk);
Florin Coras2d675d72019-01-28 15:54:27 -08001128 break;
1129 default:
1130 break;
1131 }
1132}
1133
Florin Coras7baeb712019-01-04 17:05:43 -08001134vls_handle_t
1135vls_accept (vls_handle_t listener_vlsh, vppcom_endpt_t * ep, int flags)
1136{
1137 vls_handle_t accepted_vlsh;
1138 vcl_locked_session_t *vls;
1139 int sh;
1140
Florin Corasff40d8f2020-08-11 22:05:28 -07001141 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001142 if (!(vls = vls_get_w_dlock (listener_vlsh)))
1143 return VPPCOM_EBADFD;
Florin Coras2d675d72019-01-28 15:54:27 -08001144 if (vcl_n_workers () > 1)
1145 vls_mp_checks (vls, 1 /* is_add */ );
Florin Coras0ef8ef22019-01-18 08:37:13 -08001146 vls_mt_guard (vls, VLS_MT_OP_SPOOL);
Florin Coras7baeb712019-01-04 17:05:43 -08001147 sh = vppcom_session_accept (vls_to_sh_tu (vls), ep, flags);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001148 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001149 vls_get_and_unlock (listener_vlsh);
1150 if (sh < 0)
1151 return sh;
1152 accepted_vlsh = vls_alloc (sh);
1153 if (PREDICT_FALSE (accepted_vlsh == VLS_INVALID_HANDLE))
1154 vppcom_session_close (sh);
1155 return accepted_vlsh;
1156}
1157
1158vls_handle_t
1159vls_create (uint8_t proto, uint8_t is_nonblocking)
1160{
1161 vcl_session_handle_t sh;
1162 vls_handle_t vlsh;
1163
Florin Corasff40d8f2020-08-11 22:05:28 -07001164 vls_mt_detect ();
Florin Coras0ef8ef22019-01-18 08:37:13 -08001165 vls_mt_guard (0, VLS_MT_OP_SPOOL);
Florin Coras7baeb712019-01-04 17:05:43 -08001166 sh = vppcom_session_create (proto, is_nonblocking);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001167 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001168 if (sh == INVALID_SESSION_ID)
1169 return VLS_INVALID_HANDLE;
1170
1171 vlsh = vls_alloc (sh);
1172 if (PREDICT_FALSE (vlsh == VLS_INVALID_HANDLE))
1173 vppcom_session_close (sh);
1174
1175 return vlsh;
1176}
1177
hanlina3a48962020-07-13 11:09:15 +08001178static void
Florin Corasff40d8f2020-08-11 22:05:28 -07001179vls_mt_session_cleanup (vcl_locked_session_t * vls)
hanlina3a48962020-07-13 11:09:15 +08001180{
Florin Corasff40d8f2020-08-11 22:05:28 -07001181 u32 session_index, wrk_index, current_vcl_wrk;
hanlina3a48962020-07-13 11:09:15 +08001182 vcl_worker_t *wrk = vcl_worker_get_current ();
1183
Florin Corasff40d8f2020-08-11 22:05:28 -07001184 ASSERT (vls_mt_wrk_supported ());
1185
1186 current_vcl_wrk = vcl_get_worker_index ();
hanlina3a48962020-07-13 11:09:15 +08001187
1188 /* *INDENT-OFF* */
1189 hash_foreach (wrk_index, session_index, vls->vcl_wrk_index_to_session_index,
1190 ({
Florin Corasff40d8f2020-08-11 22:05:28 -07001191 if (current_vcl_wrk != wrk_index)
1192 vls_send_session_cleanup_rpc (wrk, wrk_index, session_index);
hanlina3a48962020-07-13 11:09:15 +08001193 }));
1194 /* *INDENT-ON* */
1195 hash_free (vls->vcl_wrk_index_to_session_index);
1196}
1197
Florin Coras7baeb712019-01-04 17:05:43 -08001198int
1199vls_close (vls_handle_t vlsh)
1200{
1201 vcl_locked_session_t *vls;
Florin Corasf9240dc2019-01-15 08:03:17 -08001202 int rv;
Florin Coras7baeb712019-01-04 17:05:43 -08001203
Florin Corasff40d8f2020-08-11 22:05:28 -07001204 vls_mt_detect ();
1205 vls_mt_table_wlock ();
Florin Coras7baeb712019-01-04 17:05:43 -08001206
Florin Coras0ef8ef22019-01-18 08:37:13 -08001207 vls = vls_get_and_lock (vlsh);
1208 if (!vls)
1209 {
Florin Corasff40d8f2020-08-11 22:05:28 -07001210 vls_mt_table_wunlock ();
Florin Coras0ef8ef22019-01-18 08:37:13 -08001211 return VPPCOM_EBADFD;
1212 }
1213
hanlina3a48962020-07-13 11:09:15 +08001214 vls_mt_guard (vls, VLS_MT_OP_SPOOL);
Florin Corasf9240dc2019-01-15 08:03:17 -08001215
Florin Coras243edd52020-03-04 22:20:12 +00001216 if (vls_is_shared (vls))
1217 rv = vls_unshare_session (vls, vcl_worker_get_current ());
1218 else
1219 rv = vppcom_session_close (vls_to_sh (vls));
1220
Florin Corasff40d8f2020-08-11 22:05:28 -07001221 if (vls_mt_wrk_supported ())
1222 vls_mt_session_cleanup (vls);
hanlina3a48962020-07-13 11:09:15 +08001223
Florin Coras0ef8ef22019-01-18 08:37:13 -08001224 vls_free (vls);
1225 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001226
Florin Corasff40d8f2020-08-11 22:05:28 -07001227 vls_mt_table_wunlock ();
Florin Coras0ef8ef22019-01-18 08:37:13 -08001228
Florin Coras7baeb712019-01-04 17:05:43 -08001229 return rv;
1230}
1231
1232vls_handle_t
1233vls_epoll_create (void)
1234{
1235 vcl_session_handle_t sh;
1236 vls_handle_t vlsh;
1237
Florin Corasff40d8f2020-08-11 22:05:28 -07001238 vls_mt_detect ();
Florin Coras63d3ac62019-03-29 08:29:25 -07001239
Florin Coras7baeb712019-01-04 17:05:43 -08001240 sh = vppcom_epoll_create ();
1241 if (sh == INVALID_SESSION_ID)
1242 return VLS_INVALID_HANDLE;
1243
1244 vlsh = vls_alloc (sh);
1245 if (vlsh == VLS_INVALID_HANDLE)
1246 vppcom_session_close (sh);
1247
1248 return vlsh;
1249}
1250
Florin Coras2d675d72019-01-28 15:54:27 -08001251static void
1252vls_epoll_ctl_mp_checks (vcl_locked_session_t * vls, int op)
1253{
1254 if (vcl_n_workers () <= 1)
1255 {
1256 vlsl->epoll_mp_check = 1;
1257 return;
1258 }
1259
1260 if (op == EPOLL_CTL_MOD)
1261 return;
1262
1263 vlsl->epoll_mp_check = 1;
1264 vls_mp_checks (vls, op == EPOLL_CTL_ADD);
1265}
1266
Florin Coras7baeb712019-01-04 17:05:43 -08001267int
1268vls_epoll_ctl (vls_handle_t ep_vlsh, int op, vls_handle_t vlsh,
1269 struct epoll_event *event)
1270{
1271 vcl_locked_session_t *ep_vls, *vls;
1272 vcl_session_handle_t ep_sh, sh;
1273 int rv;
1274
Florin Corasff40d8f2020-08-11 22:05:28 -07001275 vls_mt_detect ();
1276 vls_mt_table_rlock ();
Florin Coras7baeb712019-01-04 17:05:43 -08001277 ep_vls = vls_get_and_lock (ep_vlsh);
1278 vls = vls_get_and_lock (vlsh);
Florin Corasff40d8f2020-08-11 22:05:28 -07001279
1280 if (vls_mt_session_should_migrate (ep_vls))
1281 vls_mt_session_migrate (ep_vls);
1282
Florin Coras7baeb712019-01-04 17:05:43 -08001283 ep_sh = vls_to_sh (ep_vls);
1284 sh = vls_to_sh (vls);
Florin Coras2d675d72019-01-28 15:54:27 -08001285
1286 if (PREDICT_FALSE (!vlsl->epoll_mp_check))
1287 vls_epoll_ctl_mp_checks (vls, op);
1288
Florin Corasff40d8f2020-08-11 22:05:28 -07001289 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -08001290
1291 rv = vppcom_epoll_ctl (ep_sh, op, sh, event);
1292
Florin Corasff40d8f2020-08-11 22:05:28 -07001293 vls_mt_table_rlock ();
Florin Coras7baeb712019-01-04 17:05:43 -08001294 ep_vls = vls_get (ep_vlsh);
1295 vls = vls_get (vlsh);
1296 vls_unlock (vls);
1297 vls_unlock (ep_vls);
Florin Corasff40d8f2020-08-11 22:05:28 -07001298 vls_mt_table_runlock ();
Florin Coras7baeb712019-01-04 17:05:43 -08001299 return rv;
1300}
1301
1302int
1303vls_epoll_wait (vls_handle_t ep_vlsh, struct epoll_event *events,
1304 int maxevents, double wait_for_time)
1305{
1306 vcl_locked_session_t *vls;
1307 int rv;
1308
Florin Corasff40d8f2020-08-11 22:05:28 -07001309 vls_mt_detect ();
Florin Coras7baeb712019-01-04 17:05:43 -08001310 if (!(vls = vls_get_w_dlock (ep_vlsh)))
1311 return VPPCOM_EBADFD;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001312 vls_mt_guard (0, VLS_MT_OP_XPOLL);
Florin Coras7baeb712019-01-04 17:05:43 -08001313 rv = vppcom_epoll_wait (vls_to_sh_tu (vls), events, maxevents,
1314 wait_for_time);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001315 vls_mt_unguard ();
Florin Coras7baeb712019-01-04 17:05:43 -08001316 vls_get_and_unlock (ep_vlsh);
1317 return rv;
1318}
1319
Florin Coras2d675d72019-01-28 15:54:27 -08001320static void
1321vls_select_mp_checks (vcl_si_set * read_map)
1322{
1323 vcl_locked_session_t *vls;
1324 vcl_worker_t *wrk;
1325 vcl_session_t *s;
1326 u32 si;
1327
1328 if (vcl_n_workers () <= 1)
1329 {
1330 vlsl->select_mp_check = 1;
1331 return;
1332 }
1333
1334 if (!read_map)
1335 return;
1336
1337 vlsl->select_mp_check = 1;
1338 wrk = vcl_worker_get_current ();
1339
1340 /* *INDENT-OFF* */
1341 clib_bitmap_foreach (si, read_map, ({
1342 s = vcl_session_get (wrk, si);
Florin Corasc127d5a2020-10-14 16:35:58 -07001343 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras2d675d72019-01-28 15:54:27 -08001344 {
1345 vls = vls_get (vls_session_index_to_vlsh (si));
1346 vls_mp_checks (vls, 1 /* is_add */);
1347 }
1348 }));
1349 /* *INDENT-ON* */
1350}
1351
Florin Coras0ef8ef22019-01-18 08:37:13 -08001352int
1353vls_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
1354 vcl_si_set * except_map, double wait_for_time)
1355{
1356 int rv;
Florin Coras2d675d72019-01-28 15:54:27 -08001357
Florin Corasff40d8f2020-08-11 22:05:28 -07001358 vls_mt_detect ();
Florin Coras0ef8ef22019-01-18 08:37:13 -08001359 vls_mt_guard (0, VLS_MT_OP_XPOLL);
Florin Coras2d675d72019-01-28 15:54:27 -08001360 if (PREDICT_FALSE (!vlsl->select_mp_check))
1361 vls_select_mp_checks (read_map);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001362 rv = vppcom_select (n_bits, read_map, write_map, except_map, wait_for_time);
1363 vls_mt_unguard ();
1364 return rv;
1365}
1366
Florin Corasf9240dc2019-01-15 08:03:17 -08001367static void
Florin Coras0ef8ef22019-01-18 08:37:13 -08001368vls_unshare_vcl_worker_sessions (vcl_worker_t * wrk)
1369{
1370 u32 current_wrk, is_current;
1371 vcl_locked_session_t *vls;
1372 vcl_session_t *s;
1373
Florin Coras14ed6df2019-03-06 21:13:42 -08001374 if (pool_elts (vcm->workers) <= 1)
1375 return;
1376
Florin Coras0ef8ef22019-01-18 08:37:13 -08001377 current_wrk = vcl_get_worker_index ();
1378 is_current = current_wrk == wrk->wrk_index;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001379
1380 /* *INDENT-OFF* */
1381 pool_foreach (s, wrk->sessions, ({
hanlinf8e13632020-08-21 11:05:36 +08001382 vls = vls_get (vls_si_wi_to_vlsh (s->session_index, wrk->wrk_index));
Florin Coras0ef8ef22019-01-18 08:37:13 -08001383 if (vls && (is_current || vls_is_shared_by_wrk (vls, current_wrk)))
1384 vls_unshare_session (vls, wrk);
1385 }));
1386 /* *INDENT-ON* */
Florin Coras0ef8ef22019-01-18 08:37:13 -08001387}
1388
1389static void
1390vls_cleanup_vcl_worker (vcl_worker_t * wrk)
1391{
Florin Coras243edd52020-03-04 22:20:12 +00001392 vls_worker_t *vls_wrk = vls_worker_get (wrk->wrk_index);
1393
Florin Coras0ef8ef22019-01-18 08:37:13 -08001394 /* Unshare sessions and also cleanup worker since child may have
1395 * called _exit () and therefore vcl may not catch the event */
1396 vls_unshare_vcl_worker_sessions (wrk);
1397 vcl_worker_cleanup (wrk, 1 /* notify vpp */ );
Florin Coras243edd52020-03-04 22:20:12 +00001398
1399 vls_worker_free (vls_wrk);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001400}
1401
1402static void
Florin Corasf9240dc2019-01-15 08:03:17 -08001403vls_cleanup_forked_child (vcl_worker_t * wrk, vcl_worker_t * child_wrk)
1404{
1405 vcl_worker_t *sub_child;
1406 int tries = 0;
1407
1408 if (child_wrk->forked_child != ~0)
1409 {
1410 sub_child = vcl_worker_get_if_valid (child_wrk->forked_child);
1411 if (sub_child)
1412 {
1413 /* Wait a bit, maybe the process is going away */
1414 while (kill (sub_child->current_pid, 0) >= 0 && tries++ < 50)
1415 usleep (1e3);
1416 if (kill (sub_child->current_pid, 0) < 0)
1417 vls_cleanup_forked_child (child_wrk, sub_child);
1418 }
1419 }
Florin Coras0ef8ef22019-01-18 08:37:13 -08001420 vls_cleanup_vcl_worker (child_wrk);
1421 VDBG (0, "Cleaned up forked child wrk %u", child_wrk->wrk_index);
Florin Corasf9240dc2019-01-15 08:03:17 -08001422 wrk->forked_child = ~0;
1423}
1424
1425static struct sigaction old_sa;
1426
1427static void
1428vls_intercept_sigchld_handler (int signum, siginfo_t * si, void *uc)
1429{
1430 vcl_worker_t *wrk, *child_wrk;
1431
1432 if (vcl_get_worker_index () == ~0)
1433 return;
1434
1435 if (sigaction (SIGCHLD, &old_sa, 0))
1436 {
1437 VERR ("couldn't restore sigchld");
1438 exit (-1);
1439 }
1440
1441 wrk = vcl_worker_get_current ();
1442 if (wrk->forked_child == ~0)
1443 return;
1444
1445 child_wrk = vcl_worker_get_if_valid (wrk->forked_child);
1446 if (!child_wrk)
1447 goto done;
1448
1449 if (si && si->si_pid != child_wrk->current_pid)
1450 {
1451 VDBG (0, "unexpected child pid %u", si->si_pid);
1452 goto done;
1453 }
1454 vls_cleanup_forked_child (wrk, child_wrk);
1455
1456done:
1457 if (old_sa.sa_flags & SA_SIGINFO)
1458 {
1459 void (*fn) (int, siginfo_t *, void *) = old_sa.sa_sigaction;
1460 fn (signum, si, uc);
1461 }
1462 else
1463 {
1464 void (*fn) (int) = old_sa.sa_handler;
1465 if (fn)
1466 fn (signum);
1467 }
1468}
1469
1470static void
1471vls_incercept_sigchld ()
1472{
1473 struct sigaction sa;
1474 clib_memset (&sa, 0, sizeof (sa));
1475 sa.sa_sigaction = vls_intercept_sigchld_handler;
1476 sa.sa_flags = SA_SIGINFO;
1477 if (sigaction (SIGCHLD, &sa, &old_sa))
1478 {
1479 VERR ("couldn't intercept sigchld");
1480 exit (-1);
1481 }
1482}
1483
1484static void
1485vls_app_pre_fork (void)
1486{
1487 vls_incercept_sigchld ();
1488 vcl_flush_mq_events ();
1489}
1490
1491static void
1492vls_app_fork_child_handler (void)
1493{
1494 vcl_worker_t *parent_wrk;
Florin Corasb88de902020-09-08 16:47:57 -07001495 int parent_wrk_index;
Florin Corasf9240dc2019-01-15 08:03:17 -08001496
1497 parent_wrk_index = vcl_get_worker_index ();
1498 VDBG (0, "initializing forked child %u with parent wrk %u", getpid (),
1499 parent_wrk_index);
1500
1501 /*
Florin Corasb88de902020-09-08 16:47:57 -07001502 * Clear old state
Florin Corasf9240dc2019-01-15 08:03:17 -08001503 */
1504 vcl_set_worker_index (~0);
Florin Corasf9240dc2019-01-15 08:03:17 -08001505
1506 /*
Florin Corasb88de902020-09-08 16:47:57 -07001507 * Allocate and register vcl worker with vpp
Florin Corasf9240dc2019-01-15 08:03:17 -08001508 */
Florin Corasb88de902020-09-08 16:47:57 -07001509 if (vppcom_worker_register ())
Florin Corasf9240dc2019-01-15 08:03:17 -08001510 {
Florin Corasb88de902020-09-08 16:47:57 -07001511 VERR ("couldn't register new worker!");
Florin Corasf9240dc2019-01-15 08:03:17 -08001512 return;
1513 }
1514
1515 /*
Florin Corasb88de902020-09-08 16:47:57 -07001516 * Allocate/initialize vls worker and share sessions
Florin Coras243edd52020-03-04 22:20:12 +00001517 */
1518 vls_worker_alloc ();
Florin Corasf9240dc2019-01-15 08:03:17 -08001519 parent_wrk = vcl_worker_get (parent_wrk_index);
1520 vls_worker_copy_on_fork (parent_wrk);
1521 parent_wrk->forked_child = vcl_get_worker_index ();
1522
Florin Coras0ef8ef22019-01-18 08:37:13 -08001523 /* Reset number of threads and set wrk index */
Florin Coras2d675d72019-01-28 15:54:27 -08001524 vlsl->vls_mt_n_threads = 0;
1525 vlsl->vls_wrk_index = vcl_get_worker_index ();
1526 vlsl->select_mp_check = 0;
1527 vlsl->epoll_mp_check = 0;
1528 vls_mt_locks_init ();
Florin Coras0ef8ef22019-01-18 08:37:13 -08001529
Florin Corasf9240dc2019-01-15 08:03:17 -08001530 VDBG (0, "forked child main worker initialized");
1531 vcm->forking = 0;
1532}
1533
1534static void
1535vls_app_fork_parent_handler (void)
1536{
1537 vcm->forking = 1;
1538 while (vcm->forking)
1539 ;
1540}
1541
Florin Coras0ef8ef22019-01-18 08:37:13 -08001542void
1543vls_app_exit (void)
1544{
Florin Coras243edd52020-03-04 22:20:12 +00001545 vls_worker_t *wrk = vls_worker_get_current ();
1546
Florin Coras0ef8ef22019-01-18 08:37:13 -08001547 /* Unshare the sessions. VCL will clean up the worker */
1548 vls_unshare_vcl_worker_sessions (vcl_worker_get_current ());
Florin Coras243edd52020-03-04 22:20:12 +00001549 vls_worker_free (wrk);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001550}
1551
Florin Coras40c07ce2020-07-16 20:46:17 -07001552static void
1553vls_clone_and_share_rpc_handler (void *args)
1554{
1555 vls_clone_and_share_msg_t *msg = (vls_clone_and_share_msg_t *) args;
1556 vls_worker_t *wrk = vls_worker_get_current (), *dst_wrk;
1557 vcl_locked_session_t *vls, *dst_vls;
hanlina3a48962020-07-13 11:09:15 +08001558 vcl_worker_t *vcl_wrk = vcl_worker_get_current (), *dst_vcl_wrk;
Florin Coras40c07ce2020-07-16 20:46:17 -07001559 vcl_session_t *s, *dst_s;
1560
1561 vls = vls_session_get (wrk, msg->vls_index);
Florin Coras40c07ce2020-07-16 20:46:17 -07001562
hanlina3a48962020-07-13 11:09:15 +08001563 if (!vls_mt_wrk_supported ())
1564 vls_init_share_session (wrk, vls);
1565
1566 s = vcl_session_get (vcl_wrk, msg->session_index);
Florin Coras40c07ce2020-07-16 20:46:17 -07001567 dst_wrk = vls_worker_get (msg->origin_vls_wrk);
hanlina3a48962020-07-13 11:09:15 +08001568 dst_vcl_wrk = vcl_worker_get (msg->origin_vcl_wrk);
Florin Coras40c07ce2020-07-16 20:46:17 -07001569 dst_vls = vls_session_get (dst_wrk, msg->origin_vls_index);
1570 dst_vls->shared_data_index = vls->shared_data_index;
hanlina3a48962020-07-13 11:09:15 +08001571 dst_s = vcl_session_get (dst_vcl_wrk, msg->origin_session_index);
Florin Coras40c07ce2020-07-16 20:46:17 -07001572 clib_memcpy (dst_s, s, sizeof (*s));
1573
hanlina3a48962020-07-13 11:09:15 +08001574 dst_vcl_wrk->rpc_done = 1;
1575
1576 VDBG (1, "proces session clone of worker (session): %u (%u) -> %u (%u)",
1577 vcl_wrk->wrk_index, msg->session_index, dst_vcl_wrk->wrk_index,
1578 msg->origin_session_index);
1579}
1580
1581static void
1582vls_session_cleanup_rpc_handler (void *args)
1583{
1584 vls_sess_cleanup_msg_t *msg = (vls_sess_cleanup_msg_t *) args;
1585 vcl_worker_t *wrk = vcl_worker_get_current ();
1586 vcl_worker_t *dst_wrk = vcl_worker_get (msg->origin_vcl_wrk);
1587
1588 vppcom_session_close (vcl_session_handle_from_index (msg->session_index));
1589
Florin Coras40c07ce2020-07-16 20:46:17 -07001590 dst_wrk->rpc_done = 1;
hanlina3a48962020-07-13 11:09:15 +08001591
1592 VDBG (1, "proces session cleanup of worker (session): %u (%u) from %u ()",
1593 wrk->wrk_index, msg->session_index, dst_wrk->wrk_index);
Florin Coras40c07ce2020-07-16 20:46:17 -07001594}
1595
1596static void
1597vls_rpc_handler (void *args)
1598{
1599 vls_rpc_msg_t *msg = (vls_rpc_msg_t *) args;
1600 switch (msg->type)
1601 {
1602 case VLS_RPC_CLONE_AND_SHARE:
1603 vls_clone_and_share_rpc_handler (msg->data);
1604 break;
hanlina3a48962020-07-13 11:09:15 +08001605 case VLS_RPC_SESS_CLEANUP:
1606 vls_session_cleanup_rpc_handler (msg->data);
1607 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001608 default:
1609 break;
1610 }
1611}
1612
1613void
hanlina3a48962020-07-13 11:09:15 +08001614vls_send_clone_and_share_rpc (vcl_worker_t * wrk,
1615 vcl_locked_session_t * vls, u32 session_index,
1616 u32 vls_wrk_index, u32 dst_wrk_index,
1617 u32 dst_vls_index, u32 dst_session_index)
Florin Coras40c07ce2020-07-16 20:46:17 -07001618{
1619 u8 data[sizeof (u8) + sizeof (vls_clone_and_share_msg_t)];
1620 vls_clone_and_share_msg_t *msg;
1621 vls_rpc_msg_t *rpc;
hanlina3a48962020-07-13 11:09:15 +08001622 int ret;
Florin Coras40c07ce2020-07-16 20:46:17 -07001623
1624 rpc = (vls_rpc_msg_t *) & data;
1625 rpc->type = VLS_RPC_CLONE_AND_SHARE;
1626 msg = (vls_clone_and_share_msg_t *) & rpc->data;
hanlina3a48962020-07-13 11:09:15 +08001627 msg->origin_vls_wrk = vls_wrk_index;
Florin Coras40c07ce2020-07-16 20:46:17 -07001628 msg->origin_vls_index = vls->vls_index;
hanlina3a48962020-07-13 11:09:15 +08001629 msg->origin_vcl_wrk = wrk->wrk_index;
1630 msg->origin_session_index = session_index;
Florin Coras40c07ce2020-07-16 20:46:17 -07001631 msg->vls_index = dst_vls_index;
hanlina3a48962020-07-13 11:09:15 +08001632 msg->session_index = dst_session_index;
Florin Coras40c07ce2020-07-16 20:46:17 -07001633
1634 wrk->rpc_done = 0;
hanlina3a48962020-07-13 11:09:15 +08001635 ret = vcl_send_worker_rpc (dst_wrk_index, rpc, sizeof (data));
1636
Florin Corasff40d8f2020-08-11 22:05:28 -07001637 VDBG (1, "send session clone to wrk (session): %u (%u) -> %u (%u), ret=%d",
hanlina3a48962020-07-13 11:09:15 +08001638 dst_wrk_index, msg->session_index, msg->origin_vcl_wrk,
1639 msg->origin_session_index, ret);
1640 while (!ret && !wrk->rpc_done)
1641 ;
1642}
1643
1644void
1645vls_send_session_cleanup_rpc (vcl_worker_t * wrk,
1646 u32 dst_wrk_index, u32 dst_session_index)
1647{
1648 u8 data[sizeof (u8) + sizeof (vls_sess_cleanup_msg_t)];
1649 vls_sess_cleanup_msg_t *msg;
1650 vls_rpc_msg_t *rpc;
1651 int ret;
1652
1653 rpc = (vls_rpc_msg_t *) & data;
1654 rpc->type = VLS_RPC_SESS_CLEANUP;
1655 msg = (vls_sess_cleanup_msg_t *) & rpc->data;
1656 msg->origin_vcl_wrk = wrk->wrk_index;
1657 msg->session_index = dst_session_index;
1658
1659 wrk->rpc_done = 0;
1660 ret = vcl_send_worker_rpc (dst_wrk_index, rpc, sizeof (data));
1661
Florin Corasff40d8f2020-08-11 22:05:28 -07001662 VDBG (1, "send session cleanup to wrk (session): %u (%u) from %u, ret=%d",
hanlina3a48962020-07-13 11:09:15 +08001663 dst_wrk_index, msg->session_index, msg->origin_vcl_wrk, ret);
1664 while (!ret && !wrk->rpc_done)
Florin Coras40c07ce2020-07-16 20:46:17 -07001665 ;
1666}
1667
Florin Coras7baeb712019-01-04 17:05:43 -08001668int
1669vls_app_create (char *app_name)
1670{
1671 int rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001672
Florin Coras7baeb712019-01-04 17:05:43 -08001673 if ((rv = vppcom_app_create (app_name)))
1674 return rv;
Florin Coras243edd52020-03-04 22:20:12 +00001675
Florin Coras2d675d72019-01-28 15:54:27 -08001676 vlsm = clib_mem_alloc (sizeof (vls_main_t));
1677 clib_memset (vlsm, 0, sizeof (*vlsm));
Florin Coras7baeb712019-01-04 17:05:43 -08001678 clib_rwlock_init (&vlsm->vls_table_lock);
Florin Coras243edd52020-03-04 22:20:12 +00001679 clib_rwlock_init (&vlsm->shared_data_lock);
1680 pool_alloc (vlsm->workers, vcm->cfg.max_workers);
1681
Florin Corasf9240dc2019-01-15 08:03:17 -08001682 pthread_atfork (vls_app_pre_fork, vls_app_fork_parent_handler,
1683 vls_app_fork_child_handler);
Florin Coras0ef8ef22019-01-18 08:37:13 -08001684 atexit (vls_app_exit);
Florin Coras243edd52020-03-04 22:20:12 +00001685 vls_worker_alloc ();
Florin Coras2d675d72019-01-28 15:54:27 -08001686 vlsl->vls_wrk_index = vcl_get_worker_index ();
1687 vls_mt_locks_init ();
Florin Coras40c07ce2020-07-16 20:46:17 -07001688 vcm->wrk_rpc_fn = vls_rpc_handler;
Florin Coras7baeb712019-01-04 17:05:43 -08001689 return VPPCOM_OK;
1690}
1691
hanlin4266d4d2020-05-19 17:34:17 +08001692unsigned char
1693vls_use_eventfd (void)
1694{
1695 return vcm->cfg.use_mq_eventfd;
1696}
1697
hanlina3a48962020-07-13 11:09:15 +08001698unsigned char
1699vls_mt_wrk_supported (void)
1700{
Florin Corasff40d8f2020-08-11 22:05:28 -07001701 return vcm->cfg.mt_wrk_supported;
hanlina3a48962020-07-13 11:09:15 +08001702}
1703
1704int
1705vls_use_real_epoll (void)
1706{
1707 if (vcl_get_worker_index () == ~0)
1708 return 0;
1709
1710 return vcl_worker_get_current ()->vcl_needs_real_epoll;
1711}
1712
1713void
1714vls_register_vcl_worker (void)
1715{
1716 if (vppcom_worker_register () != VPPCOM_OK)
1717 {
1718 VERR ("failed to register worker");
1719 return;
1720 }
1721}
1722
Florin Coras7baeb712019-01-04 17:05:43 -08001723/*
1724 * fd.io coding-style-patch-verification: ON
1725 *
1726 * Local Variables:
1727 * eval: (c-set-style "gnu")
1728 * End:
1729 */