FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
segment_manager.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2019 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 
20 typedef 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 */
25 
26  /*
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 */
33 
35 
36 #define segment_manager_foreach_segment_w_lock(VAR, SM, BODY) \
37 do { \
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 
45 {
46  app_worker_t *app_wrk = app_worker_get (sm->app_wrk_index);
48 }
49 
52 {
53  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;
57  return props;
58 }
59 
60 static u8
62 {
63  return (sm->app_wrk_index == SEGMENT_MANAGER_INVALID_APP_INDEX);
64 }
65 
66 void
68 {
69  sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
70 }
71 
74 {
75  return (seg - sm->segments);
76 }
77 
78 /**
79  * 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  */
84 int
86 {
88  u32 rnd_margin = 128 << 10, fs_index = ~0, page_size;
89  uword baseva = (uword) ~ 0ULL, alloc_size;
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  /*
105  * Allocate fifo segment and grab lock if needed
106  */
107  if (vlib_num_workers ())
108  clib_rwlock_writer_lock (&sm->segments_rwlock);
109 
110  pool_get_zero (sm->segments, fs);
111 
112  /*
113  * Allocate ssvm segment
114  */
115  segment_size = segment_size ? segment_size : props->add_segment_size;
116  page_size = clib_mem_get_page_size ();
117  /* 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);
120 
121  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
134  seg_name = format (0, "%s%c", "process-private", 0);
135 
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 
151  /*
152  * Initialize fifo segment
153  */
154  fifo_segment_init (fs);
155 
156  /*
157  * Save segment index before dropping lock, if any held
158  */
159  fs_index = fs - sm->segments;
160 
161 done:
162 
163  if (vlib_num_workers ())
164  clib_rwlock_writer_unlock (&sm->segments_rwlock);
165 
166  return fs_index;
167 }
168 
169 /**
170  * Remove segment without lock
171  */
172 void
174 {
176 
177  if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE)
178  {
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  }
190 
191  ssvm_delete (&fs->ssvm);
192 
193  if (CLIB_DEBUG)
194  clib_memset (fs, 0xfb, sizeof (*fs));
195  pool_put (sm->segments, fs);
196 }
197 
198 /**
199  * Removes segment after acquiring writer lock
200  */
201 static inline void
203 {
204  fifo_segment_t *fs;
205  u8 is_prealloc;
206 
207  clib_rwlock_writer_lock (&sm->segments_rwlock);
208  fs = segment_manager_get_segment (sm, fs_index);
210  if (is_prealloc && !segment_manager_app_detached (sm))
211  {
212  clib_rwlock_writer_unlock (&sm->segments_rwlock);
213  return;
214  }
215 
217  clib_rwlock_writer_unlock (&sm->segments_rwlock);
218 }
219 
220 /**
221  * Reads a segment from the segment manager's pool without lock
222  */
225 {
226  return pool_elt_at_index (sm->segments, segment_index);
227 }
228 
229 u64
231  fifo_segment_t * segment)
232 {
233  u32 segment_index = segment_manager_segment_index (sm, segment);
234  return (((u64) segment_manager_index (sm) << 32) | segment_index);
235 }
236 
237 static void
238 segment_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 
245 u64
247  u32 segment_index)
248 {
249  return (((u64) segment_manager_index << 32) | segment_index);
250 }
251 
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 
266 /**
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  */
275 {
276  clib_rwlock_reader_lock (&sm->segments_rwlock);
277  return pool_elt_at_index (sm->segments, segment_index);
278 }
279 
280 void
282 {
283  clib_rwlock_reader_unlock (&sm->segments_rwlock);
284 }
285 
286 void
288 {
289  clib_rwlock_writer_unlock (&sm->segments_rwlock);
290 }
291 
294 {
296  segment_manager_t *sm;
297 
298  pool_get_zero (smm->segment_managers, sm);
299  clib_rwlock_init (&sm->segments_rwlock);
300  return sm;
301 }
302 
303 /**
304  * Initializes segment manager based on options provided.
305  * Returns error if ssvm segment(s) allocation fails.
306  */
307 int
309  u32 prealloc_fifo_pairs)
310 {
311  u32 rx_fifo_size, tx_fifo_size, pair_size;
312  u32 rx_rounded_data_size, tx_rounded_data_size;
313  u64 approx_total_size, max_seg_size = ((u64) 1 << 32) - (128 << 10);
315  fifo_segment_t *segment;
316  u32 approx_segment_count;
317  int seg_index, i;
318 
319  props = segment_manager_properties_get (sm);
320  first_seg_size = clib_max (first_seg_size, sm_main.default_segment_size);
321 
322  if (prealloc_fifo_pairs)
323  {
324  /* Figure out how many segments should be preallocated */
325  rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size)));
326  tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size)));
327 
328  rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size;
329  tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size;
330  pair_size = rx_fifo_size + tx_fifo_size;
331 
332  approx_total_size = (u64) prealloc_fifo_pairs *pair_size;
333  if (first_seg_size > approx_total_size)
334  max_seg_size = first_seg_size;
335  approx_segment_count = (approx_total_size + (max_seg_size - 1))
336  / max_seg_size;
337 
338  /* Allocate the segments */
339  for (i = 0; i < approx_segment_count + 1; i++)
340  {
341  seg_index = segment_manager_add_segment (sm, max_seg_size);
342  if (seg_index < 0)
343  {
344  clib_warning ("Failed to preallocate segment %d", i);
345  return seg_index;
346  }
347 
348  segment = segment_manager_get_segment (sm, seg_index);
349  if (i == 0)
350  sm->event_queue = segment_manager_alloc_queue (segment, props);
351 
353  props->rx_fifo_size,
354  props->tx_fifo_size,
355  &prealloc_fifo_pairs);
357  if (prealloc_fifo_pairs == 0)
358  break;
359  }
360  }
361  else
362  {
363  seg_index = segment_manager_add_segment (sm, first_seg_size);
364  if (seg_index < 0)
365  {
366  clib_warning ("Failed to allocate segment");
367  return seg_index;
368  }
369  segment = segment_manager_get_segment (sm, seg_index);
370  sm->event_queue = segment_manager_alloc_queue (segment, props);
371  }
372 
373  return 0;
374 }
375 
376 /**
377  * Cleanup segment manager.
378  */
379 void
381 {
383  fifo_segment_t *fifo_segment;
384 
387 
388  /* If we have empty preallocated segments that haven't been removed, remove
389  * them now. Apart from that, the first segment in the first segment manager
390  * is not removed when all fifos are removed. It can only be removed when
391  * the manager is explicitly deleted/detached by the app. */
392  clib_rwlock_writer_lock (&sm->segments_rwlock);
393 
394  /* *INDENT-OFF* */
395  pool_foreach (fifo_segment, sm->segments, ({
396  segment_manager_del_segment (sm, fifo_segment);
397  }));
398  /* *INDENT-ON* */
399 
400  clib_rwlock_writer_unlock (&sm->segments_rwlock);
401 
402  clib_rwlock_free (&sm->segments_rwlock);
403  if (CLIB_DEBUG)
404  clib_memset (sm, 0xfe, sizeof (*sm));
405  pool_put (smm->segment_managers, sm);
406 }
407 
408 void
410 {
412  if (segment_manager_has_fifos (sm))
414  else
415  {
416  ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm));
418  }
419 }
420 
423 {
424  return pool_elt_at_index (sm_main.segment_managers, index);
425 }
426 
429 {
430  if (pool_is_free_index (sm_main.segment_managers, index))
431  return 0;
432  return pool_elt_at_index (sm_main.segment_managers, index);
433 }
434 
435 u32
437 {
438  return sm - sm_main.segment_managers;
439 }
440 
441 u8
443 {
444  fifo_segment_t *seg;
445  u8 first = 1;
446 
447  /* *INDENT-OFF* */
449  if (CLIB_DEBUG && !first && !fifo_segment_has_fifos (seg)
451  {
452  clib_warning ("segment %d has no fifos!",
454  first = 0;
455  }
456  if (fifo_segment_has_fifos (seg))
457  {
459  return 1;
460  }
461  }));
462  /* *INDENT-ON* */
463 
464  return 0;
465 }
466 
467 /**
468  * Initiate disconnects for all sessions 'owned' by a segment manager
469  */
470 void
472 {
473  fifo_segment_t *fifo_segment;
474  session_handle_t *handles = 0, *handle;
475  session_t *session;
476  svm_fifo_t *fifo;
477 
478  ASSERT (pool_elts (sm->segments) != 0);
479 
480  /* Across all fifo segments used by the server */
481  /* *INDENT-OFF* */
482  segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
483  fifo = fifo_segment_get_fifo_list (fifo_segment);
484 
485  /*
486  * Remove any residual sessions from the session lookup table
487  * Don't bother deleting the individual fifos, we're going to
488  * throw away the fifo segment in a minute.
489  */
490  while (fifo)
491  {
492  session = session_get_if_valid (fifo->master_session_index,
493  fifo->master_thread_index);
494  if (session)
495  vec_add1 (handles, session_handle (session));
496  fifo = fifo->next;
497  }
498 
499  /* Instead of removing the segment, test when cleaning up disconnected
500  * sessions if the segment can be removed.
501  */
502  }));
503  /* *INDENT-ON* */
504 
505  vec_foreach (handle, handles)
507 }
508 
509 int
511  u32 rx_fifo_size, u32 tx_fifo_size,
512  svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo)
513 {
514  rx_fifo_size = clib_max (rx_fifo_size, sm_main.default_fifo_size);
515  *rx_fifo = fifo_segment_alloc_fifo (fifo_segment, rx_fifo_size,
517 
518  tx_fifo_size = clib_max (tx_fifo_size, sm_main.default_fifo_size);
519  *tx_fifo = fifo_segment_alloc_fifo (fifo_segment, tx_fifo_size,
521 
522  if (*rx_fifo == 0)
523  {
524  /* This would be very odd, but handle it... */
525  if (*tx_fifo != 0)
526  {
527  fifo_segment_free_fifo (fifo_segment, *tx_fifo);
528  *tx_fifo = 0;
529  }
530  return -1;
531  }
532  if (*tx_fifo == 0)
533  {
534  if (*rx_fifo != 0)
535  {
536  fifo_segment_free_fifo (fifo_segment, *rx_fifo);
537  *rx_fifo = 0;
538  }
539  return -1;
540  }
541 
542  return 0;
543 }
544 
545 int
547  svm_fifo_t ** rx_fifo,
548  svm_fifo_t ** tx_fifo)
549 {
550  int alloc_fail = 1, rv = 0, new_fs_index;
552  fifo_segment_t *fs = 0;
553  u32 sm_index, fs_index;
554  u8 added_a_segment = 0;
555  u64 fs_handle;
556 
557  props = segment_manager_properties_get (sm);
558 
559  /*
560  * Find the first free segment to allocate the fifos in
561  */
562 
563  /* *INDENT-OFF* */
565  alloc_fail = segment_manager_try_alloc_fifos (fs,
566  props->rx_fifo_size,
567  props->tx_fifo_size,
568  rx_fifo, tx_fifo);
569  /* Exit with lock held, drop it after notifying app */
570  if (!alloc_fail)
571  goto alloc_success;
572  }));
573  /* *INDENT-ON* */
574 
575 alloc_check:
576 
577  if (!alloc_fail)
578  {
579 
580  alloc_success:
581 
582  ASSERT (rx_fifo && tx_fifo);
583  sm_index = segment_manager_index (sm);
584  fs_index = segment_manager_segment_index (sm, fs);
585  (*tx_fifo)->segment_manager = sm_index;
586  (*rx_fifo)->segment_manager = sm_index;
587  (*tx_fifo)->segment_index = fs_index;
588  (*rx_fifo)->segment_index = fs_index;
589 
590  if (added_a_segment)
591  {
592  app_worker_t *app_wrk;
593  fs_handle = segment_manager_segment_handle (sm, fs);
594  app_wrk = app_worker_get (sm->app_wrk_index);
595  rv = app_worker_add_segment_notify (app_wrk, fs_handle);
596  }
597  /* Drop the lock after app is notified */
599  return rv;
600  }
601 
602  /*
603  * Allocation failed, see if we can add a new segment
604  */
605  if (props->add_segment)
606  {
607  if (added_a_segment)
608  {
609  clib_warning ("Added a segment, still can't allocate a fifo");
611  return SESSION_ERROR_NEW_SEG_NO_SPACE;
612  }
613  if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0)
614  {
615  clib_warning ("Failed to add new segment");
616  return SESSION_ERROR_SEG_CREATE;
617  }
618  fs = segment_manager_get_segment_w_lock (sm, new_fs_index);
619  alloc_fail = segment_manager_try_alloc_fifos (fs, props->rx_fifo_size,
620  props->tx_fifo_size,
621  rx_fifo, tx_fifo);
622  added_a_segment = 1;
623  goto alloc_check;
624  }
625  else
626  {
627  clib_warning ("Can't add new seg and no space to allocate fifos!");
628  return SESSION_ERROR_NO_SPACE;
629  }
630 }
631 
632 void
634 {
635  segment_manager_t *sm;
636  fifo_segment_t *fs;
637  u32 segment_index;
638 
639  if (!rx_fifo || !tx_fifo)
640  return;
641 
642  /* It's possible to have no segment manager if the session was removed
643  * as result of a detach. */
644  if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager)))
645  return;
646 
647  segment_index = rx_fifo->segment_index;
648  fs = segment_manager_get_segment_w_lock (sm, segment_index);
649  fifo_segment_free_fifo (fs, rx_fifo);
650  fifo_segment_free_fifo (fs, tx_fifo);
651 
652  /*
653  * Try to remove svm segment if it has no fifos. This can be done only if
654  * the segment is not the first in the segment manager or if it is first
655  * and it is not protected. Moreover, if the segment is first and the app
656  * has detached from the segment manager, remove the segment manager.
657  */
658  if (!fifo_segment_has_fifos (fs))
659  {
661 
662  /* Remove segment if it holds no fifos or first but not protected */
663  if (segment_index != 0 || !sm->first_is_protected)
664  segment_manager_lock_and_del_segment (sm, segment_index);
665 
666  /* Remove segment manager if no sessions and detached from app */
668  && !segment_manager_has_fifos (sm))
669  {
671  }
672  }
673  else
675 }
676 
677 int
679 {
680  fifo_segment_t *fs;
681  int rv;
682 
683  fs = segment_manager_get_segment_w_lock (sm, f->segment_index);
684  rv = fifo_segment_grow_fifo (fs, f, size);
686 
687  return rv;
688 }
689 
690 int
692 {
693  fifo_segment_t *fs;
694  int rv;
695 
696  fs = segment_manager_get_segment_w_lock (sm, f->segment_index);
699 
700  return rv;
701 }
702 
703 int
705  u8 is_producer)
706 {
707  int rv;
708 
709  rv = svm_fifo_reduce_size (f, size, is_producer);
710 
711  /* Nothing to collect at this point */
712  if (!is_producer)
713  return rv;
714 
715  if (f->flags & SVM_FIFO_F_COLLECT_CHUNKS)
717 
718  return rv;
719 }
720 
721 u32
723 {
724  u32 fifo_evt_size, notif_q_size, q_hdrs;
725  u32 msg_q_sz, fifo_evt_ring_sz, session_ntf_ring_sz;
726 
727  fifo_evt_size = 1 << max_log2 (sizeof (session_event_t));
728  notif_q_size = clib_max (16, q_len >> 4);
729 
730  msg_q_sz = q_len * sizeof (svm_msg_q_msg_t);
731  fifo_evt_ring_sz = q_len * fifo_evt_size;
732  session_ntf_ring_sz = notif_q_size * 256;
733  q_hdrs = sizeof (svm_queue_t) + sizeof (svm_msg_q_t);
734 
735  return (msg_q_sz + fifo_evt_ring_sz + session_ntf_ring_sz + q_hdrs);
736 }
737 
738 /**
739  * Allocates shm queue in the first segment
740  *
741  * Must be called with lock held
742  */
743 svm_msg_q_t *
745  segment_manager_props_t * props)
746 {
747  u32 fifo_evt_size, session_evt_size = 256, notif_q_size;
748  svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
749  svm_msg_q_t *q;
750  void *oldheap;
751 
752  fifo_evt_size = sizeof (session_event_t);
753  notif_q_size = clib_max (16, props->evt_q_size >> 4);
754  /* *INDENT-OFF* */
756  {props->evt_q_size, fifo_evt_size, 0},
757  {notif_q_size, session_evt_size, 0}
758  };
759  /* *INDENT-ON* */
760  cfg->consumer_pid = 0;
761  cfg->n_rings = 2;
762  cfg->q_nitems = props->evt_q_size;
763  cfg->ring_cfgs = rc;
764 
765  oldheap = ssvm_push_heap (segment->ssvm.sh);
766  q = svm_msg_q_alloc (cfg);
768  ssvm_pop_heap (oldheap);
769 
770  if (props->use_mq_eventfd)
771  {
773  clib_warning ("failed to alloc eventfd");
774  }
775  return q;
776 }
777 
778 svm_msg_q_t *
780 {
781  return sm->event_queue;
782 }
783 
784 /**
785  * Frees shm queue allocated in the first segment
786  */
787 void
789 {
790  fifo_segment_t *segment;
792  void *oldheap;
793 
794  ASSERT (!pool_is_free_index (sm->segments, 0));
795 
796  segment = segment_manager_get_segment_w_lock (sm, 0);
797  sh = segment->ssvm.sh;
798 
799  oldheap = ssvm_push_heap (sh);
800  svm_queue_free (q);
801  ssvm_pop_heap (oldheap);
803 }
804 
805 /*
806  * Init segment vm address allocator
807  */
808 void
810 {
812  clib_valloc_chunk_t _ip, *ip = &_ip;
813 
814  ip->baseva = a->baseva;
815  ip->size = a->size;
816 
817  clib_valloc_init (&sm->va_allocator, ip, 1 /* lock */ );
818 
819  sm->default_fifo_size = 1 << 12;
820  sm->default_segment_size = 1 << 20;
821  sm->default_app_mq_size = 128;
822 }
823 
824 static clib_error_t *
826  vlib_cli_command_t * cmd)
827 {
829  u8 show_segments = 0, verbose = 0;
830  segment_manager_t *sm;
831  fifo_segment_t *seg;
832 
834  {
835  if (unformat (input, "segments"))
836  show_segments = 1;
837  else if (unformat (input, "verbose"))
838  verbose = 1;
839  else
840  return clib_error_return (0, "unknown input `%U'",
841  format_unformat_error, input);
842  }
843  vlib_cli_output (vm, "%d segment managers allocated",
844  pool_elts (smm->segment_managers));
845  if (verbose && pool_elts (smm->segment_managers))
846  {
847  vlib_cli_output (vm, "%-10s%=15s%=12s", "Index", "App Index",
848  "Segments");
849 
850  /* *INDENT-OFF* */
851  pool_foreach (sm, smm->segment_managers, ({
852  vlib_cli_output (vm, "%-10d%=15d%=12d", segment_manager_index (sm),
853  sm->app_wrk_index, pool_elts (sm->segments));
854  }));
855  /* *INDENT-ON* */
856 
857  }
858  if (show_segments)
859  {
860  vlib_cli_output (vm, "%U", format_fifo_segment, 0, verbose);
861 
862  /* *INDENT-OFF* */
863  pool_foreach (sm, smm->segment_managers, ({
864  segment_manager_foreach_segment_w_lock (seg, sm, ({
865  vlib_cli_output (vm, "%U", format_fifo_segment, seg, verbose);
866  }));
867  }));
868  /* *INDENT-ON* */
869 
870  }
871  return 0;
872 }
873 
874 /* *INDENT-OFF* */
875 VLIB_CLI_COMMAND (segment_manager_show_command, static) =
876 {
877  .path = "show segment-manager",
878  .short_help = "show segment-manager [segments][verbose]",
879  .function = segment_manager_show_fn,
880 };
881 /* *INDENT-ON* */
882 
883 void
885 {
886  fifo_segment_t *fifo_segment;
888  app_worker_t *app_wrk;
889  const u8 *app_name;
890  u8 *s = 0;
891 
892  if (!sm)
893  {
894  if (verbose)
895  vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
896  "API Client", "SegManager");
897  else
898  vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
899  return;
900  }
901 
902  app_wrk = app_worker_get (sm->app_wrk_index);
903  app_name = application_name_from_index (app_wrk->app_index);
904 
905  clib_rwlock_reader_lock (&sm->segments_rwlock);
906 
907  /* *INDENT-OFF* */
908  pool_foreach (fifo_segment, sm->segments, ({
909  svm_fifo_t *fifo;
910  u8 *str;
911 
912  fifo = fifo_segment_get_fifo_list (fifo_segment);
913  while (fifo)
914  {
915  u32 session_index, thread_index;
916  session_t *session;
917 
918  session_index = fifo->master_session_index;
919  thread_index = fifo->master_thread_index;
920 
921  session = session_get (session_index, thread_index);
922  str = format (0, "%U", format_session, session, verbose);
923 
924  if (verbose)
925  s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
926  app_wrk->api_client_index, app_wrk->connects_seg_manager);
927  else
928  s = format (s, "%-40s%-20s", str, app_name);
929 
930  vlib_cli_output (vm, "%v", s);
931  vec_reset_length (s);
932  vec_free (str);
933 
934  fifo = fifo->next;
935  }
936  vec_free (s);
937  }));
938  /* *INDENT-ON* */
939 
940  clib_rwlock_reader_unlock (&sm->segments_rwlock);
941 }
942 
943 /*
944  * fd.io coding-style-patch-verification: ON
945  *
946  * Local Variables:
947  * eval: (c-set-style "gnu")
948  * End:
949  */
u32 segment_manager_index(segment_manager_t *sm)
static void clib_rwlock_reader_lock(clib_rwlock_t *p)
Definition: lock.h:148
u64 ssvm_size
Definition: ssvm.h:85
void segment_manager_segment_reader_unlock(segment_manager_t *sm)
u64 segment_manager_segment_handle(segment_manager_t *sm, fifo_segment_t *segment)
svm_msg_q_t * segment_manager_alloc_queue(fifo_segment_t *segment, segment_manager_props_t *props)
Allocates shm queue in the first segment.
uword requested_va
Definition: ssvm.h:88
a
Definition: bitmap.h:538
static void clib_rwlock_writer_lock(clib_rwlock_t *p)
Definition: lock.h:171
fifo_segment_t * segment_manager_get_segment(segment_manager_t *sm, u32 segment_index)
Reads a segment from the segment manager&#39;s pool without lock.
#define pool_get_zero(P, E)
Allocate an object E from a pool P and zero it.
Definition: pool.h:239
unsigned long u64
Definition: types.h:89
struct segment_manager_main_ segment_manager_main_t
static void clib_rwlock_free(clib_rwlock_t *p)
Definition: lock.h:138
static session_t * session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:265
fifo_segment_t * segment_manager_get_segment_w_handle(u64 segment_handle)
void segment_manager_format_sessions(segment_manager_t *sm, int verbose)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
clib_valloc_main_t va_allocator
Virtual address allocator.
static segment_manager_main_t sm_main
int i
void segment_manager_free(segment_manager_t *sm)
Cleanup segment manager.
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
ssvm_shared_header_t * sh
Definition: ssvm.h:84
int app_worker_add_segment_notify(app_worker_t *app_wrk, u64 segment_handle)
Send an API message to the external app, to map new segment.
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
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
static void segment_manager_parse_segment_handle(u64 segment_handle, u32 *sm_index, u32 *segment_index)
int segment_manager_init(segment_manager_t *sm, u32 first_seg_size, u32 prealloc_fifo_pairs)
Initializes segment manager based on options provided.
static u32 segment_manager_segment_index(segment_manager_t *sm, fifo_segment_t *seg)
void ssvm_delete(ssvm_private_t *ssvm)
Definition: ssvm.c:432
static session_handle_t session_handle(session_t *s)
struct _svm_fifo svm_fifo_t
int segment_manager_try_alloc_fifos(fifo_segment_t *fifo_segment, u32 rx_fifo_size, u32 tx_fifo_size, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo)
#define fifo_segment_flags(_fs)
Definition: fifo_segment.h:72
u64 segment_manager_make_segment_handle(u32 segment_manager_index, u32 segment_index)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:493
svm_msg_q_t * svm_msg_q_alloc(svm_msg_q_cfg_t *cfg)
Allocate message queue.
Definition: message_queue.c:40
int segment_manager_alloc_session_fifos(segment_manager_t *sm, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo)
static u8 segment_manager_app_detached(segment_manager_t *sm)
void segment_manager_dealloc_fifos(svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
#define always_inline
Definition: clib.h:98
static void * ssvm_push_heap(ssvm_shared_header_t *sh)
Definition: ssvm.h:143
#define clib_error_return(e, args...)
Definition: error.h:99
u32 default_fifo_size
default rx/tx fifo size
unsigned int u32
Definition: types.h:88
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:420
static void ssvm_pop_heap(void *oldheap)
Definition: ssvm.h:151
static heap_elt_t * first(heap_header_t *h)
Definition: heap.c:59
void fifo_segment_preallocate_fifo_pairs(fifo_segment_t *fs, u32 rx_fifo_size, u32 tx_fifo_size, u32 *n_fifo_pairs)
Pre-allocates fifo pairs in fifo segment.
Definition: fifo_segment.c:589
u32 seg_name_counter
Counter for segment names.
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
uword size
static void clib_rwlock_init(clib_rwlock_t *p)
Definition: lock.h:131
static void clib_rwlock_reader_unlock(clib_rwlock_t *p)
Definition: lock.h:163
void segment_manager_app_detach(segment_manager_t *sm)
u32 default_app_mq_size
default app msg q size
static session_t * session_get_from_handle(session_handle_t handle)
Definition: session.h:278
void segment_manager_del_segment(segment_manager_t *sm, fifo_segment_t *fs)
Remove segment without lock.
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
uword clib_mem_get_page_size(void)
Definition: mem.c:51
const u8 * application_name_from_index(u32 app_index)
Returns app name for app-index.
Definition: application.c:352
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
void segment_manager_init_free(segment_manager_t *sm)
Initiate segment manager cleanup.
struct _segment_manager_props segment_manager_props_t
int fifo_segment_grow_fifo(fifo_segment_t *fs, svm_fifo_t *f, u32 chunk_size)
Grow fifo size by adding an additional chunk of memory.
Definition: fifo_segment.c:640
u8 segment_manager_has_fifos(segment_manager_t *sm)
uword size
size in bytes of this chunk
Definition: valloc.h:33
svm_fifo_t * fifo_segment_get_fifo_list(fifo_segment_t *fs)
Definition: fifo_segment.c:815
int segment_manager_add_segment(segment_manager_t *sm, u32 segment_size)
Adds segment to segment manager&#39;s pool.
int segment_manager_grow_fifo(segment_manager_t *sm, svm_fifo_t *f, u32 size)
Grows fifo owned by segment manager.
int segment_manager_collect_fifo_chunks(segment_manager_t *sm, svm_fifo_t *f)
Collect fifo chunks that are no longer used.
uword baseva
base VA for this chunk
Definition: valloc.h:32
#define SEGMENT_MANAGER_INVALID_APP_INDEX
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
svm_msg_q_t * segment_manager_event_queue(segment_manager_t *sm)
ssvm_private_t ssvm
ssvm segment data
Definition: fifo_segment.h:52
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
vlib_main_t * vm
Definition: buffer.c:312
segment_manager_t * segment_manager_alloc(void)
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
static segment_manager_props_t * segment_manager_properties_get(segment_manager_t *sm)
#define clib_warning(format, args...)
Definition: error.h:59
int svm_fifo_reduce_size(svm_fifo_t *f, u32 len, u8 try_shrink)
Request to reduce fifo size by amount of bytes.
Definition: svm_fifo.c:726
#define segment_manager_foreach_segment_w_lock(VAR, SM, BODY)
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:283
void svm_queue_free(svm_queue_t *q)
Definition: queue.c:89
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
segment_manager_props_t * application_get_segment_manager_properties(u32 app_index)
Definition: application.c:1293
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
#define ASSERT(truth)
segment_manager_props_t * segment_manager_props_init(segment_manager_props_t *props)
void fifo_segment_free_fifo(fifo_segment_t *fs, svm_fifo_t *f)
Free fifo allocated in fifo segment.
Definition: fifo_segment.c:430
fifo_segment_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.
void segment_manager_main_init(segment_manager_main_init_args_t *a)
svm_fifo_t * fifo_segment_alloc_fifo(fifo_segment_t *fs, u32 data_bytes, fifo_segment_ftype_t ftype)
Allocate fifo in fifo segment.
Definition: fifo_segment.c:375
svm_msg_q_ring_cfg_t * ring_cfgs
array of ring cfgs
Definition: message_queue.h:55
#define clib_max(x, y)
Definition: clib.h:288
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u8 * name
Definition: ssvm.h:87
int app_worker_del_segment_notify(app_worker_t *app_wrk, u64 segment_handle)
void segment_manager_segment_writer_unlock(segment_manager_t *sm)
vl_api_address_t ip
Definition: l2.api:489
app_worker_t * app_worker_get(u32 wrk_index)
u32 q_nitems
msg queue size (not rings)
Definition: message_queue.h:53
u64 session_handle_t
static uword max_log2(uword x)
Definition: clib.h:191
void session_close(session_t *s)
Initialize session closing procedure.
Definition: session.c:1186
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
u32 default_segment_size
default fifo segment size
segment_manager_t * segment_manager_get(u32 index)
struct _svm_queue svm_queue_t
void fifo_segment_update_free_bytes(fifo_segment_t *fs)
Update fifo segment free bytes estimate.
Definition: fifo_segment.c:791
u8 fifo_segment_has_fifos(fifo_segment_t *fs)
Definition: fifo_segment.c:809
u32 app_index
Index of owning app.
Definition: application.h:43
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
int fifo_segment_collect_fifo_chunks(fifo_segment_t *fs, svm_fifo_t *f)
Collect unused chunks for fifo.
Definition: fifo_segment.c:688
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:367
#define vec_foreach(var, vec)
Vector iterator.
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
int svm_msg_q_alloc_producer_eventfd(svm_msg_q_t *mq)
Allocate event fd for queue consumer.
format_function_t format_fifo_segment
Definition: fifo_segment.h:212
int fifo_segment_init(fifo_segment_t *fs)
Initialize fifo segment shared header.
Definition: fifo_segment.c:41
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:768
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
segment_manager_t * segment_manager_get_if_valid(u32 index)
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
int segment_manager_shrink_fifo(segment_manager_t *sm, svm_fifo_t *f, u32 size, u8 is_producer)
Request to shrink fifo owned by segment manager.
ssvm_segment_type_t ssvm_type(const ssvm_private_t *ssvm)
Definition: ssvm.c:438
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128