FD.io VPP  v19.01.1-17-ge106252
Vector Packet Processing
session.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 /**
16  * @file
17  * @brief Session and session manager
18  */
19 
20 #include <vnet/session/session.h>
23 #include <vlibmemory/api.h>
24 #include <vnet/dpo/load_balance.h>
25 #include <vnet/fib/ip4_fib.h>
26 
29 
30 static inline int
31 session_send_evt_to_thread (void *data, void *args, u32 thread_index,
32  session_evt_type_t evt_type)
33 {
34  session_event_t *evt;
35  svm_msg_q_msg_t msg;
36  svm_msg_q_t *mq;
37  u32 tries = 0, max_tries;
38 
39  mq = session_manager_get_vpp_event_queue (thread_index);
40  while (svm_msg_q_try_lock (mq))
41  {
42  max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
43  if (tries++ == max_tries)
44  {
45  SESSION_DBG ("failed to enqueue evt");
46  return -1;
47  }
48  }
50  {
51  svm_msg_q_unlock (mq);
52  return -2;
53  }
56  {
57  svm_msg_q_unlock (mq);
58  return -2;
59  }
60  evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
61  evt->event_type = evt_type;
62  switch (evt_type)
63  {
64  case FIFO_EVENT_RPC:
65  evt->rpc_args.fp = data;
66  evt->rpc_args.arg = args;
67  break;
68  case FIFO_EVENT_APP_TX:
71  evt->fifo = data;
72  break;
75  evt->session_handle = session_handle ((stream_session_t *) data);
76  break;
77  default:
78  clib_warning ("evt unhandled!");
79  svm_msg_q_unlock (mq);
80  return -1;
81  }
82 
83  svm_msg_q_add_and_unlock (mq, &msg);
84  return 0;
85 }
86 
87 int
89 {
90  return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
91 }
92 
93 int
94 session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
95  session_evt_type_t evt_type)
96 {
97  return session_send_evt_to_thread (data, 0, thread_index, evt_type);
98 }
99 
100 int
102  session_evt_type_t evt_type)
103 {
104  /* only event supported for now is disconnect */
105  ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
106  return session_send_evt_to_thread (s, 0, s->thread_index,
108 }
109 
110 void
111 session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
112 {
113  if (thread_index != vlib_get_thread_index ())
114  session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
115  else
116  {
117  void (*fnp) (void *) = fp;
118  fnp (rpc_args);
119  }
120 }
121 
122 static void
124 {
125  u32 thread_index = vlib_get_thread_index ();
127  session_event_t *evt;
128 
129  /* If we are in the handler thread, or being called with the worker barrier
130  * held, just append a new event to pending disconnects vector. */
131  if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
132  {
133  wrk = session_manager_get_worker (s->thread_index);
134  vec_add2 (wrk->pending_disconnects, evt, 1);
135  clib_memset (evt, 0, sizeof (*evt));
136  evt->session_handle = session_handle (s);
137  evt->event_type = FIFO_EVENT_DISCONNECT;
138  }
139  else
141 }
142 
144 session_alloc (u32 thread_index)
145 {
146  session_manager_worker_t *wrk = &session_manager_main.wrk[thread_index];
147  stream_session_t *s;
148  u8 will_expand = 0;
149  pool_get_aligned_will_expand (wrk->sessions, will_expand,
151  /* If we have peekers, let them finish */
152  if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
153  {
157  }
158  else
159  {
161  }
162  clib_memset (s, 0, sizeof (*s));
163  s->session_index = s - wrk->sessions;
164  s->thread_index = thread_index;
165  return s;
166 }
167 
168 void
170 {
171  pool_put (session_manager_main.wrk[s->thread_index].sessions, s);
172  if (CLIB_DEBUG)
173  clib_memset (s, 0xFA, sizeof (*s));
174 }
175 
176 void
178 {
179  segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
180  s->server_tx_fifo);
181  session_free (s);
182 }
183 
184 /**
185  * Cleans up session and lookup table.
186  *
187  * Transport connection must still be valid.
188  */
189 static void
191 {
192  int rv;
193 
194  /* Delete from the main lookup table. */
195  if ((rv = session_lookup_del_session (s)))
196  clib_warning ("hash delete error, rv %d", rv);
197 
199 }
200 
201 int
203 {
204  svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
205  u32 fifo_segment_index;
206  int rv;
207 
208  if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
209  &server_tx_fifo,
210  &fifo_segment_index)))
211  return rv;
212  /* Initialize backpointers */
213  server_rx_fifo->master_session_index = s->session_index;
214  server_rx_fifo->master_thread_index = s->thread_index;
215 
216  server_tx_fifo->master_session_index = s->session_index;
217  server_tx_fifo->master_thread_index = s->thread_index;
218 
219  s->server_rx_fifo = server_rx_fifo;
220  s->server_tx_fifo = server_tx_fifo;
221  s->svm_segment_index = fifo_segment_index;
222  return 0;
223 }
224 
225 static stream_session_t *
227 {
228  stream_session_t *s;
229  u32 thread_index = tc->thread_index;
230 
231  ASSERT (thread_index == vlib_get_thread_index ()
232  || transport_protocol_is_cl (tc->proto));
233 
234  s = session_alloc (thread_index);
235  s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
236  s->enqueue_epoch = (u64) ~ 0;
237  s->session_state = SESSION_STATE_CLOSED;
238 
239  /* Attach transport to session and vice versa */
240  s->connection_index = tc->c_index;
241  tc->s_index = s->session_index;
242  return s;
243 }
244 
245 static int
247  u8 alloc_fifos, stream_session_t ** ret_s)
248 {
249  stream_session_t *s;
250  int rv;
251 
253  if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
254  {
255  session_free (s);
256  *ret_s = 0;
257  return rv;
258  }
259 
260  /* Add to the main lookup table */
262 
263  *ret_s = s;
264  return 0;
265 }
266 
267 /**
268  * Discards bytes from buffer chain
269  *
270  * It discards n_bytes_to_drop starting at first buffer after chain_b
271  */
272 always_inline void
274  vlib_buffer_t ** chain_b,
275  u32 n_bytes_to_drop)
276 {
277  vlib_buffer_t *next = *chain_b;
278  u32 to_drop = n_bytes_to_drop;
279  ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
280  while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
281  {
282  next = vlib_get_buffer (vm, next->next_buffer);
283  if (next->current_length > to_drop)
284  {
285  vlib_buffer_advance (next, to_drop);
286  to_drop = 0;
287  }
288  else
289  {
290  to_drop -= next->current_length;
291  next->current_length = 0;
292  }
293  }
294  *chain_b = next;
295 
296  if (to_drop == 0)
297  b->total_length_not_including_first_buffer -= n_bytes_to_drop;
298 }
299 
300 /**
301  * Enqueue buffer chain tail
302  */
303 always_inline int
305  u32 offset, u8 is_in_order)
306 {
307  vlib_buffer_t *chain_b;
308  u32 chain_bi, len, diff;
310  u8 *data;
311  u32 written = 0;
312  int rv = 0;
313 
314  if (is_in_order && offset)
315  {
316  diff = offset - b->current_length;
318  return 0;
319  chain_b = b;
320  session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
321  chain_bi = vlib_get_buffer_index (vm, chain_b);
322  }
323  else
324  chain_bi = b->next_buffer;
325 
326  do
327  {
328  chain_b = vlib_get_buffer (vm, chain_bi);
329  data = vlib_buffer_get_current (chain_b);
330  len = chain_b->current_length;
331  if (!len)
332  continue;
333  if (is_in_order)
334  {
335  rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
336  if (rv == len)
337  {
338  written += rv;
339  }
340  else if (rv < len)
341  {
342  return (rv > 0) ? (written + rv) : written;
343  }
344  else if (rv > len)
345  {
346  written += rv;
347 
348  /* written more than what was left in chain */
350  return written;
351 
352  /* drop the bytes that have already been delivered */
353  session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
354  }
355  }
356  else
357  {
358  rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
359  data);
360  if (rv)
361  {
362  clib_warning ("failed to enqueue multi-buffer seg");
363  return -1;
364  }
365  offset += len;
366  }
367  }
368  while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
369  ? chain_b->next_buffer : 0));
370 
371  if (is_in_order)
372  return written;
373 
374  return 0;
375 }
376 
377 /*
378  * Enqueue data for delivery to session peer. Does not notify peer of enqueue
379  * event but on request can queue notification events for later delivery by
380  * calling stream_server_flush_enqueue_events().
381  *
382  * @param tc Transport connection which is to be enqueued data
383  * @param b Buffer to be enqueued
384  * @param offset Offset at which to start enqueueing if out-of-order
385  * @param queue_event Flag to indicate if peer is to be notified or if event
386  * is to be queued. The former is useful when more data is
387  * enqueued and only one event is to be generated.
388  * @param is_in_order Flag to indicate if data is in order
389  * @return Number of bytes enqueued or a negative value if enqueueing failed.
390  */
391 int
393  vlib_buffer_t * b, u32 offset,
394  u8 queue_event, u8 is_in_order)
395 {
396  stream_session_t *s;
397  int enqueued = 0, rv, in_order_off;
398 
399  s = session_get (tc->s_index, tc->thread_index);
400 
401  if (is_in_order)
402  {
403  enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
404  b->current_length,
406  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
407  && enqueued >= 0))
408  {
409  in_order_off = enqueued > b->current_length ? enqueued : 0;
410  rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
411  if (rv > 0)
412  enqueued += rv;
413  }
414  }
415  else
416  {
417  rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
418  b->current_length,
420  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
421  session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
422  /* if something was enqueued, report even this as success for ooo
423  * segment handling */
424  return rv;
425  }
426 
427  if (queue_event)
428  {
429  /* Queue RX event on this fifo. Eventually these will need to be flushed
430  * by calling stream_server_flush_enqueue_events () */
432 
433  wrk = session_manager_get_worker (s->thread_index);
434  if (s->enqueue_epoch != wrk->current_enqueue_epoch[tc->proto])
435  {
436  s->enqueue_epoch = wrk->current_enqueue_epoch[tc->proto];
437  vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
438  }
439  }
440 
441  return enqueued;
442 }
443 
444 int
446  session_dgram_hdr_t * hdr,
447  vlib_buffer_t * b, u8 proto, u8 queue_event)
448 {
449  int enqueued = 0, rv, in_order_off;
450 
451  ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
452  >= b->current_length + sizeof (*hdr));
453 
454  svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
455  (u8 *) hdr);
456  enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
458  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
459  {
460  in_order_off = enqueued > b->current_length ? enqueued : 0;
461  rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
462  if (rv > 0)
463  enqueued += rv;
464  }
465  if (queue_event)
466  {
467  /* Queue RX event on this fifo. Eventually these will need to be flushed
468  * by calling stream_server_flush_enqueue_events () */
470 
471  wrk = session_manager_get_worker (s->thread_index);
472  if (s->enqueue_epoch != wrk->current_enqueue_epoch[proto])
473  {
474  s->enqueue_epoch = wrk->current_enqueue_epoch[proto];
475  vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
476  }
477  }
478  return enqueued;
479 }
480 
481 /** Check if we have space in rx fifo to push more bytes */
482 u8
484  u16 data_len)
485 {
486  stream_session_t *s = session_get (tc->s_index, thread_index);
487 
488  if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
489  return 1;
490 
491  if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
492  return 1;
493 
494  return 0;
495 }
496 
497 u32
499 {
500  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
501  if (!s->server_tx_fifo)
502  return 0;
503  return svm_fifo_max_dequeue (s->server_tx_fifo);
504 }
505 
506 int
508  u32 offset, u32 max_bytes)
509 {
510  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
511  return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
512 }
513 
514 u32
516 {
517  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
518  return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
519 }
520 
521 /**
522  * Notify session peer that new data has been enqueued.
523  *
524  * @param s Stream session for which the event is to be generated.
525  * @param lock Flag to indicate if call should lock message queue.
526  *
527  * @return 0 on success or negative number if failed to send notification.
528  */
529 static inline int
531 {
532  app_worker_t *app;
533 
534  app = app_worker_get_if_valid (s->app_wrk_index);
535  if (PREDICT_FALSE (!app))
536  {
537  SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
538  return 0;
539  }
540 
541  /* *INDENT-OFF* */
542  SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
543  ed->data[0] = FIFO_EVENT_APP_RX;
544  ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
545  }));
546  /* *INDENT-ON* */
547 
549 }
550 
551 int
553 {
554  app_worker_t *app;
555 
556  app = app_worker_get_if_valid (s->app_wrk_index);
557  if (PREDICT_FALSE (!app))
558  return -1;
559 
561  return -1;
562 
563  svm_fifo_clear_tx_ntf (s->server_tx_fifo);
564  return 0;
565 }
566 
567 /**
568  * Flushes queue of sessions that are to be notified of new data
569  * enqueued events.
570  *
571  * @param thread_index Thread index for which the flush is to be performed.
572  * @return 0 on success or a positive number indicating the number of
573  * failures due to API queue being full.
574  */
575 int
576 session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
577 {
579  stream_session_t *s;
580  int i, errors = 0;
581  u32 *indices;
582 
583  indices = wrk->session_to_enqueue[transport_proto];
584 
585  for (i = 0; i < vec_len (indices); i++)
586  {
587  s = session_get_if_valid (indices[i], thread_index);
588  if (PREDICT_FALSE (!s))
589  {
590  errors++;
591  continue;
592  }
594  errors++;
595  }
596 
597  vec_reset_length (indices);
598  wrk->session_to_enqueue[transport_proto] = indices;
599  wrk->current_enqueue_epoch[transport_proto]++;
600 
601  return errors;
602 }
603 
604 int
606 {
608  int i, errors = 0;
609  for (i = 0; i < 1 + vtm->n_threads; i++)
610  errors += session_manager_flush_enqueue_events (transport_proto, i);
611  return errors;
612 }
613 
614 /**
615  * Init fifo tail and head pointers
616  *
617  * Useful if transport uses absolute offsets for tracking ooo segments.
618  */
619 void
621  u32 rx_pointer, u32 tx_pointer)
622 {
623  stream_session_t *s;
624  s = session_get (tc->s_index, tc->thread_index);
625  svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
626  svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
627 }
628 
629 int
631 {
632  u32 opaque = 0, new_ti, new_si;
633  stream_session_t *new_s = 0;
634  segment_manager_t *sm;
635  app_worker_t *app_wrk;
636  application_t *app;
637  u8 alloc_fifos;
638  int error = 0;
639  u64 handle;
640 
641  /*
642  * Find connection handle and cleanup half-open table
643  */
644  handle = session_lookup_half_open_handle (tc);
645  if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
646  {
647  SESSION_DBG ("half-open was removed!");
648  return -1;
649  }
651 
652  /* Get the app's index from the handle we stored when opening connection
653  * and the opaque (api_context for external apps) from transport session
654  * index */
655  app_wrk = app_worker_get_if_valid (handle >> 32);
656  if (!app_wrk)
657  return -1;
658  opaque = tc->s_index;
659  app = application_get (app_wrk->app_index);
660 
661  /*
662  * Allocate new session with fifos (svm segments are allocated if needed)
663  */
664  if (!is_fail)
665  {
667  alloc_fifos = !application_is_builtin_proxy (app);
668  if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
669  {
670  is_fail = 1;
671  error = -1;
672  }
673  else
674  {
675  new_s->session_state = SESSION_STATE_CONNECTING;
676  new_s->app_wrk_index = app_wrk->wrk_index;
677  new_si = new_s->session_index;
678  new_ti = new_s->thread_index;
679  }
680  }
681 
682  /*
683  * Notify client application
684  */
685  if (app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque,
686  new_s, is_fail))
687  {
688  SESSION_DBG ("failed to notify app");
689  if (!is_fail)
690  {
691  new_s = session_get (new_si, new_ti);
692  session_transport_close (new_s);
693  }
694  }
695  else
696  {
697  if (!is_fail)
698  {
699  new_s = session_get (new_si, new_ti);
700  new_s->session_state = SESSION_STATE_READY;
701  }
702  }
703 
704  return error;
705 }
706 
707 typedef struct _session_switch_pool_args
708 {
709  u32 session_index;
710  u32 thread_index;
711  u32 new_thread_index;
712  u32 new_session_index;
714 
715 static void
716 session_switch_pool (void *cb_args)
717 {
720  stream_session_t *s;
721  ASSERT (args->thread_index == vlib_get_thread_index ());
722  s = session_get (args->session_index, args->thread_index);
723  s->server_tx_fifo->master_session_index = args->new_session_index;
724  s->server_tx_fifo->master_thread_index = args->new_thread_index;
726  tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
727  session_free (s);
728  clib_mem_free (cb_args);
729 }
730 
731 /**
732  * Move dgram session to the right thread
733  */
734 int
736  u32 old_thread_index,
737  stream_session_t ** new_session)
738 {
739  stream_session_t *new_s;
740  session_switch_pool_args_t *rpc_args;
741 
742  /*
743  * Clone half-open session to the right thread.
744  */
745  new_s = session_clone_safe (tc->s_index, old_thread_index);
746  new_s->connection_index = tc->c_index;
747  new_s->server_rx_fifo->master_session_index = new_s->session_index;
748  new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
749  new_s->session_state = SESSION_STATE_READY;
751 
752  /*
753  * Ask thread owning the old session to clean it up and make us the tx
754  * fifo owner
755  */
756  rpc_args = clib_mem_alloc (sizeof (*rpc_args));
757  rpc_args->new_session_index = new_s->session_index;
758  rpc_args->new_thread_index = new_s->thread_index;
759  rpc_args->session_index = tc->s_index;
760  rpc_args->thread_index = old_thread_index;
761  session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
762  rpc_args);
763 
764  tc->s_index = new_s->session_index;
765  new_s->connection_index = tc->c_index;
766  *new_session = new_s;
767  return 0;
768 }
769 
770 int
772 {
773  app_worker_t *app_wrk;
774  application_t *app;
775  stream_session_t *s;
776 
777  s = session_get (tc->s_index, tc->thread_index);
778  app_wrk = app_worker_get_if_valid (s->app_wrk_index);
779  if (!app_wrk)
780  return -1;
781  s->session_state = SESSION_STATE_ACCEPTING;
782  app = application_get (app_wrk->app_index);
783  return app->cb_fns.session_accept_callback (s);
784 }
785 
786 /**
787  * Notification from transport that connection is being closed.
788  *
789  * A disconnect is sent to application but state is not removed. Once
790  * disconnect is acknowledged by application, session disconnect is called.
791  * Ultimately this leads to close being called on transport (passive close).
792  */
793 void
795 {
796  app_worker_t *app_wrk;
797  application_t *app;
798  stream_session_t *s;
799 
800  s = session_get (tc->s_index, tc->thread_index);
801  if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
802  return;
803  s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
804  app_wrk = app_worker_get_if_valid (s->app_wrk_index);
805  if (!app_wrk)
806  return;
807  app = application_get (app_wrk->app_index);
808  app->cb_fns.session_disconnect_callback (s);
809 }
810 
811 /**
812  * Notification from transport that connection is being deleted
813  *
814  * This removes the session if it is still valid. It should be called only on
815  * previously fully established sessions. For instance failed connects should
816  * call stream_session_connect_notify and indicate that the connect has
817  * failed.
818  */
819 void
821 {
822  stream_session_t *s;
823 
824  /* App might've been removed already */
825  if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
826  return;
827 
828  /* Make sure we don't try to send anything more */
829  svm_fifo_dequeue_drop_all (s->server_tx_fifo);
830 
831  switch (s->session_state)
832  {
835  /* If transport finishes or times out before we get a reply
836  * from the app, mark transport as closed and wait for reply
837  * before removing the session. Cleanup session table in advance
838  * because transport will soon be closed and closed sessions
839  * are assumed to have been removed from the lookup table */
841  s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
842  break;
845  /* Cleanup lookup table as transport needs to still be valid.
846  * Program transport close to ensure that all session events
847  * have been cleaned up. Once transport close is called, the
848  * session is just removed because both transport and app have
849  * confirmed the close*/
851  s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
853  break;
855  break;
857  session_delete (s);
858  break;
859  default:
860  clib_warning ("session state %u", s->session_state);
861  session_delete (s);
862  break;
863  }
864 }
865 
866 /**
867  * Notification from transport that session can be closed
868  *
869  * Should be called by transport only if it was closed with non-empty
870  * tx fifo and once it decides to begin the closing procedure prior to
871  * issuing a delete notify. This gives the chance to the session layer
872  * to cleanup any outstanding events.
873  */
874 void
876 {
877  stream_session_t *s;
878 
879  if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
880  return;
881 
882  /* If app close has not been received or has not yet resulted in
883  * a transport close, only mark the session transport as closed */
884  if (s->session_state <= SESSION_STATE_CLOSING)
885  {
887  s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
888  }
889  else
890  s->session_state = SESSION_STATE_CLOSED;
891 }
892 
893 /**
894  * Notify application that connection has been reset.
895  */
896 void
898 {
899  stream_session_t *s;
900  app_worker_t *app_wrk;
901  application_t *app;
902  s = session_get (tc->s_index, tc->thread_index);
903  svm_fifo_dequeue_drop_all (s->server_tx_fifo);
904  if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
905  return;
906  s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
907  app_wrk = app_worker_get (s->app_wrk_index);
908  app = application_get (app_wrk->app_index);
909  app->cb_fns.session_reset_callback (s);
910 }
911 
912 /**
913  * Accept a stream session. Optionally ping the server by callback.
914  */
915 int
917  u8 notify)
918 {
920  app_worker_t *app_wrk;
921  segment_manager_t *sm;
922  int rv;
923 
924  /* Find the server */
925  listener = listen_session_get (listener_index);
926  app_wrk = application_listener_select_worker (listener, 0);
927 
928  sm = app_worker_get_listen_segment_manager (app_wrk, listener);
929  if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
930  return rv;
931 
932  s->app_wrk_index = app_wrk->wrk_index;
933  s->listener_index = listener_index;
934 
935  /* Shoulder-tap the server */
936  if (notify)
937  {
938  application_t *app = application_get (app_wrk->app_index);
939  return app->cb_fns.session_accept_callback (s);
940  }
941 
942  return 0;
943 }
944 
945 int
946 session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
947 {
950  segment_manager_t *sm;
951  app_worker_t *app_wrk;
952  stream_session_t *s;
953  application_t *app;
954  int rv;
955 
957  rv = tp_vfts[rmt->transport_proto].open (tep);
958  if (rv < 0)
959  {
960  SESSION_DBG ("Transport failed to open connection.");
961  return VNET_API_ERROR_SESSION_CONNECT;
962  }
963 
964  tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
965 
966  /* For dgram type of service, allocate session and fifos now.
967  */
968  app_wrk = app_worker_get (app_wrk_index);
970 
971  if (session_alloc_and_init (sm, tc, 1, &s))
972  return -1;
973  s->app_wrk_index = app_wrk->wrk_index;
974  s->session_state = SESSION_STATE_OPENED;
975 
976  /* Tell the app about the new event fifo for this session */
977  app = application_get (app_wrk->app_index);
978  app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, s, 0);
979 
980  return 0;
981 }
982 
983 int
984 session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
985 {
988  u64 handle;
989  int rv;
990 
992  rv = tp_vfts[rmt->transport_proto].open (tep);
993  if (rv < 0)
994  {
995  SESSION_DBG ("Transport failed to open connection.");
996  return VNET_API_ERROR_SESSION_CONNECT;
997  }
998 
999  tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
1000 
1001  /* If transport offers a stream service, only allocate session once the
1002  * connection has been established.
1003  * Add connection to half-open table and save app and tc index. The
1004  * latter is needed to help establish the connection while the former
1005  * is needed when the connect notify comes and we have to notify the
1006  * external app
1007  */
1008  handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
1009  session_lookup_add_half_open (tc, handle);
1010 
1011  /* Store api_context (opaque) for when the reply comes. Not the nicest
1012  * thing but better than allocating a separate half-open pool.
1013  */
1014  tc->s_index = opaque;
1015  return 0;
1016 }
1017 
1018 int
1019 session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1020 {
1023 
1024  sep->app_wrk_index = app_wrk_index;
1025  sep->opaque = opaque;
1026 
1027  return tp_vfts[rmt->transport_proto].open (tep_cfg);
1028 }
1029 
1031 
1032 /* *INDENT-OFF* */
1037 };
1038 /* *INDENT-ON* */
1039 
1040 /**
1041  * Ask transport to open connection to remote transport endpoint.
1042  *
1043  * Stores handle for matching request with reply since the call can be
1044  * asynchronous. For instance, for TCP the 3-way handshake must complete
1045  * before reply comes. Session is only created once connection is established.
1046  *
1047  * @param app_index Index of the application requesting the connect
1048  * @param st Session type requested.
1049  * @param tep Remote transport endpoint
1050  * @param opaque Opaque data (typically, api_context) the application expects
1051  * on open completion.
1052  */
1053 int
1054 session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1055 {
1056  transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
1057  return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
1058 }
1059 
1060 /**
1061  * Ask transport to listen on session endpoint.
1062  *
1063  * @param s Session for which listen will be called. Note that unlike
1064  * established sessions, listen sessions are not associated to a
1065  * thread.
1066  * @param sep Local endpoint to be listened on.
1067  */
1068 int
1070 {
1072  transport_endpoint_t *tep;
1073  u32 tc_index, s_index;
1074 
1075  /* Transport bind/listen */
1076  tep = session_endpoint_to_transport (sep);
1077  s_index = ls->session_index;
1078  tc_index = tp_vfts[sep->transport_proto].bind (s_index, tep);
1079 
1080  if (tc_index == (u32) ~ 0)
1081  return -1;
1082 
1083  /* Attach transport to session */
1084  ls = listen_session_get (s_index);
1085  ls->connection_index = tc_index;
1086 
1087  /* Add to the main lookup table after transport was initialized */
1088  tc = tp_vfts[sep->transport_proto].get_listener (tc_index);
1089  session_lookup_add_connection (tc, s_index);
1090  return 0;
1091 }
1092 
1093 /**
1094  * Ask transport to stop listening on local transport endpoint.
1095  *
1096  * @param s Session to stop listening on. It must be in state LISTENING.
1097  */
1098 int
1100 {
1103  if (s->session_state != SESSION_STATE_LISTENING)
1104  {
1105  clib_warning ("not a listening session");
1106  return -1;
1107  }
1108 
1109  tc = tp_vfts[tp].get_listener (s->connection_index);
1110  if (!tc)
1111  {
1112  clib_warning ("no transport");
1113  return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1114  }
1115 
1117  tp_vfts[tp].unbind (s->connection_index);
1118  return 0;
1119 }
1120 
1121 /**
1122  * Initialize session closing procedure.
1123  *
1124  * Request is always sent to session node to ensure that all outstanding
1125  * requests are served before transport is notified.
1126  */
1127 void
1129 {
1130  if (!s)
1131  return;
1132 
1133  if (s->session_state >= SESSION_STATE_CLOSING)
1134  {
1135  /* Session will only be removed once both app and transport
1136  * acknowledge the close */
1137  if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1139 
1140  /* Session already closed. Clear the tx fifo */
1141  if (s->session_state == SESSION_STATE_CLOSED)
1142  svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1143  return;
1144  }
1145 
1146  s->session_state = SESSION_STATE_CLOSING;
1148 }
1149 
1150 /**
1151  * Notify transport the session can be disconnected. This should eventually
1152  * result in a delete notification that allows us to cleanup session state.
1153  * Called for both active/passive disconnects.
1154  *
1155  * Must be called from the session's thread.
1156  */
1157 void
1159 {
1160  /* If transport is already closed, just free the session */
1161  if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1162  {
1164  return;
1165  }
1166 
1167  /* If tx queue wasn't drained, change state to closed waiting for transport.
1168  * This way, the transport, if it so wishes, can continue to try sending the
1169  * outstanding data (in closed state it cannot). It MUST however at one
1170  * point, either after sending everything or after a timeout, call delete
1171  * notify. This will finally lead to the complete cleanup of the session.
1172  */
1173  if (svm_fifo_max_dequeue (s->server_tx_fifo))
1174  s->session_state = SESSION_STATE_CLOSED_WAITING;
1175  else
1176  s->session_state = SESSION_STATE_CLOSED;
1177 
1178  tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1179  s->thread_index);
1180 }
1181 
1182 /**
1183  * Cleanup transport and session state.
1184  *
1185  * Notify transport of the cleanup and free the session. This should
1186  * be called only if transport reported some error and is already
1187  * closed.
1188  */
1189 void
1191 {
1192  s->session_state = SESSION_STATE_CLOSED;
1193 
1194  /* Delete from main lookup table before we axe the the transport */
1196  tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1197  s->thread_index);
1198  /* Since we called cleanup, no delete notification will come. So, make
1199  * sure the session is properly freed. */
1201 }
1202 
1205 {
1206  transport_proto_t tp;
1207  tp = session_get_transport_proto (s);
1208  return transport_protocol_service_type (tp);
1209 }
1210 
1213 {
1214  transport_proto_t tp;
1215  tp = session_get_transport_proto (s);
1216  return transport_protocol_tx_fn_type (tp);
1217 }
1218 
1219 u8
1221 {
1223 }
1224 
1225 /**
1226  * Allocate event queues in the shared-memory segment
1227  *
1228  * That can either be a newly created memfd segment, that will need to be
1229  * mapped by all stack users, or the binary api's svm region. The latter is
1230  * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1231  * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1232  * vpp uses api svm region for event queues.
1233  */
1234 void
1236 {
1237  u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
1238  ssvm_private_t *eqs = &smm->evt_qs_segment;
1239  api_main_t *am = &api_main;
1240  u64 eqs_size = 64 << 20;
1241  pid_t vpp_pid = getpid ();
1242  void *oldheap;
1243  int i;
1244 
1246  evt_q_length = smm->configured_event_queue_length;
1247 
1248  if (smm->evt_qs_use_memfd_seg)
1249  {
1250  if (smm->evt_qs_segment_size)
1251  eqs_size = smm->evt_qs_segment_size;
1252 
1253  eqs->ssvm_size = eqs_size;
1254  eqs->i_am_master = 1;
1255  eqs->my_pid = vpp_pid;
1256  eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1257  eqs->requested_va = smm->session_baseva;
1258 
1260  {
1261  clib_warning ("failed to initialize queue segment");
1262  return;
1263  }
1264  }
1265 
1266  if (smm->evt_qs_use_memfd_seg)
1267  oldheap = ssvm_push_heap (eqs->sh);
1268  else
1269  oldheap = svm_push_data_heap (am->vlib_rp);
1270 
1271  for (i = 0; i < vec_len (smm->wrk); i++)
1272  {
1273  svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1275  {evt_q_length, evt_size, 0}
1276  ,
1277  {evt_q_length << 1, 256, 0}
1278  };
1279  cfg->consumer_pid = 0;
1280  cfg->n_rings = 2;
1281  cfg->q_nitems = evt_q_length;
1282  cfg->ring_cfgs = rc;
1283  smm->wrk[i].vpp_event_queue = svm_msg_q_alloc (cfg);
1284  if (smm->evt_qs_use_memfd_seg)
1285  {
1287  clib_warning ("eventfd returned");
1288  }
1289  }
1290 
1291  if (smm->evt_qs_use_memfd_seg)
1292  ssvm_pop_heap (oldheap);
1293  else
1294  svm_pop_heap (oldheap);
1295 }
1296 
1299 {
1301  if (smm->evt_qs_use_memfd_seg)
1302  return &smm->evt_qs_segment;
1303  return 0;
1304 }
1305 
1306 /* *INDENT-OFF* */
1311  session_tx_fifo_dequeue_and_snd
1312 };
1313 /* *INDENT-ON* */
1314 
1315 /**
1316  * Initialize session layer for given transport proto and ip version
1317  *
1318  * Allocates per session type (transport proto + ip version) data structures
1319  * and adds arc from session queue node to session type output node.
1320  */
1321 void
1323  const transport_proto_vft_t * vft, u8 is_ip4,
1324  u32 output_node)
1325 {
1327  session_type_t session_type;
1328  u32 next_index = ~0;
1329 
1330  session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1331 
1332  vec_validate (smm->session_type_to_next, session_type);
1333  vec_validate (smm->session_tx_fns, session_type);
1334 
1335  /* *INDENT-OFF* */
1336  if (output_node != ~0)
1337  {
1338  foreach_vlib_main (({
1339  next_index = vlib_node_add_next (this_vlib_main,
1340  session_queue_node.index,
1341  output_node);
1342  }));
1343  }
1344  /* *INDENT-ON* */
1345 
1346  smm->session_type_to_next[session_type] = next_index;
1347  smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
1348 }
1349 
1352 {
1353  transport_proto_t tp;
1354  if (s->session_state != SESSION_STATE_LISTENING)
1355  {
1356  tp = session_get_transport_proto (s);
1357  return tp_vfts[tp].get_connection (s->connection_index,
1358  s->thread_index);
1359  }
1360  return 0;
1361 }
1362 
1365 {
1367  return tp_vfts[tp].get_listener (s->connection_index);
1368 }
1369 
1370 int
1372  session_endpoint_t * sep)
1373 {
1376  tc = tp_vfts[tp].get_listener (listener->connection_index);
1377  if (!tc)
1378  {
1379  clib_warning ("no transport");
1380  return -1;
1381  }
1382 
1383  /* N.B. The ip should not be copied because this is the local endpoint */
1384  sep->port = tc->lcl_port;
1385  sep->transport_proto = tc->proto;
1386  sep->is_ip4 = tc->is_ip4;
1387  return 0;
1388 }
1389 
1390 void
1392 {
1393  ASSERT (vlib_get_thread_index () == 0);
1396 }
1397 
1398 static clib_error_t *
1400 {
1401  segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
1404  u32 num_threads, preallocated_sessions_per_worker;
1406  int i, j;
1407 
1408  num_threads = 1 /* main thread */ + vtm->n_threads;
1409 
1410  if (num_threads < 1)
1411  return clib_error_return (0, "n_thread_stacks not set");
1412 
1413  /* Allocate cache line aligned worker contexts */
1414  vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1415 
1416  for (i = 0; i < TRANSPORT_N_PROTO; i++)
1417  {
1418  for (j = 0; j < num_threads; j++)
1419  smm->wrk[j].current_enqueue_epoch[i] = 1;
1420  }
1421 
1422  for (i = 0; i < num_threads; i++)
1423  {
1424  wrk = &smm->wrk[i];
1425  vec_validate (wrk->free_event_vector, 128);
1426  _vec_len (wrk->free_event_vector) = 0;
1427  vec_validate (wrk->pending_event_vector, 128);
1428  _vec_len (wrk->pending_event_vector) = 0;
1429  vec_validate (wrk->pending_disconnects, 128);
1430  _vec_len (wrk->pending_disconnects) = 0;
1432  _vec_len (wrk->postponed_event_vector) = 0;
1433 
1435  wrk->dispatch_period = 500e-6;
1436 
1437  if (num_threads > 1)
1439  }
1440 
1441 #if SESSION_DEBUG
1442  vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1443 #endif
1444 
1445  /* Allocate vpp event queues segment and queue */
1447 
1448  /* Initialize fifo segment main baseva and timeout */
1449  sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1450  sm_args->size = smm->session_va_space_size;
1451  segment_manager_main_init (sm_args);
1452 
1453  /* Preallocate sessions */
1454  if (smm->preallocated_sessions)
1455  {
1456  if (num_threads == 1)
1457  {
1459  }
1460  else
1461  {
1462  int j;
1463  preallocated_sessions_per_worker =
1464  (1.1 * (f64) smm->preallocated_sessions /
1465  (f64) (num_threads - 1));
1466 
1467  for (j = 1; j < num_threads; j++)
1468  {
1469  pool_init_fixed (smm->wrk[j].sessions,
1470  preallocated_sessions_per_worker);
1471  }
1472  }
1473  }
1474 
1477  transport_init ();
1478 
1479  smm->is_enabled = 1;
1480 
1481  /* Enable transports */
1482  transport_enable_disable (vm, 1);
1484  return 0;
1485 }
1486 
1487 void
1489 {
1490  u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1492  u8 have_workers = vtm->n_threads != 0;
1493 
1494  /* *INDENT-OFF* */
1495  foreach_vlib_main (({
1496  if (have_workers && ii == 0)
1497  {
1498  vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1499  state);
1500  if (is_en)
1501  {
1502  vlib_node_t *n = vlib_get_node (this_vlib_main,
1504  vlib_start_process (this_vlib_main, n->runtime_index);
1505  }
1506  else
1507  {
1508  vlib_process_signal_event_mt (this_vlib_main,
1511  }
1512 
1513  continue;
1514  }
1515  vlib_node_set_state (this_vlib_main, session_queue_node.index,
1516  state);
1517  }));
1518  /* *INDENT-ON* */
1519 }
1520 
1521 clib_error_t *
1523 {
1524  clib_error_t *error = 0;
1525  if (is_en)
1526  {
1527  if (session_manager_main.is_enabled)
1528  return 0;
1529 
1531  error = session_manager_main_enable (vm);
1532  }
1533  else
1534  {
1535  session_manager_main.is_enabled = 0;
1537  }
1538 
1539  return error;
1540 }
1541 
1542 clib_error_t *
1544 {
1547 #if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1548  smm->session_va_space_size = 128ULL << 30;
1549  smm->evt_qs_segment_size = 64 << 20;
1550 #else
1551  smm->session_va_space_size = 128 << 20;
1552  smm->evt_qs_segment_size = 1 << 20;
1553 #endif
1554  smm->is_enabled = 0;
1555  return 0;
1556 }
1557 
1559 
1560 static clib_error_t *
1562 {
1564  u32 nitems;
1565  uword tmp;
1566 
1567  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1568  {
1569  if (unformat (input, "event-queue-length %d", &nitems))
1570  {
1571  if (nitems >= 2048)
1572  smm->configured_event_queue_length = nitems;
1573  else
1574  clib_warning ("event queue length %d too small, ignored", nitems);
1575  }
1576  else if (unformat (input, "preallocated-sessions %d",
1577  &smm->preallocated_sessions))
1578  ;
1579  else if (unformat (input, "v4-session-table-buckets %d",
1581  ;
1582  else if (unformat (input, "v4-halfopen-table-buckets %d",
1584  ;
1585  else if (unformat (input, "v6-session-table-buckets %d",
1587  ;
1588  else if (unformat (input, "v6-halfopen-table-buckets %d",
1590  ;
1591  else if (unformat (input, "v4-session-table-memory %U",
1592  unformat_memory_size, &tmp))
1593  {
1594  if (tmp >= 0x100000000)
1595  return clib_error_return (0, "memory size %llx (%lld) too large",
1596  tmp, tmp);
1598  }
1599  else if (unformat (input, "v4-halfopen-table-memory %U",
1600  unformat_memory_size, &tmp))
1601  {
1602  if (tmp >= 0x100000000)
1603  return clib_error_return (0, "memory size %llx (%lld) too large",
1604  tmp, tmp);
1606  }
1607  else if (unformat (input, "v6-session-table-memory %U",
1608  unformat_memory_size, &tmp))
1609  {
1610  if (tmp >= 0x100000000)
1611  return clib_error_return (0, "memory size %llx (%lld) too large",
1612  tmp, tmp);
1614  }
1615  else if (unformat (input, "v6-halfopen-table-memory %U",
1616  unformat_memory_size, &tmp))
1617  {
1618  if (tmp >= 0x100000000)
1619  return clib_error_return (0, "memory size %llx (%lld) too large",
1620  tmp, tmp);
1622  }
1623  else if (unformat (input, "local-endpoints-table-memory %U",
1624  unformat_memory_size, &tmp))
1625  {
1626  if (tmp >= 0x100000000)
1627  return clib_error_return (0, "memory size %llx (%lld) too large",
1628  tmp, tmp);
1629  smm->local_endpoints_table_memory = tmp;
1630  }
1631  else if (unformat (input, "local-endpoints-table-buckets %d",
1633  ;
1634  else if (unformat (input, "evt_qs_memfd_seg"))
1635  smm->evt_qs_use_memfd_seg = 1;
1636  else
1637  return clib_error_return (0, "unknown input `%U'",
1638  format_unformat_error, input);
1639  }
1640  return 0;
1641 }
1642 
1644 
1645 /*
1646  * fd.io coding-style-patch-verification: ON
1647  *
1648  * Local Variables:
1649  * eval: (c-set-style "gnu")
1650  * End:
1651  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
u32 configured_v4_session_table_memory
Definition: session.h:274
f64 dispatch_period
Our approximation of a "complete" dispatch loop period.
Definition: session.h:190
u64 ssvm_size
Definition: ssvm.h:84
static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES]
Definition: session.c:1033
app_worker_t * app_worker_get(u32 wrk_index)
Definition: application.c:517
int stream_session_accept_notify(transport_connection_t *tc)
Definition: session.c:771
static void session_delete(stream_session_t *s)
Cleans up session and lookup table.
Definition: session.c:190
void session_flush_frames_main_thread(vlib_main_t *vm)
Definition: session.c:1391
static u8 svm_msg_q_msg_is_invalid(svm_msg_q_msg_t *msg)
Check if message is invalid.
int session_lookup_del_connection(transport_connection_t *tc)
Delete transport connection from session table.
void * svm_msg_q_msg_data(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Get data for message in queue.
static u8 svm_msg_q_ring_is_full(svm_msg_q_t *mq, u32 ring_index)
clib_rwlock_t peekers_rw_locks
Peekers rw lock.
Definition: session.h:220
int session_open(u32 app_wrk_index, session_endpoint_t *rmt, u32 opaque)
Ask transport to open connection to remote transport endpoint.
Definition: session.c:1054
session_evt_type_t
Definition: session.h:33
static void svm_pop_heap(void *oldheap)
Definition: svm.h:94
uword requested_va
Definition: ssvm.h:87
void svm_fifo_init_pointers(svm_fifo_t *f, u32 pointer)
Set fifo pointers to requested offset.
Definition: svm_fifo.c:843
#define SESSION_Q_PROCESS_FLUSH_FRAMES
Definition: session.h:303
static void clib_rwlock_writer_lock(clib_rwlock_t *p)
Definition: lock.h:177
transport_proto_vft_t * tp_vfts
Per-type vector of transport protocol virtual function tables.
Definition: transport.c:23
struct _transport_connection transport_connection_t
ssvm_private_t evt_qs_segment
Event queues memfd segment initialized only if so configured.
Definition: session.h:243
u32 configured_v4_halfopen_table_memory
Definition: session.h:276
u32 configured_v6_session_table_buckets
Definition: session.h:277
unsigned long u64
Definition: types.h:89
session_manager_main_t session_manager_main
Definition: session.c:27
void session_transport_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
Definition: session.c:820
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:232
app_worker_t * application_listener_select_worker(stream_session_t *ls, u8 is_local)
Definition: application.c:478
#define pool_get_aligned_will_expand(P, YESNO, A)
See if pool_get will expand the pool or not.
Definition: pool.h:242
struct _transport_proto_vft transport_proto_vft_t
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:525
session_event_t * pending_event_vector
Vector of active event vectors.
Definition: session.h:211
void session_send_rpc_evt_to_thread(u32 thread_index, void *fp, void *rpc_args)
Definition: session.c:111
void session_transport_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
Definition: session.c:897
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:564
int i
session_event_t * postponed_event_vector
Vector of postponed events.
Definition: session.h:217
#define session_endpoint_to_transport_cfg(_sep)
transport_tx_fn_type_t transport_protocol_tx_fn_type(transport_proto_t tp)
Definition: transport.c:270
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
int session_open_vc(u32 app_wrk_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:984
void svm_fifo_dequeue_drop_all(svm_fifo_t *f)
Definition: svm_fifo.c:774
transport_connection_t * session_get_transport(stream_session_t *s)
Definition: session.c:1351
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
Definition: svm_fifo.h:142
ssvm_shared_header_t * sh
Definition: ssvm.h:83
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
int session_lookup_del_session(stream_session_t *s)
void segment_manager_dealloc_fifos(u32 segment_index, svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
u8 is_enabled
Session manager is enabled.
Definition: session.h:261
int session_listen(stream_session_t *ls, session_endpoint_cfg_t *sep)
Ask transport to listen on session endpoint.
Definition: session.c:1069
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:450
int session_enqueue_stream_connection(transport_connection_t *tc, vlib_buffer_t *b, u32 offset, u8 queue_event, u8 is_in_order)
Definition: session.c:392
u64 session_lookup_half_open_handle(transport_connection_t *tc)
u32 configured_v6_halfopen_table_memory
Definition: session.h:280
void session_node_enable_disable(u8 is_en)
Definition: session.c:1488
vlib_node_registration_t session_queue_node
(constructor) VLIB_REGISTER_NODE (session_queue_node)
vlib_main_t ** vlib_mains
Definition: buffer.c:310
enum transport_service_type_ transport_service_type_t
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1122
unsigned char u8
Definition: types.h:56
session_fifo_rx_fn session_tx_fifo_peek_and_snd
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
static session_fifo_rx_fn * session_tx_fns[TRANSPORT_TX_N_FNS]
Definition: session.c:1307
session_event_t * pending_disconnects
Vector of postponed disconnects.
Definition: session.h:214
struct _svm_fifo svm_fifo_t
void session_free(stream_session_t *s)
Definition: session.c:169
segment_manager_t * app_worker_get_listen_segment_manager(app_worker_t *app, stream_session_t *listener)
Definition: application.c:943
int session_stop_listen(stream_session_t *s)
Ask transport to stop listening on local transport endpoint.
Definition: session.c:1099
void session_transport_closing_notify(transport_connection_t *tc)
Notification from transport that connection is being closed.
Definition: session.c:794
int session_open_cl(u32 app_wrk_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:946
static svm_msg_q_t * session_manager_get_vpp_event_queue(u32 thread_index)
Definition: session.h:656
void app_namespaces_init(void)
static clib_error_t * session_config_fn(vlib_main_t *vm, unformat_input_t *input)
Definition: session.c:1561
svm_msg_q_t * svm_msg_q_alloc(svm_msg_q_cfg_t *cfg)
Allocate message queue.
Definition: message_queue.c:40
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
u32 * session_to_enqueue[TRANSPORT_N_PROTO]
Per-proto vector of sessions to enqueue.
Definition: session.h:199
static void * svm_push_data_heap(svm_region_t *rp)
Definition: svm.h:86
#define always_inline
Definition: clib.h:98
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
Definition: svm_fifo.h:124
int session_send_ctrl_evt_to_thread(stream_session_t *s, session_evt_type_t evt_type)
Definition: session.c:101
static stream_session_t * session_alloc_for_connection(transport_connection_t *tc)
Definition: session.c:226
int session_dequeue_notify(stream_session_t *s)
Definition: session.c:552
static stream_session_t * listen_session_get(u32 index)
Definition: session.h:695
static void * ssvm_push_heap(ssvm_shared_header_t *sh)
Definition: ssvm.h:144
#define clib_error_return(e, args...)
Definition: error.h:99
svm_region_t * vlib_rp
Current binary api segment descriptor.
Definition: api_common.h:255
int svm_fifo_enqueue_nowait(svm_fifo_t *f, u32 max_bytes, const u8 *copy_from_here)
Definition: svm_fifo.c:530
vhost_vring_state_t state
Definition: vhost_user.h:120
int session_enqueue_dgram_connection(stream_session_t *s, session_dgram_hdr_t *hdr, vlib_buffer_t *b, u8 proto, u8 queue_event)
Definition: session.c:445
unsigned int u32
Definition: types.h:88
u32 configured_v6_session_table_memory
Definition: session.h:278
struct _stream_session_t stream_session_t
int session_send_io_evt_to_thread(svm_fifo_t *f, session_evt_type_t evt_type)
Definition: session.c:88
void session_vpp_event_queues_allocate(session_manager_main_t *smm)
Allocate event queues in the shared-memory segment.
Definition: session.c:1235
int ssvm_master_init(ssvm_private_t *ssvm, ssvm_segment_type_t type)
Definition: ssvm.c:411
int( session_fifo_rx_fn)(vlib_main_t *vm, vlib_node_runtime_t *node, session_manager_worker_t *wrk, session_event_t *e, int *n_tx_pkts)
Definition: session.h:226
enum transport_dequeue_type_ transport_tx_fn_type_t
static void ssvm_pop_heap(void *oldheap)
Definition: ssvm.h:152
void session_close(stream_session_t *s)
Initialize session closing procedure.
Definition: session.c:1128
stream_session_t * sessions
Worker session pool.
Definition: session.h:184
int session_lookup_del_half_open(transport_connection_t *tc)
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:158
static clib_error_t * session_manager_main_enable(vlib_main_t *vm)
Definition: session.c:1399
struct _session_endpoint_cfg session_endpoint_cfg_t
session_event_t * free_event_vector
Vector of partially read events.
Definition: session.h:208
#define session_endpoint_to_transport(_sep)
static transport_proto_t session_get_transport_proto(stream_session_t *s)
Definition: session.h:427
u32 stream_session_dequeue_drop(transport_connection_t *tc, u32 max_bytes)
Definition: session.c:515
int segment_manager_alloc_session_fifos(segment_manager_t *sm, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo, u32 *fifo_segment_index)
f64 last_vlib_time
vlib_time_now last time around the track
Definition: session.h:193
int session_dgram_connect_notify(transport_connection_t *tc, u32 old_thread_index, stream_session_t **new_session)
Move dgram session to the right thread.
Definition: session.c:735
static void clib_rwlock_init(clib_rwlock_t *p)
Definition: lock.h:122
int svm_msg_q_alloc_consumer_eventfd(svm_msg_q_t *mq)
Allocate event fd for queue consumer.
transport_service_type_t transport_protocol_service_type(transport_proto_t tp)
Definition: transport.c:264
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:114
struct _session_endpoint session_endpoint_t
static void svm_fifo_clear_tx_ntf(svm_fifo_t *f)
Definition: svm_fifo.h:265
app_worker_t * app_worker_get_if_valid(u32 wrk_index)
Definition: application.c:523
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
u32 configured_v6_halfopen_table_buckets
Definition: session.h:279
static session_handle_t session_handle(stream_session_t *s)
Definition: session.h:364
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:214
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
#define PREDICT_FALSE(x)
Definition: clib.h:111
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:172
u32 wrk_index
Worker index in global worker pool.
Definition: application.h:65
clib_error_t * session_manager_main_init(vlib_main_t *vm)
Definition: session.c:1543
static stream_session_t * session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:349
#define foreach_vlib_main(body)
Definition: threads.h:235
int stream_session_accept(transport_connection_t *tc, u32 listener_index, u8 notify)
Accept a stream session.
Definition: session.c:916
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: session.c:1522
void session_free_w_fifos(stream_session_t *s)
Definition: session.c:177
static stream_session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:341
struct _session_switch_pool_args session_switch_pool_args_t
u8 len
Definition: ip_types.api:49
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:202
int session_alloc_fifos(segment_manager_t *sm, stream_session_t *s)
Definition: session.c:202
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:230
#define SESSION_DBG(_fmt, _args...)
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 SESSION_EVT_DBG(_evt, _args...)
void transport_init(void)
Definition: transport.c:647
session_fifo_rx_fn session_tx_fifo_dequeue_and_snd
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
static session_manager_worker_t * session_manager_get_worker(u32 thread_index)
Definition: session.h:316
u32 runtime_index
Definition: node.h:307
static int session_enqueue_notify(stream_session_t *s)
Notify session peer that new data has been enqueued.
Definition: session.c:530
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:212
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:421
static session_type_t session_type_from_proto_and_ip(transport_proto_t proto, u8 is_ip4)
Definition: session.h:440
vlib_main_t * vm
Definition: buffer.c:301
static void svm_msg_q_unlock(svm_msg_q_t *mq)
Unlock message queue.
static void vlib_process_signal_event_mt(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Signal event to process from any thread.
Definition: node_funcs.h:988
void session_transport_cleanup(stream_session_t *s)
Cleanup transport and session state.
Definition: session.c:1190
transport_service_type_t session_transport_service_type(stream_session_t *s)
Definition: session.c:1204
#define clib_warning(format, args...)
Definition: error.h:59
void transport_init_tx_pacers_period(void)
Initialize period for tx pacers.
Definition: transport.c:618
static int session_send_evt_to_thread(void *data, void *args, u32 thread_index, session_evt_type_t evt_type)
Definition: session.c:31
void stream_session_init_fifos_pointers(transport_connection_t *tc, u32 rx_pointer, u32 tx_pointer)
Init fifo tail and head pointers.
Definition: session.c:620
#define HIGH_SEGMENT_BASEVA
Definition: svm_common.h:84
u32 my_pid
Definition: ssvm.h:85
void session_transport_close(stream_session_t *s)
Notify transport the session can be disconnected.
Definition: session.c:1158
void transport_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: transport.c:636
static u8 vlib_thread_is_main_w_barrier(void)
Definition: threads.h:511
static int svm_msg_q_try_lock(svm_msg_q_t *mq)
Try locking message queue.
u32 configured_v4_halfopen_table_buckets
Definition: session.h:275
u32 local_endpoints_table_buckets
Definition: session.h:284
#define pool_init_fixed(pool, max_elts)
initialize a fixed-size, preallocated pool
Definition: pool.h:86
application_t * application_get(u32 app_index)
Definition: application.c:213
int app_worker_lock_and_send_event(app_worker_t *app, stream_session_t *s, u8 evt_type)
Send event to application.
Definition: application.c:1418
#define SESSION_Q_PROCESS_STOP
Definition: session.h:304
session_fifo_rx_fn ** session_tx_fns
Per transport rx function that can either dequeue or peek.
Definition: session.h:249
ssvm_private_t * session_manager_get_evt_q_segment(void)
Definition: session.c:1298
#define ASSERT(truth)
void svm_msg_q_add_and_unlock(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Producer enqueue one message to queue with mutex held.
u32 session_tx_fifo_max_dequeue(transport_connection_t *tc)
Definition: session.c:498
u8 session_type_t
u32 preallocated_sessions
Preallocate session config parameter.
Definition: session.h:287
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:130
void segment_manager_main_init(segment_manager_main_init_args_t *a)
static void clib_mem_free(void *p)
Definition: mem.h:205
session_cb_vft_t cb_fns
Callbacks: shoulder-taps for the server/client.
Definition: application.h:130
int listen_session_get_local_session_endpoint(stream_session_t *listener, session_endpoint_t *sep)
Definition: session.c:1371
u32 * session_type_to_next
Per session type output nodes.
Definition: session.h:254
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:233
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:148
int svm_fifo_enqueue_with_offset(svm_fifo_t *f, u32 offset, u32 required_bytes, u8 *copy_from_here)
Definition: svm_fifo.c:598
static void * clib_mem_alloc(uword size)
Definition: mem.h:132
svm_msg_q_ring_cfg_t * ring_cfgs
array of ring cfgs
Definition: message_queue.h:55
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u8 * name
Definition: ssvm.h:86
stream_session_t * session_alloc(u32 thread_index)
Definition: session.c:144
#define HALF_OPEN_LOOKUP_INVALID_VALUE
Definition: session.h:25
static void session_enqueue_discard_chain_bytes(vlib_main_t *vm, vlib_buffer_t *b, vlib_buffer_t **chain_b, u32 n_bytes_to_drop)
Discards bytes from buffer chain.
Definition: session.c:273
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:156
template key/value backing page structure
Definition: bihash_doc.h:44
u32 configured_v4_session_table_buckets
Session table size parameters.
Definition: session.h:273
static void session_switch_pool(void *cb_args)
Definition: session.c:716
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 max_bytes)
Definition: svm_fifo.c:734
u64 current_enqueue_epoch[TRANSPORT_N_PROTO]
Per-proto enqueue epoch counters.
Definition: session.h:196
session_manager_worker_t * wrk
Worker contexts.
Definition: session.h:240
u32 q_nitems
msg queue size (not rings)
Definition: message_queue.h:53
enum _transport_proto transport_proto_t
transport_connection_t * listen_session_get_transport(stream_session_t *s)
Definition: session.c:1364
void session_lookup_init(void)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
svm_msg_q_t * vpp_event_queue
vpp event message queue for worker
Definition: session.h:187
session_fifo_rx_fn session_tx_fifo_dequeue_internal
uword session_baseva
Session ssvm segment configs.
Definition: session.h:267
static stream_session_t * session_clone_safe(u32 session_index, u32 thread_index)
Definition: session.h:569
void session_transport_closed_notify(transport_connection_t *tc)
Notification from transport that session can be closed.
Definition: session.c:875
u64 uword
Definition: types.h:112
struct _segment_manager segment_manager_t
int session_send_io_evt_to_thread_custom(void *data, u32 thread_index, session_evt_type_t evt_type)
Definition: session.c:94
unformat_function_t unformat_memory_size
Definition: format.h:295
int session_manager_flush_all_enqueue_events(u8 transport_proto)
Definition: session.c:605
u32 app_index
Index of owning app.
Definition: application.h:71
int session_lookup_add_connection(transport_connection_t *tc, u64 value)
Add transport connection to a session table.
transport_tx_fn_type_t session_transport_tx_fn_type(stream_session_t *s)
Definition: session.c:1212
int session_manager_flush_enqueue_events(u8 transport_proto, u32 thread_index)
Flushes queue of sessions that are to be notified of new data enqueued events.
Definition: session.c:576
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
int session_stream_connect_notify(transport_connection_t *tc, u8 is_fail)
Definition: session.c:630
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
vlib_node_registration_t session_queue_process_node
(constructor) VLIB_REGISTER_NODE (session_queue_process_node)
static u32 vlib_num_workers()
Definition: threads.h:366
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:59
static int session_enqueue_chain_tail(stream_session_t *s, vlib_buffer_t *b, u32 offset, u8 is_in_order)
Enqueue buffer chain tail.
Definition: session.c:304
u8 session_tx_is_dgram(stream_session_t *s)
Definition: session.c:1220
u32 configured_event_queue_length
vpp fifo event queue configured length
Definition: session.h:264
int(* session_open_service_fn)(u32, session_endpoint_t *, u32)
Definition: session.c:1030
static void session_program_transport_close(stream_session_t *s)
Definition: session.c:123
int application_is_builtin_proxy(application_t *app)
Definition: application.c:1036
u32 local_endpoints_table_memory
Transport table (preallocation) size parameters.
Definition: session.h:283
segment_manager_t * app_worker_get_connect_segment_manager(app_worker_t *app)
Definition: application.c:928
int consumer_pid
pid of msg consumer
Definition: message_queue.h:52
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:117
int session_open_app(u32 app_wrk_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:1019
static int session_alloc_and_init(segment_manager_t *sm, transport_connection_t *tc, u8 alloc_fifos, stream_session_t **ret_s)
Definition: session.c:246
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1556
int svm_fifo_peek(svm_fifo_t *f, u32 relative_offset, u32 max_bytes, u8 *copy_here)
Definition: svm_fifo.c:726
void session_register_transport(transport_proto_t transport_proto, const transport_proto_vft_t *vft, u8 is_ip4, u32 output_node)
Initialize session layer for given transport proto and ip version.
Definition: session.c:1322
int session_lookup_add_half_open(transport_connection_t *tc, u64 value)
api_main_t api_main
Definition: api_shared.c:35
int stream_session_peek_bytes(transport_connection_t *tc, u8 *buffer, u32 offset, u32 max_bytes)
Definition: session.c:507
u8 transport_protocol_is_cl(transport_proto_t tp)
Definition: transport.c:276
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:62
svm_msg_q_msg_t svm_msg_q_alloc_msg_w_ring(svm_msg_q_t *mq, u32 ring_index)
Allocate message buffer on ring.
int i_am_master
Definition: ssvm.h:88
u8 stream_session_no_space(transport_connection_t *tc, u32 thread_index, u16 data_len)
Check if we have space in rx fifo to push more bytes.
Definition: session.c:483
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
uword session_va_space_size
Definition: session.h:268