blob: c0785695d4f341e9eb6684e6499d075680b270ab [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 */
29 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} segment_manager_main_t;
Florin Corasa5464812017-04-19 13:00:05 -070033
Florin Coras88001c62019-04-24 14:44:46 -070034static segment_manager_main_t sm_main;
Florin Coras6cf30ad2017-04-04 23:08:23 -070035
Florin Coras88001c62019-04-24 14:44:46 -070036#define segment_manager_foreach_segment_w_lock(VAR, SM, BODY) \
37do { \
38 clib_rwlock_reader_lock (&(SM)->segments_rwlock); \
39 pool_foreach((VAR), ((SM)->segments), (BODY)); \
40 clib_rwlock_reader_unlock (&(SM)->segments_rwlock); \
41} while (0)
42
43static segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -080044segment_manager_properties_get (segment_manager_t * sm)
Florin Corasad0c77f2017-11-09 18:00:15 -080045{
Florin Corasab2f6db2018-08-31 14:31:41 -070046 app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
47 return application_get_segment_manager_properties (app_wrk->app_index);
Florin Corasa332c462018-01-31 06:52:17 -080048}
49
Florin Coras88001c62019-04-24 14:44:46 -070050segment_manager_props_t *
51segment_manager_props_init (segment_manager_props_t * props)
Florin Corasa332c462018-01-31 06:52:17 -080052{
Florin Coras88001c62019-04-24 14:44:46 -070053 props->add_segment_size = sm_main.default_segment_size;
54 props->rx_fifo_size = sm_main.default_fifo_size;
55 props->tx_fifo_size = sm_main.default_fifo_size;
56 props->evt_q_size = sm_main.default_app_mq_size;
Florin Corasad0c77f2017-11-09 18:00:15 -080057 return props;
58}
59
Florin Coras9d063042017-09-14 03:08:00 -040060static u8
61segment_manager_app_detached (segment_manager_t * sm)
62{
Florin Coras15531972018-08-12 23:50:53 -070063 return (sm->app_wrk_index == SEGMENT_MANAGER_INVALID_APP_INDEX);
Dave Wallace7b749fe2017-07-05 14:30:46 -040064}
65
Florin Coras4e4531e2017-11-06 23:27:56 -080066void
67segment_manager_app_detach (segment_manager_t * sm)
68{
Florin Coras15531972018-08-12 23:50:53 -070069 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Coras4e4531e2017-11-06 23:27:56 -080070}
71
Florin Corasa332c462018-01-31 06:52:17 -080072always_inline u32
Florin Coras88001c62019-04-24 14:44:46 -070073segment_manager_segment_index (segment_manager_t * sm, fifo_segment_t * seg)
Florin Corasc87c91d2017-08-16 19:55:49 -070074{
Florin Corasa332c462018-01-31 06:52:17 -080075 return (seg - sm->segments);
76}
77
78/**
Florin Coras88001c62019-04-24 14:44:46 -070079 * Adds segment to segment manager's pool
80 *
81 * If needed a writer's lock is acquired before allocating a new segment
82 * to avoid affecting any of the segments pool readers.
83 */
84int
85segment_manager_add_segment (segment_manager_t * sm, u32 segment_size)
86{
87 segment_manager_main_t *smm = &sm_main;
88 u32 rnd_margin = 128 << 10, fs_index = ~0, page_size;
89 uword baseva = (uword) ~ 0ULL, alloc_size;
90 segment_manager_props_t *props;
91 fifo_segment_t *fs;
92 u8 *seg_name;
93 int rv;
94
95 props = segment_manager_properties_get (sm);
96
97 /* Not configured for addition of new segments and not first */
98 if (!props->add_segment && !segment_size)
99 {
100 clib_warning ("cannot allocate new segment");
101 return VNET_API_ERROR_INVALID_VALUE;
102 }
103
104 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700105 * Allocate fifo segment and grab lock if needed
Florin Coras88001c62019-04-24 14:44:46 -0700106 */
107 if (vlib_num_workers ())
108 clib_rwlock_writer_lock (&sm->segments_rwlock);
109
110 pool_get_zero (sm->segments, fs);
111
112 /*
Florin Corasf9d4ab42019-05-11 16:55:53 -0700113 * Allocate ssvm segment
Florin Coras88001c62019-04-24 14:44:46 -0700114 */
115 segment_size = segment_size ? segment_size : props->add_segment_size;
116 page_size = clib_mem_get_page_size ();
Florin Coras404b8a32019-05-09 12:08:06 -0700117 /* Protect against segment size u32 wrap */
118 segment_size = clib_max (segment_size + page_size - 1, segment_size);
119 segment_size = segment_size & ~(page_size - 1);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700120
Florin Coras88001c62019-04-24 14:44:46 -0700121 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
122 {
123 seg_name = format (0, "%d-%d%c", getpid (), smm->seg_name_counter++, 0);
124 alloc_size = (uword) segment_size + rnd_margin;
125 baseva = clib_valloc_alloc (&smm->va_allocator, alloc_size, 0);
126 if (!baseva)
127 {
128 clib_warning ("out of space for segments");
129 pool_put (sm->segments, fs);
130 goto done;
131 }
132 }
133 else
Florin Coras5368bb02019-06-09 09:24:33 -0700134 seg_name = format (0, "%s%c", "process-private", 0);
Florin Coras88001c62019-04-24 14:44:46 -0700135
136 fs->ssvm.ssvm_size = segment_size;
137 fs->ssvm.name = seg_name;
138 fs->ssvm.requested_va = baseva;
139
140 if ((rv = ssvm_master_init (&fs->ssvm, props->segment_type)))
141 {
142 clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
143 segment_size);
144
145 if (props->segment_type != SSVM_SEGMENT_PRIVATE)
146 clib_valloc_free (&smm->va_allocator, baseva);
147 pool_put (sm->segments, fs);
148 goto done;
149 }
150
Florin Corasf9d4ab42019-05-11 16:55:53 -0700151 /*
152 * Initialize fifo segment
153 */
Florin Coras88001c62019-04-24 14:44:46 -0700154 fifo_segment_init (fs);
155
156 /*
157 * Save segment index before dropping lock, if any held
158 */
159 fs_index = fs - sm->segments;
160
161done:
162
163 if (vlib_num_workers ())
164 clib_rwlock_writer_unlock (&sm->segments_rwlock);
165
166 return fs_index;
167}
168
169/**
Florin Corasa332c462018-01-31 06:52:17 -0800170 * Remove segment without lock
171 */
Florin Corasf8f516a2018-02-08 15:10:09 -0800172void
Florin Coras88001c62019-04-24 14:44:46 -0700173segment_manager_del_segment (segment_manager_t * sm, fifo_segment_t * fs)
Florin Corasa332c462018-01-31 06:52:17 -0800174{
Florin Coras88001c62019-04-24 14:44:46 -0700175 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800176
177 if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
Florin Corasa0dbf9e2019-03-01 17:12:02 -0800178 {
179 clib_valloc_free (&smm->va_allocator, fs->ssvm.requested_va);
180
181 if (sm->app_wrk_index != SEGMENT_MANAGER_INVALID_APP_INDEX)
182 {
183 app_worker_t *app_wrk;
184 u64 segment_handle;
185 app_wrk = app_worker_get (sm->app_wrk_index);
186 segment_handle = segment_manager_segment_handle (sm, fs);
187 app_worker_del_segment_notify (app_wrk, segment_handle);
188 }
189 }
Florin Corasa332c462018-01-31 06:52:17 -0800190
191 ssvm_delete (&fs->ssvm);
192
193 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400194 clib_memset (fs, 0xfb, sizeof (*fs));
Florin Corasa332c462018-01-31 06:52:17 -0800195 pool_put (sm->segments, fs);
196}
197
198/**
199 * Removes segment after acquiring writer lock
200 */
Florin Coras99368312018-08-02 10:45:44 -0700201static inline void
Florin Corasa332c462018-01-31 06:52:17 -0800202segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index)
203{
Florin Coras88001c62019-04-24 14:44:46 -0700204 fifo_segment_t *fs;
Florin Corasa332c462018-01-31 06:52:17 -0800205 u8 is_prealloc;
206
207 clib_rwlock_writer_lock (&sm->segments_rwlock);
208 fs = segment_manager_get_segment (sm, fs_index);
Florin Coras88001c62019-04-24 14:44:46 -0700209 is_prealloc = fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800210 if (is_prealloc && !segment_manager_app_detached (sm))
Florin Coras9d063042017-09-14 03:08:00 -0400211 {
Florin Corasa332c462018-01-31 06:52:17 -0800212 clib_rwlock_writer_unlock (&sm->segments_rwlock);
Florin Coras9d063042017-09-14 03:08:00 -0400213 return;
214 }
Florin Corasa332c462018-01-31 06:52:17 -0800215
216 segment_manager_del_segment (sm, fs);
217 clib_rwlock_writer_unlock (&sm->segments_rwlock);
218}
219
220/**
221 * Reads a segment from the segment manager's pool without lock
222 */
Florin Coras88001c62019-04-24 14:44:46 -0700223fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800224segment_manager_get_segment (segment_manager_t * sm, u32 segment_index)
225{
226 return pool_elt_at_index (sm->segments, segment_index);
227}
228
Florin Corasfa76a762018-11-29 12:40:10 -0800229u64
230segment_manager_segment_handle (segment_manager_t * sm,
Florin Coras88001c62019-04-24 14:44:46 -0700231 fifo_segment_t * segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800232{
233 u32 segment_index = segment_manager_segment_index (sm, segment);
234 return (((u64) segment_manager_index (sm) << 32) | segment_index);
235}
236
Florin Coras88001c62019-04-24 14:44:46 -0700237static void
Florin Corasfa76a762018-11-29 12:40:10 -0800238segment_manager_parse_segment_handle (u64 segment_handle, u32 * sm_index,
239 u32 * segment_index)
240{
241 *sm_index = segment_handle >> 32;
242 *segment_index = segment_handle & 0xFFFFFFFF;
243}
244
Florin Coras88001c62019-04-24 14:44:46 -0700245u64
246segment_manager_make_segment_handle (u32 segment_manager_index,
247 u32 segment_index)
248{
249 return (((u64) segment_manager_index << 32) | segment_index);
250}
251
252fifo_segment_t *
Florin Corasfa76a762018-11-29 12:40:10 -0800253segment_manager_get_segment_w_handle (u64 segment_handle)
254{
255 u32 sm_index, segment_index;
256 segment_manager_t *sm;
257
258 segment_manager_parse_segment_handle (segment_handle, &sm_index,
259 &segment_index);
260 sm = segment_manager_get (sm_index);
261 if (!sm || pool_is_free_index (sm->segments, segment_index))
262 return 0;
263 return pool_elt_at_index (sm->segments, segment_index);
264}
265
Florin Corasa332c462018-01-31 06:52:17 -0800266/**
267 * Reads a segment from the segment manager's pool and acquires reader lock
268 *
269 * Caller must drop the reader's lock by calling
270 * @ref segment_manager_segment_reader_unlock once it finishes working with
271 * the segment.
272 */
Florin Coras88001c62019-04-24 14:44:46 -0700273fifo_segment_t *
Florin Corasa332c462018-01-31 06:52:17 -0800274segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index)
275{
276 clib_rwlock_reader_lock (&sm->segments_rwlock);
277 return pool_elt_at_index (sm->segments, segment_index);
278}
279
280void
281segment_manager_segment_reader_unlock (segment_manager_t * sm)
282{
Florin Corasf8f516a2018-02-08 15:10:09 -0800283 ASSERT (sm->segments_rwlock->n_readers > 0);
Florin Corasa332c462018-01-31 06:52:17 -0800284 clib_rwlock_reader_unlock (&sm->segments_rwlock);
285}
286
287void
288segment_manager_segment_writer_unlock (segment_manager_t * sm)
289{
290 clib_rwlock_writer_unlock (&sm->segments_rwlock);
291}
292
Florin Corasa332c462018-01-31 06:52:17 -0800293segment_manager_t *
Florin Coras88001c62019-04-24 14:44:46 -0700294segment_manager_alloc (void)
Florin Corasa332c462018-01-31 06:52:17 -0800295{
Florin Coras88001c62019-04-24 14:44:46 -0700296 segment_manager_main_t *smm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800297 segment_manager_t *sm;
Florin Coras88001c62019-04-24 14:44:46 -0700298
299 pool_get_zero (smm->segment_managers, sm);
Florin Corasa332c462018-01-31 06:52:17 -0800300 clib_rwlock_init (&sm->segments_rwlock);
301 return sm;
302}
303
304/**
305 * Initializes segment manager based on options provided.
306 * Returns error if ssvm segment(s) allocation fails.
307 */
308int
309segment_manager_init (segment_manager_t * sm, u32 first_seg_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800310 u32 prealloc_fifo_pairs)
Florin Corasa332c462018-01-31 06:52:17 -0800311{
312 u32 rx_fifo_size, tx_fifo_size, pair_size;
313 u32 rx_rounded_data_size, tx_rounded_data_size;
Florin Coras86f04502018-09-12 16:08:01 -0700314 u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
Florin Coras88001c62019-04-24 14:44:46 -0700315 segment_manager_props_t *props;
316 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800317 u32 approx_segment_count;
318 int seg_index, i;
319
320 props = segment_manager_properties_get (sm);
Florin Coras88001c62019-04-24 14:44:46 -0700321 first_seg_size = clib_max (first_seg_size, sm_main.default_segment_size);
Florin Corasa332c462018-01-31 06:52:17 -0800322
323 if (prealloc_fifo_pairs)
324 {
325 /* Figure out how many segments should be preallocated */
326 rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
327 tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
328
329 rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
330 tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
331 pair_size = rx_fifo_size + tx_fifo_size;
332
333 approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
334 if (first_seg_size > approx_total_size)
335 max_seg_size = first_seg_size;
336 approx_segment_count = (approx_total_size + (max_seg_size - 1))
337 / max_seg_size;
338
339 /* Allocate the segments */
340 for (i = 0; i < approx_segment_count + 1; i++)
341 {
342 seg_index = segment_manager_add_segment (sm, max_seg_size);
343 if (seg_index < 0)
344 {
345 clib_warning ("Failed to preallocate segment %d", i);
346 return seg_index;
347 }
348
Florin Corasa332c462018-01-31 06:52:17 -0800349 segment = segment_manager_get_segment (sm, seg_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800350 if (i == 0)
Florin Coras99368312018-08-02 10:45:44 -0700351 sm->event_queue = segment_manager_alloc_queue (segment, props);
Florin Corasf8f516a2018-02-08 15:10:09 -0800352
Florin Coras88001c62019-04-24 14:44:46 -0700353 fifo_segment_preallocate_fifo_pairs (segment,
354 props->rx_fifo_size,
355 props->tx_fifo_size,
356 &prealloc_fifo_pairs);
357 fifo_segment_flags (segment) = FIFO_SEGMENT_F_IS_PREALLOCATED;
Florin Corasa332c462018-01-31 06:52:17 -0800358 if (prealloc_fifo_pairs == 0)
359 break;
360 }
361 }
362 else
363 {
364 seg_index = segment_manager_add_segment (sm, first_seg_size);
Florin Coras402377e2019-04-17 10:23:23 -0700365 if (seg_index < 0)
Florin Corasa332c462018-01-31 06:52:17 -0800366 {
367 clib_warning ("Failed to allocate segment");
368 return seg_index;
369 }
Florin Corasf8f516a2018-02-08 15:10:09 -0800370 segment = segment_manager_get_segment (sm, seg_index);
Florin Coras99368312018-08-02 10:45:44 -0700371 sm->event_queue = segment_manager_alloc_queue (segment, props);
Florin Corasa332c462018-01-31 06:52:17 -0800372 }
373
374 return 0;
375}
376
Florin Corasc87c91d2017-08-16 19:55:49 -0700377/**
Florin Coras88001c62019-04-24 14:44:46 -0700378 * Cleanup segment manager.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700379 */
380void
Florin Coras88001c62019-04-24 14:44:46 -0700381segment_manager_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700382{
Florin Coras88001c62019-04-24 14:44:46 -0700383 segment_manager_main_t *smm = &sm_main;
384 fifo_segment_t *fifo_segment;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400385
Florin Coras9d063042017-09-14 03:08:00 -0400386 ASSERT (!segment_manager_has_fifos (sm)
387 && segment_manager_app_detached (sm));
388
389 /* If we have empty preallocated segments that haven't been removed, remove
390 * them now. Apart from that, the first segment in the first segment manager
391 * is not removed when all fifos are removed. It can only be removed when
392 * the manager is explicitly deleted/detached by the app. */
Florin Corasa332c462018-01-31 06:52:17 -0800393 clib_rwlock_writer_lock (&sm->segments_rwlock);
394
395 /* *INDENT-OFF* */
396 pool_foreach (fifo_segment, sm->segments, ({
397 segment_manager_del_segment (sm, fifo_segment);
398 }));
399 /* *INDENT-ON* */
400
401 clib_rwlock_writer_unlock (&sm->segments_rwlock);
402
403 clib_rwlock_free (&sm->segments_rwlock);
Florin Corasc87c91d2017-08-16 19:55:49 -0700404 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400405 clib_memset (sm, 0xfe, sizeof (*sm));
Florin Corasa332c462018-01-31 06:52:17 -0800406 pool_put (smm->segment_managers, sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700407}
408
Florin Corasc87c91d2017-08-16 19:55:49 -0700409void
Florin Coras88001c62019-04-24 14:44:46 -0700410segment_manager_init_free (segment_manager_t * sm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700411{
Florin Coras4e4531e2017-11-06 23:27:56 -0800412 segment_manager_app_detach (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700413 if (segment_manager_has_fifos (sm))
414 segment_manager_del_sessions (sm);
415 else
416 {
Florin Coras9d063042017-09-14 03:08:00 -0400417 ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
Florin Coras88001c62019-04-24 14:44:46 -0700418 segment_manager_free (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700419 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700420}
421
Florin Coras88001c62019-04-24 14:44:46 -0700422segment_manager_t *
423segment_manager_get (u32 index)
424{
425 return pool_elt_at_index (sm_main.segment_managers, index);
426}
427
428segment_manager_t *
429segment_manager_get_if_valid (u32 index)
430{
431 if (pool_is_free_index (sm_main.segment_managers, index))
432 return 0;
433 return pool_elt_at_index (sm_main.segment_managers, index);
434}
435
436u32
437segment_manager_index (segment_manager_t * sm)
438{
439 return sm - sm_main.segment_managers;
440}
441
442u8
443segment_manager_has_fifos (segment_manager_t * sm)
444{
445 fifo_segment_t *seg;
446 u8 first = 1;
447
448 /* *INDENT-OFF* */
449 segment_manager_foreach_segment_w_lock (seg, sm, ({
450 if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
451 && !(fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED))
452 {
453 clib_warning ("segment %d has no fifos!",
454 segment_manager_segment_index (sm, seg));
455 first = 0;
456 }
457 if (fifo_segment_has_fifos (seg))
458 {
459 segment_manager_segment_reader_unlock (sm);
460 return 1;
461 }
462 }));
463 /* *INDENT-ON* */
464
465 return 0;
466}
467
468/**
469 * Initiate disconnects for all sessions 'owned' by a segment manager
470 */
471void
472segment_manager_del_sessions (segment_manager_t * sm)
473{
474 fifo_segment_t *fifo_segment;
475 session_handle_t *handles = 0, *handle;
476 session_t *session;
477 svm_fifo_t *fifo;
478
479 ASSERT (pool_elts (sm->segments) != 0);
480
481 /* Across all fifo segments used by the server */
482 /* *INDENT-OFF* */
483 segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
484 fifo = fifo_segment_get_fifo_list (fifo_segment);
485
486 /*
487 * Remove any residual sessions from the session lookup table
488 * Don't bother deleting the individual fifos, we're going to
489 * throw away the fifo segment in a minute.
490 */
491 while (fifo)
492 {
493 session = session_get_if_valid (fifo->master_session_index,
494 fifo->master_thread_index);
495 if (session)
496 vec_add1 (handles, session_handle (session));
497 fifo = fifo->next;
498 }
499
500 /* Instead of removing the segment, test when cleaning up disconnected
501 * sessions if the segment can be removed.
502 */
503 }));
504 /* *INDENT-ON* */
505
506 vec_foreach (handle, handles)
507 session_close (session_get_from_handle (*handle));
508}
509
Florin Corasf8f516a2018-02-08 15:10:09 -0800510int
Florin Coras88001c62019-04-24 14:44:46 -0700511segment_manager_try_alloc_fifos (fifo_segment_t * fifo_segment,
Florin Corasf8f516a2018-02-08 15:10:09 -0800512 u32 rx_fifo_size, u32 tx_fifo_size,
513 svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
Florin Corasa332c462018-01-31 06:52:17 -0800514{
Florin Coras88001c62019-04-24 14:44:46 -0700515 rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
516 *rx_fifo = fifo_segment_alloc_fifo (fifo_segment, rx_fifo_size,
517 FIFO_SEGMENT_RX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800518
Florin Coras88001c62019-04-24 14:44:46 -0700519 tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
520 *tx_fifo = fifo_segment_alloc_fifo (fifo_segment, tx_fifo_size,
521 FIFO_SEGMENT_TX_FIFO);
Florin Corasa332c462018-01-31 06:52:17 -0800522
523 if (*rx_fifo == 0)
524 {
525 /* This would be very odd, but handle it... */
526 if (*tx_fifo != 0)
527 {
Florin Coras88001c62019-04-24 14:44:46 -0700528 fifo_segment_free_fifo (fifo_segment, *tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800529 *tx_fifo = 0;
530 }
531 return -1;
532 }
533 if (*tx_fifo == 0)
534 {
535 if (*rx_fifo != 0)
536 {
Florin Coras88001c62019-04-24 14:44:46 -0700537 fifo_segment_free_fifo (fifo_segment, *rx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800538 *rx_fifo = 0;
539 }
540 return -1;
541 }
542
543 return 0;
544}
545
Florin Coras6cf30ad2017-04-04 23:08:23 -0700546int
547segment_manager_alloc_session_fifos (segment_manager_t * sm,
Florin Corasb384b542018-01-15 01:08:33 -0800548 svm_fifo_t ** rx_fifo,
Florin Coras1219b2d2019-04-23 15:53:43 -0700549 svm_fifo_t ** tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700550{
Florin Corasa332c462018-01-31 06:52:17 -0800551 int alloc_fail = 1, rv = 0, new_fs_index;
Florin Coras88001c62019-04-24 14:44:46 -0700552 segment_manager_props_t *props;
553 fifo_segment_t *fs = 0;
554 u32 sm_index, fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700555 u8 added_a_segment = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700556 u64 fs_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700557
Florin Corasa332c462018-01-31 06:52:17 -0800558 props = segment_manager_properties_get (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700559
Florin Corasa332c462018-01-31 06:52:17 -0800560 /*
561 * Find the first free segment to allocate the fifos in
562 */
Florin Corasa5464812017-04-19 13:00:05 -0700563
Florin Corasa332c462018-01-31 06:52:17 -0800564 /* *INDENT-OFF* */
Florin Coras88001c62019-04-24 14:44:46 -0700565 segment_manager_foreach_segment_w_lock (fs, sm, ({
566 alloc_fail = segment_manager_try_alloc_fifos (fs,
Florin Corasf8f516a2018-02-08 15:10:09 -0800567 props->rx_fifo_size,
568 props->tx_fifo_size,
569 rx_fifo, tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800570 /* Exit with lock held, drop it after notifying app */
571 if (!alloc_fail)
572 goto alloc_success;
573 }));
574 /* *INDENT-ON* */
575
576alloc_check:
577
578 if (!alloc_fail)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700579 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700580
Florin Corasa332c462018-01-31 06:52:17 -0800581 alloc_success:
Florin Coras6cf30ad2017-04-04 23:08:23 -0700582
Florin Corasa332c462018-01-31 06:52:17 -0800583 ASSERT (rx_fifo && tx_fifo);
584 sm_index = segment_manager_index (sm);
Florin Coras88001c62019-04-24 14:44:46 -0700585 fs_index = segment_manager_segment_index (sm, fs);
Florin Corasa332c462018-01-31 06:52:17 -0800586 (*tx_fifo)->segment_manager = sm_index;
587 (*rx_fifo)->segment_manager = sm_index;
Florin Coras88001c62019-04-24 14:44:46 -0700588 (*tx_fifo)->segment_index = fs_index;
589 (*rx_fifo)->segment_index = fs_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700590
Florin Corasa332c462018-01-31 06:52:17 -0800591 if (added_a_segment)
Florin Corasfa76a762018-11-29 12:40:10 -0800592 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800593 app_worker_t *app_wrk;
Florin Coras88001c62019-04-24 14:44:46 -0700594 fs_handle = segment_manager_segment_handle (sm, fs);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800595 app_wrk = app_worker_get (sm->app_wrk_index);
Florin Coras88001c62019-04-24 14:44:46 -0700596 rv = app_worker_add_segment_notify (app_wrk, fs_handle);
Florin Corasfa76a762018-11-29 12:40:10 -0800597 }
Florin Corasa332c462018-01-31 06:52:17 -0800598 /* Drop the lock after app is notified */
599 segment_manager_segment_reader_unlock (sm);
600 return rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700601 }
602
Florin Corasa332c462018-01-31 06:52:17 -0800603 /*
604 * Allocation failed, see if we can add a new segment
605 */
606 if (props->add_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700607 {
Florin Corasa332c462018-01-31 06:52:17 -0800608 if (added_a_segment)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700609 {
Florin Corasa332c462018-01-31 06:52:17 -0800610 clib_warning ("Added a segment, still can't allocate a fifo");
611 segment_manager_segment_reader_unlock (sm);
612 return SESSION_ERROR_NEW_SEG_NO_SPACE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700613 }
Florin Corasa332c462018-01-31 06:52:17 -0800614 if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700615 {
Florin Corasa332c462018-01-31 06:52:17 -0800616 clib_warning ("Failed to add new segment");
617 return SESSION_ERROR_SEG_CREATE;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700618 }
Florin Coras88001c62019-04-24 14:44:46 -0700619 fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
620 alloc_fail = segment_manager_try_alloc_fifos (fs, props->rx_fifo_size,
Florin Corasf8f516a2018-02-08 15:10:09 -0800621 props->tx_fifo_size,
622 rx_fifo, tx_fifo);
Florin Corasa332c462018-01-31 06:52:17 -0800623 added_a_segment = 1;
624 goto alloc_check;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700625 }
Florin Corasa332c462018-01-31 06:52:17 -0800626 else
627 {
628 clib_warning ("Can't add new seg and no space to allocate fifos!");
629 return SESSION_ERROR_NO_SPACE;
630 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700631}
632
633void
Florin Coras19223e02019-03-03 14:56:05 -0800634segment_manager_dealloc_fifos (svm_fifo_t * rx_fifo, svm_fifo_t * tx_fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700635{
Florin Corasa332c462018-01-31 06:52:17 -0800636 segment_manager_t *sm;
Florin Corasb095a3c2019-04-25 12:58:46 -0700637 fifo_segment_t *fs;
Florin Coras19223e02019-03-03 14:56:05 -0800638 u32 segment_index;
Florin Corasa5464812017-04-19 13:00:05 -0700639
Florin Coras58a93e82019-01-14 23:33:46 -0800640 if (!rx_fifo || !tx_fifo)
641 return;
642
Florin Corasa5464812017-04-19 13:00:05 -0700643 /* It's possible to have no segment manager if the session was removed
Florin Corasc87c91d2017-08-16 19:55:49 -0700644 * as result of a detach. */
Florin Corasa332c462018-01-31 06:52:17 -0800645 if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
Florin Corasa5464812017-04-19 13:00:05 -0700646 return;
647
Florin Coras19223e02019-03-03 14:56:05 -0800648 segment_index = rx_fifo->segment_index;
Florin Coras88001c62019-04-24 14:44:46 -0700649 fs = segment_manager_get_segment_w_lock (sm, segment_index);
650 fifo_segment_free_fifo (fs, rx_fifo);
651 fifo_segment_free_fifo (fs, tx_fifo);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700652
Florin Corasc87c91d2017-08-16 19:55:49 -0700653 /*
654 * Try to remove svm segment if it has no fifos. This can be done only if
655 * the segment is not the first in the segment manager or if it is first
656 * and it is not protected. Moreover, if the segment is first and the app
657 * has detached from the segment manager, remove the segment manager.
658 */
Florin Coras88001c62019-04-24 14:44:46 -0700659 if (!fifo_segment_has_fifos (fs))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700660 {
Florin Corasa332c462018-01-31 06:52:17 -0800661 segment_manager_segment_reader_unlock (sm);
Florin Corasc87c91d2017-08-16 19:55:49 -0700662
663 /* Remove segment if it holds no fifos or first but not protected */
Florin Corasa332c462018-01-31 06:52:17 -0800664 if (segment_index != 0 || !sm->first_is_protected)
665 segment_manager_lock_and_del_segment (sm, segment_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700666
667 /* Remove segment manager if no sessions and detached from app */
Florin Coras9d063042017-09-14 03:08:00 -0400668 if (segment_manager_app_detached (sm)
669 && !segment_manager_has_fifos (sm))
Florin Coras568ebc72018-09-18 16:12:50 -0700670 {
Florin Coras88001c62019-04-24 14:44:46 -0700671 segment_manager_free (sm);
Florin Coras568ebc72018-09-18 16:12:50 -0700672 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700673 }
Florin Corasa332c462018-01-31 06:52:17 -0800674 else
675 segment_manager_segment_reader_unlock (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700676}
677
Florin Corasb095a3c2019-04-25 12:58:46 -0700678int
679segment_manager_grow_fifo (segment_manager_t * sm, svm_fifo_t * f, u32 size)
680{
681 fifo_segment_t *fs;
682 int rv;
683
684 fs = segment_manager_get_segment_w_lock (sm, f->segment_index);
685 rv = fifo_segment_grow_fifo (fs, f, size);
686 segment_manager_segment_reader_unlock (sm);
687
688 return rv;
689}
690
Florin Coras344ce422019-05-03 11:46:55 -0700691int
692segment_manager_collect_fifo_chunks (segment_manager_t * sm, svm_fifo_t * f)
693{
694 fifo_segment_t *fs;
695 int rv;
696
697 fs = segment_manager_get_segment_w_lock (sm, f->segment_index);
698 rv = fifo_segment_collect_fifo_chunks (fs, f);
699 segment_manager_segment_reader_unlock (sm);
700
701 return rv;
702}
703
704int
705segment_manager_shrink_fifo (segment_manager_t * sm, svm_fifo_t * f, u32 size,
706 u8 is_producer)
707{
708 int rv;
709
710 rv = svm_fifo_reduce_size (f, size, is_producer);
711
712 /* Nothing to collect at this point */
713 if (!is_producer)
714 return rv;
715
716 if (f->flags & SVM_FIFO_F_COLLECT_CHUNKS)
717 segment_manager_collect_fifo_chunks (sm, f);
718
719 return rv;
720}
721
Florin Coras3c2fed52018-07-04 04:15:05 -0700722u32
723segment_manager_evt_q_expected_size (u32 q_len)
724{
725 u32 fifo_evt_size, notif_q_size, q_hdrs;
726 u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
727
Florin Coras52207f12018-07-12 14:48:06 -0700728 fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
Florin Coras3c2fed52018-07-04 04:15:05 -0700729 notif_q_size = clib_max (16, q_len >> 4);
730
731 msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
732 fifo_evt_ring_sz = q_len * fifo_evt_size;
733 session_ntf_ring_sz = notif_q_size * 256;
734 q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
735
736 return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
737}
738
Florin Corasa5464812017-04-19 13:00:05 -0700739/**
740 * Allocates shm queue in the first segment
Florin Corasa332c462018-01-31 06:52:17 -0800741 *
742 * Must be called with lock held
Florin Corasa5464812017-04-19 13:00:05 -0700743 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700744svm_msg_q_t *
Florin Coras88001c62019-04-24 14:44:46 -0700745segment_manager_alloc_queue (fifo_segment_t * segment,
746 segment_manager_props_t * props)
Florin Corasa5464812017-04-19 13:00:05 -0700747{
Florin Coras3c2fed52018-07-04 04:15:05 -0700748 u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
749 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
750 svm_msg_q_t *q;
Florin Corasa5464812017-04-19 13:00:05 -0700751 void *oldheap;
752
Florin Coras52207f12018-07-12 14:48:06 -0700753 fifo_evt_size = sizeof (session_event_t);
Florin Coras99368312018-08-02 10:45:44 -0700754 notif_q_size = clib_max (16, props->evt_q_size >> 4);
Florin Coras3c2fed52018-07-04 04:15:05 -0700755 /* *INDENT-OFF* */
756 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
Florin Coras99368312018-08-02 10:45:44 -0700757 {props->evt_q_size, fifo_evt_size, 0},
Florin Coras3c2fed52018-07-04 04:15:05 -0700758 {notif_q_size, session_evt_size, 0}
759 };
760 /* *INDENT-ON* */
761 cfg->consumer_pid = 0;
762 cfg->n_rings = 2;
Florin Coras99368312018-08-02 10:45:44 -0700763 cfg->q_nitems = props->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -0700764 cfg->ring_cfgs = rc;
Florin Corasa5464812017-04-19 13:00:05 -0700765
Florin Coras3c2fed52018-07-04 04:15:05 -0700766 oldheap = ssvm_push_heap (segment->ssvm.sh);
767 q = svm_msg_q_alloc (cfg);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700768 fifo_segment_update_free_bytes (segment);
Florin Corasa5464812017-04-19 13:00:05 -0700769 ssvm_pop_heap (oldheap);
Florin Coras99368312018-08-02 10:45:44 -0700770
771 if (props->use_mq_eventfd)
772 {
773 if (svm_msg_q_alloc_producer_eventfd (q))
774 clib_warning ("failed to alloc eventfd");
775 }
Florin Corasa5464812017-04-19 13:00:05 -0700776 return q;
777}
778
Florin Coras88001c62019-04-24 14:44:46 -0700779svm_msg_q_t *
780segment_manager_event_queue (segment_manager_t * sm)
781{
782 return sm->event_queue;
783}
784
Florin Corasa5464812017-04-19 13:00:05 -0700785/**
786 * Frees shm queue allocated in the first segment
787 */
788void
Florin Corase86a8ed2018-01-05 03:20:25 -0800789segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q)
Florin Corasa5464812017-04-19 13:00:05 -0700790{
Florin Coras88001c62019-04-24 14:44:46 -0700791 fifo_segment_t *segment;
Florin Corasa332c462018-01-31 06:52:17 -0800792 ssvm_shared_header_t *sh;
Florin Corasa5464812017-04-19 13:00:05 -0700793 void *oldheap;
794
Florin Corasa332c462018-01-31 06:52:17 -0800795 ASSERT (!pool_is_free_index (sm->segments, 0));
Florin Corasa5464812017-04-19 13:00:05 -0700796
Florin Corasa332c462018-01-31 06:52:17 -0800797 segment = segment_manager_get_segment_w_lock (sm, 0);
Florin Corasa5464812017-04-19 13:00:05 -0700798 sh = segment->ssvm.sh;
799
800 oldheap = ssvm_push_heap (sh);
Florin Corase86a8ed2018-01-05 03:20:25 -0800801 svm_queue_free (q);
Florin Corasa5464812017-04-19 13:00:05 -0700802 ssvm_pop_heap (oldheap);
Florin Corasa332c462018-01-31 06:52:17 -0800803 segment_manager_segment_reader_unlock (sm);
804}
805
806/*
807 * Init segment vm address allocator
808 */
809void
810segment_manager_main_init (segment_manager_main_init_args_t * a)
811{
Florin Coras88001c62019-04-24 14:44:46 -0700812 segment_manager_main_t *sm = &sm_main;
Florin Corasa332c462018-01-31 06:52:17 -0800813 clib_valloc_chunk_t _ip, *ip = &_ip;
814
815 ip->baseva = a->baseva;
816 ip->size = a->size;
817
818 clib_valloc_init (&sm->va_allocator, ip, 1 /* lock */ );
Florin Coras88001c62019-04-24 14:44:46 -0700819
820 sm->default_fifo_size = 1 << 12;
821 sm->default_segment_size = 1 << 20;
822 sm->default_app_mq_size = 128;
Florin Corasa5464812017-04-19 13:00:05 -0700823}
824
Florin Corasc87c91d2017-08-16 19:55:49 -0700825static clib_error_t *
826segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input,
827 vlib_cli_command_t * cmd)
828{
Florin Coras88001c62019-04-24 14:44:46 -0700829 segment_manager_main_t *smm = &sm_main;
Florin Corasb384b542018-01-15 01:08:33 -0800830 u8 show_segments = 0, verbose = 0;
Florin Coras5368bb02019-06-09 09:24:33 -0700831 segment_manager_t *sm;
832 fifo_segment_t *seg;
Dave Barach91f3e742017-09-01 19:12:11 -0400833
Florin Corasc87c91d2017-08-16 19:55:49 -0700834 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
835 {
836 if (unformat (input, "segments"))
837 show_segments = 1;
838 else if (unformat (input, "verbose"))
839 verbose = 1;
840 else
841 return clib_error_return (0, "unknown input `%U'",
842 format_unformat_error, input);
843 }
844 vlib_cli_output (vm, "%d segment managers allocated",
Florin Corasa332c462018-01-31 06:52:17 -0800845 pool_elts (smm->segment_managers));
846 if (verbose && pool_elts (smm->segment_managers))
Florin Corasc87c91d2017-08-16 19:55:49 -0700847 {
848 vlib_cli_output (vm, "%-10s%=15s%=12s", "Index", "App Index",
849 "Segments");
850
851 /* *INDENT-OFF* */
Florin Corasa332c462018-01-31 06:52:17 -0800852 pool_foreach (sm, smm->segment_managers, ({
Florin Coras15531972018-08-12 23:50:53 -0700853 vlib_cli_output (vm, "%-10d%=15d%=12d", segment_manager_index (sm),
854 sm->app_wrk_index, pool_elts (sm->segments));
Florin Corasc87c91d2017-08-16 19:55:49 -0700855 }));
856 /* *INDENT-ON* */
857
858 }
859 if (show_segments)
860 {
Florin Coras5368bb02019-06-09 09:24:33 -0700861 vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
Florin Corasc87c91d2017-08-16 19:55:49 -0700862
863 /* *INDENT-OFF* */
Florin Corasa332c462018-01-31 06:52:17 -0800864 pool_foreach (sm, smm->segment_managers, ({
865 segment_manager_foreach_segment_w_lock (seg, sm, ({
Florin Coras5368bb02019-06-09 09:24:33 -0700866 vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
Florin Corasa332c462018-01-31 06:52:17 -0800867 }));
Florin Corasc87c91d2017-08-16 19:55:49 -0700868 }));
869 /* *INDENT-ON* */
870
871 }
872 return 0;
873}
874
Florin Corasad0c77f2017-11-09 18:00:15 -0800875/* *INDENT-OFF* */
Florin Corasc87c91d2017-08-16 19:55:49 -0700876VLIB_CLI_COMMAND (segment_manager_show_command, static) =
877{
878 .path = "show segment-manager",
Dave Barach91f3e742017-09-01 19:12:11 -0400879 .short_help = "show segment-manager [segments][verbose]",
Florin Corasc87c91d2017-08-16 19:55:49 -0700880 .function = segment_manager_show_fn,
881};
882/* *INDENT-ON* */
883
Florin Coras88001c62019-04-24 14:44:46 -0700884void
885segment_manager_format_sessions (segment_manager_t * sm, int verbose)
886{
887 fifo_segment_t *fifo_segment;
888 vlib_main_t *vm = vlib_get_main ();
889 app_worker_t *app_wrk;
890 const u8 *app_name;
891 u8 *s = 0;
892
893 if (!sm)
894 {
895 if (verbose)
896 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
897 "API Client", "SegManager");
898 else
899 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
900 return;
901 }
902
903 app_wrk = app_worker_get (sm->app_wrk_index);
904 app_name = application_name_from_index (app_wrk->app_index);
905
906 clib_rwlock_reader_lock (&sm->segments_rwlock);
907
908 /* *INDENT-OFF* */
909 pool_foreach (fifo_segment, sm->segments, ({
910 svm_fifo_t *fifo;
911 u8 *str;
912
913 fifo = fifo_segment_get_fifo_list (fifo_segment);
914 while (fifo)
915 {
916 u32 session_index, thread_index;
917 session_t *session;
918
919 session_index = fifo->master_session_index;
920 thread_index = fifo->master_thread_index;
921
922 session = session_get (session_index, thread_index);
923 str = format (0, "%U", format_session, session, verbose);
924
925 if (verbose)
926 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
927 app_wrk->api_client_index, app_wrk->connects_seg_manager);
928 else
929 s = format (s, "%-40s%-20s", str, app_name);
930
931 vlib_cli_output (vm, "%v", s);
932 vec_reset_length (s);
933 vec_free (str);
934
935 fifo = fifo->next;
936 }
937 vec_free (s);
938 }));
939 /* *INDENT-ON* */
940
941 clib_rwlock_reader_unlock (&sm->segments_rwlock);
942}
943
Florin Coras6cf30ad2017-04-04 23:08:23 -0700944/*
945 * fd.io coding-style-patch-verification: ON
946 *
947 * Local Variables:
948 * eval: (c-set-style "gnu")
949 * End:
950 */