blob: 103f89ecfa8a550744013de6ca41678da8d727ea [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
liuyacan9f299032021-04-25 20:11:30 +080091segment_manager_add_segment (segment_manager_t *sm, uword segment_size,
92 u8 notify_app)
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;
Florin Coras9a45bd82020-12-28 16:28:07 -0800122 segment_size = round_pow2 (segment_size, clib_mem_get_page_size ());
Florin Corasf9d4ab42019-05-11 16:55:53 -0700123
Florin Coras88001c62019-04-24 14:44:46 -0700124 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
125 {
126 seg_name = format (0, "%d-%d%c", getpid (), smm->seg_name_counter++, 0);
Florin Coras88001c62019-04-24 14:44:46 -0700127 }
128 else
Florin Coras2a7c0b62020-09-28 23:40:28 -0700129 {
130 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
131 application_t *app = application_get (app_wrk->app_index);
132 seg_name = format (0, "%v segment%c", app->name, 0);
133 }
Florin Coras88001c62019-04-24 14:44:46 -0700134
135 fs->ssvm.ssvm_size = segment_size;
136 fs->ssvm.name = seg_name;
Florin Coras9a45bd82020-12-28 16:28:07 -0800137 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700138
Florin Coras5220a262020-09-29 18:11:24 -0700139 if ((rv = ssvm_server_init (&fs->ssvm, props->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700140 {
141 clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
142 segment_size);
Florin Coras88001c62019-04-24 14:44:46 -0700143 pool_put (sm->segments, fs);
144 goto done;
145 }
146
Florin Corasf9d4ab42019-05-11 16:55:53 -0700147 /*
148 * Initialize fifo segment
149 */
Florin Coras62ddc032019-12-08 18:30:42 -0800150 fs->n_slices = props->n_slices;
Florin Coras88001c62019-04-24 14:44:46 -0700151 fifo_segment_init (fs);
152
153 /*
154 * Save segment index before dropping lock, if any held
155 */
156 fs_index = fs - sm->segments;
157
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000158 /*
159 * Set watermarks in segment
160 */
161 fs->h->high_watermark = sm->high_watermark;
162 fs->h->low_watermark = sm->low_watermark;
Florin Coras2de9c0f2020-02-02 19:30:39 +0000163 fs->h->pct_first_alloc = props->pct_first_alloc;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000164 fs->h->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
165
liuyacan9f299032021-04-25 20:11:30 +0800166 if (notify_app)
167 {
168 app_worker_t *app_wrk;
169 u64 fs_handle;
170 fs_handle = segment_manager_segment_handle (sm, fs);
171 app_wrk = app_worker_get (sm->app_wrk_index);
172 rv = app_worker_add_segment_notify (app_wrk, fs_handle);
173 if (rv)
174 return rv;
175 }
Florin Coras88001c62019-04-24 14:44:46 -0700176done:
177
178 if (vlib_num_workers ())
179 clib_rwlock_writer_unlock (&sm->segments_rwlock);
180
181 return fs_index;
182}
183
184/**
Florin Corasa332c462018-01-31 06:52:17 -0800185 * Remove segment without lock
186 */
Florin Corasf8f516a2018-02-08 15:10:09 -0800187void
Florin Coras88001c62019-04-24 14:44:46 -0700188segment_manager_del_segment (segment_manager_t * sm, fifo_segment_t * fs)
Florin Corasa332c462018-01-31 06:52:17 -0800189{
Florin Corasa332c462018-01-31 06:52:17 -0800190 if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800191 {
Florin Corasea7e7082020-07-07 17:57:28 -0700192 if (!segment_manager_app_detached (sm))
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800193 {
194 app_worker_t *app_wrk;
195 u64 segment_handle;
196 app_wrk = app_worker_get (sm->app_wrk_index);
197 segment_handle = segment_manager_segment_handle (sm, fs);
198 app_worker_del_segment_notify (app_wrk, segment_handle);
199 }
200 }
Florin Corasa332c462018-01-31 06:52:17 -0800201
Florin Corasc547e912020-12-08 17:50:45 -0800202 fifo_segment_cleanup (fs);
Florin Corasa332c462018-01-31 06:52:17 -0800203 ssvm_delete (&fs->ssvm);
204
205 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400206 clib_memset (fs, 0xfb, sizeof (*fs));
Florin Corasa332c462018-01-31 06:52:17 -0800207 pool_put (sm->segments, fs);
208}
209
Florin Coras57660d92020-04-04 22:45:34 +0000210static fifo_segment_t *
211segment_manager_get_segment_if_valid (segment_manager_t * sm,
212 u32 segment_index)
213{
214 if (pool_is_free_index (sm->segments, segment_index))
215 return 0;
216 return pool_elt_at_index (sm->segments, segment_index);
217}
218
Florin Corasa332c462018-01-31 06:52:17 -0800219/**
220 * Removes segment after acquiring writer lock
221 */
Florin Coras99368312018-08-02 10:45:44 -0700222static inline void
Florin Coras2d0e3de2020-10-23 16:31:40 -0700223sm_lock_and_del_segment_inline (segment_manager_t * sm, u32 fs_index)
Florin Corasa332c462018-01-31 06:52:17 -0800224{
Florin Coras88001c62019-04-24 14:44:46 -0700225 fifo_segment_t *fs;
Florin Corasa332c462018-01-31 06:52:17 -0800226 u8 is_prealloc;
227
228 clib_rwlock_writer_lock (&sm->segments_rwlock);
Florin Coras57660d92020-04-04 22:45:34 +0000229
230 fs = segment_manager_get_segment_if_valid (sm, fs_index);
231 if (!fs)
232 goto done;
233
Florin Coras88001c62019-04-24 14:44:46 -0700234 is_prealloc = fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800235 if (is_prealloc && !segment_manager_app_detached (sm))
Florin Coras57660d92020-04-04 22:45:34 +0000236 goto done;
Florin Corasa332c462018-01-31 06:52:17 -0800237
238 segment_manager_del_segment (sm, fs);
Florin Coras57660d92020-04-04 22:45:34 +0000239
240done:
Florin Corasa332c462018-01-31 06:52:17 -0800241 clib_rwlock_writer_unlock (&sm->segments_rwlock);
242}
243
Florin Coras2d0e3de2020-10-23 16:31:40 -0700244void
245segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index)
246{
247 sm_lock_and_del_segment_inline (sm, fs_index);
248}
249
Florin Corasa332c462018-01-31 06:52:17 -0800250/**
251 * Reads a segment from the segment manager's pool without lock
252 */
Florin Coras88001c62019-04-24 14:44:46 -0700253fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800254segment_manager_get_segment (segment_manager_t * sm, u32 segment_index)
255{
256 return pool_elt_at_index (sm->segments, segment_index);
257}
258
Florin Corasfa76a762018-11-29 12:40:10 -0800259u64
260segment_manager_segment_handle (segment_manager_t * sm,
Florin Coras88001c62019-04-24 14:44:46 -0700261 fifo_segment_t * segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800262{
263 u32 segment_index = segment_manager_segment_index (sm, segment);
264 return (((u64) segment_manager_index (sm) << 32) | segment_index);
265}
266
Florin Coras88001c62019-04-24 14:44:46 -0700267u64
268segment_manager_make_segment_handle (u32 segment_manager_index,
269 u32 segment_index)
270{
271 return (((u64) segment_manager_index << 32) | segment_index);
272}
273
274fifo_segment_t *
Florin Corasfa76a762018-11-29 12:40:10 -0800275segment_manager_get_segment_w_handle (u64 segment_handle)
276{
277 u32 sm_index, segment_index;
278 segment_manager_t *sm;
279
280 segment_manager_parse_segment_handle (segment_handle, &sm_index,
281 &segment_index);
282 sm = segment_manager_get (sm_index);
283 if (!sm || pool_is_free_index (sm->segments, segment_index))
284 return 0;
285 return pool_elt_at_index (sm->segments, segment_index);
286}
287
Florin Corasa332c462018-01-31 06:52:17 -0800288/**
289 * Reads a segment from the segment manager's pool and acquires reader lock
290 *
291 * Caller must drop the reader's lock by calling
292 * @ref segment_manager_segment_reader_unlock once it finishes working with
293 * the segment.
294 */
Florin Coras88001c62019-04-24 14:44:46 -0700295fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800296segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index)
297{
298 clib_rwlock_reader_lock (&sm->segments_rwlock);
299 return pool_elt_at_index (sm->segments, segment_index);
300}
301
302void
Florin Coras75ccf7b2020-03-05 19:44:02 +0000303segment_manager_segment_reader_lock (segment_manager_t * sm)
304{
305 clib_rwlock_reader_lock (&sm->segments_rwlock);
306}
307
308void
Florin Corasa332c462018-01-31 06:52:17 -0800309segment_manager_segment_reader_unlock (segment_manager_t * sm)
310{
311 clib_rwlock_reader_unlock (&sm->segments_rwlock);
312}
313
314void
315segment_manager_segment_writer_unlock (segment_manager_t * sm)
316{
317 clib_rwlock_writer_unlock (&sm->segments_rwlock);
318}
319
Florin Corasa332c462018-01-31 06:52:17 -0800320segment_manager_t *
Florin Coras88001c62019-04-24 14:44:46 -0700321segment_manager_alloc (void)
Florin Corasa332c462018-01-31 06:52:17 -0800322{
Florin Coras88001c62019-04-24 14:44:46 -0700323 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800324 segment_manager_t *sm;
Florin Coras88001c62019-04-24 14:44:46 -0700325
326 pool_get_zero (smm->segment_managers, sm);
Florin Corasa332c462018-01-31 06:52:17 -0800327 clib_rwlock_init (&sm->segments_rwlock);
328 return sm;
329}
330
Florin Corasa332c462018-01-31 06:52:17 -0800331int
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000332segment_manager_init (segment_manager_t * sm)
Florin Corasa332c462018-01-31 06:52:17 -0800333{
Florin Coras88001c62019-04-24 14:44:46 -0700334 segment_manager_props_t *props;
Florin Corasa332c462018-01-31 06:52:17 -0800335
336 props = segment_manager_properties_get (sm);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000337
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000338 sm->max_fifo_size = props->max_fifo_size ?
339 props->max_fifo_size : sm_main.default_max_fifo_size;
340 sm->max_fifo_size = clib_max (sm->max_fifo_size, 4096);
341
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000342 segment_manager_set_watermarks (sm,
343 props->high_watermark,
344 props->low_watermark);
Florin Corasa107f402020-09-29 19:18:46 -0700345 return 0;
346}
347
348/**
349 * Initializes segment manager based on options provided.
350 * Returns error if ssvm segment(s) allocation fails.
351 */
352int
353segment_manager_init_first (segment_manager_t * sm)
354{
355 segment_manager_props_t *props;
356 uword first_seg_size;
357 fifo_segment_t *fs;
358 int fs_index, i;
359
360 segment_manager_init (sm);
361 props = segment_manager_properties_get (sm);
362 first_seg_size = clib_max (props->segment_size,
363 sm_main.default_segment_size);
Florin Corasa332c462018-01-31 06:52:17 -0800364
Florin Coras9845c202020-04-28 01:54:22 +0000365 if (props->prealloc_fifos)
Florin Corasa332c462018-01-31 06:52:17 -0800366 {
Florin Coras9845c202020-04-28 01:54:22 +0000367 u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
368 u32 rx_rounded_data_size, tx_rounded_data_size;
369 u32 prealloc_fifo_pairs = props->prealloc_fifos;
370 u32 rx_fifo_size, tx_fifo_size, pair_size;
371 u32 approx_segment_count;
372
Florin Corasa332c462018-01-31 06:52:17 -0800373 /* Figure out how many segments should be preallocated */
374 rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
375 tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
376
377 rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
378 tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
379 pair_size = rx_fifo_size + tx_fifo_size;
380
381 approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
382 if (first_seg_size > approx_total_size)
383 max_seg_size = first_seg_size;
384 approx_segment_count = (approx_total_size + (max_seg_size - 1))
385 / max_seg_size;
386
387 /* Allocate the segments */
388 for (i = 0; i < approx_segment_count + 1; i++)
389 {
liuyacan9f299032021-04-25 20:11:30 +0800390 fs_index = segment_manager_add_segment (sm, max_seg_size, 0);
Florin Coras9845c202020-04-28 01:54:22 +0000391 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800392 {
393 clib_warning ("Failed to preallocate segment %d", i);
Florin Coras9845c202020-04-28 01:54:22 +0000394 return fs_index;
Florin Corasa332c462018-01-31 06:52:17 -0800395 }
396
Florin Coras9845c202020-04-28 01:54:22 +0000397 fs = segment_manager_get_segment (sm, fs_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800398 if (i == 0)
Florin Coras9845c202020-04-28 01:54:22 +0000399 sm->event_queue = segment_manager_alloc_queue (fs, props);
Florin Corasf8f516a2018-02-08 15:10:09 -0800400
Florin Coras9845c202020-04-28 01:54:22 +0000401 fifo_segment_preallocate_fifo_pairs (fs,
Florin Coras88001c62019-04-24 14:44:46 -0700402 props->rx_fifo_size,
403 props->tx_fifo_size,
404 &prealloc_fifo_pairs);
Florin Coras9845c202020-04-28 01:54:22 +0000405 fifo_segment_flags (fs) = FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800406 if (prealloc_fifo_pairs == 0)
407 break;
408 }
Florin Coras9845c202020-04-28 01:54:22 +0000409 return 0;
Florin Corasa332c462018-01-31 06:52:17 -0800410 }
Florin Coras9845c202020-04-28 01:54:22 +0000411
liuyacan9f299032021-04-25 20:11:30 +0800412 fs_index = segment_manager_add_segment (sm, first_seg_size, 0);
Florin Coras9845c202020-04-28 01:54:22 +0000413 if (fs_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800414 {
Florin Coras9845c202020-04-28 01:54:22 +0000415 clib_warning ("Failed to allocate segment");
416 return fs_index;
417 }
418
419 fs = segment_manager_get_segment (sm, fs_index);
420 sm->event_queue = segment_manager_alloc_queue (fs, props);
421
422 if (props->prealloc_fifo_hdrs)
423 {
424 u32 hdrs_per_slice;
425
426 /* Do not preallocate on slice associated to main thread */
427 i = (vlib_num_workers ()? 1 : 0);
428 hdrs_per_slice = props->prealloc_fifo_hdrs / (fs->n_slices - i);
429
430 for (; i < fs->n_slices; i++)
Florin Corasa332c462018-01-31 06:52:17 -0800431 {
Florin Coras9845c202020-04-28 01:54:22 +0000432 if (fifo_segment_prealloc_fifo_hdrs (fs, i, hdrs_per_slice))
433 return VNET_API_ERROR_SVM_SEGMENT_CREATE_FAIL;
Florin Corasa332c462018-01-31 06:52:17 -0800434 }
Florin Corasa332c462018-01-31 06:52:17 -0800435 }
436
437 return 0;
438}
439
Florin Corasc8e812f2020-05-14 05:32:18 +0000440void
441segment_manager_cleanup_detached_listener (segment_manager_t * sm)
442{
443 app_worker_t *app_wrk;
444
445 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
446 if (!app_wrk)
447 return;
448
449 app_worker_del_detached_sm (app_wrk, segment_manager_index (sm));
450}
451
Florin Corasc87c91d2017-08-16 19:55:49 -0700452/**
Florin Coras88001c62019-04-24 14:44:46 -0700453 * Cleanup segment manager.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700454 */
455void
Florin Coras88001c62019-04-24 14:44:46 -0700456segment_manager_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700457{
Florin Coras88001c62019-04-24 14:44:46 -0700458 segment_manager_main_t *smm = &sm_main;
459 fifo_segment_t *fifo_segment;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400460
Florin Coras506aa3c2020-12-13 21:09:59 -0800461 ASSERT (vlib_get_thread_index () == 0
462 && !segment_manager_has_fifos (sm)
Florin Coras9d063042017-09-14 03:08:00 -0400463 && segment_manager_app_detached (sm));
464
Florin Corasc8e812f2020-05-14 05:32:18 +0000465 if (sm->flags & SEG_MANAGER_F_DETACHED_LISTENER)
466 segment_manager_cleanup_detached_listener (sm);
467
Florin Coras9d063042017-09-14 03:08:00 -0400468 /* If we have empty preallocated segments that haven't been removed, remove
469 * them now. Apart from that, the first segment in the first segment manager
470 * is not removed when all fifos are removed. It can only be removed when
471 * the manager is explicitly deleted/detached by the app. */
Florin Corasa332c462018-01-31 06:52:17 -0800472 clib_rwlock_writer_lock (&sm->segments_rwlock);
473
474 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100475 pool_foreach (fifo_segment, sm->segments) {
Florin Corasa332c462018-01-31 06:52:17 -0800476 segment_manager_del_segment (sm, fifo_segment);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100477 }
Florin Corasa332c462018-01-31 06:52:17 -0800478 /* *INDENT-ON* */
479
Florin Corasf1af21c2021-02-26 19:19:11 -0800480 pool_free (sm->segments);
Florin Corasa332c462018-01-31 06:52:17 -0800481 clib_rwlock_writer_unlock (&sm->segments_rwlock);
482
483 clib_rwlock_free (&sm->segments_rwlock);
Florin Corasc87c91d2017-08-16 19:55:49 -0700484 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400485 clib_memset (sm, 0xfe, sizeof (*sm));
Florin Corasa332c462018-01-31 06:52:17 -0800486 pool_put (smm->segment_managers, sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700487}
488
Florin Coras506aa3c2020-12-13 21:09:59 -0800489static void
490sm_free_w_index_helper (void *arg)
491{
492 u32 sm_index = *(u32 *) arg;
493 segment_manager_t *sm;
494
495 ASSERT (vlib_get_thread_index () == 0);
496
497 if ((sm = segment_manager_get_if_valid (sm_index)))
498 segment_manager_free (sm);
499}
500
501static void
502segment_manager_free_safe (segment_manager_t * sm)
503{
504 if (!vlib_thread_is_main_w_barrier ())
505 {
506 u32 sm_index = segment_manager_index (sm);
507 vlib_rpc_call_main_thread (sm_free_w_index_helper, (u8 *) & sm_index,
508 sizeof (sm_index));
509 }
510 else
511 {
512 segment_manager_free (sm);
513 }
514}
515
Florin Corasc87c91d2017-08-16 19:55:49 -0700516void
Florin Coras88001c62019-04-24 14:44:46 -0700517segment_manager_init_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700518{
Florin Coras506aa3c2020-12-13 21:09:59 -0800519 ASSERT (vlib_get_thread_index () == 0);
520
Florin Coras4e4531e2017-11-06 23:27:56 -0800521 segment_manager_app_detach (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700522 if (segment_manager_has_fifos (sm))
523 segment_manager_del_sessions (sm);
524 else
525 {
Florin Coras9d063042017-09-14 03:08:00 -0400526 ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
Florin Coras88001c62019-04-24 14:44:46 -0700527 segment_manager_free (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700528 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700529}
530
Florin Coras88001c62019-04-24 14:44:46 -0700531segment_manager_t *
532segment_manager_get (u32 index)
533{
534 return pool_elt_at_index (sm_main.segment_managers, index);
535}
536
537segment_manager_t *
538segment_manager_get_if_valid (u32 index)
539{
540 if (pool_is_free_index (sm_main.segment_managers, index))
541 return 0;
542 return pool_elt_at_index (sm_main.segment_managers, index);
543}
544
545u32
546segment_manager_index (segment_manager_t * sm)
547{
548 return sm - sm_main.segment_managers;
549}
550
551u8
552segment_manager_has_fifos (segment_manager_t * sm)
553{
554 fifo_segment_t *seg;
555 u8 first = 1;
556
557 /* *INDENT-OFF* */
558 segment_manager_foreach_segment_w_lock (seg, sm, ({
559 if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
560 && !(fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED))
561 {
562 clib_warning ("segment %d has no fifos!",
563 segment_manager_segment_index (sm, seg));
564 first = 0;
565 }
566 if (fifo_segment_has_fifos (seg))
567 {
568 segment_manager_segment_reader_unlock (sm);
569 return 1;
570 }
571 }));
572 /* *INDENT-ON* */
573
574 return 0;
575}
576
577/**
578 * Initiate disconnects for all sessions 'owned' by a segment manager
579 */
580void
581segment_manager_del_sessions (segment_manager_t * sm)
582{
Florin Coras88001c62019-04-24 14:44:46 -0700583 session_handle_t *handles = 0, *handle;
Florin Coras62ddc032019-12-08 18:30:42 -0800584 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700585 session_t *session;
Florin Coras62ddc032019-12-08 18:30:42 -0800586 int slice_index;
587 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -0700588
589 ASSERT (pool_elts (sm->segments) != 0);
590
591 /* Across all fifo segments used by the server */
592 /* *INDENT-OFF* */
Florin Coras62ddc032019-12-08 18:30:42 -0800593 segment_manager_foreach_segment_w_lock (fs, sm, ({
594 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -0700595 {
Florin Coras62ddc032019-12-08 18:30:42 -0800596 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
597
598 /*
599 * Remove any residual sessions from the session lookup table
600 * Don't bother deleting the individual fifos, we're going to
601 * throw away the fifo segment in a minute.
602 */
603 while (f)
604 {
Florin Corasc547e912020-12-08 17:50:45 -0800605 session = session_get_if_valid (f->shr->master_session_index,
606 f->master_thread_index);
607 if (session)
608 vec_add1 (handles, session_handle (session));
609 f = f->next;
610 }
Florin Coras88001c62019-04-24 14:44:46 -0700611 }
612
613 /* Instead of removing the segment, test when cleaning up disconnected
614 * sessions if the segment can be removed.
615 */
616 }));
617 /* *INDENT-ON* */
618
619 vec_foreach (handle, handles)
Florin Coras77ea42b2020-04-14 23:52:12 +0000620 {
621 session = session_get_from_handle (*handle);
622 session_close (session);
623 /* Avoid propagating notifications back to the app */
624 session->app_wrk_index = APP_INVALID_INDEX;
625 }
Florin Corasf1af21c2021-02-26 19:19:11 -0800626 vec_free (handles);
Florin Coras88001c62019-04-24 14:44:46 -0700627}
628
liuyacan87d48ad2021-04-28 11:34:03 +0000629/**
630 * Initiate disconnects for sessions in specified state 'owned' by a segment
631 * manager
632 */
633void
634segment_manager_del_sessions_filter (segment_manager_t *sm,
635 session_state_t *states)
636{
637 session_handle_t *handles = 0, *handle;
638 fifo_segment_t *fs;
639 session_t *session;
640 int slice_index;
641 svm_fifo_t *f;
642
643 ASSERT (pool_elts (sm->segments) != 0);
644
645 /* Across all fifo segments used by the server */
646 segment_manager_foreach_segment_w_lock (
647 fs, sm, ({
648 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
649 {
650 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
651 while (f)
652 {
653 session = session_get_if_valid (f->shr->master_session_index,
654 f->master_thread_index);
655 if (session)
656 {
657 session_state_t *state;
658 vec_foreach (state, states)
659 {
660 if (session->session_state == *state)
661 {
662 vec_add1 (handles, session_handle (session));
663 break;
664 }
665 }
666 }
667 f = f->next;
668 }
669 }
670 }));
671
672 vec_foreach (handle, handles)
673 {
674 session = session_get_from_handle (*handle);
675 session_close (session);
676 /* Avoid propagating notifications back to the app */
677 session->app_wrk_index = APP_INVALID_INDEX;
678 }
679 vec_free (handles);
680}
681
Florin Corasf8f516a2018-02-08 15:10:09 -0800682int
Florin Coras88001c62019-04-24 14:44:46 -0700683segment_manager_try_alloc_fifos (fifo_segment_t * fifo_segment,
Florin Coras62ddc032019-12-08 18:30:42 -0800684 u32 thread_index,
Florin Corasf8f516a2018-02-08 15:10:09 -0800685 u32 rx_fifo_size, u32 tx_fifo_size,
686 svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
Florin Corasa332c462018-01-31 06:52:17 -0800687{
Florin Coras88001c62019-04-24 14:44:46 -0700688 rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800689 *rx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
690 rx_fifo_size,
691 FIFO_SEGMENT_RX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800692
Florin Coras88001c62019-04-24 14:44:46 -0700693 tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800694 *tx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
695 tx_fifo_size,
696 FIFO_SEGMENT_TX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800697
698 if (*rx_fifo == 0)
699 {
700 /* This would be very odd, but handle it... */
701 if (*tx_fifo != 0)
702 {
Florin Coras88001c62019-04-24 14:44:46 -0700703 fifo_segment_free_fifo (fifo_segment, *tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800704 *tx_fifo = 0;
705 }
706 return -1;
707 }
708 if (*tx_fifo == 0)
709 {
710 if (*rx_fifo != 0)
711 {
Florin Coras88001c62019-04-24 14:44:46 -0700712 fifo_segment_free_fifo (fifo_segment, *rx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800713 *rx_fifo = 0;
714 }
715 return -1;
716 }
717
718 return 0;
719}
720
Florin Coras6cf30ad2017-04-04 23:08:23 -0700721int
722segment_manager_alloc_session_fifos (segment_manager_t * sm,
Florin Coras62ddc032019-12-08 18:30:42 -0800723 u32 thread_index,
Florin Corasb384b542018-01-15 01:08:33 -0800724 svm_fifo_t ** rx_fifo,
Florin Coras1219b2d2019-04-23 15:53:43 -0700725 svm_fifo_t ** tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700726{
Florin Corasa332c462018-01-31 06:52:17 -0800727 int alloc_fail = 1, rv = 0, new_fs_index;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000728 uword free_bytes, max_free_bytes = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700729 segment_manager_props_t *props;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000730 fifo_segment_t *fs = 0, *cur;
Florin Coras88001c62019-04-24 14:44:46 -0700731 u32 sm_index, fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700732
Florin Corasa332c462018-01-31 06:52:17 -0800733 props = segment_manager_properties_get (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700734
Florin Corasa332c462018-01-31 06:52:17 -0800735 /*
736 * Find the first free segment to allocate the fifos in
737 */
Florin Coras75ccf7b2020-03-05 19:44:02 +0000738
739 segment_manager_segment_reader_lock (sm);
740
741 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100742 pool_foreach (cur, sm->segments) {
Florin Coras75ccf7b2020-03-05 19:44:02 +0000743 free_bytes = fifo_segment_available_bytes (cur);
744 if (free_bytes > max_free_bytes)
745 {
746 max_free_bytes = free_bytes;
747 fs = cur;
748 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100749 }
Florin Coras75ccf7b2020-03-05 19:44:02 +0000750 /* *INDENT-ON* */
Florin Corasa5464812017-04-19 13:00:05 -0700751
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000752 if (fs)
753 {
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000754 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
755 props->rx_fifo_size,
756 props->tx_fifo_size,
757 rx_fifo, tx_fifo);
758 /* On success, keep lock until fifos are initialized */
759 if (!alloc_fail)
760 goto alloc_success;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000761 }
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000762
Florin Coras75ccf7b2020-03-05 19:44:02 +0000763 segment_manager_segment_reader_unlock (sm);
Florin Corasa332c462018-01-31 06:52:17 -0800764
Florin Corasa332c462018-01-31 06:52:17 -0800765 /*
766 * Allocation failed, see if we can add a new segment
767 */
768 if (props->add_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700769 {
liuyacan9f299032021-04-25 20:11:30 +0800770 if ((new_fs_index = segment_manager_add_segment (sm, 0, 1)) < 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700771 {
Florin Corasa332c462018-01-31 06:52:17 -0800772 clib_warning ("Failed to add new segment");
Florin Coras00e01d32019-10-21 16:07:46 -0700773 return SESSION_E_SEG_CREATE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700774 }
Florin Coras88001c62019-04-24 14:44:46 -0700775 fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
Florin Coras62ddc032019-12-08 18:30:42 -0800776 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
777 props->rx_fifo_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800778 props->tx_fifo_size,
779 rx_fifo, tx_fifo);
liuyacan9f299032021-04-25 20:11:30 +0800780 if (alloc_fail)
781 {
782 clib_warning ("Added a segment, still can't allocate a fifo");
783 segment_manager_segment_reader_unlock (sm);
784 return SESSION_E_SEG_NO_SPACE2;
785 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700786 }
Florin Corasa332c462018-01-31 06:52:17 -0800787 else
788 {
Florin Coras47cb2482020-07-13 08:52:53 -0700789 SESSION_DBG ("Can't add new seg and no space to allocate fifos!");
Florin Coras00e01d32019-10-21 16:07:46 -0700790 return SESSION_E_SEG_NO_SPACE;
Florin Corasa332c462018-01-31 06:52:17 -0800791 }
liuyacan9f299032021-04-25 20:11:30 +0800792
793alloc_success:
794 ASSERT (rx_fifo && tx_fifo);
795
796 sm_index = segment_manager_index (sm);
797 fs_index = segment_manager_segment_index (sm, fs);
798 (*tx_fifo)->segment_manager = sm_index;
799 (*rx_fifo)->segment_manager = sm_index;
800 (*tx_fifo)->segment_index = fs_index;
801 (*rx_fifo)->segment_index = fs_index;
802
803 /* Drop the lock after app is notified */
804 segment_manager_segment_reader_unlock (sm);
805
806 return rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700807}
808
809void
Florin Coras19223e02019-03-03 14:56:05 -0800810segment_manager_dealloc_fifos (svm_fifo_t * rx_fifo, svm_fifo_t * tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700811{
Florin Corasa332c462018-01-31 06:52:17 -0800812 segment_manager_t *sm;
Florin Corasb095a3c2019-04-25 12:58:46 -0700813 fifo_segment_t *fs;
Florin Coras19223e02019-03-03 14:56:05 -0800814 u32 segment_index;
Florin Corasa5464812017-04-19 13:00:05 -0700815
Florin Coras58a93e82019-01-14 23:33:46 -0800816 if (!rx_fifo || !tx_fifo)
817 return;
818
Florin Corasa5464812017-04-19 13:00:05 -0700819 /* It's possible to have no segment manager if the session was removed
Florin Corasc87c91d2017-08-16 19:55:49 -0700820 * as result of a detach. */
Florin Corasa332c462018-01-31 06:52:17 -0800821 if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
Florin Corasa5464812017-04-19 13:00:05 -0700822 return;
823
Florin Coras19223e02019-03-03 14:56:05 -0800824 segment_index = rx_fifo->segment_index;
Florin Coras88001c62019-04-24 14:44:46 -0700825 fs = segment_manager_get_segment_w_lock (sm, segment_index);
826 fifo_segment_free_fifo (fs, rx_fifo);
827 fifo_segment_free_fifo (fs, tx_fifo);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700828
Florin Corasc87c91d2017-08-16 19:55:49 -0700829 /*
830 * Try to remove svm segment if it has no fifos. This can be done only if
831 * the segment is not the first in the segment manager or if it is first
832 * and it is not protected. Moreover, if the segment is first and the app
833 * has detached from the segment manager, remove the segment manager.
834 */
Florin Coras88001c62019-04-24 14:44:46 -0700835 if (!fifo_segment_has_fifos (fs))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700836 {
Florin Corasa332c462018-01-31 06:52:17 -0800837 segment_manager_segment_reader_unlock (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700838
839 /* Remove segment if it holds no fifos or first but not protected */
Florin Corasa332c462018-01-31 06:52:17 -0800840 if (segment_index != 0 || !sm->first_is_protected)
Florin Coras2d0e3de2020-10-23 16:31:40 -0700841 sm_lock_and_del_segment_inline (sm, segment_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700842
843 /* Remove segment manager if no sessions and detached from app */
Florin Coras9d063042017-09-14 03:08:00 -0400844 if (segment_manager_app_detached (sm)
845 && !segment_manager_has_fifos (sm))
Florin Coras506aa3c2020-12-13 21:09:59 -0800846 segment_manager_free_safe (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700847 }
Florin Corasa332c462018-01-31 06:52:17 -0800848 else
849 segment_manager_segment_reader_unlock (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700850}
851
Florin Coras6d7552c2020-04-09 01:49:45 +0000852void
Florin Coras0bc78d82021-01-09 14:34:01 -0800853segment_manager_detach_fifo (segment_manager_t *sm, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000854{
855 fifo_segment_t *fs;
856
Florin Coras0bc78d82021-01-09 14:34:01 -0800857 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000858 fifo_segment_detach_fifo (fs, f);
859 segment_manager_segment_reader_unlock (sm);
860}
861
862void
Florin Coras0bc78d82021-01-09 14:34:01 -0800863segment_manager_attach_fifo (segment_manager_t *sm, svm_fifo_t **f,
864 session_t *s)
Florin Coras6d7552c2020-04-09 01:49:45 +0000865{
866 fifo_segment_t *fs;
867
Florin Coras0bc78d82021-01-09 14:34:01 -0800868 fs = segment_manager_get_segment_w_lock (sm, (*f)->segment_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000869 fifo_segment_attach_fifo (fs, f, s->thread_index);
870 segment_manager_segment_reader_unlock (sm);
871
Florin Coras0bc78d82021-01-09 14:34:01 -0800872 (*f)->shr->master_session_index = s->session_index;
873 (*f)->master_thread_index = s->thread_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000874}
875
Florin Coras3c2fed52018-07-04 04:15:05 -0700876u32
877segment_manager_evt_q_expected_size (u32 q_len)
878{
879 u32 fifo_evt_size, notif_q_size, q_hdrs;
880 u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
881
Florin Coras52207f12018-07-12 14:48:06 -0700882 fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
Florin Coras3c2fed52018-07-04 04:15:05 -0700883 notif_q_size = clib_max (16, q_len >> 4);
884
885 msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
886 fifo_evt_ring_sz = q_len * fifo_evt_size;
887 session_ntf_ring_sz = notif_q_size * 256;
888 q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
889
890 return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
891}
892
Florin Corasa5464812017-04-19 13:00:05 -0700893/**
894 * Allocates shm queue in the first segment
Florin Corasa332c462018-01-31 06:52:17 -0800895 *
896 * Must be called with lock held
Florin Corasa5464812017-04-19 13:00:05 -0700897 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700898svm_msg_q_t *
Florin Coras88001c62019-04-24 14:44:46 -0700899segment_manager_alloc_queue (fifo_segment_t * segment,
900 segment_manager_props_t * props)
Florin Corasa5464812017-04-19 13:00:05 -0700901{
Florin Coras3c2fed52018-07-04 04:15:05 -0700902 u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
903 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
904 svm_msg_q_t *q;
Florin Corasa5464812017-04-19 13:00:05 -0700905
Florin Coras52207f12018-07-12 14:48:06 -0700906 fifo_evt_size = sizeof (session_event_t);
Florin Coras99368312018-08-02 10:45:44 -0700907 notif_q_size = clib_max (16, props->evt_q_size >> 4);
Florin Coras3c2fed52018-07-04 04:15:05 -0700908 /* *INDENT-OFF* */
909 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
Florin Coras99368312018-08-02 10:45:44 -0700910 {props->evt_q_size, fifo_evt_size, 0},
Florin Coras3c2fed52018-07-04 04:15:05 -0700911 {notif_q_size, session_evt_size, 0}
912 };
913 /* *INDENT-ON* */
914 cfg->consumer_pid = 0;
915 cfg->n_rings = 2;
Florin Coras99368312018-08-02 10:45:44 -0700916 cfg->q_nitems = props->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -0700917 cfg->ring_cfgs = rc;
Florin Corasa5464812017-04-19 13:00:05 -0700918
Florin Corasb4624182020-12-11 13:58:12 -0800919 q = fifo_segment_msg_q_alloc (segment, 0, cfg);
Florin Coras99368312018-08-02 10:45:44 -0700920
921 if (props->use_mq_eventfd)
922 {
Florin Coras86f12322021-01-22 15:05:14 -0800923 if (svm_msg_q_alloc_eventfd (q))
Florin Coras99368312018-08-02 10:45:44 -0700924 clib_warning ("failed to alloc eventfd");
925 }
Florin Corasa5464812017-04-19 13:00:05 -0700926 return q;
927}
928
Florin Coras88001c62019-04-24 14:44:46 -0700929svm_msg_q_t *
930segment_manager_event_queue (segment_manager_t * sm)
931{
932 return sm->event_queue;
933}
934
Florin Corasa5464812017-04-19 13:00:05 -0700935/**
936 * Frees shm queue allocated in the first segment
937 */
938void
Florin Corase86a8ed2018-01-05 03:20:25 -0800939segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q)
Florin Corasa5464812017-04-19 13:00:05 -0700940{
Florin Coras88001c62019-04-24 14:44:46 -0700941 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800942 ssvm_shared_header_t *sh;
Florin Corasa5464812017-04-19 13:00:05 -0700943 void *oldheap;
944
Florin Corasa332c462018-01-31 06:52:17 -0800945 ASSERT (!pool_is_free_index (sm->segments, 0));
Florin Corasa5464812017-04-19 13:00:05 -0700946
Florin Corasa332c462018-01-31 06:52:17 -0800947 segment = segment_manager_get_segment_w_lock (sm, 0);
Florin Corasa5464812017-04-19 13:00:05 -0700948 sh = segment->ssvm.sh;
949
950 oldheap = ssvm_push_heap (sh);
Florin Corase86a8ed2018-01-05 03:20:25 -0800951 svm_queue_free (q);
Florin Corasa5464812017-04-19 13:00:05 -0700952 ssvm_pop_heap (oldheap);
Florin Corasa332c462018-01-31 06:52:17 -0800953 segment_manager_segment_reader_unlock (sm);
954}
955
956/*
957 * Init segment vm address allocator
958 */
959void
Florin Coras9a45bd82020-12-28 16:28:07 -0800960segment_manager_main_init (void)
Florin Corasa332c462018-01-31 06:52:17 -0800961{
Florin Coras88001c62019-04-24 14:44:46 -0700962 segment_manager_main_t *sm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -0700963
964 sm->default_fifo_size = 1 << 12;
965 sm->default_segment_size = 1 << 20;
966 sm->default_app_mq_size = 128;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000967 sm->default_max_fifo_size = 4 << 20;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000968 sm->default_high_watermark = 80;
969 sm->default_low_watermark = 50;
Florin Corasa5464812017-04-19 13:00:05 -0700970}
971
Florin Corasc87c91d2017-08-16 19:55:49 -0700972static clib_error_t *
973segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input,
974 vlib_cli_command_t * cmd)
975{
Florin Coras88001c62019-04-24 14:44:46 -0700976 segment_manager_main_t *smm = &sm_main;
Florin Corasb384b542018-01-15 01:08:33 -0800977 u8 show_segments = 0, verbose = 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000978 uword max_fifo_size;
Florin Coras5368bb02019-06-09 09:24:33 -0700979 segment_manager_t *sm;
980 fifo_segment_t *seg;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000981 app_worker_t *app_wrk;
982 application_t *app;
983 u8 custom_logic;
Dave Barach91f3e742017-09-01 19:12:11 -0400984
Florin Corasc87c91d2017-08-16 19:55:49 -0700985 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
986 {
987 if (unformat (input, "segments"))
988 show_segments = 1;
989 else if (unformat (input, "verbose"))
990 verbose = 1;
991 else
992 return clib_error_return (0, "unknown input `%U'",
993 format_unformat_error, input);
994 }
995 vlib_cli_output (vm, "%d segment managers allocated",
Florin Corasa332c462018-01-31 06:52:17 -0800996 pool_elts (smm->segment_managers));
997 if (verbose && pool_elts (smm->segment_managers))
Florin Corasc87c91d2017-08-16 19:55:49 -0700998 {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000999 vlib_cli_output (vm, "%-6s%=10s%=10s%=13s%=11s%=11s%=12s",
1000 "Index", "AppIndex", "Segments", "MaxFifoSize",
1001 "HighWater", "LowWater", "FifoTuning");
Florin Corasc87c91d2017-08-16 19:55:49 -07001002
1003 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001004 pool_foreach (sm, smm->segment_managers) {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001005 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
1006 app = app_wrk ? application_get (app_wrk->app_index) : 0;
1007 custom_logic = (app && (app->cb_fns.fifo_tuning_callback)) ? 1 : 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001008 max_fifo_size = sm->max_fifo_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001009
1010 vlib_cli_output (vm, "%-6d%=10d%=10d%=13U%=11d%=11d%=12s",
1011 segment_manager_index (sm),
1012 sm->app_wrk_index, pool_elts (sm->segments),
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001013 format_memory_size, max_fifo_size,
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +00001014 sm->high_watermark, sm->low_watermark,
1015 custom_logic ? "custom" : "none");
Damjan Marionb2c31b62020-12-13 21:47:40 +01001016 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001017 /* *INDENT-ON* */
1018
Florin Coras2a7c0b62020-09-28 23:40:28 -07001019 vlib_cli_output (vm, "\n");
Florin Corasc87c91d2017-08-16 19:55:49 -07001020 }
1021 if (show_segments)
1022 {
Florin Coras5368bb02019-06-09 09:24:33 -07001023 vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
Florin Corasc87c91d2017-08-16 19:55:49 -07001024
1025 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001026 pool_foreach (sm, smm->segment_managers) {
Florin Corasa332c462018-01-31 06:52:17 -08001027 segment_manager_foreach_segment_w_lock (seg, sm, ({
Florin Coras5368bb02019-06-09 09:24:33 -07001028 vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
Florin Corasa332c462018-01-31 06:52:17 -08001029 }));
Damjan Marionb2c31b62020-12-13 21:47:40 +01001030 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001031 /* *INDENT-ON* */
1032
1033 }
1034 return 0;
1035}
1036
Florin Corasad0c77f2017-11-09 18:00:15 -08001037/* *INDENT-OFF* */
Florin Corasc87c91d2017-08-16 19:55:49 -07001038VLIB_CLI_COMMAND (segment_manager_show_command, static) =
1039{
1040 .path = "show segment-manager",
Dave Barach91f3e742017-09-01 19:12:11 -04001041 .short_help = "show segment-manager [segments][verbose]",
Florin Corasc87c91d2017-08-16 19:55:49 -07001042 .function = segment_manager_show_fn,
1043};
1044/* *INDENT-ON* */
1045
Florin Coras88001c62019-04-24 14:44:46 -07001046void
1047segment_manager_format_sessions (segment_manager_t * sm, int verbose)
1048{
Florin Coras88001c62019-04-24 14:44:46 -07001049 vlib_main_t *vm = vlib_get_main ();
1050 app_worker_t *app_wrk;
Florin Coras62ddc032019-12-08 18:30:42 -08001051 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -07001052 const u8 *app_name;
Florin Coras62ddc032019-12-08 18:30:42 -08001053 int slice_index;
1054 u8 *s = 0, *str;
1055 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -07001056
1057 if (!sm)
1058 {
1059 if (verbose)
1060 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
1061 "API Client", "SegManager");
1062 else
1063 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
1064 return;
1065 }
1066
1067 app_wrk = app_worker_get (sm->app_wrk_index);
1068 app_name = application_name_from_index (app_wrk->app_index);
1069
1070 clib_rwlock_reader_lock (&sm->segments_rwlock);
1071
1072 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001073 pool_foreach (fs, sm->segments) {
Florin Coras62ddc032019-12-08 18:30:42 -08001074 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001075 {
Florin Coras62ddc032019-12-08 18:30:42 -08001076 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
1077 while (f)
1078 {
1079 u32 session_index, thread_index;
1080 session_t *session;
Florin Coras88001c62019-04-24 14:44:46 -07001081
Florin Corasc547e912020-12-08 17:50:45 -08001082 session_index = f->shr->master_session_index;
1083 thread_index = f->master_thread_index;
Florin Coras88001c62019-04-24 14:44:46 -07001084
Florin Corasc547e912020-12-08 17:50:45 -08001085 session = session_get (session_index, thread_index);
1086 str = format (0, "%U", format_session, session, verbose);
Florin Coras88001c62019-04-24 14:44:46 -07001087
Florin Corasc547e912020-12-08 17:50:45 -08001088 if (verbose)
1089 s = format (s, "%-40v%-20v%-15u%-10u", str, app_name,
1090 app_wrk->api_client_index,
1091 app_wrk->connects_seg_manager);
1092 else
1093 s = format (s, "%-40v%-20v", str, app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001094
Florin Corasc547e912020-12-08 17:50:45 -08001095 vlib_cli_output (vm, "%v", s);
1096 vec_reset_length (s);
1097 vec_free (str);
Florin Coras88001c62019-04-24 14:44:46 -07001098
Florin Corasc547e912020-12-08 17:50:45 -08001099 f = f->next;
1100 }
1101 vec_free (s);
Florin Coras88001c62019-04-24 14:44:46 -07001102 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001103 }
Florin Coras88001c62019-04-24 14:44:46 -07001104 /* *INDENT-ON* */
1105
1106 clib_rwlock_reader_unlock (&sm->segments_rwlock);
1107}
1108
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001109void
1110segment_manager_set_watermarks (segment_manager_t * sm,
1111 u8 high_watermark, u8 low_watermark)
1112{
Florin Coras8c79a4e2020-02-25 22:28:27 +00001113 ASSERT (high_watermark <= 100 && low_watermark <= 100 &&
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001114 low_watermark <= high_watermark);
1115
1116 sm->high_watermark = high_watermark;
1117 sm->low_watermark = low_watermark;
1118}
1119
Florin Coras6cf30ad2017-04-04 23:08:23 -07001120/*
1121 * fd.io coding-style-patch-verification: ON
1122 *
1123 * Local Variables:
1124 * eval: (c-set-style "gnu")
1125 * End:
1126 */