FD.io VPP  v18.11-rc0-18-g2a3fb1a
Vector Packet Processing
segment_manager.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * 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 
17 #include <vnet/session/session.h>
19 
21 
22 /**
23  * Counter used to build segment names
24  */
26 
27 /**
28  * Default fifo and segment size. TODO config.
29  */
30 static u32 default_fifo_size = 1 << 12;
31 static u32 default_segment_size = 1 << 20;
33 
36 {
37  return application_get_segment_manager_properties (sm->app_index);
38 }
39 
42 {
43  props->add_segment_size = default_segment_size;
44  props->rx_fifo_size = default_fifo_size;
45  props->tx_fifo_size = default_fifo_size;
46  props->evt_q_size = default_app_evt_queue_size;
47  return props;
48 }
49 
50 static u8
52 {
53  return (sm->app_index == SEGMENT_MANAGER_INVALID_APP_INDEX);
54 }
55 
56 void
58 {
59  sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
60 }
61 
65 {
66  return (seg - sm->segments);
67 }
68 
69 /**
70  * Remove segment without lock
71  */
72 void
75 {
77 
78  if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
80 
81  ssvm_delete (&fs->ssvm);
82 
83  if (CLIB_DEBUG)
84  memset (fs, 0xfb, sizeof (*fs));
85  pool_put (sm->segments, fs);
86 }
87 
88 /**
89  * Removes segment after acquiring writer lock
90  */
91 always_inline void
93 {
95  u8 is_prealloc;
96 
97  clib_rwlock_writer_lock (&sm->segments_rwlock);
98  fs = segment_manager_get_segment (sm, fs_index);
100  if (is_prealloc && !segment_manager_app_detached (sm))
101  {
102  clib_rwlock_writer_unlock (&sm->segments_rwlock);
103  return;
104  }
105 
107  clib_rwlock_writer_unlock (&sm->segments_rwlock);
108 }
109 
110 /**
111  * Reads a segment from the segment manager's pool without lock
112  */
115 {
116  return pool_elt_at_index (sm->segments, segment_index);
117 }
118 
119 /**
120  * Reads a segment from the segment manager's pool and acquires reader lock
121  *
122  * Caller must drop the reader's lock by calling
123  * @ref segment_manager_segment_reader_unlock once it finishes working with
124  * the segment.
125  */
128 {
129  clib_rwlock_reader_lock (&sm->segments_rwlock);
130  return pool_elt_at_index (sm->segments, segment_index);
131 }
132 
133 void
135 {
136  ASSERT (sm->segments_rwlock->n_readers > 0);
137  clib_rwlock_reader_unlock (&sm->segments_rwlock);
138 }
139 
140 void
142 {
143  clib_rwlock_writer_unlock (&sm->segments_rwlock);
144 }
145 
146 /**
147  * Adds segment to segment manager's pool
148  *
149  * If needed a writer's lock is acquired before allocating a new segment
150  * to avoid affecting any of the segments pool readers.
151  */
152 int
154 {
156  u32 rnd_margin = 128 << 10, seg_index, page_size;
158  uword baseva = (u64) ~ 0, alloc_size;
160  u8 *seg_name;
161  int rv;
162 
163  props = segment_manager_properties_get (sm);
164 
165  /* Not configured for addition of new segments and not first */
166  if (!props->add_segment && !segment_size)
167  {
168  clib_warning ("cannot allocate new segment");
169  return VNET_API_ERROR_INVALID_VALUE;
170  }
171 
172  /*
173  * Allocate fifo segment and lock if needed
174  */
175  if (vlib_num_workers ())
176  {
177  clib_rwlock_writer_lock (&sm->segments_rwlock);
178  pool_get (sm->segments, seg);
179  }
180  else
181  {
182  pool_get (sm->segments, seg);
183  }
184  memset (seg, 0, sizeof (*seg));
185 
186  /*
187  * Initialize ssvm segment and svm fifo private header
188  */
189  segment_size = segment_size ? segment_size : props->add_segment_size;
190  page_size = clib_mem_get_page_size ();
191  segment_size = (segment_size + page_size - 1) & ~(page_size - 1);
192  if (props->segment_type != SSVM_SEGMENT_PRIVATE)
193  {
194  seg_name = format (0, "%d-%d%c", getpid (), segment_name_counter++, 0);
195  alloc_size = segment_size + rnd_margin;
196  baseva = clib_valloc_alloc (&smm->va_allocator, alloc_size, 0);
197  if (!baseva)
198  {
199  clib_warning ("out of space for segments");
200  return -1;
201  }
202  }
203  else
204  seg_name = format (0, "%s%c", "process-private-segment", 0);
205 
206  seg->ssvm.ssvm_size = segment_size;
207  seg->ssvm.name = seg_name;
208  seg->ssvm.requested_va = baseva;
209 
210  if ((rv = ssvm_master_init (&seg->ssvm, props->segment_type)))
211  {
212  clib_warning ("svm_master_init ('%v', %u) failed", seg_name,
213  segment_size);
214 
215  if (props->segment_type != SSVM_SEGMENT_PRIVATE)
216  clib_valloc_free (&smm->va_allocator, baseva);
217  pool_put (sm->segments, seg);
218  return (rv);
219  }
220 
221  svm_fifo_segment_init (seg);
222 
223  /*
224  * Save segment index before dropping lock, if any held
225  */
226  seg_index = seg - sm->segments;
227 
228  if (vlib_num_workers ())
229  clib_rwlock_writer_unlock (&sm->segments_rwlock);
230 
231  return seg_index;
232 }
233 
236 {
238  segment_manager_t *sm;
239  pool_get (smm->segment_managers, sm);
240  memset (sm, 0, sizeof (*sm));
241  clib_rwlock_init (&sm->segments_rwlock);
242  return sm;
243 }
244 
245 /**
246  * Initializes segment manager based on options provided.
247  * Returns error if ssvm segment(s) allocation fails.
248  */
249 int
251  u32 prealloc_fifo_pairs)
252 {
253  u32 rx_fifo_size, tx_fifo_size, pair_size;
254  u32 rx_rounded_data_size, tx_rounded_data_size;
255  u64 approx_total_size, max_seg_size =
256  ((u64) 1 << 32) - clib_mem_get_page_size ();
259  u32 approx_segment_count;
260  int seg_index, i;
261 
262  props = segment_manager_properties_get (sm);
263  first_seg_size = clib_max (first_seg_size, default_segment_size);
264 
265  if (prealloc_fifo_pairs)
266  {
267  /* Figure out how many segments should be preallocated */
268  rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
269  tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
270 
271  rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
272  tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
273  pair_size = rx_fifo_size + tx_fifo_size;
274 
275  approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
276  if (first_seg_size > approx_total_size)
277  max_seg_size = first_seg_size;
278  approx_segment_count = (approx_total_size + (max_seg_size - 1))
279  / max_seg_size;
280 
281  /* Allocate the segments */
282  for (i = 0; i < approx_segment_count + 1; i++)
283  {
284  seg_index = segment_manager_add_segment (sm, max_seg_size);
285  if (seg_index < 0)
286  {
287  clib_warning ("Failed to preallocate segment %d", i);
288  return seg_index;
289  }
290 
291  segment = segment_manager_get_segment (sm, seg_index);
292  if (i == 0)
293  sm->event_queue = segment_manager_alloc_queue (segment,
294  props->evt_q_size);
295 
297  props->rx_fifo_size,
298  props->tx_fifo_size,
299  &prealloc_fifo_pairs);
301  if (prealloc_fifo_pairs == 0)
302  break;
303  }
304  }
305  else
306  {
307  seg_index = segment_manager_add_segment (sm, first_seg_size);
308  if (seg_index)
309  {
310  clib_warning ("Failed to allocate segment");
311  return seg_index;
312  }
313  segment = segment_manager_get_segment (sm, seg_index);
314  sm->event_queue = segment_manager_alloc_queue (segment,
315  props->evt_q_size);
316  }
317 
318  return 0;
319 }
320 
321 u8
323 {
325  u8 first = 1;
326 
327  /* *INDENT-OFF* */
329  if (CLIB_DEBUG && !first && !svm_fifo_segment_has_fifos (seg)
331  {
332  clib_warning ("segment %d has no fifos!",
334  first = 0;
335  }
336  if (svm_fifo_segment_has_fifos (seg))
337  {
339  return 1;
340  }
341  }));
342  /* *INDENT-ON* */
343 
344  return 0;
345 }
346 
347 /**
348  * Initiate disconnects for all sessions 'owned' by a segment manager
349  */
350 void
352 {
353  svm_fifo_segment_private_t *fifo_segment;
354  stream_session_t *session;
355  svm_fifo_t *fifo;
356 
357  ASSERT (pool_elts (sm->segments) != 0);
358 
359  /* Across all fifo segments used by the server */
360  /* *INDENT-OFF* */
361  segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
362  fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
363 
364  /*
365  * Remove any residual sessions from the session lookup table
366  * Don't bother deleting the individual fifos, we're going to
367  * throw away the fifo segment in a minute.
368  */
369  while (fifo)
370  {
371  if (fifo->master_thread_index == 255)
372  {
373  svm_fifo_t *next = fifo->next;
375  fifo->master_session_index);
376  fifo = next;
377  continue;
378  }
379  session = session_get (fifo->master_session_index,
380  fifo->master_thread_index);
381  stream_session_disconnect (session);
382  fifo = fifo->next;
383  }
384 
385  /* Instead of removing the segment, test when cleaning up disconnected
386  * sessions if the segment can be removed.
387  */
388  }));
389  /* *INDENT-ON* */
390 }
391 
392 /**
393  * Removes segment manager.
394  *
395  * Since the fifos allocated in the segment keep backpointers to the sessions
396  * prior to removing the segment, we call session disconnect. This
397  * subsequently propagates into transport.
398  */
399 void
401 {
403  svm_fifo_segment_private_t *fifo_segment;
404 
407 
408  /* If we have empty preallocated segments that haven't been removed, remove
409  * them now. Apart from that, the first segment in the first segment manager
410  * is not removed when all fifos are removed. It can only be removed when
411  * the manager is explicitly deleted/detached by the app. */
412  clib_rwlock_writer_lock (&sm->segments_rwlock);
413 
414  /* *INDENT-OFF* */
415  pool_foreach (fifo_segment, sm->segments, ({
416  segment_manager_del_segment (sm, fifo_segment);
417  }));
418  /* *INDENT-ON* */
419 
420  clib_rwlock_writer_unlock (&sm->segments_rwlock);
421 
422  clib_rwlock_free (&sm->segments_rwlock);
423  if (CLIB_DEBUG)
424  memset (sm, 0xfe, sizeof (*sm));
425  pool_put (smm->segment_managers, sm);
426 }
427 
428 void
430 {
432  if (segment_manager_has_fifos (sm))
434  else
435  {
436  ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
437  segment_manager_del (sm);
438  }
439 }
440 
441 int
443  u32 rx_fifo_size, u32 tx_fifo_size,
444  svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
445 {
446  rx_fifo_size = clib_max (rx_fifo_size, default_fifo_size);
447  *rx_fifo = svm_fifo_segment_alloc_fifo (fifo_segment, rx_fifo_size,
449 
450  tx_fifo_size = clib_max (tx_fifo_size, default_fifo_size);
451  *tx_fifo = svm_fifo_segment_alloc_fifo (fifo_segment, tx_fifo_size,
453 
454  if (*rx_fifo == 0)
455  {
456  /* This would be very odd, but handle it... */
457  if (*tx_fifo != 0)
458  {
459  svm_fifo_segment_free_fifo (fifo_segment, *tx_fifo,
461  *tx_fifo = 0;
462  }
463  return -1;
464  }
465  if (*tx_fifo == 0)
466  {
467  if (*rx_fifo != 0)
468  {
469  svm_fifo_segment_free_fifo (fifo_segment, *rx_fifo,
471  *rx_fifo = 0;
472  }
473  return -1;
474  }
475 
476  return 0;
477 }
478 
479 int
481  svm_fifo_t ** rx_fifo,
482  svm_fifo_t ** tx_fifo,
483  u32 * fifo_segment_index)
484 {
485  svm_fifo_segment_private_t *fifo_segment = 0;
486  int alloc_fail = 1, rv = 0, new_fs_index;
488  u8 added_a_segment = 0;
489  u32 sm_index;
490 
491  props = segment_manager_properties_get (sm);
492 
493  /*
494  * Find the first free segment to allocate the fifos in
495  */
496 
497  /* *INDENT-OFF* */
498  segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
499  alloc_fail = segment_manager_try_alloc_fifos (fifo_segment,
500  props->rx_fifo_size,
501  props->tx_fifo_size,
502  rx_fifo, tx_fifo);
503  /* Exit with lock held, drop it after notifying app */
504  if (!alloc_fail)
505  goto alloc_success;
506  }));
507  /* *INDENT-ON* */
508 
509 alloc_check:
510 
511  if (!alloc_fail)
512  {
513 
514  alloc_success:
515 
516  ASSERT (rx_fifo && tx_fifo);
517  sm_index = segment_manager_index (sm);
518  (*tx_fifo)->segment_manager = sm_index;
519  (*rx_fifo)->segment_manager = sm_index;
520  *fifo_segment_index = segment_manager_segment_index (sm, fifo_segment);
521 
522  if (added_a_segment)
523  rv = application_add_segment_notify (sm->app_index,
524  &fifo_segment->ssvm);
525  /* Drop the lock after app is notified */
527  return rv;
528  }
529 
530  /*
531  * Allocation failed, see if we can add a new segment
532  */
533  if (props->add_segment)
534  {
535  if (added_a_segment)
536  {
537  clib_warning ("Added a segment, still can't allocate a fifo");
539  return SESSION_ERROR_NEW_SEG_NO_SPACE;
540  }
541  if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0)
542  {
543  clib_warning ("Failed to add new segment");
544  return SESSION_ERROR_SEG_CREATE;
545  }
546  fifo_segment = segment_manager_get_segment_w_lock (sm, new_fs_index);
547  alloc_fail = segment_manager_try_alloc_fifos (fifo_segment,
548  props->rx_fifo_size,
549  props->tx_fifo_size,
550  rx_fifo, tx_fifo);
551  added_a_segment = 1;
552  goto alloc_check;
553  }
554  else
555  {
556  clib_warning ("Can't add new seg and no space to allocate fifos!");
557  return SESSION_ERROR_NO_SPACE;
558  }
559 }
560 
561 void
562 segment_manager_dealloc_fifos (u32 segment_index, svm_fifo_t * rx_fifo,
563  svm_fifo_t * tx_fifo)
564 {
565  svm_fifo_segment_private_t *fifo_segment;
566  segment_manager_t *sm;
567 
568  /* It's possible to have no segment manager if the session was removed
569  * as result of a detach. */
570  if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
571  return;
572 
573  fifo_segment = segment_manager_get_segment_w_lock (sm, segment_index);
574  svm_fifo_segment_free_fifo (fifo_segment, rx_fifo,
576  svm_fifo_segment_free_fifo (fifo_segment, tx_fifo,
578 
579  /*
580  * Try to remove svm segment if it has no fifos. This can be done only if
581  * the segment is not the first in the segment manager or if it is first
582  * and it is not protected. Moreover, if the segment is first and the app
583  * has detached from the segment manager, remove the segment manager.
584  */
585  if (!svm_fifo_segment_has_fifos (fifo_segment))
586  {
588 
589  /* Remove segment if it holds no fifos or first but not protected */
590  if (segment_index != 0 || !sm->first_is_protected)
591  segment_manager_lock_and_del_segment (sm, segment_index);
592 
593  /* Remove segment manager if no sessions and detached from app */
595  && !segment_manager_has_fifos (sm))
596  segment_manager_del (sm);
597  }
598  else
600 }
601 
602 u32
604 {
605  u32 fifo_evt_size, notif_q_size, q_hdrs;
606  u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
607 
608  fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
609  notif_q_size = clib_max (16, q_len >> 4);
610 
611  msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
612  fifo_evt_ring_sz = q_len * fifo_evt_size;
613  session_ntf_ring_sz = notif_q_size * 256;
614  q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
615 
616  return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
617 }
618 
619 /**
620  * Allocates shm queue in the first segment
621  *
622  * Must be called with lock held
623  */
624 svm_msg_q_t *
626  u32 queue_size)
627 {
628  u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
629  svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
630  svm_msg_q_t *q;
631  void *oldheap;
632 
633  fifo_evt_size = sizeof (session_event_t);
634  notif_q_size = clib_max (16, queue_size >> 4);
635  /* *INDENT-OFF* */
637  {queue_size, fifo_evt_size, 0},
638  {notif_q_size, session_evt_size, 0}
639  };
640  /* *INDENT-ON* */
641  cfg->consumer_pid = 0;
642  cfg->n_rings = 2;
643  cfg->q_nitems = queue_size;
644  cfg->ring_cfgs = rc;
645 
646  oldheap = ssvm_push_heap (segment->ssvm.sh);
647  q = svm_msg_q_alloc (cfg);
648  ssvm_pop_heap (oldheap);
649  return q;
650 }
651 
652 /**
653  * Frees shm queue allocated in the first segment
654  */
655 void
657 {
660  void *oldheap;
661 
662  ASSERT (!pool_is_free_index (sm->segments, 0));
663 
664  segment = segment_manager_get_segment_w_lock (sm, 0);
665  sh = segment->ssvm.sh;
666 
667  oldheap = ssvm_push_heap (sh);
668  svm_queue_free (q);
669  ssvm_pop_heap (oldheap);
671 }
672 
673 /*
674  * Init segment vm address allocator
675  */
676 void
678 {
680  clib_valloc_chunk_t _ip, *ip = &_ip;
681 
682  ip->baseva = a->baseva;
683  ip->size = a->size;
684 
685  clib_valloc_init (&sm->va_allocator, ip, 1 /* lock */ );
686 }
687 
688 static clib_error_t *
690  vlib_cli_command_t * cmd)
691 {
694  segment_manager_t *sm;
695  u8 show_segments = 0, verbose = 0;
696  uword address;
697  u64 size;
698  u32 active_fifos;
699  u32 free_fifos;
700 
702  {
703  if (unformat (input, "segments"))
704  show_segments = 1;
705  else if (unformat (input, "verbose"))
706  verbose = 1;
707  else
708  return clib_error_return (0, "unknown input `%U'",
709  format_unformat_error, input);
710  }
711  vlib_cli_output (vm, "%d segment managers allocated",
712  pool_elts (smm->segment_managers));
713  if (verbose && pool_elts (smm->segment_managers))
714  {
715  vlib_cli_output (vm, "%-10s%=15s%=12s", "Index", "App Index",
716  "Segments");
717 
718  /* *INDENT-OFF* */
719  pool_foreach (sm, smm->segment_managers, ({
720  vlib_cli_output (vm, "%-10d%=15d%=12d", segment_manager_index(sm),
721  sm->app_index, pool_elts (sm->segments));
722  }));
723  /* *INDENT-ON* */
724 
725  }
726  if (show_segments)
727  {
728  vlib_cli_output (vm, "%-15s%15s%15s%15s%15s%15s", "Name", "Type",
729  "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
730 
731  /* *INDENT-OFF* */
732  pool_foreach (sm, smm->segment_managers, ({
733  segment_manager_foreach_segment_w_lock (seg, sm, ({
734  svm_fifo_segment_info (seg, &address, &size);
735  active_fifos = svm_fifo_segment_num_fifos (seg);
736  free_fifos = svm_fifo_segment_num_free_fifos (seg, ~0 /* size */);
737  vlib_cli_output (vm, "%-15v%15U%15llu%15u%15u%15llx",
738  ssvm_name (&seg->ssvm), format_svm_fifo_segment_type,
739  seg, size >> 20ULL, active_fifos, free_fifos,
740  address);
741  if (verbose)
742  vlib_cli_output (vm, "%U", format_svm_fifo_segment, seg, verbose);
743  }));
744  }));
745  /* *INDENT-ON* */
746 
747  }
748  return 0;
749 }
750 
751 /* *INDENT-OFF* */
752 VLIB_CLI_COMMAND (segment_manager_show_command, static) =
753 {
754  .path = "show segment-manager",
755  .short_help = "show segment-manager [segments][verbose]",
756  .function = segment_manager_show_fn,
757 };
758 /* *INDENT-ON* */
759 
760 /*
761  * fd.io coding-style-patch-verification: ON
762  *
763  * Local Variables:
764  * eval: (c-set-style "gnu")
765  * End:
766  */
segment_manager_main_t segment_manager_main
static void clib_rwlock_reader_lock(clib_rwlock_t *p)
Definition: lock.h:139
u64 ssvm_size
Definition: ssvm.h:84
typedef address
Definition: ip_types.api:35
void segment_manager_segment_reader_unlock(segment_manager_t *sm)
uword requested_va
Definition: ssvm.h:87
static segment_manager_t * segment_manager_get_if_valid(u32 index)
a
Definition: bitmap.h:538
static void clib_rwlock_writer_lock(clib_rwlock_t *p)
Definition: lock.h:177
struct _segment_manager_properties segment_manager_properties_t
segment_manager_properties_t * application_get_segment_manager_properties(u32 app_index)
Definition: application.c:804
unsigned long u64
Definition: types.h:89
static u32 default_segment_size
static void clib_rwlock_free(clib_rwlock_t *p)
Definition: lock.h:129
static u32 default_app_evt_queue_size
clib_valloc_main_t va_allocator
Virtual address allocator.
#define FIFO_SEGMENT_F_IS_PREALLOCATED
int i
svm_msg_q_t * segment_manager_alloc_queue(svm_fifo_segment_private_t *segment, u32 queue_size)
Allocates shm queue in the first segment.
ssvm_shared_header_t * sh
Definition: ssvm.h:83
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
void segment_manager_dealloc_fifos(u32 segment_index, svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
segment_manager_properties_t * segment_manager_properties_init(segment_manager_properties_t *props)
#define segment_manager_foreach_segment_w_lock(VAR, SM, BODY)
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:228
void svm_fifo_segment_preallocate_fifo_pairs(svm_fifo_segment_private_t *s, u32 rx_fifo_size, u32 tx_fifo_size, u32 *n_fifo_pairs)
Pre-allocates fifo pairs in fifo segment.
segment_manager_t * segment_managers
Pool of segment managers.
u32 segment_manager_evt_q_expected_size(u32 q_len)
unsigned char u8
Definition: types.h:56
int segment_manager_init(segment_manager_t *sm, u32 first_seg_size, u32 prealloc_fifo_pairs)
Initializes segment manager based on options provided.
void ssvm_delete(ssvm_private_t *ssvm)
Definition: ssvm.c:392
struct _svm_fifo svm_fifo_t
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:443
svm_msg_q_t * svm_msg_q_alloc(svm_msg_q_cfg_t *cfg)
Allocate message queue.
Definition: message_queue.c:39
static u8 segment_manager_app_detached(segment_manager_t *sm)
#define always_inline
Definition: clib.h:92
svm_fifo_segment_private_t * segment_manager_get_segment_w_lock(segment_manager_t *sm, u32 segment_index)
Reads a segment from the segment manager&#39;s pool and acquires reader lock.
static void * ssvm_push_heap(ssvm_shared_header_t *sh)
Definition: ssvm.h:144
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
struct _stream_session_t stream_session_t
static void segment_manager_lock_and_del_segment(segment_manager_t *sm, u32 fs_index)
Removes segment after acquiring writer lock.
int ssvm_master_init(ssvm_private_t *ssvm, ssvm_segment_type_t type)
Definition: ssvm.c:380
static void ssvm_pop_heap(void *oldheap)
Definition: ssvm.h:152
segment_manager_t * segment_manager_new()
static heap_elt_t * first(heap_header_t *h)
Definition: heap.c:59
#define svm_fifo_segment_flags(_seg)
int application_add_segment_notify(u32 app_index, ssvm_private_t *fs)
Send an API message to the external app, to map new segment.
Definition: application.c:600
int segment_manager_alloc_session_fifos(segment_manager_t *sm, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo, u32 *fifo_segment_index)
static svm_fifo_t * svm_fifo_segment_get_fifo_list(svm_fifo_segment_private_t *fifo_segment)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:464
uword size
static void clib_rwlock_init(clib_rwlock_t *p)
Definition: lock.h:122
static void clib_rwlock_reader_unlock(clib_rwlock_t *p)
Definition: lock.h:157
void segment_manager_app_detach(segment_manager_t *sm)
void segment_manager_dealloc_queue(segment_manager_t *sm, svm_queue_t *q)
Frees shm queue allocated in the first segment.
struct _unformat_input_t unformat_input_t
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:274
svm_fifo_segment_private_t * segment_manager_get_segment(segment_manager_t *sm, u32 segment_index)
Reads a segment from the segment manager&#39;s pool without lock.
u8 segment_manager_has_fifos(segment_manager_t *sm)
segment_manager_properties_t * segment_manager_properties_get(segment_manager_t *sm)
uword size
size in bytes of this chunk
Definition: valloc.h:33
void segment_manager_del_segment(segment_manager_t *sm, svm_fifo_segment_private_t *fs)
Remove segment without lock.
int segment_manager_add_segment(segment_manager_t *sm, u32 segment_size)
Adds segment to segment manager&#39;s pool.
static stream_session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:309
uword baseva
base VA for this chunk
Definition: valloc.h:32
#define SEGMENT_MANAGER_INVALID_APP_INDEX
static u8 svm_fifo_segment_has_fifos(svm_fifo_segment_private_t *fifo_segment)
static void clib_rwlock_writer_unlock(clib_rwlock_t *p)
Definition: lock.h:185
u32 n_rings
number of msg rings
Definition: message_queue.h:54
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
vlib_main_t * vm
Definition: buffer.c:294
#define clib_warning(format, args...)
Definition: error.h:59
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:271
int application_local_session_disconnect_w_index(u32 app_index, u32 ls_index)
Definition: application.c:1297
int segment_manager_try_alloc_fifos(svm_fifo_segment_private_t *fifo_segment, u32 rx_fifo_size, u32 tx_fifo_size, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo)
static u32 segment_manager_index(segment_manager_t *sm)
void svm_queue_free(svm_queue_t *q)
Definition: queue.c:95
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
uword clib_valloc_alloc(clib_valloc_main_t *vam, uword size, int os_out_of_memory_on_failure)
Allocate virtual space.
Definition: valloc.c:151
void segment_manager_init_del(segment_manager_t *sm)
#define ASSERT(truth)
void segment_manager_main_init(segment_manager_main_init_args_t *a)
static u32 segment_manager_segment_index(segment_manager_t *sm, svm_fifo_segment_private_t *seg)
void stream_session_disconnect(stream_session_t *s)
Initialize session disconnect.
Definition: session.c:1093
svm_msg_q_ring_cfg_t * ring_cfgs
array of ring cfgs
Definition: message_queue.h:55
void svm_fifo_segment_free_fifo(svm_fifo_segment_private_t *s, svm_fifo_t *f, svm_fifo_segment_freelist_t list_index)
#define clib_max(x, y)
Definition: clib.h:282
u8 * name
Definition: ssvm.h:86
void segment_manager_segment_writer_unlock(segment_manager_t *sm)
void segment_manager_del(segment_manager_t *sm)
Removes segment manager.
u32 q_nitems
msg queue size (not rings)
Definition: message_queue.h:53
static uword max_log2(uword x)
Definition: clib.h:185
static u32 segment_name_counter
Counter used to build segment names.
u64 uword
Definition: types.h:112
void segment_manager_del_sessions(segment_manager_t *sm)
Initiate disconnects for all sessions &#39;owned&#39; by a segment manager.
uword clib_valloc_free(clib_valloc_main_t *vam, uword baseva)
Free virtual space.
Definition: valloc.c:228
struct _segment_manager segment_manager_t
struct _svm_queue svm_queue_t
int svm_fifo_segment_init(svm_fifo_segment_private_t *s)
Initialize svm fifo segment shared header.
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
void clib_valloc_init(clib_valloc_main_t *vam, clib_valloc_chunk_t *template, int need_lock)
Initialize a virtual memory allocation arena.
Definition: valloc.c:129
static u32 vlib_num_workers()
Definition: threads.h:375
static clib_error_t * segment_manager_show_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
int consumer_pid
pid of msg consumer
Definition: message_queue.h:52
static u32 default_fifo_size
Default fifo and segment size.
uword clib_mem_get_page_size(void)
Definition: mem_mheap.c:110
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:681
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
svm_fifo_t * svm_fifo_segment_alloc_fifo(svm_fifo_segment_private_t *s, u32 data_size_in_bytes, svm_fifo_segment_freelist_t list_index)
Allocate fifo in svm segment.
ssvm_segment_type_t ssvm_type(const ssvm_private_t *ssvm)
Definition: ssvm.c:398
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128