blob: 154c7a61880439569c48a7fdd692d3ab0c651e6c [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 */
23 clib_valloc_main_t va_allocator; /**< Virtual address allocator */
24 u32 seg_name_counter; /**< Counter for segment names */
Florin Corasa332c462018-01-31 06:52:17 -080025
Florin Coras88001c62019-04-24 14:44:46 -070026 /*
27 * Configuration
28 */
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +000029 u32 default_fifo_size; /**< default rx/tx fifo size */
30 u32 default_segment_size; /**< default fifo segment size */
31 u32 default_app_mq_size; /**< default app msg q size */
32 u32 default_max_fifo_size; /**< default max fifo size */
33 u8 default_high_watermark; /**< default high watermark % */
34 u8 default_low_watermark; /**< default low watermark % */
Florin Coras88001c62019-04-24 14:44:46 -070035} segment_manager_main_t;
Florin Corasa5464812017-04-19 13:00:05 -070036
Florin Coras88001c62019-04-24 14:44:46 -070037static segment_manager_main_t sm_main;
Florin Coras6cf30ad2017-04-04 23:08:23 -070038
Florin Coras88001c62019-04-24 14:44:46 -070039#define segment_manager_foreach_segment_w_lock(VAR, SM, BODY) \
40do { \
41 clib_rwlock_reader_lock (&(SM)->segments_rwlock); \
42 pool_foreach((VAR), ((SM)->segments), (BODY)); \
43 clib_rwlock_reader_unlock (&(SM)->segments_rwlock); \
44} while (0)
45
46static segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -080047segment_manager_properties_get (segment_manager_t * sm)
Florin Corasad0c77f2017-11-09 18:00:15 -080048{
Florin Corasab2f6db2018-08-31 14:31:41 -070049 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
50 return application_get_segment_manager_properties (app_wrk->app_index);
Florin Corasa332c462018-01-31 06:52:17 -080051}
52
Florin Coras88001c62019-04-24 14:44:46 -070053segment_manager_props_t *
54segment_manager_props_init (segment_manager_props_t * props)
Florin Corasa332c462018-01-31 06:52:17 -080055{
Florin Coras88001c62019-04-24 14:44:46 -070056 props->add_segment_size = sm_main.default_segment_size;
57 props->rx_fifo_size = sm_main.default_fifo_size;
58 props->tx_fifo_size = sm_main.default_fifo_size;
59 props->evt_q_size = sm_main.default_app_mq_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +000060 props->max_fifo_size = sm_main.default_max_fifo_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000061 props->high_watermark = sm_main.default_high_watermark;
62 props->low_watermark = sm_main.default_low_watermark;
Florin Coras62ddc032019-12-08 18:30:42 -080063 props->n_slices = vlib_num_workers () + 1;
Florin Corasad0c77f2017-11-09 18:00:15 -080064 return props;
65}
66
Florin Coras9d063042017-09-14 03:08:00 -040067static u8
68segment_manager_app_detached (segment_manager_t * sm)
69{
Florin Coras15531972018-08-12 23:50:53 -070070 return (sm->app_wrk_index == SEGMENT_MANAGER_INVALID_APP_INDEX);
Dave Wallace7b749fe2017-07-05 14:30:46 -040071}
72
Florin Coras4e4531e2017-11-06 23:27:56 -080073void
74segment_manager_app_detach (segment_manager_t * sm)
75{
Florin Coras15531972018-08-12 23:50:53 -070076 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Coras4e4531e2017-11-06 23:27:56 -080077}
78
Florin Corasa332c462018-01-31 06:52:17 -080079always_inline u32
Florin Coras88001c62019-04-24 14:44:46 -070080segment_manager_segment_index (segment_manager_t * sm, fifo_segment_t * seg)
Florin Corasc87c91d2017-08-16 19:55:49 -070081{
Florin Corasa332c462018-01-31 06:52:17 -080082 return (seg - sm->segments);
83}
84
85/**
Florin Coras88001c62019-04-24 14:44:46 -070086 * Adds segment to segment manager's pool
87 *
88 * If needed a writer's lock is acquired before allocating a new segment
89 * to avoid affecting any of the segments pool readers.
90 */
91int
Florin Corasef4f3e72019-12-11 14:27:53 -080092segment_manager_add_segment (segment_manager_t * sm, uword segment_size)
Florin Coras88001c62019-04-24 14:44:46 -070093{
Florin Corasef4f3e72019-12-11 14:27:53 -080094 uword baseva = (uword) ~ 0ULL, alloc_size, page_size;
95 u32 rnd_margin = 128 << 10, fs_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -070096 segment_manager_main_t *smm = &sm_main;
Florin Coras88001c62019-04-24 14:44:46 -070097 segment_manager_props_t *props;
98 fifo_segment_t *fs;
99 u8 *seg_name;
100 int rv;
101
102 props = segment_manager_properties_get (sm);
103
104 /* Not configured for addition of new segments and not first */
105 if (!props->add_segment && !segment_size)
106 {
107 clib_warning ("cannot allocate new segment");
108 return VNET_API_ERROR_INVALID_VALUE;
109 }
110
111 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700112 * Allocate fifo segment and grab lock if needed
Florin Coras88001c62019-04-24 14:44:46 -0700113 */
114 if (vlib_num_workers ())
115 clib_rwlock_writer_lock (&sm->segments_rwlock);
116
117 pool_get_zero (sm->segments, fs);
118
119 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700120 * Allocate ssvm segment
Florin Coras88001c62019-04-24 14:44:46 -0700121 */
122 segment_size = segment_size ? segment_size : props->add_segment_size;
123 page_size = clib_mem_get_page_size ();
Florin Coras404b8a32019-05-09 12:08:06 -0700124 /* Protect against segment size u32 wrap */
125 segment_size = clib_max (segment_size + page_size - 1, segment_size);
126 segment_size = segment_size & ~(page_size - 1);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700127
Florin Coras88001c62019-04-24 14:44:46 -0700128 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
129 {
130 seg_name = format (0, "%d-%d%c", getpid (), smm->seg_name_counter++, 0);
131 alloc_size = (uword) segment_size + rnd_margin;
132 baseva = clib_valloc_alloc (&smm->va_allocator, alloc_size, 0);
133 if (!baseva)
134 {
135 clib_warning ("out of space for segments");
136 pool_put (sm->segments, fs);
137 goto done;
138 }
139 }
140 else
Florin Coras5368bb02019-06-09 09:24:33 -0700141 seg_name = format (0, "%s%c", "process-private", 0);
Florin Coras88001c62019-04-24 14:44:46 -0700142
143 fs->ssvm.ssvm_size = segment_size;
144 fs->ssvm.name = seg_name;
145 fs->ssvm.requested_va = baseva;
146
147 if ((rv = ssvm_master_init (&fs->ssvm, props->segment_type)))
148 {
149 clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
150 segment_size);
151
152 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
153 clib_valloc_free (&smm->va_allocator, baseva);
154 pool_put (sm->segments, fs);
155 goto done;
156 }
157
Florin Corasf9d4ab42019-05-11 16:55:53 -0700158 /*
159 * Initialize fifo segment
160 */
Florin Coras62ddc032019-12-08 18:30:42 -0800161 fs->n_slices = props->n_slices;
Florin Coras88001c62019-04-24 14:44:46 -0700162 fifo_segment_init (fs);
163
164 /*
165 * Save segment index before dropping lock, if any held
166 */
167 fs_index = fs - sm->segments;
168
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000169 /*
170 * Set watermarks in segment
171 */
172 fs->h->high_watermark = sm->high_watermark;
173 fs->h->low_watermark = sm->low_watermark;
Florin Coras2de9c0f2020-02-02 19:30:39 +0000174 fs->h->pct_first_alloc = props->pct_first_alloc;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000175 fs->h->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
176
Florin Coras88001c62019-04-24 14:44:46 -0700177done:
178
179 if (vlib_num_workers ())
180 clib_rwlock_writer_unlock (&sm->segments_rwlock);
181
182 return fs_index;
183}
184
185/**
Florin Corasa332c462018-01-31 06:52:17 -0800186 * Remove segment without lock
187 */
Florin Corasf8f516a2018-02-08 15:10:09 -0800188void
Florin Coras88001c62019-04-24 14:44:46 -0700189segment_manager_del_segment (segment_manager_t * sm, fifo_segment_t * fs)
Florin Corasa332c462018-01-31 06:52:17 -0800190{
Florin Coras88001c62019-04-24 14:44:46 -0700191 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800192
193 if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800194 {
195 clib_valloc_free (&smm->va_allocator, fs->ssvm.requested_va);
196
197 if (sm->app_wrk_index != SEGMENT_MANAGER_INVALID_APP_INDEX)
198 {
199 app_worker_t *app_wrk;
200 u64 segment_handle;
201 app_wrk = app_worker_get (sm->app_wrk_index);
202 segment_handle = segment_manager_segment_handle (sm, fs);
203 app_worker_del_segment_notify (app_wrk, segment_handle);
204 }
205 }
Florin Corasa332c462018-01-31 06:52:17 -0800206
207 ssvm_delete (&fs->ssvm);
208
209 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400210 clib_memset (fs, 0xfb, sizeof (*fs));
Florin Corasa332c462018-01-31 06:52:17 -0800211 pool_put (sm->segments, fs);
212}
213
214/**
215 * Removes segment after acquiring writer lock
216 */
Florin Coras99368312018-08-02 10:45:44 -0700217static inline void
Florin Corasa332c462018-01-31 06:52:17 -0800218segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index)
219{
Florin Coras88001c62019-04-24 14:44:46 -0700220 fifo_segment_t *fs;
Florin Corasa332c462018-01-31 06:52:17 -0800221 u8 is_prealloc;
222
223 clib_rwlock_writer_lock (&sm->segments_rwlock);
224 fs = segment_manager_get_segment (sm, fs_index);
Florin Coras88001c62019-04-24 14:44:46 -0700225 is_prealloc = fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800226 if (is_prealloc && !segment_manager_app_detached (sm))
Florin Coras9d063042017-09-14 03:08:00 -0400227 {
Florin Corasa332c462018-01-31 06:52:17 -0800228 clib_rwlock_writer_unlock (&sm->segments_rwlock);
Florin Coras9d063042017-09-14 03:08:00 -0400229 return;
230 }
Florin Corasa332c462018-01-31 06:52:17 -0800231
232 segment_manager_del_segment (sm, fs);
233 clib_rwlock_writer_unlock (&sm->segments_rwlock);
234}
235
236/**
237 * Reads a segment from the segment manager's pool without lock
238 */
Florin Coras88001c62019-04-24 14:44:46 -0700239fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800240segment_manager_get_segment (segment_manager_t * sm, u32 segment_index)
241{
242 return pool_elt_at_index (sm->segments, segment_index);
243}
244
Florin Corasfa76a762018-11-29 12:40:10 -0800245u64
246segment_manager_segment_handle (segment_manager_t * sm,
Florin Coras88001c62019-04-24 14:44:46 -0700247 fifo_segment_t * segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800248{
249 u32 segment_index = segment_manager_segment_index (sm, segment);
250 return (((u64) segment_manager_index (sm) << 32) | segment_index);
251}
252
Florin Coras88001c62019-04-24 14:44:46 -0700253static void
Florin Corasfa76a762018-11-29 12:40:10 -0800254segment_manager_parse_segment_handle (u64 segment_handle, u32 * sm_index,
255 u32 * segment_index)
256{
257 *sm_index = segment_handle >> 32;
258 *segment_index = segment_handle & 0xFFFFFFFF;
259}
260
Florin Coras88001c62019-04-24 14:44:46 -0700261u64
262segment_manager_make_segment_handle (u32 segment_manager_index,
263 u32 segment_index)
264{
265 return (((u64) segment_manager_index << 32) | segment_index);
266}
267
268fifo_segment_t *
Florin Corasfa76a762018-11-29 12:40:10 -0800269segment_manager_get_segment_w_handle (u64 segment_handle)
270{
271 u32 sm_index, segment_index;
272 segment_manager_t *sm;
273
274 segment_manager_parse_segment_handle (segment_handle, &sm_index,
275 &segment_index);
276 sm = segment_manager_get (sm_index);
277 if (!sm || pool_is_free_index (sm->segments, segment_index))
278 return 0;
279 return pool_elt_at_index (sm->segments, segment_index);
280}
281
Florin Corasa332c462018-01-31 06:52:17 -0800282/**
283 * Reads a segment from the segment manager's pool and acquires reader lock
284 *
285 * Caller must drop the reader's lock by calling
286 * @ref segment_manager_segment_reader_unlock once it finishes working with
287 * the segment.
288 */
Florin Coras88001c62019-04-24 14:44:46 -0700289fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800290segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index)
291{
292 clib_rwlock_reader_lock (&sm->segments_rwlock);
293 return pool_elt_at_index (sm->segments, segment_index);
294}
295
296void
Florin Coras75ccf7b2020-03-05 19:44:02 +0000297segment_manager_segment_reader_lock (segment_manager_t * sm)
298{
299 clib_rwlock_reader_lock (&sm->segments_rwlock);
300}
301
302void
Florin Corasa332c462018-01-31 06:52:17 -0800303segment_manager_segment_reader_unlock (segment_manager_t * sm)
304{
305 clib_rwlock_reader_unlock (&sm->segments_rwlock);
306}
307
308void
309segment_manager_segment_writer_unlock (segment_manager_t * sm)
310{
311 clib_rwlock_writer_unlock (&sm->segments_rwlock);
312}
313
Florin Corasa332c462018-01-31 06:52:17 -0800314segment_manager_t *
Florin Coras88001c62019-04-24 14:44:46 -0700315segment_manager_alloc (void)
Florin Corasa332c462018-01-31 06:52:17 -0800316{
Florin Coras88001c62019-04-24 14:44:46 -0700317 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800318 segment_manager_t *sm;
Florin Coras88001c62019-04-24 14:44:46 -0700319
320 pool_get_zero (smm->segment_managers, sm);
Florin Corasa332c462018-01-31 06:52:17 -0800321 clib_rwlock_init (&sm->segments_rwlock);
322 return sm;
323}
324
325/**
326 * Initializes segment manager based on options provided.
327 * Returns error if ssvm segment(s) allocation fails.
328 */
329int
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000330segment_manager_init (segment_manager_t * sm)
Florin Corasa332c462018-01-31 06:52:17 -0800331{
332 u32 rx_fifo_size, tx_fifo_size, pair_size;
333 u32 rx_rounded_data_size, tx_rounded_data_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000334 uword first_seg_size;
335 u32 prealloc_fifo_pairs;
Florin Coras86f04502018-09-12 16:08:01 -0700336 u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
Florin Coras88001c62019-04-24 14:44:46 -0700337 segment_manager_props_t *props;
338 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800339 u32 approx_segment_count;
340 int seg_index, i;
341
342 props = segment_manager_properties_get (sm);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000343 first_seg_size = clib_max (props->segment_size,
344 sm_main.default_segment_size);
345 prealloc_fifo_pairs = props->prealloc_fifos;
346
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000347 sm->max_fifo_size = props->max_fifo_size ?
348 props->max_fifo_size : sm_main.default_max_fifo_size;
349 sm->max_fifo_size = clib_max (sm->max_fifo_size, 4096);
350
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000351 segment_manager_set_watermarks (sm,
352 props->high_watermark,
353 props->low_watermark);
Florin Corasa332c462018-01-31 06:52:17 -0800354
355 if (prealloc_fifo_pairs)
356 {
357 /* Figure out how many segments should be preallocated */
358 rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
359 tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
360
361 rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
362 tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
363 pair_size = rx_fifo_size + tx_fifo_size;
364
365 approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
366 if (first_seg_size > approx_total_size)
367 max_seg_size = first_seg_size;
368 approx_segment_count = (approx_total_size + (max_seg_size - 1))
369 / max_seg_size;
370
371 /* Allocate the segments */
372 for (i = 0; i < approx_segment_count + 1; i++)
373 {
374 seg_index = segment_manager_add_segment (sm, max_seg_size);
375 if (seg_index < 0)
376 {
377 clib_warning ("Failed to preallocate segment %d", i);
378 return seg_index;
379 }
380
Florin Corasa332c462018-01-31 06:52:17 -0800381 segment = segment_manager_get_segment (sm, seg_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800382 if (i == 0)
Florin Coras99368312018-08-02 10:45:44 -0700383 sm->event_queue = segment_manager_alloc_queue (segment, props);
Florin Corasf8f516a2018-02-08 15:10:09 -0800384
Florin Coras88001c62019-04-24 14:44:46 -0700385 fifo_segment_preallocate_fifo_pairs (segment,
386 props->rx_fifo_size,
387 props->tx_fifo_size,
388 &prealloc_fifo_pairs);
389 fifo_segment_flags (segment) = FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800390 if (prealloc_fifo_pairs == 0)
391 break;
392 }
393 }
394 else
395 {
396 seg_index = segment_manager_add_segment (sm, first_seg_size);
Florin Coras402377e2019-04-17 10:23:23 -0700397 if (seg_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800398 {
399 clib_warning ("Failed to allocate segment");
400 return seg_index;
401 }
Florin Corasf8f516a2018-02-08 15:10:09 -0800402 segment = segment_manager_get_segment (sm, seg_index);
Florin Coras99368312018-08-02 10:45:44 -0700403 sm->event_queue = segment_manager_alloc_queue (segment, props);
Florin Corasa332c462018-01-31 06:52:17 -0800404 }
405
406 return 0;
407}
408
Florin Corasc87c91d2017-08-16 19:55:49 -0700409/**
Florin Coras88001c62019-04-24 14:44:46 -0700410 * Cleanup segment manager.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700411 */
412void
Florin Coras88001c62019-04-24 14:44:46 -0700413segment_manager_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700414{
Florin Coras88001c62019-04-24 14:44:46 -0700415 segment_manager_main_t *smm = &sm_main;
416 fifo_segment_t *fifo_segment;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400417
Florin Coras9d063042017-09-14 03:08:00 -0400418 ASSERT (!segment_manager_has_fifos (sm)
419 && segment_manager_app_detached (sm));
420
421 /* If we have empty preallocated segments that haven't been removed, remove
422 * them now. Apart from that, the first segment in the first segment manager
423 * is not removed when all fifos are removed. It can only be removed when
424 * the manager is explicitly deleted/detached by the app. */
Florin Corasa332c462018-01-31 06:52:17 -0800425 clib_rwlock_writer_lock (&sm->segments_rwlock);
426
427 /* *INDENT-OFF* */
428 pool_foreach (fifo_segment, sm->segments, ({
429 segment_manager_del_segment (sm, fifo_segment);
430 }));
431 /* *INDENT-ON* */
432
433 clib_rwlock_writer_unlock (&sm->segments_rwlock);
434
435 clib_rwlock_free (&sm->segments_rwlock);
Florin Corasc87c91d2017-08-16 19:55:49 -0700436 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400437 clib_memset (sm, 0xfe, sizeof (*sm));
Florin Corasa332c462018-01-31 06:52:17 -0800438 pool_put (smm->segment_managers, sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700439}
440
Florin Corasc87c91d2017-08-16 19:55:49 -0700441void
Florin Coras88001c62019-04-24 14:44:46 -0700442segment_manager_init_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700443{
Florin Coras4e4531e2017-11-06 23:27:56 -0800444 segment_manager_app_detach (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700445 if (segment_manager_has_fifos (sm))
446 segment_manager_del_sessions (sm);
447 else
448 {
Florin Coras9d063042017-09-14 03:08:00 -0400449 ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
Florin Coras88001c62019-04-24 14:44:46 -0700450 segment_manager_free (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700451 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700452}
453
Florin Coras88001c62019-04-24 14:44:46 -0700454segment_manager_t *
455segment_manager_get (u32 index)
456{
457 return pool_elt_at_index (sm_main.segment_managers, index);
458}
459
460segment_manager_t *
461segment_manager_get_if_valid (u32 index)
462{
463 if (pool_is_free_index (sm_main.segment_managers, index))
464 return 0;
465 return pool_elt_at_index (sm_main.segment_managers, index);
466}
467
468u32
469segment_manager_index (segment_manager_t * sm)
470{
471 return sm - sm_main.segment_managers;
472}
473
474u8
475segment_manager_has_fifos (segment_manager_t * sm)
476{
477 fifo_segment_t *seg;
478 u8 first = 1;
479
480 /* *INDENT-OFF* */
481 segment_manager_foreach_segment_w_lock (seg, sm, ({
482 if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
483 && !(fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED))
484 {
485 clib_warning ("segment %d has no fifos!",
486 segment_manager_segment_index (sm, seg));
487 first = 0;
488 }
489 if (fifo_segment_has_fifos (seg))
490 {
491 segment_manager_segment_reader_unlock (sm);
492 return 1;
493 }
494 }));
495 /* *INDENT-ON* */
496
497 return 0;
498}
499
500/**
501 * Initiate disconnects for all sessions 'owned' by a segment manager
502 */
503void
504segment_manager_del_sessions (segment_manager_t * sm)
505{
Florin Coras88001c62019-04-24 14:44:46 -0700506 session_handle_t *handles = 0, *handle;
Florin Coras62ddc032019-12-08 18:30:42 -0800507 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700508 session_t *session;
Florin Coras62ddc032019-12-08 18:30:42 -0800509 int slice_index;
510 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -0700511
512 ASSERT (pool_elts (sm->segments) != 0);
513
514 /* Across all fifo segments used by the server */
515 /* *INDENT-OFF* */
Florin Coras62ddc032019-12-08 18:30:42 -0800516 segment_manager_foreach_segment_w_lock (fs, sm, ({
517 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -0700518 {
Florin Coras62ddc032019-12-08 18:30:42 -0800519 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
520
521 /*
522 * Remove any residual sessions from the session lookup table
523 * Don't bother deleting the individual fifos, we're going to
524 * throw away the fifo segment in a minute.
525 */
526 while (f)
527 {
528 session = session_get_if_valid (f->master_session_index,
529 f->master_thread_index);
530 if (session)
531 vec_add1 (handles, session_handle (session));
532 f = f->next;
533 }
Florin Coras88001c62019-04-24 14:44:46 -0700534 }
535
536 /* Instead of removing the segment, test when cleaning up disconnected
537 * sessions if the segment can be removed.
538 */
539 }));
540 /* *INDENT-ON* */
541
542 vec_foreach (handle, handles)
543 session_close (session_get_from_handle (*handle));
544}
545
Florin Corasf8f516a2018-02-08 15:10:09 -0800546int
Florin Coras88001c62019-04-24 14:44:46 -0700547segment_manager_try_alloc_fifos (fifo_segment_t * fifo_segment,
Florin Coras62ddc032019-12-08 18:30:42 -0800548 u32 thread_index,
Florin Corasf8f516a2018-02-08 15:10:09 -0800549 u32 rx_fifo_size, u32 tx_fifo_size,
550 svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
Florin Corasa332c462018-01-31 06:52:17 -0800551{
Florin Coras88001c62019-04-24 14:44:46 -0700552 rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800553 *rx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
554 rx_fifo_size,
555 FIFO_SEGMENT_RX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800556
Florin Coras88001c62019-04-24 14:44:46 -0700557 tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800558 *tx_fifo = fifo_segment_alloc_fifo_w_slice (fifo_segment, thread_index,
559 tx_fifo_size,
560 FIFO_SEGMENT_TX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800561
562 if (*rx_fifo == 0)
563 {
564 /* This would be very odd, but handle it... */
565 if (*tx_fifo != 0)
566 {
Florin Coras88001c62019-04-24 14:44:46 -0700567 fifo_segment_free_fifo (fifo_segment, *tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800568 *tx_fifo = 0;
569 }
570 return -1;
571 }
572 if (*tx_fifo == 0)
573 {
574 if (*rx_fifo != 0)
575 {
Florin Coras88001c62019-04-24 14:44:46 -0700576 fifo_segment_free_fifo (fifo_segment, *rx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800577 *rx_fifo = 0;
578 }
579 return -1;
580 }
581
582 return 0;
583}
584
Florin Coras6cf30ad2017-04-04 23:08:23 -0700585int
586segment_manager_alloc_session_fifos (segment_manager_t * sm,
Florin Coras62ddc032019-12-08 18:30:42 -0800587 u32 thread_index,
Florin Corasb384b542018-01-15 01:08:33 -0800588 svm_fifo_t ** rx_fifo,
Florin Coras1219b2d2019-04-23 15:53:43 -0700589 svm_fifo_t ** tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700590{
Florin Corasa332c462018-01-31 06:52:17 -0800591 int alloc_fail = 1, rv = 0, new_fs_index;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000592 uword free_bytes, max_free_bytes = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700593 segment_manager_props_t *props;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000594 fifo_segment_t *fs = 0, *cur;
Florin Coras88001c62019-04-24 14:44:46 -0700595 u32 sm_index, fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700596 u8 added_a_segment = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700597 u64 fs_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700598
Florin Corasa332c462018-01-31 06:52:17 -0800599 props = segment_manager_properties_get (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700600
Florin Corasa332c462018-01-31 06:52:17 -0800601 /*
602 * Find the first free segment to allocate the fifos in
603 */
Florin Coras75ccf7b2020-03-05 19:44:02 +0000604
605 segment_manager_segment_reader_lock (sm);
606
607 /* *INDENT-OFF* */
608 pool_foreach (cur, sm->segments, ({
609 free_bytes = fifo_segment_available_bytes (cur);
610 if (free_bytes > max_free_bytes)
611 {
612 max_free_bytes = free_bytes;
613 fs = cur;
614 }
615 }));
616 /* *INDENT-ON* */
Florin Corasa5464812017-04-19 13:00:05 -0700617
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000618 if (fs)
619 {
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000620 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
621 props->rx_fifo_size,
622 props->tx_fifo_size,
623 rx_fifo, tx_fifo);
624 /* On success, keep lock until fifos are initialized */
625 if (!alloc_fail)
626 goto alloc_success;
Florin Coras75ccf7b2020-03-05 19:44:02 +0000627 }
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000628
Florin Coras75ccf7b2020-03-05 19:44:02 +0000629 segment_manager_segment_reader_unlock (sm);
Florin Corasa332c462018-01-31 06:52:17 -0800630
631alloc_check:
632
633 if (!alloc_fail)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700634 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700635
Florin Corasa332c462018-01-31 06:52:17 -0800636 alloc_success:
Florin Coras6cf30ad2017-04-04 23:08:23 -0700637
Florin Corasa332c462018-01-31 06:52:17 -0800638 ASSERT (rx_fifo && tx_fifo);
639 sm_index = segment_manager_index (sm);
Florin Coras88001c62019-04-24 14:44:46 -0700640 fs_index = segment_manager_segment_index (sm, fs);
Florin Corasa332c462018-01-31 06:52:17 -0800641 (*tx_fifo)->segment_manager = sm_index;
642 (*rx_fifo)->segment_manager = sm_index;
Florin Coras88001c62019-04-24 14:44:46 -0700643 (*tx_fifo)->segment_index = fs_index;
644 (*rx_fifo)->segment_index = fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700645
Florin Corasa332c462018-01-31 06:52:17 -0800646 if (added_a_segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800647 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800648 app_worker_t *app_wrk;
Florin Coras88001c62019-04-24 14:44:46 -0700649 fs_handle = segment_manager_segment_handle (sm, fs);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800650 app_wrk = app_worker_get (sm->app_wrk_index);
Florin Coras88001c62019-04-24 14:44:46 -0700651 rv = app_worker_add_segment_notify (app_wrk, fs_handle);
Florin Corasfa76a762018-11-29 12:40:10 -0800652 }
Florin Corasa332c462018-01-31 06:52:17 -0800653 /* Drop the lock after app is notified */
654 segment_manager_segment_reader_unlock (sm);
655 return rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700656 }
657
Florin Corasa332c462018-01-31 06:52:17 -0800658 /*
659 * Allocation failed, see if we can add a new segment
660 */
661 if (props->add_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700662 {
Florin Corasa332c462018-01-31 06:52:17 -0800663 if (added_a_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700664 {
Florin Corasa332c462018-01-31 06:52:17 -0800665 clib_warning ("Added a segment, still can't allocate a fifo");
666 segment_manager_segment_reader_unlock (sm);
Florin Coras00e01d32019-10-21 16:07:46 -0700667 return SESSION_E_SEG_NO_SPACE2;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700668 }
Florin Corasa332c462018-01-31 06:52:17 -0800669 if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700670 {
Florin Corasa332c462018-01-31 06:52:17 -0800671 clib_warning ("Failed to add new segment");
Florin Coras00e01d32019-10-21 16:07:46 -0700672 return SESSION_E_SEG_CREATE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700673 }
Florin Coras88001c62019-04-24 14:44:46 -0700674 fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
Florin Coras62ddc032019-12-08 18:30:42 -0800675 alloc_fail = segment_manager_try_alloc_fifos (fs, thread_index,
676 props->rx_fifo_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800677 props->tx_fifo_size,
678 rx_fifo, tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800679 added_a_segment = 1;
680 goto alloc_check;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700681 }
Florin Corasa332c462018-01-31 06:52:17 -0800682 else
683 {
684 clib_warning ("Can't add new seg and no space to allocate fifos!");
Florin Coras00e01d32019-10-21 16:07:46 -0700685 return SESSION_E_SEG_NO_SPACE;
Florin Corasa332c462018-01-31 06:52:17 -0800686 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700687}
688
689void
Florin Coras19223e02019-03-03 14:56:05 -0800690segment_manager_dealloc_fifos (svm_fifo_t * rx_fifo, svm_fifo_t * tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700691{
Florin Corasa332c462018-01-31 06:52:17 -0800692 segment_manager_t *sm;
Florin Corasb095a3c2019-04-25 12:58:46 -0700693 fifo_segment_t *fs;
Florin Coras19223e02019-03-03 14:56:05 -0800694 u32 segment_index;
Florin Corasa5464812017-04-19 13:00:05 -0700695
Florin Coras58a93e82019-01-14 23:33:46 -0800696 if (!rx_fifo || !tx_fifo)
697 return;
698
Florin Corasa5464812017-04-19 13:00:05 -0700699 /* It's possible to have no segment manager if the session was removed
Florin Corasc87c91d2017-08-16 19:55:49 -0700700 * as result of a detach. */
Florin Corasa332c462018-01-31 06:52:17 -0800701 if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
Florin Corasa5464812017-04-19 13:00:05 -0700702 return;
703
Florin Coras19223e02019-03-03 14:56:05 -0800704 segment_index = rx_fifo->segment_index;
Florin Coras88001c62019-04-24 14:44:46 -0700705 fs = segment_manager_get_segment_w_lock (sm, segment_index);
706 fifo_segment_free_fifo (fs, rx_fifo);
707 fifo_segment_free_fifo (fs, tx_fifo);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700708
Florin Corasc87c91d2017-08-16 19:55:49 -0700709 /*
710 * Try to remove svm segment if it has no fifos. This can be done only if
711 * the segment is not the first in the segment manager or if it is first
712 * and it is not protected. Moreover, if the segment is first and the app
713 * has detached from the segment manager, remove the segment manager.
714 */
Florin Coras88001c62019-04-24 14:44:46 -0700715 if (!fifo_segment_has_fifos (fs))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700716 {
Florin Corasa332c462018-01-31 06:52:17 -0800717 segment_manager_segment_reader_unlock (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700718
719 /* Remove segment if it holds no fifos or first but not protected */
Florin Corasa332c462018-01-31 06:52:17 -0800720 if (segment_index != 0 || !sm->first_is_protected)
721 segment_manager_lock_and_del_segment (sm, segment_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700722
723 /* Remove segment manager if no sessions and detached from app */
Florin Coras9d063042017-09-14 03:08:00 -0400724 if (segment_manager_app_detached (sm)
725 && !segment_manager_has_fifos (sm))
Florin Coras568ebc72018-09-18 16:12:50 -0700726 {
Florin Coras88001c62019-04-24 14:44:46 -0700727 segment_manager_free (sm);
Florin Coras568ebc72018-09-18 16:12:50 -0700728 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700729 }
Florin Corasa332c462018-01-31 06:52:17 -0800730 else
731 segment_manager_segment_reader_unlock (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700732}
733
Florin Coras3c2fed52018-07-04 04:15:05 -0700734u32
735segment_manager_evt_q_expected_size (u32 q_len)
736{
737 u32 fifo_evt_size, notif_q_size, q_hdrs;
738 u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
739
Florin Coras52207f12018-07-12 14:48:06 -0700740 fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
Florin Coras3c2fed52018-07-04 04:15:05 -0700741 notif_q_size = clib_max (16, q_len >> 4);
742
743 msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
744 fifo_evt_ring_sz = q_len * fifo_evt_size;
745 session_ntf_ring_sz = notif_q_size * 256;
746 q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
747
748 return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
749}
750
Florin Corasa5464812017-04-19 13:00:05 -0700751/**
752 * Allocates shm queue in the first segment
Florin Corasa332c462018-01-31 06:52:17 -0800753 *
754 * Must be called with lock held
Florin Corasa5464812017-04-19 13:00:05 -0700755 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700756svm_msg_q_t *
Florin Coras88001c62019-04-24 14:44:46 -0700757segment_manager_alloc_queue (fifo_segment_t * segment,
758 segment_manager_props_t * props)
Florin Corasa5464812017-04-19 13:00:05 -0700759{
Florin Coras3c2fed52018-07-04 04:15:05 -0700760 u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
761 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
762 svm_msg_q_t *q;
Florin Corasa5464812017-04-19 13:00:05 -0700763 void *oldheap;
764
Florin Coras52207f12018-07-12 14:48:06 -0700765 fifo_evt_size = sizeof (session_event_t);
Florin Coras99368312018-08-02 10:45:44 -0700766 notif_q_size = clib_max (16, props->evt_q_size >> 4);
Florin Coras3c2fed52018-07-04 04:15:05 -0700767 /* *INDENT-OFF* */
768 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
Florin Coras99368312018-08-02 10:45:44 -0700769 {props->evt_q_size, fifo_evt_size, 0},
Florin Coras3c2fed52018-07-04 04:15:05 -0700770 {notif_q_size, session_evt_size, 0}
771 };
772 /* *INDENT-ON* */
773 cfg->consumer_pid = 0;
774 cfg->n_rings = 2;
Florin Coras99368312018-08-02 10:45:44 -0700775 cfg->q_nitems = props->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -0700776 cfg->ring_cfgs = rc;
Florin Corasa5464812017-04-19 13:00:05 -0700777
Florin Coras3c2fed52018-07-04 04:15:05 -0700778 oldheap = ssvm_push_heap (segment->ssvm.sh);
779 q = svm_msg_q_alloc (cfg);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700780 fifo_segment_update_free_bytes (segment);
Florin Corasa5464812017-04-19 13:00:05 -0700781 ssvm_pop_heap (oldheap);
Florin Coras99368312018-08-02 10:45:44 -0700782
783 if (props->use_mq_eventfd)
784 {
785 if (svm_msg_q_alloc_producer_eventfd (q))
786 clib_warning ("failed to alloc eventfd");
787 }
Florin Corasa5464812017-04-19 13:00:05 -0700788 return q;
789}
790
Florin Coras88001c62019-04-24 14:44:46 -0700791svm_msg_q_t *
792segment_manager_event_queue (segment_manager_t * sm)
793{
794 return sm->event_queue;
795}
796
Florin Corasa5464812017-04-19 13:00:05 -0700797/**
798 * Frees shm queue allocated in the first segment
799 */
800void
Florin Corase86a8ed2018-01-05 03:20:25 -0800801segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q)
Florin Corasa5464812017-04-19 13:00:05 -0700802{
Florin Coras88001c62019-04-24 14:44:46 -0700803 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800804 ssvm_shared_header_t *sh;
Florin Corasa5464812017-04-19 13:00:05 -0700805 void *oldheap;
806
Florin Corasa332c462018-01-31 06:52:17 -0800807 ASSERT (!pool_is_free_index (sm->segments, 0));
Florin Corasa5464812017-04-19 13:00:05 -0700808
Florin Corasa332c462018-01-31 06:52:17 -0800809 segment = segment_manager_get_segment_w_lock (sm, 0);
Florin Corasa5464812017-04-19 13:00:05 -0700810 sh = segment->ssvm.sh;
811
812 oldheap = ssvm_push_heap (sh);
Florin Corase86a8ed2018-01-05 03:20:25 -0800813 svm_queue_free (q);
Florin Corasa5464812017-04-19 13:00:05 -0700814 ssvm_pop_heap (oldheap);
Florin Corasa332c462018-01-31 06:52:17 -0800815 segment_manager_segment_reader_unlock (sm);
816}
817
818/*
819 * Init segment vm address allocator
820 */
821void
822segment_manager_main_init (segment_manager_main_init_args_t * a)
823{
Florin Coras88001c62019-04-24 14:44:46 -0700824 segment_manager_main_t *sm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800825 clib_valloc_chunk_t _ip, *ip = &_ip;
826
827 ip->baseva = a->baseva;
828 ip->size = a->size;
829
830 clib_valloc_init (&sm->va_allocator, ip, 1 /* lock */ );
Florin Coras88001c62019-04-24 14:44:46 -0700831
832 sm->default_fifo_size = 1 << 12;
833 sm->default_segment_size = 1 << 20;
834 sm->default_app_mq_size = 128;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000835 sm->default_max_fifo_size = 4 << 20;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000836 sm->default_high_watermark = 80;
837 sm->default_low_watermark = 50;
Florin Corasa5464812017-04-19 13:00:05 -0700838}
839
Florin Corasc87c91d2017-08-16 19:55:49 -0700840static clib_error_t *
841segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input,
842 vlib_cli_command_t * cmd)
843{
Florin Coras88001c62019-04-24 14:44:46 -0700844 segment_manager_main_t *smm = &sm_main;
Florin Corasb384b542018-01-15 01:08:33 -0800845 u8 show_segments = 0, verbose = 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000846 uword max_fifo_size;
Florin Coras5368bb02019-06-09 09:24:33 -0700847 segment_manager_t *sm;
848 fifo_segment_t *seg;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000849 app_worker_t *app_wrk;
850 application_t *app;
851 u8 custom_logic;
Dave Barach91f3e742017-09-01 19:12:11 -0400852
Florin Corasc87c91d2017-08-16 19:55:49 -0700853 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
854 {
855 if (unformat (input, "segments"))
856 show_segments = 1;
857 else if (unformat (input, "verbose"))
858 verbose = 1;
859 else
860 return clib_error_return (0, "unknown input `%U'",
861 format_unformat_error, input);
862 }
863 vlib_cli_output (vm, "%d segment managers allocated",
Florin Corasa332c462018-01-31 06:52:17 -0800864 pool_elts (smm->segment_managers));
865 if (verbose && pool_elts (smm->segment_managers))
Florin Corasc87c91d2017-08-16 19:55:49 -0700866 {
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000867 vlib_cli_output (vm, "%-6s%=10s%=10s%=13s%=11s%=11s%=12s",
868 "Index", "AppIndex", "Segments", "MaxFifoSize",
869 "HighWater", "LowWater", "FifoTuning");
Florin Corasc87c91d2017-08-16 19:55:49 -0700870
871 /* *INDENT-OFF* */
Florin Corasa332c462018-01-31 06:52:17 -0800872 pool_foreach (sm, smm->segment_managers, ({
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000873 app_wrk = app_worker_get_if_valid (sm->app_wrk_index);
874 app = app_wrk ? application_get (app_wrk->app_index) : 0;
875 custom_logic = (app && (app->cb_fns.fifo_tuning_callback)) ? 1 : 0;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000876 max_fifo_size = sm->max_fifo_size;
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000877
878 vlib_cli_output (vm, "%-6d%=10d%=10d%=13U%=11d%=11d%=12s",
879 segment_manager_index (sm),
880 sm->app_wrk_index, pool_elts (sm->segments),
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +0000881 format_memory_size, max_fifo_size,
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000882 sm->high_watermark, sm->low_watermark,
883 custom_logic ? "custom" : "none");
Florin Corasc87c91d2017-08-16 19:55:49 -0700884 }));
885 /* *INDENT-ON* */
886
887 }
888 if (show_segments)
889 {
Florin Coras5368bb02019-06-09 09:24:33 -0700890 vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
Florin Corasc87c91d2017-08-16 19:55:49 -0700891
892 /* *INDENT-OFF* */
Florin Corasa332c462018-01-31 06:52:17 -0800893 pool_foreach (sm, smm->segment_managers, ({
894 segment_manager_foreach_segment_w_lock (seg, sm, ({
Florin Coras5368bb02019-06-09 09:24:33 -0700895 vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
Florin Corasa332c462018-01-31 06:52:17 -0800896 }));
Florin Corasc87c91d2017-08-16 19:55:49 -0700897 }));
898 /* *INDENT-ON* */
899
900 }
901 return 0;
902}
903
Florin Corasad0c77f2017-11-09 18:00:15 -0800904/* *INDENT-OFF* */
Florin Corasc87c91d2017-08-16 19:55:49 -0700905VLIB_CLI_COMMAND (segment_manager_show_command, static) =
906{
907 .path = "show segment-manager",
Dave Barach91f3e742017-09-01 19:12:11 -0400908 .short_help = "show segment-manager [segments][verbose]",
Florin Corasc87c91d2017-08-16 19:55:49 -0700909 .function = segment_manager_show_fn,
910};
911/* *INDENT-ON* */
912
Florin Coras88001c62019-04-24 14:44:46 -0700913void
914segment_manager_format_sessions (segment_manager_t * sm, int verbose)
915{
Florin Coras88001c62019-04-24 14:44:46 -0700916 vlib_main_t *vm = vlib_get_main ();
917 app_worker_t *app_wrk;
Florin Coras62ddc032019-12-08 18:30:42 -0800918 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700919 const u8 *app_name;
Florin Coras62ddc032019-12-08 18:30:42 -0800920 int slice_index;
921 u8 *s = 0, *str;
922 svm_fifo_t *f;
Florin Coras88001c62019-04-24 14:44:46 -0700923
924 if (!sm)
925 {
926 if (verbose)
927 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
928 "API Client", "SegManager");
929 else
930 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
931 return;
932 }
933
934 app_wrk = app_worker_get (sm->app_wrk_index);
935 app_name = application_name_from_index (app_wrk->app_index);
936
937 clib_rwlock_reader_lock (&sm->segments_rwlock);
938
939 /* *INDENT-OFF* */
Florin Coras62ddc032019-12-08 18:30:42 -0800940 pool_foreach (fs, sm->segments, ({
941 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -0700942 {
Florin Coras62ddc032019-12-08 18:30:42 -0800943 f = fifo_segment_get_slice_fifo_list (fs, slice_index);
944 while (f)
945 {
946 u32 session_index, thread_index;
947 session_t *session;
Florin Coras88001c62019-04-24 14:44:46 -0700948
Florin Coras62ddc032019-12-08 18:30:42 -0800949 session_index = f->master_session_index;
950 thread_index = f->master_thread_index;
Florin Coras88001c62019-04-24 14:44:46 -0700951
Florin Coras62ddc032019-12-08 18:30:42 -0800952 session = session_get (session_index, thread_index);
953 str = format (0, "%U", format_session, session, verbose);
Florin Coras88001c62019-04-24 14:44:46 -0700954
Florin Coras62ddc032019-12-08 18:30:42 -0800955 if (verbose)
956 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
957 app_wrk->api_client_index, app_wrk->connects_seg_manager);
958 else
959 s = format (s, "%-40s%-20s", str, app_name);
Florin Coras88001c62019-04-24 14:44:46 -0700960
Florin Coras62ddc032019-12-08 18:30:42 -0800961 vlib_cli_output (vm, "%v", s);
962 vec_reset_length (s);
963 vec_free (str);
Florin Coras88001c62019-04-24 14:44:46 -0700964
Florin Coras62ddc032019-12-08 18:30:42 -0800965 f = f->next;
966 }
967 vec_free (s);
Florin Coras88001c62019-04-24 14:44:46 -0700968 }
Florin Coras88001c62019-04-24 14:44:46 -0700969 }));
970 /* *INDENT-ON* */
971
972 clib_rwlock_reader_unlock (&sm->segments_rwlock);
973}
974
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000975void
976segment_manager_set_watermarks (segment_manager_t * sm,
977 u8 high_watermark, u8 low_watermark)
978{
Florin Coras8c79a4e2020-02-25 22:28:27 +0000979 ASSERT (high_watermark <= 100 && low_watermark <= 100 &&
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000980 low_watermark <= high_watermark);
981
982 sm->high_watermark = high_watermark;
983 sm->low_watermark = low_watermark;
984}
985
Florin Coras6cf30ad2017-04-04 23:08:23 -0700986/*
987 * fd.io coding-style-patch-verification: ON
988 *
989 * Local Variables:
990 * eval: (c-set-style "gnu")
991 * End:
992 */