blob: 4af79e9ebb0096ef4cd3824e62c9387060a5dcee [file] [log] [blame]
Florin Coras99368312018-08-02 10:45:44 -07001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2018-2019 Cisco and/or its affiliates.
Florin Coras99368312018-08-02 10:45:44 -07003 * 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_private.h>
17
Florin Coras3348a4c2018-09-07 17:09:35 -070018static pthread_key_t vcl_worker_stop_key;
Florin Coras134a9962018-08-28 11:32:04 -070019
Florin Coras99368312018-08-02 10:45:44 -070020vcl_mq_evt_conn_t *
Florin Coras134a9962018-08-28 11:32:04 -070021vcl_mq_evt_conn_alloc (vcl_worker_t * wrk)
Florin Coras99368312018-08-02 10:45:44 -070022{
23 vcl_mq_evt_conn_t *mqc;
Florin Coras134a9962018-08-28 11:32:04 -070024 pool_get (wrk->mq_evt_conns, mqc);
Florin Coras99368312018-08-02 10:45:44 -070025 memset (mqc, 0, sizeof (*mqc));
26 return mqc;
27}
28
29u32
Florin Coras134a9962018-08-28 11:32:04 -070030vcl_mq_evt_conn_index (vcl_worker_t * wrk, vcl_mq_evt_conn_t * mqc)
Florin Coras99368312018-08-02 10:45:44 -070031{
Florin Coras134a9962018-08-28 11:32:04 -070032 return (mqc - wrk->mq_evt_conns);
Florin Coras99368312018-08-02 10:45:44 -070033}
34
35vcl_mq_evt_conn_t *
Florin Coras134a9962018-08-28 11:32:04 -070036vcl_mq_evt_conn_get (vcl_worker_t * wrk, u32 mq_conn_idx)
Florin Coras99368312018-08-02 10:45:44 -070037{
Florin Coras134a9962018-08-28 11:32:04 -070038 return pool_elt_at_index (wrk->mq_evt_conns, mq_conn_idx);
Florin Coras99368312018-08-02 10:45:44 -070039}
40
Filip Tehlar8ccc6b32022-02-02 17:38:20 +000041/* Add unix socket to epoll.
42 * Used only to get a notification on socket close
43 * We can't use eventfd because we don't get notifications on that fds
44 */
45static int
46vcl_mq_epoll_add_api_sock (vcl_worker_t *wrk)
47{
48 clib_socket_t *cs = &wrk->app_api_sock;
49 struct epoll_event e = { 0 };
50 int rv;
51
52 e.data.u32 = ~0;
53 rv = epoll_ctl (wrk->mqs_epfd, EPOLL_CTL_ADD, cs->fd, &e);
54 if (rv != EEXIST && rv < 0)
55 return -1;
56
57 return 0;
58}
59
Florin Coras99368312018-08-02 10:45:44 -070060int
Florin Coras134a9962018-08-28 11:32:04 -070061vcl_mq_epoll_add_evfd (vcl_worker_t * wrk, svm_msg_q_t * mq)
Florin Coras99368312018-08-02 10:45:44 -070062{
63 struct epoll_event e = { 0 };
64 vcl_mq_evt_conn_t *mqc;
65 u32 mqc_index;
66 int mq_fd;
67
Florin Coras86f12322021-01-22 15:05:14 -080068 mq_fd = svm_msg_q_get_eventfd (mq);
Florin Coras99368312018-08-02 10:45:44 -070069
Florin Coras134a9962018-08-28 11:32:04 -070070 if (wrk->mqs_epfd < 0 || mq_fd == -1)
Florin Coras99368312018-08-02 10:45:44 -070071 return -1;
72
Florin Coras134a9962018-08-28 11:32:04 -070073 mqc = vcl_mq_evt_conn_alloc (wrk);
74 mqc_index = vcl_mq_evt_conn_index (wrk, mqc);
Florin Coras99368312018-08-02 10:45:44 -070075 mqc->mq_fd = mq_fd;
76 mqc->mq = mq;
77
78 e.events = EPOLLIN;
79 e.data.u32 = mqc_index;
Florin Coras134a9962018-08-28 11:32:04 -070080 if (epoll_ctl (wrk->mqs_epfd, EPOLL_CTL_ADD, mq_fd, &e) < 0)
Florin Coras99368312018-08-02 10:45:44 -070081 {
Florin Coras5e062572019-03-14 19:07:51 -070082 VDBG (0, "failed to add mq eventfd to mq epoll fd");
Florin Coras99368312018-08-02 10:45:44 -070083 return -1;
84 }
85
Filip Tehlar8ccc6b32022-02-02 17:38:20 +000086 if (vcl_mq_epoll_add_api_sock (wrk))
87 {
88 VDBG (0, "failed to add mq socket to mq epoll fd");
89 return -1;
90 }
91
Florin Coras99368312018-08-02 10:45:44 -070092 return mqc_index;
93}
94
95int
Florin Coras134a9962018-08-28 11:32:04 -070096vcl_mq_epoll_del_evfd (vcl_worker_t * wrk, u32 mqc_index)
Florin Coras99368312018-08-02 10:45:44 -070097{
98 vcl_mq_evt_conn_t *mqc;
99
Florin Coras134a9962018-08-28 11:32:04 -0700100 if (wrk->mqs_epfd || mqc_index == ~0)
Florin Coras99368312018-08-02 10:45:44 -0700101 return -1;
102
Florin Coras134a9962018-08-28 11:32:04 -0700103 mqc = vcl_mq_evt_conn_get (wrk, mqc_index);
104 if (epoll_ctl (wrk->mqs_epfd, EPOLL_CTL_DEL, mqc->mq_fd, 0) < 0)
Florin Coras99368312018-08-02 10:45:44 -0700105 {
Florin Coras5e062572019-03-14 19:07:51 -0700106 VDBG (0, "failed to del mq eventfd to mq epoll fd");
Florin Coras99368312018-08-02 10:45:44 -0700107 return -1;
108 }
109 return 0;
110}
111
Florin Coras134a9962018-08-28 11:32:04 -0700112static vcl_worker_t *
113vcl_worker_alloc (void)
114{
115 vcl_worker_t *wrk;
116 pool_get (vcm->workers, wrk);
117 memset (wrk, 0, sizeof (*wrk));
118 wrk->wrk_index = wrk - vcm->workers;
Florin Coras01f3f892018-12-02 12:45:53 -0800119 wrk->forked_child = ~0;
Florin Coras134a9962018-08-28 11:32:04 -0700120 return wrk;
121}
122
123static void
124vcl_worker_free (vcl_worker_t * wrk)
125{
126 pool_put (vcm->workers, wrk);
127}
128
Florin Coras935ce752020-09-08 22:43:47 -0700129int
130vcl_api_app_worker_add (void)
131{
132 if (vcm->cfg.vpp_app_socket_api)
133 return vcl_sapi_app_worker_add ();
134
135 return vcl_bapi_app_worker_add ();
136}
137
138void
139vcl_api_app_worker_del (vcl_worker_t * wrk)
140{
Florin Corasd04ea442022-03-30 16:08:25 -0700141 if (wrk->api_client_handle == ~0)
142 return;
143
Florin Coras935ce752020-09-08 22:43:47 -0700144 if (vcm->cfg.vpp_app_socket_api)
145 return vcl_sapi_app_worker_del (wrk);
146
147 vcl_bapi_app_worker_del (wrk);
148}
149
Florin Coras47c40e22018-11-26 17:01:36 -0800150void
Florin Coras01f3f892018-12-02 12:45:53 -0800151vcl_worker_cleanup (vcl_worker_t * wrk, u8 notify_vpp)
Florin Coras134a9962018-08-28 11:32:04 -0700152{
Florin Coras47c40e22018-11-26 17:01:36 -0800153 clib_spinlock_lock (&vcm->workers_lock);
Florin Coras940f78f2018-11-30 12:11:20 -0800154 if (notify_vpp)
Florin Coras935ce752020-09-08 22:43:47 -0700155 vcl_api_app_worker_del (wrk);
Florin Coras64cf4592019-12-12 12:01:24 -0800156
Florin Coras940f78f2018-11-30 12:11:20 -0800157 if (wrk->mqs_epfd > 0)
158 close (wrk->mqs_epfd);
Florin Corascba215d2021-06-16 14:41:01 -0700159 pool_free (wrk->sessions);
160 pool_free (wrk->mq_evt_conns);
Florin Coras134a9962018-08-28 11:32:04 -0700161 hash_free (wrk->session_index_by_vpp_handles);
Florin Coras134a9962018-08-28 11:32:04 -0700162 vec_free (wrk->mq_events);
163 vec_free (wrk->mq_msg_vector);
Florin Corascba215d2021-06-16 14:41:01 -0700164 vec_free (wrk->unhandled_evts_vector);
165 vec_free (wrk->pending_session_wrk_updates);
166 clib_bitmap_free (wrk->rd_bitmap);
167 clib_bitmap_free (wrk->wr_bitmap);
168 clib_bitmap_free (wrk->ex_bitmap);
Florin Coras134a9962018-08-28 11:32:04 -0700169 vcl_worker_free (wrk);
Florin Coras47c40e22018-11-26 17:01:36 -0800170 clib_spinlock_unlock (&vcm->workers_lock);
Florin Coras47c40e22018-11-26 17:01:36 -0800171}
172
173static void
174vcl_worker_cleanup_cb (void *arg)
175{
Florin Coras70e21972021-04-07 00:16:37 -0700176 vcl_worker_t *wrk;
177 u32 wrk_index;
178
179 wrk_index = vcl_get_worker_index ();
180 wrk = vcl_worker_get_if_valid (wrk_index);
181 if (!wrk)
182 return;
183
Florin Coras01f3f892018-12-02 12:45:53 -0800184 vcl_worker_cleanup (wrk, 1 /* notify vpp */ );
185 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -0800186 VDBG (0, "cleaned up worker %u", wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700187}
188
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000189void
190vcl_worker_detach_sessions (vcl_worker_t *wrk)
191{
192 session_event_t *e;
193 vcl_session_t *s;
Florin Corasfe6d8a32022-03-01 18:07:09 -0800194 uword *seg_indices_map = 0;
195 u32 seg_index, val, *seg_indices = 0;
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000196
197 close (wrk->app_api_sock.fd);
198 pool_foreach (s, wrk->sessions)
199 {
200 if (s->session_state == VCL_STATE_LISTEN)
201 {
202 s->session_state = VCL_STATE_LISTEN_NO_MQ;
203 continue;
204 }
Florin Corasfe6d8a32022-03-01 18:07:09 -0800205 if ((s->flags & VCL_SESSION_F_IS_VEP) ||
206 s->session_state == VCL_STATE_LISTEN_NO_MQ ||
207 s->session_state == VCL_STATE_CLOSED)
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000208 continue;
209
Florin Corasfe6d8a32022-03-01 18:07:09 -0800210 hash_set (seg_indices_map, s->tx_fifo->segment_index, 1);
211
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000212 s->session_state = VCL_STATE_DETACHED;
213 vec_add2 (wrk->unhandled_evts_vector, e, 1);
214 e->event_type = SESSION_CTRL_EVT_DISCONNECTED;
215 e->session_index = s->session_index;
216 e->postponed = 1;
217 }
218
Florin Corasfe6d8a32022-03-01 18:07:09 -0800219 hash_foreach (seg_index, val, seg_indices_map,
220 ({ vec_add1 (seg_indices, seg_index); }));
221
222 vcl_segment_detach_segments (seg_indices);
223
224 /* Detach worker's mqs segment */
225 vcl_segment_detach (vcl_vpp_worker_segment_handle (wrk->wrk_index));
226
227 vec_free (seg_indices);
228 hash_free (seg_indices_map);
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000229}
230
Florin Coras134a9962018-08-28 11:32:04 -0700231vcl_worker_t *
232vcl_worker_alloc_and_init ()
233{
234 vcl_worker_t *wrk;
235
236 /* This was initialized already */
237 if (vcl_get_worker_index () != ~0)
238 return 0;
239
Florin Coras94fef3e2021-09-23 15:08:05 -0700240 /* Grab lock before selecting mem thread index */
241 clib_spinlock_lock (&vcm->workers_lock);
242
Florin Corasd2c9e702019-08-02 10:53:01 -0700243 /* Use separate heap map entry for worker */
244 clib_mem_set_thread_index ();
245
Florin Corasde9f08b2018-09-07 14:32:58 -0700246 if (pool_elts (vcm->workers) == vcm->cfg.max_workers)
247 {
248 VDBG (0, "max-workers %u limit reached", vcm->cfg.max_workers);
Florin Coras94fef3e2021-09-23 15:08:05 -0700249 wrk = 0;
250 goto done;
Florin Corasde9f08b2018-09-07 14:32:58 -0700251 }
252
Florin Coras134a9962018-08-28 11:32:04 -0700253 wrk = vcl_worker_alloc ();
254 vcl_set_worker_index (wrk->wrk_index);
Florin Corasd04ea442022-03-30 16:08:25 -0700255 wrk->api_client_handle = ~0;
Florin Coras47c40e22018-11-26 17:01:36 -0800256 wrk->thread_id = pthread_self ();
257 wrk->current_pid = getpid ();
Florin Coras134a9962018-08-28 11:32:04 -0700258
259 wrk->mqs_epfd = -1;
260 if (vcm->cfg.use_mq_eventfd)
261 {
hanlina3a48962020-07-13 11:09:15 +0800262 wrk->vcl_needs_real_epoll = 1;
Florin Coras134a9962018-08-28 11:32:04 -0700263 wrk->mqs_epfd = epoll_create (1);
hanlina3a48962020-07-13 11:09:15 +0800264 wrk->vcl_needs_real_epoll = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700265 if (wrk->mqs_epfd < 0)
266 {
267 clib_unix_warning ("epoll_create() returned");
Florin Coras47c40e22018-11-26 17:01:36 -0800268 goto done;
Florin Coras134a9962018-08-28 11:32:04 -0700269 }
270 }
271
Florin Corasfa3884f2021-06-22 20:04:46 -0700272 wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX;
Florin Coras134a9962018-08-28 11:32:04 -0700273 wrk->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Florin Coras134a9962018-08-28 11:32:04 -0700274 clib_time_init (&wrk->clib_time);
275 vec_validate (wrk->mq_events, 64);
276 vec_validate (wrk->mq_msg_vector, 128);
277 vec_reset_length (wrk->mq_msg_vector);
Florin Coras86f04502018-09-12 16:08:01 -0700278 vec_validate (wrk->unhandled_evts_vector, 128);
279 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras134a9962018-08-28 11:32:04 -0700280
Florin Coras47c40e22018-11-26 17:01:36 -0800281done:
Florin Coras94fef3e2021-09-23 15:08:05 -0700282 clib_spinlock_unlock (&vcm->workers_lock);
Florin Coras47c40e22018-11-26 17:01:36 -0800283 return wrk;
284}
285
286int
287vcl_worker_register_with_vpp (void)
288{
289 vcl_worker_t *wrk = vcl_worker_get_current ();
290
291 clib_spinlock_lock (&vcm->workers_lock);
Florin Coras134a9962018-08-28 11:32:04 -0700292
Florin Coras935ce752020-09-08 22:43:47 -0700293 if (vcl_api_app_worker_add ())
Florin Coras134a9962018-08-28 11:32:04 -0700294 {
Florin Coras5e062572019-03-14 19:07:51 -0700295 VDBG (0, "failed to add worker to vpp");
Florin Corasb88de902020-09-08 16:47:57 -0700296 clib_spinlock_unlock (&vcm->workers_lock);
Florin Coras47c40e22018-11-26 17:01:36 -0800297 return -1;
Florin Coras134a9962018-08-28 11:32:04 -0700298 }
Florin Coras47c40e22018-11-26 17:01:36 -0800299 if (pthread_key_create (&vcl_worker_stop_key, vcl_worker_cleanup_cb))
Florin Coras5e062572019-03-14 19:07:51 -0700300 VDBG (0, "failed to add pthread cleanup function");
Florin Coras3348a4c2018-09-07 17:09:35 -0700301 if (pthread_setspecific (vcl_worker_stop_key, &wrk->thread_id))
Florin Coras5e062572019-03-14 19:07:51 -0700302 VDBG (0, "failed to setup key value");
Florin Coras134a9962018-08-28 11:32:04 -0700303
Florin Corasde9f08b2018-09-07 14:32:58 -0700304 clib_spinlock_unlock (&vcm->workers_lock);
305
Florin Coras134a9962018-08-28 11:32:04 -0700306 VDBG (0, "added worker %u", wrk->wrk_index);
Florin Coras47c40e22018-11-26 17:01:36 -0800307 return 0;
308}
Florin Coras134a9962018-08-28 11:32:04 -0700309
Florin Coras458089b2019-08-21 16:20:44 -0700310svm_msg_q_t *
311vcl_worker_ctrl_mq (vcl_worker_t * wrk)
312{
313 return wrk->ctrl_mq;
314}
315
Florin Coras0ef8ef22019-01-18 08:37:13 -0800316int
Florin Corasc127d5a2020-10-14 16:35:58 -0700317vcl_session_read_ready (vcl_session_t * s)
Florin Coras0ef8ef22019-01-18 08:37:13 -0800318{
Florin Coras6c3b2182020-10-19 18:36:48 -0700319 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras0ef8ef22019-01-18 08:37:13 -0800320 {
321 VDBG (0, "ERROR: session %u: cannot read from an epoll session!",
Florin Corasc127d5a2020-10-14 16:35:58 -0700322 s->session_index);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800323 return VPPCOM_EBADFD;
324 }
325
Florin Coras1bc919e2020-10-18 20:17:49 -0700326 if (vcl_session_is_open (s))
Florin Coras0ef8ef22019-01-18 08:37:13 -0800327 {
Florin Coras1bc919e2020-10-18 20:17:49 -0700328 if (vcl_session_is_ct (s))
329 return svm_fifo_max_dequeue_cons (s->ct_rx_fifo);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800330
Florin Coras1bc919e2020-10-18 20:17:49 -0700331 if (s->is_dgram)
332 {
333 session_dgram_pre_hdr_t ph;
334 u32 max_deq;
335
336 max_deq = svm_fifo_max_dequeue_cons (s->rx_fifo);
337 if (max_deq <= SESSION_CONN_HDR_LEN)
338 return 0;
339 if (svm_fifo_peek (s->rx_fifo, 0, sizeof (ph), (u8 *) & ph) < 0)
340 return 0;
341 if (ph.data_length + SESSION_CONN_HDR_LEN > max_deq)
342 return 0;
343
Florin Coras0eff4e72023-07-26 11:27:33 -0700344 /* Allow zero legth datagrams */
345 return ph.data_length ? ph.data_length : 1;
Florin Coras1bc919e2020-10-18 20:17:49 -0700346 }
347
348 return svm_fifo_max_dequeue_cons (s->rx_fifo);
349 }
350 else if (s->session_state == VCL_STATE_LISTEN)
351 {
352 return clib_fifo_elts (s->accept_evts_fifo);
353 }
354 else
355 {
356 return (s->session_state == VCL_STATE_DISCONNECT) ?
Florin Corasc127d5a2020-10-14 16:35:58 -0700357 VPPCOM_ECONNRESET : VPPCOM_ENOTCONN;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800358 }
Florin Coras0ef8ef22019-01-18 08:37:13 -0800359}
360
361int
Florin Corasc127d5a2020-10-14 16:35:58 -0700362vcl_session_write_ready (vcl_session_t * s)
Florin Coras0ef8ef22019-01-18 08:37:13 -0800363{
Florin Coras6c3b2182020-10-19 18:36:48 -0700364 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras0ef8ef22019-01-18 08:37:13 -0800365 {
366 VDBG (0, "session %u [0x%llx]: cannot write to an epoll session!",
Florin Corasc127d5a2020-10-14 16:35:58 -0700367 s->session_index, s->vpp_handle);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800368 return VPPCOM_EBADFD;
369 }
370
Florin Coras1bc919e2020-10-18 20:17:49 -0700371 if (vcl_session_is_open (s))
372 {
373 if (vcl_session_is_ct (s))
374 return svm_fifo_max_enqueue_prod (s->ct_tx_fifo);
375
376 if (s->is_dgram)
377 {
378 u32 max_enq = svm_fifo_max_enqueue_prod (s->tx_fifo);
379
380 if (max_enq <= sizeof (session_dgram_hdr_t))
381 return 0;
382 return max_enq - sizeof (session_dgram_hdr_t);
383 }
384
385 return svm_fifo_max_enqueue_prod (s->tx_fifo);
386 }
387 else if (s->session_state == VCL_STATE_LISTEN)
Florin Coras0ef8ef22019-01-18 08:37:13 -0800388 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700389 if (s->tx_fifo)
390 return svm_fifo_max_enqueue_prod (s->tx_fifo);
Florin Coras0ef8ef22019-01-18 08:37:13 -0800391 else
392 return VPPCOM_EBADFD;
393 }
liuyacancde17692021-06-24 20:39:02 +0800394 else if (s->session_state == VCL_STATE_UPDATED)
395 {
396 return 0;
397 }
Florin Coras1bc919e2020-10-18 20:17:49 -0700398 else
Florin Coras0ef8ef22019-01-18 08:37:13 -0800399 {
Florin Coras1bc919e2020-10-18 20:17:49 -0700400 return (s->session_state == VCL_STATE_DISCONNECT) ?
Florin Corasc127d5a2020-10-14 16:35:58 -0700401 VPPCOM_ECONNRESET : VPPCOM_ENOTCONN;
Florin Coras0ef8ef22019-01-18 08:37:13 -0800402 }
Florin Coras0ef8ef22019-01-18 08:37:13 -0800403}
404
Florin Corasc4c4cf52019-08-24 18:17:34 -0700405int
Florin Corasa54b62d2021-04-21 09:05:56 -0700406vcl_session_alloc_ext_cfg (vcl_session_t *s,
Florin Coras87f63892021-05-01 16:01:40 -0700407 transport_endpt_ext_cfg_type_t type, u32 len)
Florin Corasa54b62d2021-04-21 09:05:56 -0700408{
409 if (s->ext_config)
410 return -1;
411
Florin Coras87f63892021-05-01 16:01:40 -0700412 s->ext_config = clib_mem_alloc (len);
413 clib_memset (s->ext_config, 0, len);
414 s->ext_config->len = len;
Florin Corasa54b62d2021-04-21 09:05:56 -0700415 s->ext_config->type = type;
416
417 return 0;
418}
419
420int
Florin Corasc4c4cf52019-08-24 18:17:34 -0700421vcl_segment_attach (u64 segment_handle, char *name, ssvm_segment_type_t type,
422 int fd)
423{
424 fifo_segment_create_args_t _a, *a = &_a;
425 int rv;
426
427 memset (a, 0, sizeof (*a));
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100428 a->segment_name = name;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700429 a->segment_type = type;
430
431 if (type == SSVM_SEGMENT_MEMFD)
432 a->memfd_fd = fd;
433
Florin Corasda8f2182019-12-22 12:48:05 -0800434 clib_rwlock_writer_lock (&vcm->segment_table_lock);
435
Florin Corasc4c4cf52019-08-24 18:17:34 -0700436 if ((rv = fifo_segment_attach (&vcm->segment_main, a)))
437 {
438 clib_warning ("svm_fifo_segment_attach ('%s') failed", name);
Florin Corasaaad4f92023-02-07 09:01:59 -0800439 clib_rwlock_writer_unlock (&vcm->segment_table_lock);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700440 return rv;
441 }
Florin Corasda8f2182019-12-22 12:48:05 -0800442 hash_set (vcm->segment_table, segment_handle, a->new_segment_indices[0]);
443
444 clib_rwlock_writer_unlock (&vcm->segment_table_lock);
445
Florin Coras4c6bbd72021-02-23 08:07:57 -0800446 vec_free (a->new_segment_indices);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700447 return 0;
448}
449
Florin Corasda8f2182019-12-22 12:48:05 -0800450u32
451vcl_segment_table_lookup (u64 segment_handle)
452{
453 uword *seg_indexp;
454
455 clib_rwlock_reader_lock (&vcm->segment_table_lock);
456 seg_indexp = hash_get (vcm->segment_table, segment_handle);
457 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
458
459 if (!seg_indexp)
460 return VCL_INVALID_SEGMENT_INDEX;
461 return ((u32) * seg_indexp);
462}
463
Florin Corasc4c4cf52019-08-24 18:17:34 -0700464void
465vcl_segment_detach (u64 segment_handle)
466{
467 fifo_segment_main_t *sm = &vcm->segment_main;
468 fifo_segment_t *segment;
469 u32 segment_index;
470
471 segment_index = vcl_segment_table_lookup (segment_handle);
472 if (segment_index == (u32) ~ 0)
473 return;
Florin Corasda8f2182019-12-22 12:48:05 -0800474
475 clib_rwlock_writer_lock (&vcm->segment_table_lock);
476
Florin Corasc4c4cf52019-08-24 18:17:34 -0700477 segment = fifo_segment_get_segment (sm, segment_index);
478 fifo_segment_delete (sm, segment);
Florin Corasda8f2182019-12-22 12:48:05 -0800479 hash_unset (vcm->segment_table, segment_handle);
480
481 clib_rwlock_writer_unlock (&vcm->segment_table_lock);
482
Florin Coras1f40ab42023-06-13 17:18:56 -0700483 VDBG (0, "detached segment %u handle %lx", segment_index, segment_handle);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700484}
485
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000486void
Florin Corasfe6d8a32022-03-01 18:07:09 -0800487vcl_segment_detach_segments (u32 *seg_indices)
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000488{
Florin Corasfe6d8a32022-03-01 18:07:09 -0800489 u64 *seg_handles = 0, *seg_handle, key;
490 u32 *seg_index;
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000491 u32 val;
492
493 clib_rwlock_reader_lock (&vcm->segment_table_lock);
494
Florin Corasfe6d8a32022-03-01 18:07:09 -0800495 vec_foreach (seg_index, seg_indices)
496 {
497 /* clang-format off */
498 hash_foreach (key, val, vcm->segment_table, ({
499 if (val == *seg_index)
500 {
501 vec_add1 (seg_handles, key);
502 break;
503 }
504 }));
505 /* clang-format on */
506 }
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000507
508 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
509
Florin Corasfe6d8a32022-03-01 18:07:09 -0800510 vec_foreach (seg_handle, seg_handles)
511 vcl_segment_detach (seg_handle[0]);
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000512
Florin Corasfe6d8a32022-03-01 18:07:09 -0800513 vec_free (seg_handles);
Filip Tehlar8ccc6b32022-02-02 17:38:20 +0000514}
515
Florin Corasc547e912020-12-08 17:50:45 -0800516int
517vcl_segment_attach_session (uword segment_handle, uword rxf_offset,
Florin Corasf6e284b2021-07-21 18:17:20 -0700518 uword txf_offset, uword mq_offset, u32 mq_index,
519 u8 is_ct, vcl_session_t *s)
Florin Corasc547e912020-12-08 17:50:45 -0800520{
Florin Corasb4624182020-12-11 13:58:12 -0800521 u32 fs_index, eqs_index;
Florin Corasc547e912020-12-08 17:50:45 -0800522 svm_fifo_t *rxf, *txf;
523 fifo_segment_t *fs;
Florin Corasb4624182020-12-11 13:58:12 -0800524 u64 eqs_handle;
Florin Corasc547e912020-12-08 17:50:45 -0800525
526 fs_index = vcl_segment_table_lookup (segment_handle);
527 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
528 {
529 VDBG (0, "ERROR: segment for session %u is not mounted!",
530 s->session_index);
531 return -1;
532 }
533
Florin Coras14f066e2020-12-10 18:52:40 -0800534 if (!is_ct && mq_offset != (uword) ~0)
Florin Corasb4624182020-12-11 13:58:12 -0800535 {
536 eqs_handle = vcl_vpp_worker_segment_handle (0);
537 eqs_index = vcl_segment_table_lookup (eqs_handle);
538 ASSERT (eqs_index != VCL_INVALID_SEGMENT_INDEX);
539 }
540
Florin Corasc547e912020-12-08 17:50:45 -0800541 clib_rwlock_reader_lock (&vcm->segment_table_lock);
542
543 fs = fifo_segment_get_segment (&vcm->segment_main, fs_index);
Florin Coras14f066e2020-12-10 18:52:40 -0800544 rxf = fifo_segment_alloc_fifo_w_offset (fs, rxf_offset);
545 txf = fifo_segment_alloc_fifo_w_offset (fs, txf_offset);
Florin Corascbb5e822021-02-20 10:42:22 -0800546 rxf->segment_index = fs_index;
547 txf->segment_index = fs_index;
Florin Corasc547e912020-12-08 17:50:45 -0800548
Florin Corasb4624182020-12-11 13:58:12 -0800549 if (!is_ct && mq_offset != (uword) ~0)
550 {
551 fs = fifo_segment_get_segment (&vcm->segment_main, eqs_index);
Florin Corasf6e284b2021-07-21 18:17:20 -0700552 s->vpp_evt_q = fifo_segment_msg_q_attach (fs, mq_offset, mq_index);
Florin Corasb4624182020-12-11 13:58:12 -0800553 }
554
Florin Corasc547e912020-12-08 17:50:45 -0800555 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
556
557 if (!is_ct)
558 {
Florin Coras14f066e2020-12-10 18:52:40 -0800559 rxf->shr->client_session_index = s->session_index;
560 txf->shr->client_session_index = s->session_index;
Florin Corasc547e912020-12-08 17:50:45 -0800561 rxf->client_thread_index = vcl_get_worker_index ();
562 txf->client_thread_index = vcl_get_worker_index ();
563 s->rx_fifo = rxf;
564 s->tx_fifo = txf;
565 }
566 else
567 {
568 s->ct_rx_fifo = rxf;
569 s->ct_tx_fifo = txf;
570 }
571
572 return 0;
573}
Florin Corasc4c4cf52019-08-24 18:17:34 -0700574
Florin Corascbb5e822021-02-20 10:42:22 -0800575void
576vcl_session_detach_fifos (vcl_session_t *s)
577{
578 fifo_segment_t *fs;
579
580 if (!s->rx_fifo)
581 return;
582
583 clib_rwlock_reader_lock (&vcm->segment_table_lock);
584
585 fs = fifo_segment_get_segment_if_valid (&vcm->segment_main,
586 s->rx_fifo->segment_index);
587 if (!fs)
588 goto done;
589
590 fifo_segment_free_client_fifo (fs, s->rx_fifo);
591 fifo_segment_free_client_fifo (fs, s->tx_fifo);
592 if (s->ct_rx_fifo)
593 {
Florin Corascf0e2572021-04-14 17:55:02 -0700594 fs = fifo_segment_get_segment_if_valid (&vcm->segment_main,
595 s->ct_rx_fifo->segment_index);
596 if (!fs)
597 goto done;
598
Florin Corascbb5e822021-02-20 10:42:22 -0800599 fifo_segment_free_client_fifo (fs, s->ct_rx_fifo);
600 fifo_segment_free_client_fifo (fs, s->ct_tx_fifo);
601 }
602
603done:
604 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
605}
606
Florin Corasb4624182020-12-11 13:58:12 -0800607int
608vcl_segment_attach_mq (uword segment_handle, uword mq_offset, u32 mq_index,
609 svm_msg_q_t **mq)
610{
611 fifo_segment_t *fs;
612 u32 fs_index;
613
614 fs_index = vcl_segment_table_lookup (segment_handle);
615 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
616 {
617 VDBG (0, "ERROR: mq segment %lx for is not attached!", segment_handle);
618 return -1;
619 }
620
621 clib_rwlock_reader_lock (&vcm->segment_table_lock);
622
623 fs = fifo_segment_get_segment (&vcm->segment_main, fs_index);
624 *mq = fifo_segment_msg_q_attach (fs, mq_offset, mq_index);
625
626 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
627
628 return 0;
629}
630
Florin Coras80b74252021-01-27 18:08:25 -0800631int
632vcl_segment_discover_mqs (uword segment_handle, int *fds, u32 n_fds)
633{
634 fifo_segment_t *fs;
635 u32 fs_index;
636
637 fs_index = vcl_segment_table_lookup (segment_handle);
638 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
639 {
640 VDBG (0, "ERROR: mq segment %lx for is not attached!", segment_handle);
641 return -1;
642 }
643
644 clib_rwlock_reader_lock (&vcm->segment_table_lock);
645
646 fs = fifo_segment_get_segment (&vcm->segment_main, fs_index);
647 fifo_segment_msg_qs_discover (fs, fds, n_fds);
648
649 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
650
651 return 0;
652}
653
Florin Coras4ac25842021-04-19 17:34:54 -0700654svm_fifo_chunk_t *
655vcl_segment_alloc_chunk (uword segment_handle, u32 slice_index, u32 size,
656 uword *offset)
657{
658 svm_fifo_chunk_t *c;
659 fifo_segment_t *fs;
660 u32 fs_index;
661
662 fs_index = vcl_segment_table_lookup (segment_handle);
663 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
664 {
665 VDBG (0, "ERROR: mq segment %lx for is not attached!", segment_handle);
666 return 0;
667 }
668
669 clib_rwlock_reader_lock (&vcm->segment_table_lock);
670
671 fs = fifo_segment_get_segment (&vcm->segment_main, fs_index);
672 c = fifo_segment_alloc_chunk_w_slice (fs, slice_index, size);
673 *offset = fifo_segment_chunk_offset (fs, c);
674
675 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
676
677 return c;
678}
679
Florin Coras8eb8d502021-06-16 14:46:57 -0700680int
681vcl_session_share_fifos (vcl_session_t *s, svm_fifo_t *rxf, svm_fifo_t *txf)
682{
683 vcl_worker_t *wrk = vcl_worker_get_current ();
684 fifo_segment_t *fs;
685
686 clib_rwlock_reader_lock (&vcm->segment_table_lock);
687
688 fs = fifo_segment_get_segment (&vcm->segment_main, rxf->segment_index);
689 s->rx_fifo = fifo_segment_duplicate_fifo (fs, rxf);
690 s->tx_fifo = fifo_segment_duplicate_fifo (fs, txf);
691
692 clib_rwlock_reader_unlock (&vcm->segment_table_lock);
693
694 svm_fifo_add_subscriber (s->rx_fifo, wrk->vpp_wrk_index);
695 svm_fifo_add_subscriber (s->tx_fifo, wrk->vpp_wrk_index);
696
697 return 0;
698}
699
Florin Coras60687192021-11-29 21:00:47 -0800700const char *
701vcl_session_state_str (vcl_session_state_t state)
702{
703 char *st;
704
705 switch (state)
706 {
707 case VCL_STATE_CLOSED:
708 st = "STATE_CLOSED";
709 break;
710 case VCL_STATE_LISTEN:
711 st = "STATE_LISTEN";
712 break;
713 case VCL_STATE_READY:
714 st = "STATE_READY";
715 break;
716 case VCL_STATE_VPP_CLOSING:
717 st = "STATE_VPP_CLOSING";
718 break;
719 case VCL_STATE_DISCONNECT:
720 st = "STATE_DISCONNECT";
721 break;
722 case VCL_STATE_DETACHED:
723 st = "STATE_DETACHED";
724 break;
725 case VCL_STATE_UPDATED:
726 st = "STATE_UPDATED";
727 break;
728 case VCL_STATE_LISTEN_NO_MQ:
729 st = "STATE_LISTEN_NO_MQ";
730 break;
731 default:
732 st = "UNKNOWN_STATE";
733 break;
734 }
735
736 return st;
737}
738
739u8 *
740vcl_format_ip4_address (u8 *s, va_list *args)
741{
742 u8 *a = va_arg (*args, u8 *);
743 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
744}
745
746u8 *
747vcl_format_ip6_address (u8 *s, va_list *args)
748{
749 ip6_address_t *a = va_arg (*args, ip6_address_t *);
750 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
751
752 i_max_n_zero = ARRAY_LEN (a->as_u16);
753 max_n_zeros = 0;
754 i_first_zero = i_max_n_zero;
755 n_zeros = 0;
756 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
757 {
758 u32 is_zero = a->as_u16[i] == 0;
759 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
760 {
761 i_first_zero = i;
762 n_zeros = 0;
763 }
764 n_zeros += is_zero;
765 if ((!is_zero && n_zeros > max_n_zeros) ||
766 (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
767 {
768 i_max_n_zero = i_first_zero;
769 max_n_zeros = n_zeros;
770 i_first_zero = ARRAY_LEN (a->as_u16);
771 n_zeros = 0;
772 }
773 }
774
775 last_double_colon = 0;
776 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
777 {
778 if (i == i_max_n_zero && max_n_zeros > 1)
779 {
780 s = format (s, "::");
781 i += max_n_zeros - 1;
782 last_double_colon = 1;
783 }
784 else
785 {
786 s = format (s, "%s%x", (last_double_colon || i == 0) ? "" : ":",
787 clib_net_to_host_u16 (a->as_u16[i]));
788 last_double_colon = 0;
789 }
790 }
791
792 return s;
793}
794
795/* Format an IP46 address. */
796u8 *
797vcl_format_ip46_address (u8 *s, va_list *args)
798{
799 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
800 ip46_type_t type = va_arg (*args, ip46_type_t);
801 int is_ip4 = 1;
802
803 switch (type)
804 {
805 case IP46_TYPE_ANY:
806 is_ip4 = ip46_address_is_ip4 (ip46);
807 break;
808 case IP46_TYPE_IP4:
809 is_ip4 = 1;
810 break;
811 case IP46_TYPE_IP6:
812 is_ip4 = 0;
813 break;
814 }
815
816 return is_ip4 ? format (s, "%U", vcl_format_ip4_address, &ip46->ip4) :
817 format (s, "%U", vcl_format_ip6_address, &ip46->ip6);
818}
819
Florin Coras99368312018-08-02 10:45:44 -0700820/*
821 * fd.io coding-style-patch-verification: ON
822 *
823 * Local Variables:
824 * eval: (c-set-style "gnu")
825 * End:
826 */