blob: 560560c8d64bb6bc108ba4a5fb775dd9e95b5db8 [file] [log] [blame]
Florin Coras6cf30ad2017-04-04 23:08:23 -07001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Florin Coras6cf30ad2017-04-04 23:08:23 -07003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/session/segment_manager.h>
17#include <vnet/session/session.h>
18#include <vnet/session/application.h>
19
Florin Coras88001c62019-04-24 14:44:46 -070020typedef struct segment_manager_main_
21{
22 segment_manager_t *segment_managers; /**< Pool of segment managers */
Florin Coras88001c62019-04-24 14:44:46 -070023 u32 seg_name_counter; /**< Counter for segment names */
Florin Corasa332c462018-01-31 06:52:17 -080024
Florin Coras88001c62019-04-24 14:44:46 -070025 /*
26 * Configuration
27 */
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +000028 u32 default_fifo_size; /**< default rx/tx fifo size */
29 u32 default_segment_size; /**< default fifo segment size */
30 u32 default_app_mq_size; /**< default app msg q size */
31 u32 default_max_fifo_size; /**< default max fifo size */
32 u8 default_high_watermark; /**< default high watermark % */
33 u8 default_low_watermark; /**< default low watermark % */
Florin Coras88001c62019-04-24 14:44:46 -070034} segment_manager_main_t;
Florin Corasa5464812017-04-19 13:00:05 -070035
Florin Coras88001c62019-04-24 14:44:46 -070036static segment_manager_main_t sm_main;
Florin Coras6cf30ad2017-04-04 23:08:23 -070037
Florin Coras88001c62019-04-24 14:44:46 -070038#define segment_manager_foreach_segment_w_lock(VAR, SM, BODY) \
39do { \
40 clib_rwlock_reader_lock (&(SM)->segments_rwlock); \
Damjan Marionb2c31b62020-12-13 21:47:40 +010041 pool_foreach((VAR), ((SM)->segments)) (BODY); \
Florin Coras88001c62019-04-24 14:44:46 -070042 clib_rwlock_reader_unlock (&(SM)->segments_rwlock); \
43} while (0)
44
45static segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -080046segment_manager_properties_get (segment_manager_t * sm)
Florin Corasad0c77f2017-11-09 18:00:15 -080047{
Florin Corasab2f6db2018-08-31 14:31:41 -070048 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
49 return application_get_segment_manager_properties (app_wrk->app_index);
Florin Corasa332c462018-01-31 06:52:17 -080050}
51
Florin Coras88001c62019-04-24 14:44:46 -070052segment_manager_props_t *
53segment_manager_props_init (segment_manager_props_t * props)
Florin Corasa332c462018-01-31 06:52:17 -080054{
Florin Coras88001c62019-04-24 14:44:46 -070055 props->add_segment_size = sm_main.default_segment_size;
56 props->rx_fifo_size = sm_main.default_fifo_size;
57 props->tx_fifo_size = sm_main.default_fifo_size;
58 props->evt_q_size = sm_main.default_app_mq_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +000059 props->max_fifo_size = sm_main.default_max_fifo_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000060 props->high_watermark = sm_main.default_high_watermark;
61 props->low_watermark = sm_main.default_low_watermark;
Florin Coras62ddc032019-12-08 18:30:42 -080062 props->n_slices = vlib_num_workers () + 1;
Florin Corasad0c77f2017-11-09 18:00:15 -080063 return props;
64}
65
Florin Corasbf395972020-04-30 15:05:24 +000066u8
Florin Coras9d063042017-09-14 03:08:00 -040067segment_manager_app_detached (segment_manager_t * sm)
68{
Florin Corasc8e812f2020-05-14 05:32:18 +000069 return (sm->flags & SEG_MANAGER_F_DETACHED);
Dave Wallace7b749fe2017-07-05 14:30:46 -040070}
71
Florin Coras4e4531e2017-11-06 23:27:56 -080072void
73segment_manager_app_detach (segment_manager_t * sm)
74{
Florin Corasc8e812f2020-05-14 05:32:18 +000075 sm->flags |= SEG_MANAGER_F_DETACHED;
Florin Coras4e4531e2017-11-06 23:27:56 -080076}
77
Florin Corasa332c462018-01-31 06:52:17 -080078always_inline u32
Florin Coras88001c62019-04-24 14:44:46 -070079segment_manager_segment_index (segment_manager_t * sm, fifo_segment_t * seg)
Florin Corasc87c91d2017-08-16 19:55:49 -070080{
Florin Corasa332c462018-01-31 06:52:17 -080081 return (seg - sm->segments);
82}
83
84/**
Florin Coras88001c62019-04-24 14:44:46 -070085 * Adds segment to segment manager's pool
86 *
87 * If needed a writer's lock is acquired before allocating a new segment
88 * to avoid affecting any of the segments pool readers.
89 */
90int
Florin Corasef4f3e72019-12-11 14:27:53 -080091segment_manager_add_segment (segment_manager_t * sm, uword segment_size)
Florin Coras88001c62019-04-24 14:44:46 -070092{
93 segment_manager_main_t *smm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -070094 segment_manager_props_t *props;
95 fifo_segment_t *fs;
Florin Coras9a45bd82020-12-28 16:28:07 -080096 u32 fs_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -070097 u8 *seg_name;
98 int rv;
99
100 props = segment_manager_properties_get (sm);
101
102 /* Not configured for addition of new segments and not first */
103 if (!props->add_segment && !segment_size)
104 {
105 clib_warning ("cannot allocate new segment");
106 return VNET_API_ERROR_INVALID_VALUE;
107 }
108
109 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700110 * Allocate fifo segment and grab lock if needed
Florin Coras88001c62019-04-24 14:44:46 -0700111 */
112 if (vlib_num_workers ())
113 clib_rwlock_writer_lock (&sm->segments_rwlock);
114
115 pool_get_zero (sm->segments, fs);
116
117 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700118 * Allocate ssvm segment
Florin Coras88001c62019-04-24 14:44:46 -0700119 */
120 segment_size = segment_size ? segment_size : props->add_segment_size;
Florin Coras9a45bd82020-12-28 16:28:07 -0800121 segment_size = round_pow2 (segment_size, clib_mem_get_page_size ());
Florin Corasf9d4ab42019-05-11 16:55:53 -0700122
Florin Coras88001c62019-04-24 14:44:46 -0700123 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
124 {
125 seg_name = format (0, "%d-%d%c", getpid (), smm->seg_name_counter++, 0);
Florin Coras88001c62019-04-24 14:44:46 -0700126 }
127 else
Florin Coras2a7c0b62020-09-28 23:40:28 -0700128 {
129 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
130 application_t *app = application_get (app_wrk->app_index);
131 seg_name = format (0, "%v segment%c", app->name, 0);
132 }
Florin Coras88001c62019-04-24 14:44:46 -0700133
134 fs->ssvm.ssvm_size = segment_size;
135 fs->ssvm.name = seg_name;
Florin Coras9a45bd82020-12-28 16:28:07 -0800136 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700137
Florin Coras5220a262020-09-29 18:11:24 -0700138 if ((rv = ssvm_server_init (&fs->ssvm, props->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700139 {
140 clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
141 segment_size);
Florin Coras88001c62019-04-24 14:44:46 -0700142 pool_put (sm->segments, fs);
143 goto done;
144 }
145
Florin Corasf9d4ab42019-05-11 16:55:53 -0700146 /*
147 * Initialize fifo segment
148 */
Florin Coras62ddc032019-12-08 18:30:42 -0800149 fs->n_slices = props->n_slices;
Florin Coras88001c62019-04-24 14:44:46 -0700150 fifo_segment_init (fs);
151
152 /*
153 * Save segment index before dropping lock, if any held
154 */
155 fs_index = fs - sm->segments;
156
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000157 /*
158 * Set watermarks in segment
159 */
160 fs->h->high_watermark = sm->high_watermark;
161 fs->h->low_watermark = sm->low_watermark;
Florin Coras2de9c0f2020-02-02 19:30:39 +0000162 fs->h->pct_first_alloc = props->pct_first_alloc;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000163 fs->h->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
164
Florin Coras88001c62019-04-24 14:44:46 -0700165done:
166
167 if (vlib_num_workers ())
168 clib_rwlock_writer_unlock (&sm->segments_rwlock);
169
170 return fs_index;
171}
172
173/**
Florin Corasa332c462018-01-31 06:52:17 -0800174 * Remove segment without lock
175 */
Florin Corasf8f516a2018-02-08 15:10:09 -0800176void
Florin Coras88001c62019-04-24 14:44:46 -0700177segment_manager_del_segment (segment_manager_t * sm, fifo_segment_t * fs)
Florin Corasa332c462018-01-31 06:52:17 -0800178{
Florin Corasa332c462018-01-31 06:52:17 -0800179 if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800180 {
Florin Corasea7e7082020-07-07 17:57:28 -0700181 if (!segment_manager_app_detached (sm))
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800182 {
183 app_worker_t *app_wrk;
184 u64 segment_handle;
185 app_wrk = app_worker_get (sm->app_wrk_index);
186 segment_handle = segment_manager_segment_handle (sm, fs);
187 app_worker_del_segment_notify (app_wrk, segment_handle);
188 }
189 }
Florin Corasa332c462018-01-31 06:52:17 -0800190
Florin Corasc547e912020-12-08 17:50:45 -0800191 fifo_segment_cleanup (fs);
Florin Corasa332c462018-01-31 06:52:17 -0800192 ssvm_delete (&fs->ssvm);
193
194 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400195 clib_memset (fs, 0xfb, sizeof (*fs));
Florin Corasa332c462018-01-31 06:52:17 -0800196 pool_put (sm->segments, fs);
197}
198
Florin Coras57660d92020-04-04 22:45:34 +0000199static fifo_segment_t *
200segment_manager_get_segment_if_valid (segment_manager_t * sm,
201 u32 segment_index)
202{
203 if (pool_is_free_index (sm->segments, segment_index))
204 return 0;
205 return pool_elt_at_index (sm->segments, segment_index);
206}
207
Florin Corasa332c462018-01-31 06:52:17 -0800208/**
209 * Removes segment after acquiring writer lock
210 */
Florin Coras99368312018-08-02 10:45:44 -0700211static inline void
Florin Coras2d0e3de2020-10-23 16:31:40 -0700212sm_lock_and_del_segment_inline (segment_manager_t * sm, u32 fs_index)
Florin Corasa332c462018-01-31 06:52:17 -0800213{
Florin Coras88001c62019-04-24 14:44:46 -0700214 fifo_segment_t *fs;
Florin Corasa332c462018-01-31 06:52:17 -0800215 u8 is_prealloc;
216
217 clib_rwlock_writer_lock (&sm->segments_rwlock);
Florin Coras57660d92020-04-04 22:45:34 +0000218
219 fs = segment_manager_get_segment_if_valid (sm, fs_index);
220 if (!fs)
221 goto done;
222
Florin Coras88001c62019-04-24 14:44:46 -0700223 is_prealloc = fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800224 if (is_prealloc && !segment_manager_app_detached (sm))
Florin Coras57660d92020-04-04 22:45:34 +0000225 goto done;
Florin Corasa332c462018-01-31 06:52:17 -0800226
227 segment_manager_del_segment (sm, fs);
Florin Coras57660d92020-04-04 22:45:34 +0000228
229done:
Florin Corasa332c462018-01-31 06:52:17 -0800230 clib_rwlock_writer_unlock (&sm->segments_rwlock);
231}
232
Florin Coras2d0e3de2020-10-23 16:31:40 -0700233void
234segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index)
235{
236 sm_lock_and_del_segment_inline (sm, fs_index);
237}
238
Florin Corasa332c462018-01-31 06:52:17 -0800239/**
240 * Reads a segment from the segment manager's pool without lock
241 */
Florin Coras88001c62019-04-24 14:44:46 -0700242fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800243segment_manager_get_segment (segment_manager_t * sm, u32 segment_index)
244{
245 return pool_elt_at_index (sm->segments, segment_index);
246}
247
Florin Corasfa76a762018-11-29 12:40:10 -0800248u64
249segment_manager_segment_handle (segment_manager_t * sm,
Florin Coras88001c62019-04-24 14:44:46 -0700250 fifo_segment_t * segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800251{
252 u32 segment_index = segment_manager_segment_index (sm, segment);
253 return (((u64) segment_manager_index (sm) << 32) | segment_index);
254}
255
Florin Coras88001c62019-04-24 14:44:46 -0700256u64
257segment_manager_make_segment_handle (u32 segment_manager_index,
258 u32 segment_index)
259{
260 return (((u64) segment_manager_index << 32) | segment_index);
261}
262
263fifo_segment_t *
Florin Corasfa76a762018-11-29 12:40:10 -0800264segment_manager_get_segment_w_handle (u64 segment_handle)
265{
266 u32 sm_index, segment_index;
267 segment_manager_t *sm;
268
269 segment_manager_parse_segment_handle (segment_handle, &sm_index,
270 &segment_index);
271 sm = segment_manager_get (sm_index);
272 if (!sm || pool_is_free_index (sm->segments, segment_index))
273 return 0;
274 return pool_elt_at_index (sm->segments, segment_index);
275}
276
Florin Corasa332c462018-01-31 06:52:17 -0800277/**
278 * Reads a segment from the segment manager's pool and acquires reader lock
279 *
280 * Caller must drop the reader's lock by calling
281 * @ref segment_manager_segment_reader_unlock once it finishes working with
282 * the segment.
283 */
Florin Coras88001c62019-04-24 14:44:46 -0700284fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800285segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index)
286{
287 clib_rwlock_reader_lock (&sm->segments_rwlock);
288 return pool_elt_at_index (sm->segments, segment_index);
289}
290
291void
Florin Coras75ccf7b2020-03-05 19:44:02 +0000292segment_manager_segment_reader_lock (segment_manager_t * sm)
293{
294 clib_rwlock_reader_lock (&sm->segments_rwlock);
295}
296
297void
Florin Corasa332c462018-01-31 06:52:17 -0800298segment_manager_segment_reader_unlock (segment_manager_t * sm)
299{
300 clib_rwlock_reader_unlock (&sm->segments_rwlock);
301}
302
303void
304segment_manager_segment_writer_unlock (segment_manager_t * sm)
305{
306 clib_rwlock_writer_unlock (&sm->segments_rwlock);
307}
308
Florin Corasa332c462018-01-31 06:52:17 -0800309segment_manager_t *
Florin Coras88001c62019-04-24 14:44:46 -0700310segment_manager_alloc (void)
Florin Corasa332c462018-01-31 06:52:17 -0800311{
Florin Coras88001c62019-04-24 14:44:46 -0700312 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800313 segment_manager_t *sm;
Florin Coras88001c62019-04-24 14:44:46 -0700314
315 pool_get_zero (smm->segment_managers, sm);
Florin Corasa332c462018-01-31 06:52:17 -0800316 clib_rwlock_init (&sm->segments_rwlock);
317 return sm;
318}
319
Florin Corasa332c462018-01-31 06:52:17 -0800320int
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000321segment_manager_init (segment_manager_t * sm)
Florin Corasa332c462018-01-31 06:52:17 -0800322{
Florin Coras88001c62019-04-24 14:44:46 -0700323 segment_manager_props_t *props;
Florin Corasa332c462018-01-31 06:52:17 -0800324
325 props = segment_manager_properties_get (sm);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000326
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000327 sm->max_fifo_size = props->max_fifo_size ?
328 props->max_fifo_size : sm_main.default_max_fifo_size;
329 sm->max_fifo_size = clib_max (sm->max_fifo_size, 4096);
330
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000331 segment_manager_set_watermarks (sm,
332 props->high_watermark,
333 props->low_watermark);
Florin Corasa107f402020-09-29 19:18:46 -0700334 return 0;
335}
336
337/**
338 * Initializes segment manager based on options provided.
339 * Returns error if ssvm segment(s) allocation fails.
340 */
341int
342segment_manager_init_first (segment_manager_t * sm)
343{
344 segment_manager_props_t *props;
345 uword first_seg_size;
346 fifo_segment_t *fs;
347 int fs_index, i;
348
349 segment_manager_init (sm);
350 props = segment_manager_properties_get (sm);
351 first_seg_size = clib_max (props->segment_size,
352 sm_main.default_segment_size);
Florin Corasa332c462018-01-31 06:52:17 -0800353
Florin Coras9845c202020-04-28 01:54:22 +0000354 if (props->prealloc_fifos)
Florin Corasa332c462018-01-31 06:52:17 -0800355 {
Florin Coras9845c202020-04-28 01:54:22 +0000356 u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
357 u32 rx_rounded_data_size, tx_rounded_data_size;
358 u32 prealloc_fifo_pairs = props->prealloc_fifos;
359 u32 rx_fifo_size, tx_fifo_size, pair_size;
360 u32 approx_segment_count;
361
Florin Corasa332c462018-01-31 06:52:17 -0800362 /* Figure out how many segments should be preallocated */
363 rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
364 tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
365
366 rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
367 tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
368 pair_size = rx_fifo_size + tx_fifo_size;
369
370 approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
371 if (first_seg_size > approx_total_size)
372 max_seg_size = first_seg_size;
373 approx_segment_count = (approx_total_size + (max_seg_size - 1))
374 / max_seg_size;
375
376 /* Allocate the segments */
377 for (i = 0; i < approx_segment_count + 1; i++)
378 {
Florin Coras9845c202020-04-28 01:54:22 +0000379 fs_index = segment_manager_add_segment (sm, max_seg_size);
380 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800381 {
382 clib_warning ("Failed to preallocate segment %d", i);
Florin Coras9845c202020-04-28 01:54:22 +0000383 return fs_index;
Florin Corasa332c462018-01-31 06:52:17 -0800384 }
385
Florin Coras9845c202020-04-28 01:54:22 +0000386 fs = segment_manager_get_segment (sm, fs_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800387 if (i == 0)
Florin Coras9845c202020-04-28 01:54:22 +0000388 sm->event_queue = segment_manager_alloc_queue (fs, props);
Florin Corasf8f516a2018-02-08 15:10:09 -0800389
Florin Coras9845c202020-04-28 01:54:22 +0000390 fifo_segment_preallocate_fifo_pairs (fs,
Florin Coras88001c62019-04-24 14:44:46 -0700391 props->rx_fifo_size,
392 props->tx_fifo_size,
393 &prealloc_fifo_pairs);
Florin Coras9845c202020-04-28 01:54:22 +0000394 fifo_segment_flags (fs) = FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800395 if (prealloc_fifo_pairs == 0)
396 break;
397 }
Florin Coras9845c202020-04-28 01:54:22 +0000398 return 0;
Florin Corasa332c462018-01-31 06:52:17 -0800399 }
Florin Coras9845c202020-04-28 01:54:22 +0000400
401 fs_index = segment_manager_add_segment (sm, first_seg_size);
402 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800403 {
Florin Coras9845c202020-04-28 01:54:22 +0000404 clib_warning ("Failed to allocate segment");
405 return fs_index;
406 }
407
408 fs = segment_manager_get_segment (sm, fs_index);
409 sm->event_queue = segment_manager_alloc_queue (fs, props);
410
411 if (props->prealloc_fifo_hdrs)
412 {
413 u32 hdrs_per_slice;
414
415 /* Do not preallocate on slice associated to main thread */
416 i = (vlib_num_workers ()? 1 : 0);
417 hdrs_per_slice = props->prealloc_fifo_hdrs / (fs->n_slices - i);
418
419 for (; i < fs->n_slices; i++)
Florin Corasa332c462018-01-31 06:52:17 -0800420 {
Florin Coras9845c202020-04-28 01:54:22 +0000421 if (fifo_segment_prealloc_fifo_hdrs (fs, i, hdrs_per_slice))
422 return VNET_API_ERROR_SVM_SEGMENT_CREATE_FAIL;
Florin Corasa332c462018-01-31 06:52:17 -0800423 }
Florin Corasa332c462018-01-31 06:52:17 -0800424 }
425
426 return 0;
427}
428
Florin Corasc8e812f2020-05-14 05:32:18 +0000429void
430segment_manager_cleanup_detached_listener (segment_manager_t * sm)
431{
432 app_worker_t *app_wrk;
433
434 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
435 if (!app_wrk)
436 return;
437
438 app_worker_del_detached_sm (app_wrk, segment_manager_index (sm));
439}
440
Florin Corasc87c91d2017-08-16 19:55:49 -0700441/**
Florin Coras88001c62019-04-24 14:44:46 -0700442 * Cleanup segment manager.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700443 */
444void
Florin Coras88001c62019-04-24 14:44:46 -0700445segment_manager_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700446{
Florin Coras88001c62019-04-24 14:44:46 -0700447 segment_manager_main_t *smm = &sm_main;
448 fifo_segment_t *fifo_segment;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400449
Florin Coras506aa3c2020-12-13 21:09:59 -0800450 ASSERT (vlib_get_thread_index () == 0
451 && !segment_manager_has_fifos (sm)
Florin Coras9d063042017-09-14 03:08:00 -0400452 && segment_manager_app_detached (sm));
453
Florin Corasc8e812f2020-05-14 05:32:18 +0000454 if (sm->flags & SEG_MANAGER_F_DETACHED_LISTENER)
455 segment_manager_cleanup_detached_listener (sm);
456
Florin Coras9d063042017-09-14 03:08:00 -0400457 /* If we have empty preallocated segments that haven't been removed, remove
458 * them now. Apart from that, the first segment in the first segment manager
459 * is not removed when all fifos are removed. It can only be removed when
460 * the manager is explicitly deleted/detached by the app. */
Florin Corasa332c462018-01-31 06:52:17 -0800461 clib_rwlock_writer_lock (&sm->segments_rwlock);
462
463 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100464 pool_foreach (fifo_segment, sm->segments) {
Florin Corasa332c462018-01-31 06:52:17 -0800465 segment_manager_del_segment (sm, fifo_segment);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100466 }
Florin Corasa332c462018-01-31 06:52:17 -0800467 /* *INDENT-ON* */
468
Florin Corasf1af21c2021-02-26 19:19:11 -0800469 pool_free (sm->segments);
Florin Corasa332c462018-01-31 06:52:17 -0800470 clib_rwlock_writer_unlock (&sm->segments_rwlock);
471
472 clib_rwlock_free (&sm->segments_rwlock);
Florin Corasc87c91d2017-08-16 19:55:49 -0700473 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400474 clib_memset (sm, 0xfe, sizeof (*sm));
Florin Corasa332c462018-01-31 06:52:17 -0800475 pool_put (smm->segment_managers, sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700476}
477
Florin Coras506aa3c2020-12-13 21:09:59 -0800478static void
479sm_free_w_index_helper (void *arg)
480{
481 u32 sm_index = *(u32 *) arg;
482 segment_manager_t *sm;
483
484 ASSERT (vlib_get_thread_index () == 0);
485
486 if ((sm = segment_manager_get_if_valid (sm_index)))
487 segment_manager_free (sm);
488}
489
490static void
491segment_manager_free_safe (segment_manager_t * sm)
492{
493 if (!vlib_thread_is_main_w_barrier ())
494 {
495 u32 sm_index = segment_manager_index (sm);
496 vlib_rpc_call_main_thread (sm_free_w_index_helper, (u8 *) & sm_index,
497 sizeof (sm_index));
498 }
499 else
500 {
501 segment_manager_free (sm);
502 }
503}
504
Florin Corasc87c91d2017-08-16 19:55:49 -0700505void
Florin Coras88001c62019-04-24 14:44:46 -0700506segment_manager_init_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700507{
Florin Coras506aa3c2020-12-13 21:09:59 -0800508 ASSERT (vlib_get_thread_index () == 0);
509
Florin Coras4e4531e2017-11-06 23:27:56 -0800510 segment_manager_app_detach (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700511 if (segment_manager_has_fifos (sm))
512 segment_manager_del_sessions (sm);
513 else
514 {
Florin Coras9d063042017-09-14 03:08:00 -0400515 ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
Florin Coras88001c62019-04-24 14:44:46 -0700516 segment_manager_free (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700517 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700518}
519
Florin Coras88001c62019-04-24 14:44:46 -0700520segment_manager_t *
521segment_manager_get (u32 index)
522{
523 return pool_elt_at_index (sm_main.segment_managers, index);
524}
525
526segment_manager_t *
527segment_manager_get_if_valid (u32 index)
528{
529 if (pool_is_free_index (sm_main.segment_managers, index))
530 return 0;
531 return pool_elt_at_index (sm_main.segment_managers, index);
532}
533
534u32
535segment_manager_index (segment_manager_t * sm)
536{
537 return sm - sm_main.segment_managers;
538}
539
540u8
541segment_manager_has_fifos (segment_manager_t * sm)
542{
543 fifo_segment_t *seg;
544 u8 first = 1;
545
546 /* *INDENT-OFF* */
547 segment_manager_foreach_segment_w_lock (seg, sm, ({
548 if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
549 && !(fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED))
550 {
551 clib_warning ("segment %d has no fifos!",
552 segment_manager_segment_index (sm, seg));
553 first = 0;
554 }
555 if (fifo_segment_has_fifos (seg))
556 {
557 segment_manager_segment_reader_unlock (sm);
558 return 1;
559 }
560 }));
561 /* *INDENT-ON* */
562
563 return 0;
564}
565
566/**
567 * Initiate disconnects for all sessions 'owned' by a segment manager
568 */
569void
570segment_manager_del_sessions (segment_manager_t * sm)
571{
Florin Coras88001c62019-04-24 14:44:46 -0700572 session_handle_t *handles = 0, *handle;
Florin Coras62ddc032019-12-08 18:30:42 -0800573 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700574 session_t *session;
Florin Coras62ddc032019-12-08 18:30:42 -0800575 int slice_index;
576 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -0700577
578 ASSERT (pool_elts (sm->segments) != 0);
579
580 /* Across all fifo segments used by the server */
581 /* *INDENT-OFF* */
Florin Coras62ddc032019-12-08 18:30:42 -0800582 segment_manager_foreach_segment_w_lock (fs, sm, ({
583 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -0700584 {
Florin Coras62ddc032019-12-08 18:30:42 -0800585 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
586
587 /*
588 * Remove any residual sessions from the session lookup table
589 * Don't bother deleting the individual fifos, we're going to
590 * throw away the fifo segment in a minute.
591 */
592 while (f)
593 {
Florin Corasc547e912020-12-08 17:50:45 -0800594 session = session_get_if_valid (f->shr->master_session_index,
595 f->master_thread_index);
596 if (session)
597 vec_add1 (handles, session_handle (session));
598 f = f->next;
599 }
Florin Coras88001c62019-04-24 14:44:46 -0700600 }
601
602 /* Instead of removing the segment, test when cleaning up disconnected
603 * sessions if the segment can be removed.
604 */
605 }));
606 /* *INDENT-ON* */
607
608 vec_foreach (handle, handles)
Florin Coras77ea42b2020-04-14 23:52:12 +0000609 {
610 session = session_get_from_handle (*handle);
611 session_close (session);
612 /* Avoid propagating notifications back to the app */
613 session->app_wrk_index = APP_INVALID_INDEX;
614 }
Florin Corasf1af21c2021-02-26 19:19:11 -0800615 vec_free (handles);
Florin Coras88001c62019-04-24 14:44:46 -0700616}
617
Florin Corasf8f516a2018-02-08 15:10:09 -0800618int
Florin Coras88001c62019-04-24 14:44:46 -0700619segment_manager_try_alloc_fifos (fifo_segment_t * fifo_segment,
Florin Coras62ddc032019-12-08 18:30:42 -0800620 u32 thread_index,
Florin Corasf8f516a2018-02-08 15:10:09 -0800621 u32 rx_fifo_size, u32 tx_fifo_size,
622 svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
Florin Corasa332c462018-01-31 06:52:17 -0800623{
Florin Coras88001c62019-04-24 14:44:46 -0700624 rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800625 *rx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
626 rx_fifo_size,
627 FIFO_SEGMENT_RX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800628
Florin Coras88001c62019-04-24 14:44:46 -0700629 tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800630 *tx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
631 tx_fifo_size,
632 FIFO_SEGMENT_TX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800633
634 if (*rx_fifo == 0)
635 {
636 /* This would be very odd, but handle it... */
637 if (*tx_fifo != 0)
638 {
Florin Coras88001c62019-04-24 14:44:46 -0700639 fifo_segment_free_fifo (fifo_segment, *tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800640 *tx_fifo = 0;
641 }
642 return -1;
643 }
644 if (*tx_fifo == 0)
645 {
646 if (*rx_fifo != 0)
647 {
Florin Coras88001c62019-04-24 14:44:46 -0700648 fifo_segment_free_fifo (fifo_segment, *rx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800649 *rx_fifo = 0;
650 }
651 return -1;
652 }
653
654 return 0;
655}
656
Florin Coras6cf30ad2017-04-04 23:08:23 -0700657int
658segment_manager_alloc_session_fifos (segment_manager_t * sm,
Florin Coras62ddc032019-12-08 18:30:42 -0800659 u32 thread_index,
Florin Corasb384b542018-01-15 01:08:33 -0800660 svm_fifo_t ** rx_fifo,
Florin Coras1219b2d2019-04-23 15:53:43 -0700661 svm_fifo_t ** tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700662{
Florin Corasa332c462018-01-31 06:52:17 -0800663 int alloc_fail = 1, rv = 0, new_fs_index;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000664 uword free_bytes, max_free_bytes = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700665 segment_manager_props_t *props;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000666 fifo_segment_t *fs = 0, *cur;
Florin Coras88001c62019-04-24 14:44:46 -0700667 u32 sm_index, fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700668 u8 added_a_segment = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700669 u64 fs_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700670
Florin Corasa332c462018-01-31 06:52:17 -0800671 props = segment_manager_properties_get (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700672
Florin Corasa332c462018-01-31 06:52:17 -0800673 /*
674 * Find the first free segment to allocate the fifos in
675 */
Florin Coras75ccf7b2020-03-05 19:44:02 +0000676
677 segment_manager_segment_reader_lock (sm);
678
679 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100680 pool_foreach (cur, sm->segments) {
Florin Coras75ccf7b2020-03-05 19:44:02 +0000681 free_bytes = fifo_segment_available_bytes (cur);
682 if (free_bytes > max_free_bytes)
683 {
684 max_free_bytes = free_bytes;
685 fs = cur;
686 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100687 }
Florin Coras75ccf7b2020-03-05 19:44:02 +0000688 /* *INDENT-ON* */
Florin Corasa5464812017-04-19 13:00:05 -0700689
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000690 if (fs)
691 {
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000692 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
693 props->rx_fifo_size,
694 props->tx_fifo_size,
695 rx_fifo, tx_fifo);
696 /* On success, keep lock until fifos are initialized */
697 if (!alloc_fail)
698 goto alloc_success;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000699 }
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000700
Florin Coras75ccf7b2020-03-05 19:44:02 +0000701 segment_manager_segment_reader_unlock (sm);
Florin Corasa332c462018-01-31 06:52:17 -0800702
703alloc_check:
704
705 if (!alloc_fail)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700706 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700707
Florin Corasa332c462018-01-31 06:52:17 -0800708 alloc_success:
Florin Coras6cf30ad2017-04-04 23:08:23 -0700709
Florin Corasa332c462018-01-31 06:52:17 -0800710 ASSERT (rx_fifo && tx_fifo);
711 sm_index = segment_manager_index (sm);
Florin Coras88001c62019-04-24 14:44:46 -0700712 fs_index = segment_manager_segment_index (sm, fs);
Florin Corasa332c462018-01-31 06:52:17 -0800713 (*tx_fifo)->segment_manager = sm_index;
714 (*rx_fifo)->segment_manager = sm_index;
Florin Coras88001c62019-04-24 14:44:46 -0700715 (*tx_fifo)->segment_index = fs_index;
716 (*rx_fifo)->segment_index = fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700717
Florin Corasa332c462018-01-31 06:52:17 -0800718 if (added_a_segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800719 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800720 app_worker_t *app_wrk;
Florin Coras88001c62019-04-24 14:44:46 -0700721 fs_handle = segment_manager_segment_handle (sm, fs);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800722 app_wrk = app_worker_get (sm->app_wrk_index);
Florin Coras88001c62019-04-24 14:44:46 -0700723 rv = app_worker_add_segment_notify (app_wrk, fs_handle);
Florin Corasfa76a762018-11-29 12:40:10 -0800724 }
Florin Corasa332c462018-01-31 06:52:17 -0800725 /* Drop the lock after app is notified */
726 segment_manager_segment_reader_unlock (sm);
727 return rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700728 }
729
Florin Corasa332c462018-01-31 06:52:17 -0800730 /*
731 * Allocation failed, see if we can add a new segment
732 */
733 if (props->add_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700734 {
Florin Corasa332c462018-01-31 06:52:17 -0800735 if (added_a_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700736 {
Florin Corasa332c462018-01-31 06:52:17 -0800737 clib_warning ("Added a segment, still can't allocate a fifo");
738 segment_manager_segment_reader_unlock (sm);
Florin Coras00e01d32019-10-21 16:07:46 -0700739 return SESSION_E_SEG_NO_SPACE2;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700740 }
Florin Corasa332c462018-01-31 06:52:17 -0800741 if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700742 {
Florin Corasa332c462018-01-31 06:52:17 -0800743 clib_warning ("Failed to add new segment");
Florin Coras00e01d32019-10-21 16:07:46 -0700744 return SESSION_E_SEG_CREATE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700745 }
Florin Coras88001c62019-04-24 14:44:46 -0700746 fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
Florin Coras62ddc032019-12-08 18:30:42 -0800747 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
748 props->rx_fifo_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800749 props->tx_fifo_size,
750 rx_fifo, tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800751 added_a_segment = 1;
752 goto alloc_check;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700753 }
Florin Corasa332c462018-01-31 06:52:17 -0800754 else
755 {
Florin Coras47cb2482020-07-13 08:52:53 -0700756 SESSION_DBG ("Can't add new seg and no space to allocate fifos!");
Florin Coras00e01d32019-10-21 16:07:46 -0700757 return SESSION_E_SEG_NO_SPACE;
Florin Corasa332c462018-01-31 06:52:17 -0800758 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700759}
760
761void
Florin Coras19223e02019-03-03 14:56:05 -0800762segment_manager_dealloc_fifos (svm_fifo_t * rx_fifo, svm_fifo_t * tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700763{
Florin Corasa332c462018-01-31 06:52:17 -0800764 segment_manager_t *sm;
Florin Corasb095a3c2019-04-25 12:58:46 -0700765 fifo_segment_t *fs;
Florin Coras19223e02019-03-03 14:56:05 -0800766 u32 segment_index;
Florin Corasa5464812017-04-19 13:00:05 -0700767
Florin Coras58a93e82019-01-14 23:33:46 -0800768 if (!rx_fifo || !tx_fifo)
769 return;
770
Florin Corasa5464812017-04-19 13:00:05 -0700771 /* It's possible to have no segment manager if the session was removed
Florin Corasc87c91d2017-08-16 19:55:49 -0700772 * as result of a detach. */
Florin Corasa332c462018-01-31 06:52:17 -0800773 if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
Florin Corasa5464812017-04-19 13:00:05 -0700774 return;
775
Florin Coras19223e02019-03-03 14:56:05 -0800776 segment_index = rx_fifo->segment_index;
Florin Coras88001c62019-04-24 14:44:46 -0700777 fs = segment_manager_get_segment_w_lock (sm, segment_index);
778 fifo_segment_free_fifo (fs, rx_fifo);
779 fifo_segment_free_fifo (fs, tx_fifo);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700780
Florin Corasc87c91d2017-08-16 19:55:49 -0700781 /*
782 * Try to remove svm segment if it has no fifos. This can be done only if
783 * the segment is not the first in the segment manager or if it is first
784 * and it is not protected. Moreover, if the segment is first and the app
785 * has detached from the segment manager, remove the segment manager.
786 */
Florin Coras88001c62019-04-24 14:44:46 -0700787 if (!fifo_segment_has_fifos (fs))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700788 {
Florin Corasa332c462018-01-31 06:52:17 -0800789 segment_manager_segment_reader_unlock (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700790
791 /* Remove segment if it holds no fifos or first but not protected */
Florin Corasa332c462018-01-31 06:52:17 -0800792 if (segment_index != 0 || !sm->first_is_protected)
Florin Coras2d0e3de2020-10-23 16:31:40 -0700793 sm_lock_and_del_segment_inline (sm, segment_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700794
795 /* Remove segment manager if no sessions and detached from app */
Florin Coras9d063042017-09-14 03:08:00 -0400796 if (segment_manager_app_detached (sm)
797 && !segment_manager_has_fifos (sm))
Florin Coras506aa3c2020-12-13 21:09:59 -0800798 segment_manager_free_safe (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700799 }
Florin Corasa332c462018-01-31 06:52:17 -0800800 else
801 segment_manager_segment_reader_unlock (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700802}
803
Florin Coras6d7552c2020-04-09 01:49:45 +0000804void
Florin Coras0bc78d82021-01-09 14:34:01 -0800805segment_manager_detach_fifo (segment_manager_t *sm, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000806{
807 fifo_segment_t *fs;
808
Florin Coras0bc78d82021-01-09 14:34:01 -0800809 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000810 fifo_segment_detach_fifo (fs, f);
811 segment_manager_segment_reader_unlock (sm);
812}
813
814void
Florin Coras0bc78d82021-01-09 14:34:01 -0800815segment_manager_attach_fifo (segment_manager_t *sm, svm_fifo_t **f,
816 session_t *s)
Florin Coras6d7552c2020-04-09 01:49:45 +0000817{
818 fifo_segment_t *fs;
819
Florin Coras0bc78d82021-01-09 14:34:01 -0800820 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000821 fifo_segment_attach_fifo (fs, f, s->thread_index);
822 segment_manager_segment_reader_unlock (sm);
823
Florin Coras0bc78d82021-01-09 14:34:01 -0800824 (*f)->shr->master_session_index = s->session_index;
825 (*f)->master_thread_index = s->thread_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000826}
827
Florin Coras3c2fed52018-07-04 04:15:05 -0700828u32
829segment_manager_evt_q_expected_size (u32 q_len)
830{
831 u32 fifo_evt_size, notif_q_size, q_hdrs;
832 u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
833
Florin Coras52207f12018-07-12 14:48:06 -0700834 fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
Florin Coras3c2fed52018-07-04 04:15:05 -0700835 notif_q_size = clib_max (16, q_len >> 4);
836
837 msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
838 fifo_evt_ring_sz = q_len * fifo_evt_size;
839 session_ntf_ring_sz = notif_q_size * 256;
840 q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
841
842 return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
843}
844
Florin Corasa5464812017-04-19 13:00:05 -0700845/**
846 * Allocates shm queue in the first segment
Florin Corasa332c462018-01-31 06:52:17 -0800847 *
848 * Must be called with lock held
Florin Corasa5464812017-04-19 13:00:05 -0700849 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700850svm_msg_q_t *
Florin Coras88001c62019-04-24 14:44:46 -0700851segment_manager_alloc_queue (fifo_segment_t * segment,
852 segment_manager_props_t * props)
Florin Corasa5464812017-04-19 13:00:05 -0700853{
Florin Coras3c2fed52018-07-04 04:15:05 -0700854 u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
855 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
856 svm_msg_q_t *q;
Florin Corasa5464812017-04-19 13:00:05 -0700857
Florin Coras52207f12018-07-12 14:48:06 -0700858 fifo_evt_size = sizeof (session_event_t);
Florin Coras99368312018-08-02 10:45:44 -0700859 notif_q_size = clib_max (16, props->evt_q_size >> 4);
Florin Coras3c2fed52018-07-04 04:15:05 -0700860 /* *INDENT-OFF* */
861 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
Florin Coras99368312018-08-02 10:45:44 -0700862 {props->evt_q_size, fifo_evt_size, 0},
Florin Coras3c2fed52018-07-04 04:15:05 -0700863 {notif_q_size, session_evt_size, 0}
864 };
865 /* *INDENT-ON* */
866 cfg->consumer_pid = 0;
867 cfg->n_rings = 2;
Florin Coras99368312018-08-02 10:45:44 -0700868 cfg->q_nitems = props->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -0700869 cfg->ring_cfgs = rc;
Florin Corasa5464812017-04-19 13:00:05 -0700870
Florin Corasb4624182020-12-11 13:58:12 -0800871 q = fifo_segment_msg_q_alloc (segment, 0, cfg);
Florin Coras99368312018-08-02 10:45:44 -0700872
873 if (props->use_mq_eventfd)
874 {
Florin Coras86f12322021-01-22 15:05:14 -0800875 if (svm_msg_q_alloc_eventfd (q))
Florin Coras99368312018-08-02 10:45:44 -0700876 clib_warning ("failed to alloc eventfd");
877 }
Florin Corasa5464812017-04-19 13:00:05 -0700878 return q;
879}
880
Florin Coras88001c62019-04-24 14:44:46 -0700881svm_msg_q_t *
882segment_manager_event_queue (segment_manager_t * sm)
883{
884 return sm->event_queue;
885}
886
Florin Corasa5464812017-04-19 13:00:05 -0700887/**
888 * Frees shm queue allocated in the first segment
889 */
890void
Florin Corase86a8ed2018-01-05 03:20:25 -0800891segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q)
Florin Corasa5464812017-04-19 13:00:05 -0700892{
Florin Coras88001c62019-04-24 14:44:46 -0700893 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800894 ssvm_shared_header_t *sh;
Florin Corasa5464812017-04-19 13:00:05 -0700895 void *oldheap;
896
Florin Corasa332c462018-01-31 06:52:17 -0800897 ASSERT (!pool_is_free_index (sm->segments, 0));
Florin Corasa5464812017-04-19 13:00:05 -0700898
Florin Corasa332c462018-01-31 06:52:17 -0800899 segment = segment_manager_get_segment_w_lock (sm, 0);
Florin Corasa5464812017-04-19 13:00:05 -0700900 sh = segment->ssvm.sh;
901
902 oldheap = ssvm_push_heap (sh);
Florin Corase86a8ed2018-01-05 03:20:25 -0800903 svm_queue_free (q);
Florin Corasa5464812017-04-19 13:00:05 -0700904 ssvm_pop_heap (oldheap);
Florin Corasa332c462018-01-31 06:52:17 -0800905 segment_manager_segment_reader_unlock (sm);
906}
907
908/*
909 * Init segment vm address allocator
910 */
911void
Florin Coras9a45bd82020-12-28 16:28:07 -0800912segment_manager_main_init (void)
Florin Corasa332c462018-01-31 06:52:17 -0800913{
Florin Coras88001c62019-04-24 14:44:46 -0700914 segment_manager_main_t *sm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -0700915
916 sm->default_fifo_size = 1 << 12;
917 sm->default_segment_size = 1 << 20;
918 sm->default_app_mq_size = 128;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000919 sm->default_max_fifo_size = 4 << 20;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000920 sm->default_high_watermark = 80;
921 sm->default_low_watermark = 50;
Florin Corasa5464812017-04-19 13:00:05 -0700922}
923
Florin Corasc87c91d2017-08-16 19:55:49 -0700924static clib_error_t *
925segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input,
926 vlib_cli_command_t * cmd)
927{
Florin Coras88001c62019-04-24 14:44:46 -0700928 segment_manager_main_t *smm = &sm_main;
Florin Corasb384b542018-01-15 01:08:33 -0800929 u8 show_segments = 0, verbose = 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000930 uword max_fifo_size;
Florin Coras5368bb02019-06-09 09:24:33 -0700931 segment_manager_t *sm;
932 fifo_segment_t *seg;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000933 app_worker_t *app_wrk;
934 application_t *app;
935 u8 custom_logic;
Dave Barach91f3e742017-09-01 19:12:11 -0400936
Florin Corasc87c91d2017-08-16 19:55:49 -0700937 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
938 {
939 if (unformat (input, "segments"))
940 show_segments = 1;
941 else if (unformat (input, "verbose"))
942 verbose = 1;
943 else
944 return clib_error_return (0, "unknown input `%U'",
945 format_unformat_error, input);
946 }
947 vlib_cli_output (vm, "%d segment managers allocated",
Florin Corasa332c462018-01-31 06:52:17 -0800948 pool_elts (smm->segment_managers));
949 if (verbose && pool_elts (smm->segment_managers))
Florin Corasc87c91d2017-08-16 19:55:49 -0700950 {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000951 vlib_cli_output (vm, "%-6s%=10s%=10s%=13s%=11s%=11s%=12s",
952 "Index", "AppIndex", "Segments", "MaxFifoSize",
953 "HighWater", "LowWater", "FifoTuning");
Florin Corasc87c91d2017-08-16 19:55:49 -0700954
955 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100956 pool_foreach (sm, smm->segment_managers) {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000957 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
958 app = app_wrk ? application_get (app_wrk->app_index) : 0;
959 custom_logic = (app && (app->cb_fns.fifo_tuning_callback)) ? 1 : 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000960 max_fifo_size = sm->max_fifo_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000961
962 vlib_cli_output (vm, "%-6d%=10d%=10d%=13U%=11d%=11d%=12s",
963 segment_manager_index (sm),
964 sm->app_wrk_index, pool_elts (sm->segments),
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000965 format_memory_size, max_fifo_size,
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000966 sm->high_watermark, sm->low_watermark,
967 custom_logic ? "custom" : "none");
Damjan Marionb2c31b62020-12-13 21:47:40 +0100968 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700969 /* *INDENT-ON* */
970
Florin Coras2a7c0b62020-09-28 23:40:28 -0700971 vlib_cli_output (vm, "\n");
Florin Corasc87c91d2017-08-16 19:55:49 -0700972 }
973 if (show_segments)
974 {
Florin Coras5368bb02019-06-09 09:24:33 -0700975 vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
Florin Corasc87c91d2017-08-16 19:55:49 -0700976
977 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100978 pool_foreach (sm, smm->segment_managers) {
Florin Corasa332c462018-01-31 06:52:17 -0800979 segment_manager_foreach_segment_w_lock (seg, sm, ({
Florin Coras5368bb02019-06-09 09:24:33 -0700980 vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
Florin Corasa332c462018-01-31 06:52:17 -0800981 }));
Damjan Marionb2c31b62020-12-13 21:47:40 +0100982 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700983 /* *INDENT-ON* */
984
985 }
986 return 0;
987}
988
Florin Corasad0c77f2017-11-09 18:00:15 -0800989/* *INDENT-OFF* */
Florin Corasc87c91d2017-08-16 19:55:49 -0700990VLIB_CLI_COMMAND (segment_manager_show_command, static) =
991{
992 .path = "show segment-manager",
Dave Barach91f3e742017-09-01 19:12:11 -0400993 .short_help = "show segment-manager [segments][verbose]",
Florin Corasc87c91d2017-08-16 19:55:49 -0700994 .function = segment_manager_show_fn,
995};
996/* *INDENT-ON* */
997
Florin Coras88001c62019-04-24 14:44:46 -0700998void
999segment_manager_format_sessions (segment_manager_t * sm, int verbose)
1000{
Florin Coras88001c62019-04-24 14:44:46 -07001001 vlib_main_t *vm = vlib_get_main ();
1002 app_worker_t *app_wrk;
Florin Coras62ddc032019-12-08 18:30:42 -08001003 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -07001004 const u8 *app_name;
Florin Coras62ddc032019-12-08 18:30:42 -08001005 int slice_index;
1006 u8 *s = 0, *str;
1007 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -07001008
1009 if (!sm)
1010 {
1011 if (verbose)
1012 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
1013 "API Client", "SegManager");
1014 else
1015 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
1016 return;
1017 }
1018
1019 app_wrk = app_worker_get (sm->app_wrk_index);
1020 app_name = application_name_from_index (app_wrk->app_index);
1021
1022 clib_rwlock_reader_lock (&sm->segments_rwlock);
1023
1024 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001025 pool_foreach (fs, sm->segments) {
Florin Coras62ddc032019-12-08 18:30:42 -08001026 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001027 {
Florin Coras62ddc032019-12-08 18:30:42 -08001028 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
1029 while (f)
1030 {
1031 u32 session_index, thread_index;
1032 session_t *session;
Florin Coras88001c62019-04-24 14:44:46 -07001033
Florin Corasc547e912020-12-08 17:50:45 -08001034 session_index = f->shr->master_session_index;
1035 thread_index = f->master_thread_index;
Florin Coras88001c62019-04-24 14:44:46 -07001036
Florin Corasc547e912020-12-08 17:50:45 -08001037 session = session_get (session_index, thread_index);
1038 str = format (0, "%U", format_session, session, verbose);
Florin Coras88001c62019-04-24 14:44:46 -07001039
Florin Corasc547e912020-12-08 17:50:45 -08001040 if (verbose)
1041 s = format (s, "%-40v%-20v%-15u%-10u", str, app_name,
1042 app_wrk->api_client_index,
1043 app_wrk->connects_seg_manager);
1044 else
1045 s = format (s, "%-40v%-20v", str, app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001046
Florin Corasc547e912020-12-08 17:50:45 -08001047 vlib_cli_output (vm, "%v", s);
1048 vec_reset_length (s);
1049 vec_free (str);
Florin Coras88001c62019-04-24 14:44:46 -07001050
Florin Corasc547e912020-12-08 17:50:45 -08001051 f = f->next;
1052 }
1053 vec_free (s);
Florin Coras88001c62019-04-24 14:44:46 -07001054 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001055 }
Florin Coras88001c62019-04-24 14:44:46 -07001056 /* *INDENT-ON* */
1057
1058 clib_rwlock_reader_unlock (&sm->segments_rwlock);
1059}
1060
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001061void
1062segment_manager_set_watermarks (segment_manager_t * sm,
1063 u8 high_watermark, u8 low_watermark)
1064{
Florin Coras8c79a4e2020-02-25 22:28:27 +00001065 ASSERT (high_watermark <= 100 && low_watermark <= 100 &&
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001066 low_watermark <= high_watermark);
1067
1068 sm->high_watermark = high_watermark;
1069 sm->low_watermark = low_watermark;
1070}
1071
Florin Coras6cf30ad2017-04-04 23:08:23 -07001072/*
1073 * fd.io coding-style-patch-verification: ON
1074 *
1075 * Local Variables:
1076 * eval: (c-set-style "gnu")
1077 * End:
1078 */