blob: 2d8e657ef98dea821276477438c71bd33e1e387c [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 */
Florin Coras6973c732021-06-17 15:53:38 -070090static inline int
91segment_manager_add_segment_inline (segment_manager_t *sm, uword segment_size,
92 u8 notify_app, u8 flags)
Florin Coras88001c62019-04-24 14:44:46 -070093{
94 segment_manager_main_t *smm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -070095 segment_manager_props_t *props;
96 fifo_segment_t *fs;
Florin Coras9a45bd82020-12-28 16:28:07 -080097 u32 fs_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -070098 u8 *seg_name;
99 int rv;
100
101 props = segment_manager_properties_get (sm);
102
103 /* Not configured for addition of new segments and not first */
104 if (!props->add_segment && !segment_size)
105 {
106 clib_warning ("cannot allocate new segment");
107 return VNET_API_ERROR_INVALID_VALUE;
108 }
109
110 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700111 * Allocate fifo segment and grab lock if needed
Florin Coras88001c62019-04-24 14:44:46 -0700112 */
113 if (vlib_num_workers ())
114 clib_rwlock_writer_lock (&sm->segments_rwlock);
115
116 pool_get_zero (sm->segments, fs);
117
118 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700119 * Allocate ssvm segment
Florin Coras88001c62019-04-24 14:44:46 -0700120 */
121 segment_size = segment_size ? segment_size : props->add_segment_size;
Filip Tehlar2711ca72021-11-24 10:30:59 +0000122 /* add overhead to ensure the result segment size is at least
123 * of that requested */
124 segment_size +=
125 sizeof (fifo_segment_header_t) +
126 vlib_thread_main.n_vlib_mains * sizeof (fifo_segment_slice_t) +
127 FIFO_SEGMENT_ALLOC_OVERHEAD;
Florin Coras9a45bd82020-12-28 16:28:07 -0800128 segment_size = round_pow2 (segment_size, clib_mem_get_page_size ());
Florin Corasf9d4ab42019-05-11 16:55:53 -0700129
Florin Coras88001c62019-04-24 14:44:46 -0700130 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
131 {
132 seg_name = format (0, "%d-%d%c", getpid (), smm->seg_name_counter++, 0);
Florin Coras88001c62019-04-24 14:44:46 -0700133 }
134 else
Florin Coras2a7c0b62020-09-28 23:40:28 -0700135 {
136 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
137 application_t *app = application_get (app_wrk->app_index);
138 seg_name = format (0, "%v segment%c", app->name, 0);
139 }
Florin Coras88001c62019-04-24 14:44:46 -0700140
141 fs->ssvm.ssvm_size = segment_size;
142 fs->ssvm.name = seg_name;
Florin Coras9a45bd82020-12-28 16:28:07 -0800143 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700144
Florin Coras5220a262020-09-29 18:11:24 -0700145 if ((rv = ssvm_server_init (&fs->ssvm, props->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700146 {
147 clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
148 segment_size);
Florin Coras88001c62019-04-24 14:44:46 -0700149 pool_put (sm->segments, fs);
150 goto done;
151 }
152
Florin Corasf9d4ab42019-05-11 16:55:53 -0700153 /*
154 * Initialize fifo segment
155 */
Florin Coras62ddc032019-12-08 18:30:42 -0800156 fs->n_slices = props->n_slices;
Florin Coras88001c62019-04-24 14:44:46 -0700157 fifo_segment_init (fs);
158
159 /*
160 * Save segment index before dropping lock, if any held
161 */
162 fs_index = fs - sm->segments;
163
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000164 /*
165 * Set watermarks in segment
166 */
Florin Corasafbb33a2021-08-10 16:56:34 -0700167 fs->high_watermark = sm->high_watermark;
168 fs->low_watermark = sm->low_watermark;
169 fs->flags = flags;
170 fs->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
Florin Coras2de9c0f2020-02-02 19:30:39 +0000171 fs->h->pct_first_alloc = props->pct_first_alloc;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000172
liuyacan9f299032021-04-25 20:11:30 +0800173 if (notify_app)
174 {
175 app_worker_t *app_wrk;
176 u64 fs_handle;
177 fs_handle = segment_manager_segment_handle (sm, fs);
178 app_wrk = app_worker_get (sm->app_wrk_index);
179 rv = app_worker_add_segment_notify (app_wrk, fs_handle);
180 if (rv)
wanghanlin19f6e262021-11-29 15:05:23 +0800181 {
182 fs_index = rv;
183 goto done;
184 }
liuyacan9f299032021-04-25 20:11:30 +0800185 }
Florin Coras88001c62019-04-24 14:44:46 -0700186done:
187
188 if (vlib_num_workers ())
189 clib_rwlock_writer_unlock (&sm->segments_rwlock);
190
191 return fs_index;
192}
193
Florin Coras6973c732021-06-17 15:53:38 -0700194int
195segment_manager_add_segment (segment_manager_t *sm, uword segment_size,
196 u8 notify_app)
197{
198 return segment_manager_add_segment_inline (sm, segment_size, notify_app, 0);
199}
200
201int
202segment_manager_add_segment2 (segment_manager_t *sm, uword segment_size,
203 u8 flags)
204{
205 return segment_manager_add_segment_inline (sm, segment_size, 0, flags);
206}
207
Florin Coras88001c62019-04-24 14:44:46 -0700208/**
Florin Corasa332c462018-01-31 06:52:17 -0800209 * Remove segment without lock
210 */
Florin Corasf8f516a2018-02-08 15:10:09 -0800211void
Florin Coras88001c62019-04-24 14:44:46 -0700212segment_manager_del_segment (segment_manager_t * sm, fifo_segment_t * fs)
Florin Corasa332c462018-01-31 06:52:17 -0800213{
Florin Corasa332c462018-01-31 06:52:17 -0800214 if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800215 {
Florin Corasea7e7082020-07-07 17:57:28 -0700216 if (!segment_manager_app_detached (sm))
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800217 {
218 app_worker_t *app_wrk;
219 u64 segment_handle;
220 app_wrk = app_worker_get (sm->app_wrk_index);
221 segment_handle = segment_manager_segment_handle (sm, fs);
222 app_worker_del_segment_notify (app_wrk, segment_handle);
223 }
224 }
Florin Corasa332c462018-01-31 06:52:17 -0800225
Florin Corasc547e912020-12-08 17:50:45 -0800226 fifo_segment_cleanup (fs);
Florin Corasa332c462018-01-31 06:52:17 -0800227 ssvm_delete (&fs->ssvm);
228
229 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400230 clib_memset (fs, 0xfb, sizeof (*fs));
Florin Corasa332c462018-01-31 06:52:17 -0800231 pool_put (sm->segments, fs);
232}
233
Florin Coras57660d92020-04-04 22:45:34 +0000234static fifo_segment_t *
235segment_manager_get_segment_if_valid (segment_manager_t * sm,
236 u32 segment_index)
237{
238 if (pool_is_free_index (sm->segments, segment_index))
239 return 0;
240 return pool_elt_at_index (sm->segments, segment_index);
241}
242
Florin Corasa332c462018-01-31 06:52:17 -0800243/**
244 * Removes segment after acquiring writer lock
245 */
Florin Coras99368312018-08-02 10:45:44 -0700246static inline void
Florin Coras2d0e3de2020-10-23 16:31:40 -0700247sm_lock_and_del_segment_inline (segment_manager_t * sm, u32 fs_index)
Florin Corasa332c462018-01-31 06:52:17 -0800248{
Florin Coras88001c62019-04-24 14:44:46 -0700249 fifo_segment_t *fs;
Florin Corasa332c462018-01-31 06:52:17 -0800250 u8 is_prealloc;
251
252 clib_rwlock_writer_lock (&sm->segments_rwlock);
Florin Coras57660d92020-04-04 22:45:34 +0000253
254 fs = segment_manager_get_segment_if_valid (sm, fs_index);
255 if (!fs)
256 goto done;
257
Florin Coras88001c62019-04-24 14:44:46 -0700258 is_prealloc = fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800259 if (is_prealloc && !segment_manager_app_detached (sm))
Florin Coras57660d92020-04-04 22:45:34 +0000260 goto done;
Florin Corasa332c462018-01-31 06:52:17 -0800261
262 segment_manager_del_segment (sm, fs);
Florin Coras57660d92020-04-04 22:45:34 +0000263
264done:
Florin Corasa332c462018-01-31 06:52:17 -0800265 clib_rwlock_writer_unlock (&sm->segments_rwlock);
266}
267
Florin Coras2d0e3de2020-10-23 16:31:40 -0700268void
269segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index)
270{
271 sm_lock_and_del_segment_inline (sm, fs_index);
272}
273
Florin Corasa332c462018-01-31 06:52:17 -0800274/**
275 * Reads a segment from the segment manager's pool without lock
276 */
Florin Coras88001c62019-04-24 14:44:46 -0700277fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800278segment_manager_get_segment (segment_manager_t * sm, u32 segment_index)
279{
280 return pool_elt_at_index (sm->segments, segment_index);
281}
282
Florin Corasfa76a762018-11-29 12:40:10 -0800283u64
284segment_manager_segment_handle (segment_manager_t * sm,
Florin Coras88001c62019-04-24 14:44:46 -0700285 fifo_segment_t * segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800286{
287 u32 segment_index = segment_manager_segment_index (sm, segment);
288 return (((u64) segment_manager_index (sm) << 32) | segment_index);
289}
290
Florin Coras88001c62019-04-24 14:44:46 -0700291u64
292segment_manager_make_segment_handle (u32 segment_manager_index,
293 u32 segment_index)
294{
295 return (((u64) segment_manager_index << 32) | segment_index);
296}
297
298fifo_segment_t *
Florin Corasfa76a762018-11-29 12:40:10 -0800299segment_manager_get_segment_w_handle (u64 segment_handle)
300{
301 u32 sm_index, segment_index;
302 segment_manager_t *sm;
303
304 segment_manager_parse_segment_handle (segment_handle, &sm_index,
305 &segment_index);
306 sm = segment_manager_get (sm_index);
307 if (!sm || pool_is_free_index (sm->segments, segment_index))
308 return 0;
309 return pool_elt_at_index (sm->segments, segment_index);
310}
311
Florin Corasa332c462018-01-31 06:52:17 -0800312/**
313 * Reads a segment from the segment manager's pool and acquires reader lock
314 *
315 * Caller must drop the reader's lock by calling
316 * @ref segment_manager_segment_reader_unlock once it finishes working with
317 * the segment.
318 */
Florin Coras88001c62019-04-24 14:44:46 -0700319fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800320segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index)
321{
322 clib_rwlock_reader_lock (&sm->segments_rwlock);
323 return pool_elt_at_index (sm->segments, segment_index);
324}
325
326void
Florin Coras75ccf7b2020-03-05 19:44:02 +0000327segment_manager_segment_reader_lock (segment_manager_t * sm)
328{
329 clib_rwlock_reader_lock (&sm->segments_rwlock);
330}
331
332void
Florin Corasa332c462018-01-31 06:52:17 -0800333segment_manager_segment_reader_unlock (segment_manager_t * sm)
334{
335 clib_rwlock_reader_unlock (&sm->segments_rwlock);
336}
337
338void
339segment_manager_segment_writer_unlock (segment_manager_t * sm)
340{
341 clib_rwlock_writer_unlock (&sm->segments_rwlock);
342}
343
Florin Corasa332c462018-01-31 06:52:17 -0800344segment_manager_t *
Florin Coras88001c62019-04-24 14:44:46 -0700345segment_manager_alloc (void)
Florin Corasa332c462018-01-31 06:52:17 -0800346{
Florin Coras88001c62019-04-24 14:44:46 -0700347 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800348 segment_manager_t *sm;
Florin Coras88001c62019-04-24 14:44:46 -0700349
350 pool_get_zero (smm->segment_managers, sm);
Florin Corasa332c462018-01-31 06:52:17 -0800351 clib_rwlock_init (&sm->segments_rwlock);
352 return sm;
353}
354
Florin Corasa332c462018-01-31 06:52:17 -0800355int
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000356segment_manager_init (segment_manager_t * sm)
Florin Corasa332c462018-01-31 06:52:17 -0800357{
Florin Coras88001c62019-04-24 14:44:46 -0700358 segment_manager_props_t *props;
Florin Corasa332c462018-01-31 06:52:17 -0800359
360 props = segment_manager_properties_get (sm);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000361
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000362 sm->max_fifo_size = props->max_fifo_size ?
363 props->max_fifo_size : sm_main.default_max_fifo_size;
364 sm->max_fifo_size = clib_max (sm->max_fifo_size, 4096);
365
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000366 segment_manager_set_watermarks (sm,
367 props->high_watermark,
368 props->low_watermark);
Florin Corasa107f402020-09-29 19:18:46 -0700369 return 0;
370}
371
372/**
373 * Initializes segment manager based on options provided.
374 * Returns error if ssvm segment(s) allocation fails.
375 */
376int
377segment_manager_init_first (segment_manager_t * sm)
378{
379 segment_manager_props_t *props;
380 uword first_seg_size;
381 fifo_segment_t *fs;
382 int fs_index, i;
383
384 segment_manager_init (sm);
385 props = segment_manager_properties_get (sm);
386 first_seg_size = clib_max (props->segment_size,
387 sm_main.default_segment_size);
Florin Corasa332c462018-01-31 06:52:17 -0800388
Florin Coras9845c202020-04-28 01:54:22 +0000389 if (props->prealloc_fifos)
Florin Corasa332c462018-01-31 06:52:17 -0800390 {
Florin Coras9845c202020-04-28 01:54:22 +0000391 u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
392 u32 rx_rounded_data_size, tx_rounded_data_size;
393 u32 prealloc_fifo_pairs = props->prealloc_fifos;
394 u32 rx_fifo_size, tx_fifo_size, pair_size;
395 u32 approx_segment_count;
396
Florin Corasa332c462018-01-31 06:52:17 -0800397 /* Figure out how many segments should be preallocated */
398 rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
399 tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
400
401 rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
402 tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
403 pair_size = rx_fifo_size + tx_fifo_size;
404
405 approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
406 if (first_seg_size > approx_total_size)
407 max_seg_size = first_seg_size;
408 approx_segment_count = (approx_total_size + (max_seg_size - 1))
409 / max_seg_size;
410
411 /* Allocate the segments */
412 for (i = 0; i < approx_segment_count + 1; i++)
413 {
liuyacan9f299032021-04-25 20:11:30 +0800414 fs_index = segment_manager_add_segment (sm, max_seg_size, 0);
Florin Coras9845c202020-04-28 01:54:22 +0000415 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800416 {
417 clib_warning ("Failed to preallocate segment %d", i);
Florin Coras9845c202020-04-28 01:54:22 +0000418 return fs_index;
Florin Corasa332c462018-01-31 06:52:17 -0800419 }
420
Florin Coras9845c202020-04-28 01:54:22 +0000421 fs = segment_manager_get_segment (sm, fs_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800422 if (i == 0)
Florin Coras9845c202020-04-28 01:54:22 +0000423 sm->event_queue = segment_manager_alloc_queue (fs, props);
Florin Corasf8f516a2018-02-08 15:10:09 -0800424
Florin Coras9845c202020-04-28 01:54:22 +0000425 fifo_segment_preallocate_fifo_pairs (fs,
Florin Coras88001c62019-04-24 14:44:46 -0700426 props->rx_fifo_size,
427 props->tx_fifo_size,
428 &prealloc_fifo_pairs);
Florin Coras9845c202020-04-28 01:54:22 +0000429 fifo_segment_flags (fs) = FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800430 if (prealloc_fifo_pairs == 0)
431 break;
432 }
Florin Coras9845c202020-04-28 01:54:22 +0000433 return 0;
Florin Corasa332c462018-01-31 06:52:17 -0800434 }
Florin Coras9845c202020-04-28 01:54:22 +0000435
liuyacan9f299032021-04-25 20:11:30 +0800436 fs_index = segment_manager_add_segment (sm, first_seg_size, 0);
Florin Coras9845c202020-04-28 01:54:22 +0000437 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800438 {
Florin Coras9845c202020-04-28 01:54:22 +0000439 clib_warning ("Failed to allocate segment");
440 return fs_index;
441 }
442
443 fs = segment_manager_get_segment (sm, fs_index);
444 sm->event_queue = segment_manager_alloc_queue (fs, props);
445
446 if (props->prealloc_fifo_hdrs)
447 {
448 u32 hdrs_per_slice;
449
450 /* Do not preallocate on slice associated to main thread */
451 i = (vlib_num_workers ()? 1 : 0);
452 hdrs_per_slice = props->prealloc_fifo_hdrs / (fs->n_slices - i);
453
454 for (; i < fs->n_slices; i++)
Florin Corasa332c462018-01-31 06:52:17 -0800455 {
Florin Coras9845c202020-04-28 01:54:22 +0000456 if (fifo_segment_prealloc_fifo_hdrs (fs, i, hdrs_per_slice))
457 return VNET_API_ERROR_SVM_SEGMENT_CREATE_FAIL;
Florin Corasa332c462018-01-31 06:52:17 -0800458 }
Florin Corasa332c462018-01-31 06:52:17 -0800459 }
460
461 return 0;
462}
463
Florin Corasc8e812f2020-05-14 05:32:18 +0000464void
465segment_manager_cleanup_detached_listener (segment_manager_t * sm)
466{
467 app_worker_t *app_wrk;
468
469 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
470 if (!app_wrk)
471 return;
472
473 app_worker_del_detached_sm (app_wrk, segment_manager_index (sm));
474}
475
Florin Corasc87c91d2017-08-16 19:55:49 -0700476/**
Florin Coras88001c62019-04-24 14:44:46 -0700477 * Cleanup segment manager.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700478 */
479void
Florin Coras88001c62019-04-24 14:44:46 -0700480segment_manager_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700481{
Florin Coras88001c62019-04-24 14:44:46 -0700482 segment_manager_main_t *smm = &sm_main;
483 fifo_segment_t *fifo_segment;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400484
Florin Coras506aa3c2020-12-13 21:09:59 -0800485 ASSERT (vlib_get_thread_index () == 0
486 && !segment_manager_has_fifos (sm)
Florin Coras9d063042017-09-14 03:08:00 -0400487 && segment_manager_app_detached (sm));
488
Florin Corasc8e812f2020-05-14 05:32:18 +0000489 if (sm->flags & SEG_MANAGER_F_DETACHED_LISTENER)
490 segment_manager_cleanup_detached_listener (sm);
491
Florin Coras9d063042017-09-14 03:08:00 -0400492 /* If we have empty preallocated segments that haven't been removed, remove
493 * them now. Apart from that, the first segment in the first segment manager
494 * is not removed when all fifos are removed. It can only be removed when
495 * the manager is explicitly deleted/detached by the app. */
Florin Corasa332c462018-01-31 06:52:17 -0800496 clib_rwlock_writer_lock (&sm->segments_rwlock);
497
498 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100499 pool_foreach (fifo_segment, sm->segments) {
Florin Corasa332c462018-01-31 06:52:17 -0800500 segment_manager_del_segment (sm, fifo_segment);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100501 }
Florin Corasa332c462018-01-31 06:52:17 -0800502 /* *INDENT-ON* */
503
Florin Corasf1af21c2021-02-26 19:19:11 -0800504 pool_free (sm->segments);
Florin Corasa332c462018-01-31 06:52:17 -0800505 clib_rwlock_writer_unlock (&sm->segments_rwlock);
506
507 clib_rwlock_free (&sm->segments_rwlock);
Florin Corasc87c91d2017-08-16 19:55:49 -0700508 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400509 clib_memset (sm, 0xfe, sizeof (*sm));
Florin Corasa332c462018-01-31 06:52:17 -0800510 pool_put (smm->segment_managers, sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700511}
512
Florin Coras506aa3c2020-12-13 21:09:59 -0800513static void
514sm_free_w_index_helper (void *arg)
515{
516 u32 sm_index = *(u32 *) arg;
517 segment_manager_t *sm;
518
519 ASSERT (vlib_get_thread_index () == 0);
520
521 if ((sm = segment_manager_get_if_valid (sm_index)))
522 segment_manager_free (sm);
523}
524
Florin Corasda78c5a2021-06-09 14:55:24 -0700525void
526segment_manager_free_safe (segment_manager_t *sm)
Florin Coras506aa3c2020-12-13 21:09:59 -0800527{
528 if (!vlib_thread_is_main_w_barrier ())
529 {
530 u32 sm_index = segment_manager_index (sm);
531 vlib_rpc_call_main_thread (sm_free_w_index_helper, (u8 *) & sm_index,
532 sizeof (sm_index));
533 }
534 else
535 {
536 segment_manager_free (sm);
537 }
538}
539
Florin Corasc87c91d2017-08-16 19:55:49 -0700540void
Florin Coras88001c62019-04-24 14:44:46 -0700541segment_manager_init_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700542{
Florin Coras506aa3c2020-12-13 21:09:59 -0800543 ASSERT (vlib_get_thread_index () == 0);
544
Florin Coras4e4531e2017-11-06 23:27:56 -0800545 segment_manager_app_detach (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700546 if (segment_manager_has_fifos (sm))
547 segment_manager_del_sessions (sm);
548 else
549 {
Florin Coras9d063042017-09-14 03:08:00 -0400550 ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
Florin Coras88001c62019-04-24 14:44:46 -0700551 segment_manager_free (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700552 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700553}
554
Florin Coras88001c62019-04-24 14:44:46 -0700555segment_manager_t *
556segment_manager_get (u32 index)
557{
558 return pool_elt_at_index (sm_main.segment_managers, index);
559}
560
561segment_manager_t *
562segment_manager_get_if_valid (u32 index)
563{
564 if (pool_is_free_index (sm_main.segment_managers, index))
565 return 0;
566 return pool_elt_at_index (sm_main.segment_managers, index);
567}
568
569u32
570segment_manager_index (segment_manager_t * sm)
571{
572 return sm - sm_main.segment_managers;
573}
574
575u8
576segment_manager_has_fifos (segment_manager_t * sm)
577{
578 fifo_segment_t *seg;
579 u8 first = 1;
580
581 /* *INDENT-OFF* */
582 segment_manager_foreach_segment_w_lock (seg, sm, ({
583 if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
584 && !(fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED))
585 {
586 clib_warning ("segment %d has no fifos!",
587 segment_manager_segment_index (sm, seg));
588 first = 0;
589 }
590 if (fifo_segment_has_fifos (seg))
591 {
592 segment_manager_segment_reader_unlock (sm);
593 return 1;
594 }
595 }));
596 /* *INDENT-ON* */
597
598 return 0;
599}
600
601/**
602 * Initiate disconnects for all sessions 'owned' by a segment manager
603 */
604void
605segment_manager_del_sessions (segment_manager_t * sm)
606{
Florin Coras88001c62019-04-24 14:44:46 -0700607 session_handle_t *handles = 0, *handle;
Florin Coras62ddc032019-12-08 18:30:42 -0800608 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700609 session_t *session;
Florin Coras62ddc032019-12-08 18:30:42 -0800610 int slice_index;
611 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -0700612
613 ASSERT (pool_elts (sm->segments) != 0);
614
615 /* Across all fifo segments used by the server */
616 /* *INDENT-OFF* */
Florin Coras62ddc032019-12-08 18:30:42 -0800617 segment_manager_foreach_segment_w_lock (fs, sm, ({
618 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -0700619 {
Florin Coras62ddc032019-12-08 18:30:42 -0800620 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
621
622 /*
623 * Remove any residual sessions from the session lookup table
624 * Don't bother deleting the individual fifos, we're going to
625 * throw away the fifo segment in a minute.
626 */
627 while (f)
628 {
Florin Corasc547e912020-12-08 17:50:45 -0800629 session = session_get_if_valid (f->shr->master_session_index,
630 f->master_thread_index);
631 if (session)
632 vec_add1 (handles, session_handle (session));
633 f = f->next;
634 }
Florin Coras88001c62019-04-24 14:44:46 -0700635 }
636
637 /* Instead of removing the segment, test when cleaning up disconnected
638 * sessions if the segment can be removed.
639 */
640 }));
641 /* *INDENT-ON* */
642
643 vec_foreach (handle, handles)
Florin Coras77ea42b2020-04-14 23:52:12 +0000644 {
645 session = session_get_from_handle (*handle);
646 session_close (session);
647 /* Avoid propagating notifications back to the app */
648 session->app_wrk_index = APP_INVALID_INDEX;
649 }
Florin Corasf1af21c2021-02-26 19:19:11 -0800650 vec_free (handles);
Florin Coras88001c62019-04-24 14:44:46 -0700651}
652
liuyacan87d48ad2021-04-28 11:34:03 +0000653/**
654 * Initiate disconnects for sessions in specified state 'owned' by a segment
655 * manager
656 */
657void
658segment_manager_del_sessions_filter (segment_manager_t *sm,
659 session_state_t *states)
660{
661 session_handle_t *handles = 0, *handle;
662 fifo_segment_t *fs;
663 session_t *session;
664 int slice_index;
665 svm_fifo_t *f;
666
667 ASSERT (pool_elts (sm->segments) != 0);
668
669 /* Across all fifo segments used by the server */
670 segment_manager_foreach_segment_w_lock (
671 fs, sm, ({
672 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
673 {
674 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
675 while (f)
676 {
677 session = session_get_if_valid (f->shr->master_session_index,
678 f->master_thread_index);
679 if (session)
680 {
681 session_state_t *state;
682 vec_foreach (state, states)
683 {
684 if (session->session_state == *state)
685 {
686 vec_add1 (handles, session_handle (session));
687 break;
688 }
689 }
690 }
691 f = f->next;
692 }
693 }
694 }));
695
696 vec_foreach (handle, handles)
697 {
698 session = session_get_from_handle (*handle);
699 session_close (session);
700 /* Avoid propagating notifications back to the app */
701 session->app_wrk_index = APP_INVALID_INDEX;
702 }
703 vec_free (handles);
704}
705
Florin Corasf8f516a2018-02-08 15:10:09 -0800706int
Florin Coras88001c62019-04-24 14:44:46 -0700707segment_manager_try_alloc_fifos (fifo_segment_t * fifo_segment,
Florin Coras62ddc032019-12-08 18:30:42 -0800708 u32 thread_index,
Florin Corasf8f516a2018-02-08 15:10:09 -0800709 u32 rx_fifo_size, u32 tx_fifo_size,
710 svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
Florin Corasa332c462018-01-31 06:52:17 -0800711{
Florin Coras88001c62019-04-24 14:44:46 -0700712 rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800713 *rx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
714 rx_fifo_size,
715 FIFO_SEGMENT_RX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800716
Florin Coras88001c62019-04-24 14:44:46 -0700717 tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800718 *tx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
719 tx_fifo_size,
720 FIFO_SEGMENT_TX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800721
722 if (*rx_fifo == 0)
723 {
724 /* This would be very odd, but handle it... */
725 if (*tx_fifo != 0)
726 {
Florin Coras88001c62019-04-24 14:44:46 -0700727 fifo_segment_free_fifo (fifo_segment, *tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800728 *tx_fifo = 0;
729 }
730 return -1;
731 }
732 if (*tx_fifo == 0)
733 {
734 if (*rx_fifo != 0)
735 {
Florin Coras88001c62019-04-24 14:44:46 -0700736 fifo_segment_free_fifo (fifo_segment, *rx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800737 *rx_fifo = 0;
738 }
739 return -1;
740 }
741
742 return 0;
743}
744
Florin Coras6cf30ad2017-04-04 23:08:23 -0700745int
746segment_manager_alloc_session_fifos (segment_manager_t * sm,
Florin Coras62ddc032019-12-08 18:30:42 -0800747 u32 thread_index,
Florin Corasb384b542018-01-15 01:08:33 -0800748 svm_fifo_t ** rx_fifo,
Florin Coras1219b2d2019-04-23 15:53:43 -0700749 svm_fifo_t ** tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700750{
Florin Corasa332c462018-01-31 06:52:17 -0800751 int alloc_fail = 1, rv = 0, new_fs_index;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000752 uword free_bytes, max_free_bytes = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700753 segment_manager_props_t *props;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000754 fifo_segment_t *fs = 0, *cur;
Florin Coras88001c62019-04-24 14:44:46 -0700755 u32 sm_index, fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700756
Florin Corasa332c462018-01-31 06:52:17 -0800757 props = segment_manager_properties_get (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700758
Florin Corasa332c462018-01-31 06:52:17 -0800759 /*
760 * Find the first free segment to allocate the fifos in
761 */
Florin Coras75ccf7b2020-03-05 19:44:02 +0000762
763 segment_manager_segment_reader_lock (sm);
764
Damjan Marionb2c31b62020-12-13 21:47:40 +0100765 pool_foreach (cur, sm->segments) {
Florin Corasda78c5a2021-06-09 14:55:24 -0700766 if (fifo_segment_flags (cur) & FIFO_SEGMENT_F_CUSTOM_USE)
767 continue;
768 free_bytes = fifo_segment_available_bytes (cur);
769 if (free_bytes > max_free_bytes)
770 {
771 max_free_bytes = free_bytes;
772 fs = cur;
773 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100774 }
Florin Corasa5464812017-04-19 13:00:05 -0700775
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000776 if (fs)
777 {
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000778 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
779 props->rx_fifo_size,
780 props->tx_fifo_size,
781 rx_fifo, tx_fifo);
782 /* On success, keep lock until fifos are initialized */
783 if (!alloc_fail)
784 goto alloc_success;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000785 }
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000786
Florin Coras75ccf7b2020-03-05 19:44:02 +0000787 segment_manager_segment_reader_unlock (sm);
Florin Corasa332c462018-01-31 06:52:17 -0800788
Florin Corasa332c462018-01-31 06:52:17 -0800789 /*
790 * Allocation failed, see if we can add a new segment
791 */
792 if (props->add_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700793 {
liuyacan9f299032021-04-25 20:11:30 +0800794 if ((new_fs_index = segment_manager_add_segment (sm, 0, 1)) < 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700795 {
Florin Corasa332c462018-01-31 06:52:17 -0800796 clib_warning ("Failed to add new segment");
Florin Coras00e01d32019-10-21 16:07:46 -0700797 return SESSION_E_SEG_CREATE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700798 }
Florin Coras88001c62019-04-24 14:44:46 -0700799 fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
Florin Coras62ddc032019-12-08 18:30:42 -0800800 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
801 props->rx_fifo_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800802 props->tx_fifo_size,
803 rx_fifo, tx_fifo);
liuyacan9f299032021-04-25 20:11:30 +0800804 if (alloc_fail)
805 {
806 clib_warning ("Added a segment, still can't allocate a fifo");
807 segment_manager_segment_reader_unlock (sm);
808 return SESSION_E_SEG_NO_SPACE2;
809 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700810 }
Florin Corasa332c462018-01-31 06:52:17 -0800811 else
812 {
Florin Coras47cb2482020-07-13 08:52:53 -0700813 SESSION_DBG ("Can't add new seg and no space to allocate fifos!");
Florin Coras00e01d32019-10-21 16:07:46 -0700814 return SESSION_E_SEG_NO_SPACE;
Florin Corasa332c462018-01-31 06:52:17 -0800815 }
liuyacan9f299032021-04-25 20:11:30 +0800816
817alloc_success:
818 ASSERT (rx_fifo && tx_fifo);
819
820 sm_index = segment_manager_index (sm);
821 fs_index = segment_manager_segment_index (sm, fs);
822 (*tx_fifo)->segment_manager = sm_index;
823 (*rx_fifo)->segment_manager = sm_index;
824 (*tx_fifo)->segment_index = fs_index;
825 (*rx_fifo)->segment_index = fs_index;
826
827 /* Drop the lock after app is notified */
828 segment_manager_segment_reader_unlock (sm);
829
830 return rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700831}
832
833void
Florin Coras19223e02019-03-03 14:56:05 -0800834segment_manager_dealloc_fifos (svm_fifo_t * rx_fifo, svm_fifo_t * tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700835{
Florin Corasa332c462018-01-31 06:52:17 -0800836 segment_manager_t *sm;
Florin Corasb095a3c2019-04-25 12:58:46 -0700837 fifo_segment_t *fs;
Florin Coras19223e02019-03-03 14:56:05 -0800838 u32 segment_index;
Florin Corasa5464812017-04-19 13:00:05 -0700839
Florin Coras58a93e82019-01-14 23:33:46 -0800840 if (!rx_fifo || !tx_fifo)
841 return;
842
Florin Corasa5464812017-04-19 13:00:05 -0700843 /* It's possible to have no segment manager if the session was removed
Florin Corasc87c91d2017-08-16 19:55:49 -0700844 * as result of a detach. */
Florin Corasa332c462018-01-31 06:52:17 -0800845 if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
Florin Corasa5464812017-04-19 13:00:05 -0700846 return;
847
Florin Coras19223e02019-03-03 14:56:05 -0800848 segment_index = rx_fifo->segment_index;
Florin Coras88001c62019-04-24 14:44:46 -0700849 fs = segment_manager_get_segment_w_lock (sm, segment_index);
850 fifo_segment_free_fifo (fs, rx_fifo);
851 fifo_segment_free_fifo (fs, tx_fifo);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700852
Florin Corasc87c91d2017-08-16 19:55:49 -0700853 /*
854 * Try to remove svm segment if it has no fifos. This can be done only if
855 * the segment is not the first in the segment manager or if it is first
856 * and it is not protected. Moreover, if the segment is first and the app
857 * has detached from the segment manager, remove the segment manager.
858 */
Florin Coras88001c62019-04-24 14:44:46 -0700859 if (!fifo_segment_has_fifos (fs))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 {
Florin Corasa332c462018-01-31 06:52:17 -0800861 segment_manager_segment_reader_unlock (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700862
863 /* Remove segment if it holds no fifos or first but not protected */
Florin Corasa332c462018-01-31 06:52:17 -0800864 if (segment_index != 0 || !sm->first_is_protected)
Florin Coras2d0e3de2020-10-23 16:31:40 -0700865 sm_lock_and_del_segment_inline (sm, segment_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700866
867 /* Remove segment manager if no sessions and detached from app */
Florin Coras9d063042017-09-14 03:08:00 -0400868 if (segment_manager_app_detached (sm)
869 && !segment_manager_has_fifos (sm))
Florin Coras506aa3c2020-12-13 21:09:59 -0800870 segment_manager_free_safe (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700871 }
Florin Corasa332c462018-01-31 06:52:17 -0800872 else
873 segment_manager_segment_reader_unlock (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700874}
875
Florin Coras6d7552c2020-04-09 01:49:45 +0000876void
Florin Coras0bc78d82021-01-09 14:34:01 -0800877segment_manager_detach_fifo (segment_manager_t *sm, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000878{
879 fifo_segment_t *fs;
880
Florin Coras0bc78d82021-01-09 14:34:01 -0800881 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000882 fifo_segment_detach_fifo (fs, f);
883 segment_manager_segment_reader_unlock (sm);
884}
885
886void
Florin Coras0bc78d82021-01-09 14:34:01 -0800887segment_manager_attach_fifo (segment_manager_t *sm, svm_fifo_t **f,
888 session_t *s)
Florin Coras6d7552c2020-04-09 01:49:45 +0000889{
890 fifo_segment_t *fs;
891
Florin Coras0bc78d82021-01-09 14:34:01 -0800892 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000893 fifo_segment_attach_fifo (fs, f, s->thread_index);
894 segment_manager_segment_reader_unlock (sm);
895
Florin Coras0bc78d82021-01-09 14:34:01 -0800896 (*f)->shr->master_session_index = s->session_index;
897 (*f)->master_thread_index = s->thread_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000898}
899
Florin Coras3c2fed52018-07-04 04:15:05 -0700900u32
901segment_manager_evt_q_expected_size (u32 q_len)
902{
903 u32 fifo_evt_size, notif_q_size, q_hdrs;
904 u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
905
Florin Coras52207f12018-07-12 14:48:06 -0700906 fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
Florin Coras3c2fed52018-07-04 04:15:05 -0700907 notif_q_size = clib_max (16, q_len >> 4);
908
909 msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
910 fifo_evt_ring_sz = q_len * fifo_evt_size;
911 session_ntf_ring_sz = notif_q_size * 256;
912 q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
913
914 return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
915}
916
Florin Corasa5464812017-04-19 13:00:05 -0700917/**
918 * Allocates shm queue in the first segment
Florin Corasa332c462018-01-31 06:52:17 -0800919 *
920 * Must be called with lock held
Florin Corasa5464812017-04-19 13:00:05 -0700921 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700922svm_msg_q_t *
Florin Coras88001c62019-04-24 14:44:46 -0700923segment_manager_alloc_queue (fifo_segment_t * segment,
924 segment_manager_props_t * props)
Florin Corasa5464812017-04-19 13:00:05 -0700925{
Florin Coras3c2fed52018-07-04 04:15:05 -0700926 u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
927 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
928 svm_msg_q_t *q;
Florin Corasa5464812017-04-19 13:00:05 -0700929
Florin Coras52207f12018-07-12 14:48:06 -0700930 fifo_evt_size = sizeof (session_event_t);
Florin Coras99368312018-08-02 10:45:44 -0700931 notif_q_size = clib_max (16, props->evt_q_size >> 4);
Florin Coras3c2fed52018-07-04 04:15:05 -0700932 /* *INDENT-OFF* */
933 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
Florin Coras99368312018-08-02 10:45:44 -0700934 {props->evt_q_size, fifo_evt_size, 0},
Florin Coras3c2fed52018-07-04 04:15:05 -0700935 {notif_q_size, session_evt_size, 0}
936 };
937 /* *INDENT-ON* */
938 cfg->consumer_pid = 0;
939 cfg->n_rings = 2;
Florin Coras99368312018-08-02 10:45:44 -0700940 cfg->q_nitems = props->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -0700941 cfg->ring_cfgs = rc;
Florin Corasa5464812017-04-19 13:00:05 -0700942
Florin Corasb4624182020-12-11 13:58:12 -0800943 q = fifo_segment_msg_q_alloc (segment, 0, cfg);
Florin Coras99368312018-08-02 10:45:44 -0700944
945 if (props->use_mq_eventfd)
946 {
Florin Coras86f12322021-01-22 15:05:14 -0800947 if (svm_msg_q_alloc_eventfd (q))
Florin Coras99368312018-08-02 10:45:44 -0700948 clib_warning ("failed to alloc eventfd");
949 }
Florin Corasa5464812017-04-19 13:00:05 -0700950 return q;
951}
952
Florin Coras88001c62019-04-24 14:44:46 -0700953svm_msg_q_t *
954segment_manager_event_queue (segment_manager_t * sm)
955{
956 return sm->event_queue;
957}
958
Florin Corasa5464812017-04-19 13:00:05 -0700959/**
960 * Frees shm queue allocated in the first segment
961 */
962void
Florin Corase86a8ed2018-01-05 03:20:25 -0800963segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q)
Florin Corasa5464812017-04-19 13:00:05 -0700964{
Florin Coras88001c62019-04-24 14:44:46 -0700965 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800966 ssvm_shared_header_t *sh;
Florin Corasa5464812017-04-19 13:00:05 -0700967 void *oldheap;
968
Florin Corasa332c462018-01-31 06:52:17 -0800969 ASSERT (!pool_is_free_index (sm->segments, 0));
Florin Corasa5464812017-04-19 13:00:05 -0700970
Florin Corasa332c462018-01-31 06:52:17 -0800971 segment = segment_manager_get_segment_w_lock (sm, 0);
Florin Corasa5464812017-04-19 13:00:05 -0700972 sh = segment->ssvm.sh;
973
974 oldheap = ssvm_push_heap (sh);
Florin Corase86a8ed2018-01-05 03:20:25 -0800975 svm_queue_free (q);
Florin Corasa5464812017-04-19 13:00:05 -0700976 ssvm_pop_heap (oldheap);
Florin Corasa332c462018-01-31 06:52:17 -0800977 segment_manager_segment_reader_unlock (sm);
978}
979
980/*
981 * Init segment vm address allocator
982 */
983void
Florin Coras9a45bd82020-12-28 16:28:07 -0800984segment_manager_main_init (void)
Florin Corasa332c462018-01-31 06:52:17 -0800985{
Florin Coras88001c62019-04-24 14:44:46 -0700986 segment_manager_main_t *sm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -0700987
988 sm->default_fifo_size = 1 << 12;
989 sm->default_segment_size = 1 << 20;
990 sm->default_app_mq_size = 128;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000991 sm->default_max_fifo_size = 4 << 20;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000992 sm->default_high_watermark = 80;
993 sm->default_low_watermark = 50;
Florin Corasa5464812017-04-19 13:00:05 -0700994}
995
Florin Corasc87c91d2017-08-16 19:55:49 -0700996static clib_error_t *
997segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input,
998 vlib_cli_command_t * cmd)
999{
Florin Coras88001c62019-04-24 14:44:46 -07001000 segment_manager_main_t *smm = &sm_main;
Florin Corasb384b542018-01-15 01:08:33 -08001001 u8 show_segments = 0, verbose = 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001002 uword max_fifo_size;
Florin Coras5368bb02019-06-09 09:24:33 -07001003 segment_manager_t *sm;
1004 fifo_segment_t *seg;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001005 app_worker_t *app_wrk;
1006 application_t *app;
1007 u8 custom_logic;
Dave Barach91f3e742017-09-01 19:12:11 -04001008
Florin Corasc87c91d2017-08-16 19:55:49 -07001009 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1010 {
1011 if (unformat (input, "segments"))
1012 show_segments = 1;
1013 else if (unformat (input, "verbose"))
1014 verbose = 1;
1015 else
1016 return clib_error_return (0, "unknown input `%U'",
1017 format_unformat_error, input);
1018 }
1019 vlib_cli_output (vm, "%d segment managers allocated",
Florin Corasa332c462018-01-31 06:52:17 -08001020 pool_elts (smm->segment_managers));
1021 if (verbose && pool_elts (smm->segment_managers))
Florin Corasc87c91d2017-08-16 19:55:49 -07001022 {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001023 vlib_cli_output (vm, "%-6s%=10s%=10s%=13s%=11s%=11s%=12s",
1024 "Index", "AppIndex", "Segments", "MaxFifoSize",
1025 "HighWater", "LowWater", "FifoTuning");
Florin Corasc87c91d2017-08-16 19:55:49 -07001026
1027 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001028 pool_foreach (sm, smm->segment_managers) {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001029 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
1030 app = app_wrk ? application_get (app_wrk->app_index) : 0;
1031 custom_logic = (app && (app->cb_fns.fifo_tuning_callback)) ? 1 : 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001032 max_fifo_size = sm->max_fifo_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001033
1034 vlib_cli_output (vm, "%-6d%=10d%=10d%=13U%=11d%=11d%=12s",
1035 segment_manager_index (sm),
1036 sm->app_wrk_index, pool_elts (sm->segments),
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001037 format_memory_size, max_fifo_size,
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001038 sm->high_watermark, sm->low_watermark,
1039 custom_logic ? "custom" : "none");
Damjan Marionb2c31b62020-12-13 21:47:40 +01001040 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001041 /* *INDENT-ON* */
1042
Florin Coras2a7c0b62020-09-28 23:40:28 -07001043 vlib_cli_output (vm, "\n");
Florin Corasc87c91d2017-08-16 19:55:49 -07001044 }
1045 if (show_segments)
1046 {
Florin Coras5368bb02019-06-09 09:24:33 -07001047 vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
Florin Corasc87c91d2017-08-16 19:55:49 -07001048
1049 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001050 pool_foreach (sm, smm->segment_managers) {
Florin Corasa332c462018-01-31 06:52:17 -08001051 segment_manager_foreach_segment_w_lock (seg, sm, ({
Florin Coras5368bb02019-06-09 09:24:33 -07001052 vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
Florin Corasa332c462018-01-31 06:52:17 -08001053 }));
Damjan Marionb2c31b62020-12-13 21:47:40 +01001054 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001055 /* *INDENT-ON* */
1056
1057 }
1058 return 0;
1059}
1060
Florin Corasad0c77f2017-11-09 18:00:15 -08001061/* *INDENT-OFF* */
Florin Corasc87c91d2017-08-16 19:55:49 -07001062VLIB_CLI_COMMAND (segment_manager_show_command, static) =
1063{
1064 .path = "show segment-manager",
Dave Barach91f3e742017-09-01 19:12:11 -04001065 .short_help = "show segment-manager [segments][verbose]",
Florin Corasc87c91d2017-08-16 19:55:49 -07001066 .function = segment_manager_show_fn,
1067};
1068/* *INDENT-ON* */
1069
Florin Coras88001c62019-04-24 14:44:46 -07001070void
1071segment_manager_format_sessions (segment_manager_t * sm, int verbose)
1072{
Florin Coras88001c62019-04-24 14:44:46 -07001073 vlib_main_t *vm = vlib_get_main ();
1074 app_worker_t *app_wrk;
Florin Coras62ddc032019-12-08 18:30:42 -08001075 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -07001076 const u8 *app_name;
Florin Coras62ddc032019-12-08 18:30:42 -08001077 int slice_index;
1078 u8 *s = 0, *str;
1079 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -07001080
1081 if (!sm)
1082 {
1083 if (verbose)
Xiaoming Jiang806709f2021-06-23 09:07:57 +00001084 vlib_cli_output (vm, "%-" SESSION_CLI_ID_LEN "s%-20s%-15s%-10s",
1085 "Connection", "App", "API Client", "SegManager");
Florin Coras88001c62019-04-24 14:44:46 -07001086 else
Xiaoming Jiang806709f2021-06-23 09:07:57 +00001087 vlib_cli_output (vm, "%-" SESSION_CLI_ID_LEN "s%-20s", "Connection",
1088 "App");
Florin Coras88001c62019-04-24 14:44:46 -07001089 return;
1090 }
1091
1092 app_wrk = app_worker_get (sm->app_wrk_index);
1093 app_name = application_name_from_index (app_wrk->app_index);
1094
1095 clib_rwlock_reader_lock (&sm->segments_rwlock);
1096
1097 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001098 pool_foreach (fs, sm->segments) {
Florin Coras62ddc032019-12-08 18:30:42 -08001099 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001100 {
Florin Coras62ddc032019-12-08 18:30:42 -08001101 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
1102 while (f)
1103 {
1104 u32 session_index, thread_index;
1105 session_t *session;
Florin Coras88001c62019-04-24 14:44:46 -07001106
Florin Corasc547e912020-12-08 17:50:45 -08001107 session_index = f->shr->master_session_index;
1108 thread_index = f->master_thread_index;
Florin Coras88001c62019-04-24 14:44:46 -07001109
Florin Corasc547e912020-12-08 17:50:45 -08001110 session = session_get (session_index, thread_index);
1111 str = format (0, "%U", format_session, session, verbose);
Florin Coras88001c62019-04-24 14:44:46 -07001112
Florin Corasc547e912020-12-08 17:50:45 -08001113 if (verbose)
Xiaoming Jiang806709f2021-06-23 09:07:57 +00001114 s = format (s, "%-" SESSION_CLI_ID_LEN "v%-20v%-15u%-10u", str,
1115 app_name, app_wrk->api_client_index,
Florin Corasc547e912020-12-08 17:50:45 -08001116 app_wrk->connects_seg_manager);
1117 else
Xiaoming Jiang806709f2021-06-23 09:07:57 +00001118 s = format (s, "%-" SESSION_CLI_ID_LEN "v%-20v", str, app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001119
Florin Corasc547e912020-12-08 17:50:45 -08001120 vlib_cli_output (vm, "%v", s);
1121 vec_reset_length (s);
1122 vec_free (str);
Florin Coras88001c62019-04-24 14:44:46 -07001123
Florin Corasc547e912020-12-08 17:50:45 -08001124 f = f->next;
1125 }
1126 vec_free (s);
Florin Coras88001c62019-04-24 14:44:46 -07001127 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001128 }
Florin Coras88001c62019-04-24 14:44:46 -07001129 /* *INDENT-ON* */
1130
1131 clib_rwlock_reader_unlock (&sm->segments_rwlock);
1132}
1133
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001134void
1135segment_manager_set_watermarks (segment_manager_t * sm,
1136 u8 high_watermark, u8 low_watermark)
1137{
Florin Coras8c79a4e2020-02-25 22:28:27 +00001138 ASSERT (high_watermark <= 100 && low_watermark <= 100 &&
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001139 low_watermark <= high_watermark);
1140
1141 sm->high_watermark = high_watermark;
1142 sm->low_watermark = low_watermark;
1143}
1144
Florin Coras6cf30ad2017-04-04 23:08:23 -07001145/*
1146 * fd.io coding-style-patch-verification: ON
1147 *
1148 * Local Variables:
1149 * eval: (c-set-style "gnu")
1150 * End:
1151 */