FD.io VPP  v18.07-rc0-415-g6c78436
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 void
32  u32 thread_index, void *fp, void *rpc_args)
33 {
34  session_fifo_event_t evt = { {0}, };
35  svm_queue_t *q;
36  u32 tries = 0, max_tries;
37 
38  evt.event_type = evt_type;
39  if (evt_type == FIFO_EVENT_RPC)
40  {
41  evt.rpc_args.fp = fp;
42  evt.rpc_args.arg = rpc_args;
43  }
44  else
45  evt.session_handle = session_handle;
46 
47  q = session_manager_get_vpp_event_queue (thread_index);
48  while (svm_queue_add (q, (u8 *) & evt, 1))
49  {
50  max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
51  if (tries++ == max_tries)
52  {
53  SESSION_DBG ("failed to enqueue evt");
54  break;
55  }
56  }
57 }
58 
59 void
61  fifo_event_type_t evt_type,
62  u32 thread_index)
63 {
64  session_send_evt_to_thread (session_handle, evt_type, thread_index, 0, 0);
65 }
66 
67 void
68 session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
69 {
70  if (thread_index != vlib_get_thread_index ())
71  session_send_evt_to_thread (0, FIFO_EVENT_RPC, thread_index, fp,
72  rpc_args);
73  else
74  {
75  void (*fnp) (void *) = fp;
76  fnp (rpc_args);
77  }
78 }
79 
81 session_alloc (u32 thread_index)
82 {
85  u8 will_expand = 0;
86  pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
88  /* If we have peekers, let them finish */
89  if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
90  {
91  clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
92  pool_get_aligned (session_manager_main.sessions[thread_index], s,
94  clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
95  }
96  else
97  {
98  pool_get_aligned (session_manager_main.sessions[thread_index], s,
100  }
101  memset (s, 0, sizeof (*s));
102  s->session_index = s - session_manager_main.sessions[thread_index];
103  s->thread_index = thread_index;
104  return s;
105 }
106 
107 void
109 {
110  pool_put (session_manager_main.sessions[s->thread_index], s);
111  if (CLIB_DEBUG)
112  memset (s, 0xFA, sizeof (*s));
113 }
114 
115 int
117 {
118  svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
119  u32 fifo_segment_index;
120  int rv;
121 
122  if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
123  &server_tx_fifo,
124  &fifo_segment_index)))
125  return rv;
126  /* Initialize backpointers */
127  server_rx_fifo->master_session_index = s->session_index;
128  server_rx_fifo->master_thread_index = s->thread_index;
129 
130  server_tx_fifo->master_session_index = s->session_index;
131  server_tx_fifo->master_thread_index = s->thread_index;
132 
133  s->server_rx_fifo = server_rx_fifo;
134  s->server_tx_fifo = server_tx_fifo;
135  s->svm_segment_index = fifo_segment_index;
136  return 0;
137 }
138 
139 static stream_session_t *
141 {
142  stream_session_t *s;
143  u32 thread_index = tc->thread_index;
144 
145  ASSERT (thread_index == vlib_get_thread_index ()
146  || transport_protocol_is_cl (tc->proto));
147 
148  s = session_alloc (thread_index);
149  s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
150  s->session_state = SESSION_STATE_CONNECTING;
151  s->enqueue_epoch = ~0;
152 
153  /* Attach transport to session and vice versa */
154  s->connection_index = tc->c_index;
155  tc->s_index = s->session_index;
156  return s;
157 }
158 
159 static int
161  u8 alloc_fifos, stream_session_t ** ret_s)
162 {
163  stream_session_t *s;
164  int rv;
165 
167  if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
168  {
169  session_free (s);
170  *ret_s = 0;
171  return rv;
172  }
173 
174  /* Add to the main lookup table */
176 
177  *ret_s = s;
178  return 0;
179 }
180 
181 /**
182  * Discards bytes from buffer chain
183  *
184  * It discards n_bytes_to_drop starting at first buffer after chain_b
185  */
186 always_inline void
188  vlib_buffer_t ** chain_b,
189  u32 n_bytes_to_drop)
190 {
191  vlib_buffer_t *next = *chain_b;
192  u32 to_drop = n_bytes_to_drop;
193  ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
194  while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
195  {
196  next = vlib_get_buffer (vm, next->next_buffer);
197  if (next->current_length > to_drop)
198  {
199  vlib_buffer_advance (next, to_drop);
200  to_drop = 0;
201  }
202  else
203  {
204  to_drop -= next->current_length;
205  next->current_length = 0;
206  }
207  }
208  *chain_b = next;
209 
210  if (to_drop == 0)
211  b->total_length_not_including_first_buffer -= n_bytes_to_drop;
212 }
213 
214 /**
215  * Enqueue buffer chain tail
216  */
217 always_inline int
219  u32 offset, u8 is_in_order)
220 {
221  vlib_buffer_t *chain_b;
222  u32 chain_bi, len, diff;
224  u8 *data;
225  u32 written = 0;
226  int rv = 0;
227 
228  if (is_in_order && offset)
229  {
230  diff = offset - b->current_length;
232  return 0;
233  chain_b = b;
234  session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
235  chain_bi = vlib_get_buffer_index (vm, chain_b);
236  }
237  else
238  chain_bi = b->next_buffer;
239 
240  do
241  {
242  chain_b = vlib_get_buffer (vm, chain_bi);
243  data = vlib_buffer_get_current (chain_b);
244  len = chain_b->current_length;
245  if (!len)
246  continue;
247  if (is_in_order)
248  {
249  rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
250  if (rv == len)
251  {
252  written += rv;
253  }
254  else if (rv < len)
255  {
256  return (rv > 0) ? (written + rv) : written;
257  }
258  else if (rv > len)
259  {
260  written += rv;
261 
262  /* written more than what was left in chain */
264  return written;
265 
266  /* drop the bytes that have already been delivered */
267  session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
268  }
269  }
270  else
271  {
272  rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
273  data);
274  if (rv)
275  {
276  clib_warning ("failed to enqueue multi-buffer seg");
277  return -1;
278  }
279  offset += len;
280  }
281  }
282  while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
283  ? chain_b->next_buffer : 0));
284 
285  if (is_in_order)
286  return written;
287 
288  return 0;
289 }
290 
291 /*
292  * Enqueue data for delivery to session peer. Does not notify peer of enqueue
293  * event but on request can queue notification events for later delivery by
294  * calling stream_server_flush_enqueue_events().
295  *
296  * @param tc Transport connection which is to be enqueued data
297  * @param b Buffer to be enqueued
298  * @param offset Offset at which to start enqueueing if out-of-order
299  * @param queue_event Flag to indicate if peer is to be notified or if event
300  * is to be queued. The former is useful when more data is
301  * enqueued and only one event is to be generated.
302  * @param is_in_order Flag to indicate if data is in order
303  * @return Number of bytes enqueued or a negative value if enqueueing failed.
304  */
305 int
307  vlib_buffer_t * b, u32 offset,
308  u8 queue_event, u8 is_in_order)
309 {
310  stream_session_t *s;
311  int enqueued = 0, rv, in_order_off;
312 
313  s = session_get (tc->s_index, tc->thread_index);
314 
315  if (is_in_order)
316  {
317  enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
318  b->current_length,
320  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
321  && enqueued >= 0))
322  {
323  in_order_off = enqueued > b->current_length ? enqueued : 0;
324  rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
325  if (rv > 0)
326  enqueued += rv;
327  }
328  }
329  else
330  {
331  rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
332  b->current_length,
334  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
335  session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
336  /* if something was enqueued, report even this as success for ooo
337  * segment handling */
338  return rv;
339  }
340 
341  if (queue_event)
342  {
343  /* Queue RX event on this fifo. Eventually these will need to be flushed
344  * by calling stream_server_flush_enqueue_events () */
346  u32 thread_index = s->thread_index;
347  u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
348 
349  if (s->enqueue_epoch != enqueue_epoch)
350  {
351  s->enqueue_epoch = enqueue_epoch;
352  vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
353  s - smm->sessions[thread_index]);
354  }
355  }
356 
357  return enqueued;
358 }
359 
360 
361 int
363  session_dgram_hdr_t * hdr,
364  vlib_buffer_t * b, u8 proto, u8 queue_event)
365 {
366  int enqueued = 0, rv, in_order_off;
367 
368  ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
369  >= b->current_length + sizeof (*hdr));
370 
371  svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
372  (u8 *) hdr);
373  enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
375  if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
376  {
377  in_order_off = enqueued > b->current_length ? enqueued : 0;
378  rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
379  if (rv > 0)
380  enqueued += rv;
381  }
382  if (queue_event)
383  {
384  /* Queue RX event on this fifo. Eventually these will need to be flushed
385  * by calling stream_server_flush_enqueue_events () */
387  u32 thread_index = s->thread_index;
388  u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
389 
390  if (s->enqueue_epoch != enqueue_epoch)
391  {
392  s->enqueue_epoch = enqueue_epoch;
393  vec_add1 (smm->session_to_enqueue[proto][thread_index],
394  s - smm->sessions[thread_index]);
395  }
396  }
397  return enqueued;
398 }
399 
400 /** Check if we have space in rx fifo to push more bytes */
401 u8
403  u16 data_len)
404 {
405  stream_session_t *s = session_get (tc->s_index, thread_index);
406 
407  if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
408  return 1;
409 
410  if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
411  return 1;
412 
413  return 0;
414 }
415 
416 u32
418 {
419  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
420  if (!s->server_tx_fifo)
421  return 0;
422  return svm_fifo_max_dequeue (s->server_tx_fifo);
423 }
424 
425 int
427  u32 offset, u32 max_bytes)
428 {
429  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
430  return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
431 }
432 
433 u32
435 {
436  stream_session_t *s = session_get (tc->s_index, tc->thread_index);
437  return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
438 }
439 
440 /**
441  * Notify session peer that new data has been enqueued.
442  *
443  * @param s Stream session for which the event is to be generated.
444  * @param block Flag to indicate if call should block if event queue is full.
445  *
446  * @return 0 on succes or negative number if failed to send notification.
447  */
448 static int
450 {
451  application_t *app;
452  session_fifo_event_t evt;
453  svm_queue_t *q;
454 
455  if (PREDICT_FALSE (s->session_state == SESSION_STATE_CLOSED))
456  {
457  /* Session is closed so app will never clean up. Flush rx fifo */
458  svm_fifo_dequeue_drop_all (s->server_rx_fifo);
459  return 0;
460  }
461 
462  /* Get session's server */
463  app = application_get_if_valid (s->app_index);
464 
465  if (PREDICT_FALSE (app == 0))
466  {
467  clib_warning ("invalid s->app_index = %d", s->app_index);
468  return 0;
469  }
470 
471  /* Built-in app? Hand event to the callback... */
472  if (app->cb_fns.builtin_app_rx_callback)
473  return app->cb_fns.builtin_app_rx_callback (s);
474 
475  /* If no event, send one */
476  if (svm_fifo_set_event (s->server_rx_fifo))
477  {
478  /* Fabricate event */
479  evt.fifo = s->server_rx_fifo;
480  evt.event_type = FIFO_EVENT_APP_RX;
481 
482  /* Add event to server's event queue */
483  q = app->event_queue;
484 
485  /* Based on request block (or not) for lack of space */
486  if (block || PREDICT_TRUE (q->cursize < q->maxsize))
487  svm_queue_add (app->event_queue, (u8 *) & evt,
488  0 /* do wait for mutex */ );
489  else
490  {
491  clib_warning ("fifo full");
492  return -1;
493  }
494  }
495 
496  /* *INDENT-OFF* */
497  SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
498  ed->data[0] = evt.event_type;
499  ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
500  }));
501  /* *INDENT-ON* */
502 
503  return 0;
504 }
505 
506 /**
507  * Flushes queue of sessions that are to be notified of new data
508  * enqueued events.
509  *
510  * @param thread_index Thread index for which the flush is to be performed.
511  * @return 0 on success or a positive number indicating the number of
512  * failures due to API queue being full.
513  */
514 int
515 session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
516 {
518  u32 *indices;
519  stream_session_t *s;
520  int i, errors = 0;
521 
522  indices = smm->session_to_enqueue[transport_proto][thread_index];
523 
524  for (i = 0; i < vec_len (indices); i++)
525  {
526  s = session_get_if_valid (indices[i], thread_index);
527  if (s == 0 || session_enqueue_notify (s, 0 /* don't block */ ))
528  errors++;
529  }
530 
531  vec_reset_length (indices);
532  smm->session_to_enqueue[transport_proto][thread_index] = indices;
533  smm->current_enqueue_epoch[transport_proto][thread_index]++;
534 
535  return errors;
536 }
537 
538 int
540 {
542  int i, errors = 0;
543  for (i = 0; i < 1 + vtm->n_threads; i++)
544  errors += session_manager_flush_enqueue_events (transport_proto, i);
545  return errors;
546 }
547 
548 /**
549  * Init fifo tail and head pointers
550  *
551  * Useful if transport uses absolute offsets for tracking ooo segments.
552  */
553 void
555  u32 rx_pointer, u32 tx_pointer)
556 {
557  stream_session_t *s;
558  s = session_get (tc->s_index, tc->thread_index);
559  svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
560  svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
561 }
562 
563 int
565 {
566  u32 opaque = 0, new_ti, new_si;
567  stream_session_t *new_s = 0;
568  segment_manager_t *sm;
569  application_t *app;
570  u8 alloc_fifos;
571  int error = 0;
572  u64 handle;
573 
574  /*
575  * Find connection handle and cleanup half-open table
576  */
577  handle = session_lookup_half_open_handle (tc);
578  if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
579  {
580  SESSION_DBG ("half-open was removed!");
581  return -1;
582  }
584 
585  /* Get the app's index from the handle we stored when opening connection
586  * and the opaque (api_context for external apps) from transport session
587  * index */
588  app = application_get_if_valid (handle >> 32);
589  if (!app)
590  return -1;
591  opaque = tc->s_index;
592 
593  /*
594  * Allocate new session with fifos (svm segments are allocated if needed)
595  */
596  if (!is_fail)
597  {
599  alloc_fifos = !application_is_builtin_proxy (app);
600  if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
601  {
602  is_fail = 1;
603  error = -1;
604  }
605  else
606  {
607  new_s->app_index = app->index;
608  new_si = new_s->session_index;
609  new_ti = new_s->thread_index;
610  }
611  }
612 
613  /*
614  * Notify client application
615  */
616  if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
617  is_fail))
618  {
619  SESSION_DBG ("failed to notify app");
620  if (!is_fail)
621  {
622  new_s = session_get (new_si, new_ti);
624  }
625  }
626  else
627  {
628  if (!is_fail)
629  {
630  new_s = session_get (new_si, new_ti);
631  new_s->session_state = SESSION_STATE_READY;
632  }
633  }
634 
635  return error;
636 }
637 
638 typedef struct _session_switch_pool_args
639 {
640  u32 session_index;
641  u32 thread_index;
642  u32 new_thread_index;
643  u32 new_session_index;
645 
646 static void
647 session_switch_pool (void *cb_args)
648 {
651  stream_session_t *s;
652  ASSERT (args->thread_index == vlib_get_thread_index ());
653  s = session_get (args->session_index, args->thread_index);
654  s->server_tx_fifo->master_session_index = args->new_session_index;
655  s->server_tx_fifo->master_thread_index = args->new_thread_index;
657  tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
658  session_free (s);
659  clib_mem_free (cb_args);
660 }
661 
662 /**
663  * Move dgram session to the right thread
664  */
665 int
667  u32 old_thread_index,
668  stream_session_t ** new_session)
669 {
670  stream_session_t *new_s;
671  session_switch_pool_args_t *rpc_args;
672 
673  /*
674  * Clone half-open session to the right thread.
675  */
676  new_s = session_clone_safe (tc->s_index, old_thread_index);
677  new_s->connection_index = tc->c_index;
678  new_s->server_rx_fifo->master_session_index = new_s->session_index;
679  new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
680  new_s->session_state = SESSION_STATE_READY;
682 
683  /*
684  * Ask thread owning the old session to clean it up and make us the tx
685  * fifo owner
686  */
687  rpc_args = clib_mem_alloc (sizeof (*rpc_args));
688  rpc_args->new_session_index = new_s->session_index;
689  rpc_args->new_thread_index = new_s->thread_index;
690  rpc_args->session_index = tc->s_index;
691  rpc_args->thread_index = old_thread_index;
692  session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
693  rpc_args);
694 
695  tc->s_index = new_s->session_index;
696  new_s->connection_index = tc->c_index;
697  *new_session = new_s;
698  return 0;
699 }
700 
701 void
703 {
704  application_t *server;
705  stream_session_t *s;
706 
707  s = session_get (tc->s_index, tc->thread_index);
708  server = application_get (s->app_index);
709  server->cb_fns.session_accept_callback (s);
710 }
711 
712 /**
713  * Notification from transport that connection is being closed.
714  *
715  * A disconnect is sent to application but state is not removed. Once
716  * disconnect is acknowledged by application, session disconnect is called.
717  * Ultimately this leads to close being called on transport (passive close).
718  */
719 void
721 {
722  application_t *server;
723  stream_session_t *s;
724 
725  s = session_get (tc->s_index, tc->thread_index);
726  server = application_get (s->app_index);
727  server->cb_fns.session_disconnect_callback (s);
728  s->session_state = SESSION_STATE_CLOSING;
729 }
730 
731 /**
732  * Cleans up session and lookup table.
733  *
734  * Transport connection must still be valid.
735  */
736 void
738 {
739  int rv;
740 
741  /* Delete from the main lookup table. */
742  if ((rv = session_lookup_del_session (s)))
743  clib_warning ("hash delete error, rv %d", rv);
744 
745  /* Cleanup fifo segments */
746  segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
747  s->server_tx_fifo);
748  session_free (s);
749 }
750 
751 /**
752  * Notification from transport that connection is being deleted
753  *
754  * This removes the session if it is still valid. It should be called only on
755  * previously fully established sessions. For instance failed connects should
756  * call stream_session_connect_notify and indicate that the connect has
757  * failed.
758  */
759 void
761 {
762  stream_session_t *s;
763 
764  /* App might've been removed already */
765  s = session_get_if_valid (tc->s_index, tc->thread_index);
766  if (!s)
767  return;
769 }
770 
771 /**
772  * Notify application that connection has been reset.
773  */
774 void
776 {
777  stream_session_t *s;
778  application_t *app;
779  s = session_get (tc->s_index, tc->thread_index);
780  s->session_state = SESSION_STATE_CLOSED;
781  app = application_get (s->app_index);
782  app->cb_fns.session_reset_callback (s);
783 }
784 
785 /**
786  * Accept a stream session. Optionally ping the server by callback.
787  */
788 int
790  u8 notify)
791 {
792  application_t *server;
793  stream_session_t *s, *listener;
794  segment_manager_t *sm;
795  int rv;
796 
797  /* Find the server */
798  listener = listen_session_get (listener_index);
799  server = application_get (listener->app_index);
800 
801  sm = application_get_listen_segment_manager (server, listener);
802  if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
803  return rv;
804 
805  s->app_index = server->index;
806  s->listener_index = listener_index;
807  s->session_state = SESSION_STATE_ACCEPTING;
808 
809  /* Shoulder-tap the server */
810  if (notify)
811  {
812  server->cb_fns.session_accept_callback (s);
813  }
814 
815  return 0;
816 }
817 
818 int
819 session_open_cl (u32 app_index, session_endpoint_t * rmt, u32 opaque)
820 {
823  segment_manager_t *sm;
824  stream_session_t *s;
825  application_t *app;
826  int rv;
827 
828  tep = session_endpoint_to_transport (rmt);
829  rv = tp_vfts[rmt->transport_proto].open (tep);
830  if (rv < 0)
831  {
832  SESSION_DBG ("Transport failed to open connection.");
833  return VNET_API_ERROR_SESSION_CONNECT;
834  }
835 
836  tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
837 
838  /* For dgram type of service, allocate session and fifos now.
839  */
840  app = application_get (app_index);
842 
843  if (session_alloc_and_init (sm, tc, 1, &s))
844  return -1;
845  s->app_index = app->index;
846  s->session_state = SESSION_STATE_OPENED;
847 
848  /* Tell the app about the new event fifo for this session */
849  app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
850 
851  return 0;
852 }
853 
854 int
855 session_open_vc (u32 app_index, session_endpoint_t * rmt, u32 opaque)
856 {
859  u64 handle;
860  int rv;
861 
862  tep = session_endpoint_to_transport (rmt);
863  rv = tp_vfts[rmt->transport_proto].open (tep);
864  if (rv < 0)
865  {
866  SESSION_DBG ("Transport failed to open connection.");
867  return VNET_API_ERROR_SESSION_CONNECT;
868  }
869 
870  tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
871 
872  /* If transport offers a stream service, only allocate session once the
873  * connection has been established.
874  * Add connection to half-open table and save app and tc index. The
875  * latter is needed to help establish the connection while the former
876  * is needed when the connect notify comes and we have to notify the
877  * external app
878  */
879  handle = (((u64) app_index) << 32) | (u64) tc->c_index;
880  session_lookup_add_half_open (tc, handle);
881 
882  /* Store api_context (opaque) for when the reply comes. Not the nicest
883  * thing but better than allocating a separate half-open pool.
884  */
885  tc->s_index = opaque;
886  return 0;
887 }
888 
889 int
890 session_open_app (u32 app_index, session_endpoint_t * rmt, u32 opaque)
891 {
893  sep->app_index = app_index;
894  sep->opaque = opaque;
895 
896  return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
897 }
898 
900 
901 /* *INDENT-OFF* */
906 };
907 /* *INDENT-ON* */
908 
909 /**
910  * Ask transport to open connection to remote transport endpoint.
911  *
912  * Stores handle for matching request with reply since the call can be
913  * asynchronous. For instance, for TCP the 3-way handshake must complete
914  * before reply comes. Session is only created once connection is established.
915  *
916  * @param app_index Index of the application requesting the connect
917  * @param st Session type requested.
918  * @param tep Remote transport endpoint
919  * @param opaque Opaque data (typically, api_context) the application expects
920  * on open completion.
921  */
922 int
923 session_open (u32 app_index, session_endpoint_t * rmt, u32 opaque)
924 {
925  transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
926  return session_open_srv_fns[tst] (app_index, rmt, opaque);
927 }
928 
929 int
931 {
933  u32 tci;
934 
935  /* Transport bind/listen */
936  tci = tp_vfts[sep->transport_proto].bind (s->session_index,
938  (sep));
939 
940  if (tci == (u32) ~ 0)
941  return -1;
942 
943  /* Attach transport to session */
944  s->connection_index = tci;
945  tc = tp_vfts[sep->transport_proto].get_listener (tci);
946 
947  /* Weird but handle it ... */
948  if (tc == 0)
949  return -1;
950 
951  /* Add to the main lookup table */
952  session_lookup_add_connection (tc, s->session_index);
953  return 0;
954 }
955 
956 int
958 {
960  application_t *server;
961  segment_manager_t *sm;
962  u32 tci;
963 
964  /* Transport bind/listen */
965  tci = tp_vfts[sep->transport_proto].bind (s->session_index,
967  (sep));
968 
969  if (tci == (u32) ~ 0)
970  return -1;
971 
972  /* Attach transport to session */
973  s->connection_index = tci;
974  tc = tp_vfts[sep->transport_proto].get_listener (tci);
975 
976  /* Weird but handle it ... */
977  if (tc == 0)
978  return -1;
979 
980  server = application_get (s->app_index);
982  if (session_alloc_fifos (sm, s))
983  return -1;
984 
985  /* Add to the main lookup table */
986  session_lookup_add_connection (tc, s->session_index);
987  return 0;
988 }
989 
990 int
992 {
994  clib_memcpy (&esep, sep, sizeof (*sep));
995  esep.app_index = s->app_index;
996 
997  return tp_vfts[sep->transport_proto].bind (s->session_index,
998  (transport_endpoint_t *) & esep);
999 }
1000 
1002  session_endpoint_t *);
1003 
1004 /* *INDENT-OFF* */
1010 };
1011 /* *INDENT-ON* */
1012 
1013 /**
1014  * Ask transport to listen on local transport endpoint.
1015  *
1016  * @param s Session for which listen will be called. Note that unlike
1017  * established sessions, listen sessions are not associated to a
1018  * thread.
1019  * @param tep Local endpoint to be listened on.
1020  */
1021 int
1023 {
1024  transport_service_type_t tst = tp_vfts[sep->transport_proto].service_type;
1025  return session_listen_srv_fns[tst] (s, sep);
1026 }
1027 
1028 /**
1029  * Ask transport to stop listening on local transport endpoint.
1030  *
1031  * @param s Session to stop listening on. It must be in state LISTENING.
1032  */
1033 int
1035 {
1038  if (s->session_state != SESSION_STATE_LISTENING)
1039  {
1040  clib_warning ("not a listening session");
1041  return -1;
1042  }
1043 
1044  tc = tp_vfts[tp].get_listener (s->connection_index);
1045  if (!tc)
1046  {
1047  clib_warning ("no transport");
1048  return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1049  }
1050 
1052  tp_vfts[tp].unbind (s->connection_index);
1053  return 0;
1054 }
1055 
1056 /**
1057  * Initialize session disconnect.
1058  *
1059  * Request is always sent to session node to ensure that all outstanding
1060  * requests are served before transport is notified.
1061  */
1062 void
1064 {
1065  u32 thread_index = vlib_get_thread_index ();
1067  session_fifo_event_t *evt;
1068 
1069  if (!s)
1070  return;
1071 
1072  if (s->session_state >= SESSION_STATE_CLOSING)
1073  {
1074  /* Session already closed. Clear the tx fifo */
1075  if (s->session_state == SESSION_STATE_CLOSED)
1076  svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1077  return;
1078  }
1079 
1080  s->session_state = SESSION_STATE_CLOSING;
1081 
1082  /* If we are in the handler thread, or being called with the worker barrier
1083  * held (api/cli), just append a new event to pending disconnects vector. */
1084  if ((thread_index == 0 && !vlib_get_current_process (vlib_get_main ()))
1085  || thread_index == s->thread_index)
1086  {
1087  ASSERT (s->thread_index == thread_index || thread_index == 0);
1088  vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1089  memset (evt, 0, sizeof (*evt));
1090  evt->session_handle = session_handle (s);
1091  evt->event_type = FIFO_EVENT_DISCONNECT;
1092  }
1093  else
1096  s->thread_index);
1097 }
1098 
1099 /**
1100  * Notify transport the session can be disconnected. This should eventually
1101  * result in a delete notification that allows us to cleanup session state.
1102  * Called for both active/passive disconnects.
1103  *
1104  * Must be called from the session's thread.
1105  */
1106 void
1108 {
1109  s->session_state = SESSION_STATE_CLOSED;
1110  tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1111  s->thread_index);
1112 }
1113 
1114 /**
1115  * Cleanup transport and session state.
1116  *
1117  * Notify transport of the cleanup and free the session. This should
1118  * be called only if transport reported some error and is already
1119  * closed.
1120  */
1121 void
1123 {
1124  s->session_state = SESSION_STATE_CLOSED;
1125 
1126  /* Delete from main lookup table before we axe the the transport */
1128  tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1129  s->thread_index);
1130  /* Since we called cleanup, no delete notification will come. So, make
1131  * sure the session is properly freed. */
1132  segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
1133  s->server_tx_fifo);
1134  session_free (s);
1135 }
1136 
1139 {
1140  transport_proto_t tp;
1141  tp = session_get_transport_proto (s);
1142  return transport_protocol_service_type (tp);
1143 }
1144 
1147 {
1148  transport_proto_t tp;
1149  tp = session_get_transport_proto (s);
1150  return transport_protocol_tx_fn_type (tp);
1151 }
1152 
1153 u8
1155 {
1157 }
1158 
1159 /**
1160  * Allocate event queues in the shared-memory segment
1161  *
1162  * That can either be a newly created memfd segment, that will need to be
1163  * mapped by all stack users, or the binary api's svm region. The latter is
1164  * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1165  * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1166  * vpp uses api svm region for event queues.
1167  */
1168 void
1170 {
1171  u32 evt_q_length = 2048, evt_size = sizeof (session_fifo_event_t);
1172  ssvm_private_t *eqs = &smm->evt_qs_segment;
1173  api_main_t *am = &api_main;
1174  u64 eqs_size = 64 << 20;
1175  pid_t vpp_pid = getpid ();
1176  void *oldheap;
1177  int i;
1178 
1179  if (smm->configured_event_queue_length)
1180  evt_q_length = smm->configured_event_queue_length;
1181 
1182  if (smm->evt_qs_use_memfd_seg)
1183  {
1184  if (smm->evt_qs_segment_size)
1185  eqs_size = smm->evt_qs_segment_size;
1186 
1187  eqs->ssvm_size = eqs_size;
1188  eqs->i_am_master = 1;
1189  eqs->my_pid = vpp_pid;
1190  eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1191  eqs->requested_va = smm->session_baseva;
1192 
1194  }
1195 
1196  if (smm->evt_qs_use_memfd_seg)
1197  oldheap = ssvm_push_heap (eqs->sh);
1198  else
1199  oldheap = svm_push_data_heap (am->vlib_rp);
1200 
1201  for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1202  {
1203  smm->vpp_event_queues[i] = svm_queue_init (evt_q_length, evt_size,
1204  vpp_pid, 0);
1205  }
1206 
1207  if (smm->evt_qs_use_memfd_seg)
1208  ssvm_pop_heap (oldheap);
1209  else
1210  svm_pop_heap (oldheap);
1211 }
1212 
1215 {
1217  if (smm->evt_qs_use_memfd_seg)
1218  return &smm->evt_qs_segment;
1219  return 0;
1220 }
1221 
1222 /* *INDENT-OFF* */
1227  session_tx_fifo_dequeue_and_snd
1228 };
1229 /* *INDENT-ON* */
1230 
1231 /**
1232  * Initialize session layer for given transport proto and ip version
1233  *
1234  * Allocates per session type (transport proto + ip version) data structures
1235  * and adds arc from session queue node to session type output node.
1236  */
1237 void
1239  const transport_proto_vft_t * vft, u8 is_ip4,
1240  u32 output_node)
1241 {
1243  session_type_t session_type;
1244  u32 next_index = ~0;
1245 
1246  session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1247 
1248  vec_validate (smm->session_type_to_next, session_type);
1249  vec_validate (smm->session_tx_fns, session_type);
1250 
1251  /* *INDENT-OFF* */
1252  if (output_node != ~0)
1253  {
1254  foreach_vlib_main (({
1255  next_index = vlib_node_add_next (this_vlib_main,
1256  session_queue_node.index,
1257  output_node);
1258  }));
1259  }
1260  /* *INDENT-ON* */
1261 
1262  smm->session_type_to_next[session_type] = next_index;
1263  smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
1264 }
1265 
1268 {
1269  transport_proto_t tp;
1270  if (s->session_state != SESSION_STATE_LISTENING)
1271  {
1272  tp = session_get_transport_proto (s);
1273  return tp_vfts[tp].get_connection (s->connection_index,
1274  s->thread_index);
1275  }
1276  return 0;
1277 }
1278 
1281 {
1283  return tp_vfts[tp].get_listener (s->connection_index);
1284 }
1285 
1286 int
1288  session_endpoint_t * sep)
1289 {
1292  tc = tp_vfts[tp].get_listener (listener->connection_index);
1293  if (!tc)
1294  {
1295  clib_warning ("no transport");
1296  return -1;
1297  }
1298 
1299  /* N.B. The ip should not be copied because this is the local endpoint */
1300  sep->port = tc->lcl_port;
1301  sep->transport_proto = tc->proto;
1302  sep->is_ip4 = tc->is_ip4;
1303  return 0;
1304 }
1305 
1306 void
1308 {
1309  ASSERT (vlib_get_thread_index () == 0);
1312 }
1313 
1314 static clib_error_t *
1316 {
1317  segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
1320  u32 num_threads, preallocated_sessions_per_worker;
1321  int i, j;
1322 
1323  num_threads = 1 /* main thread */ + vtm->n_threads;
1324 
1325  if (num_threads < 1)
1326  return clib_error_return (0, "n_thread_stacks not set");
1327 
1328  /* configure per-thread ** vectors */
1329  vec_validate (smm->sessions, num_threads - 1);
1330  vec_validate (smm->tx_buffers, num_threads - 1);
1331  vec_validate (smm->pending_event_vector, num_threads - 1);
1332  vec_validate (smm->pending_disconnects, num_threads - 1);
1333  vec_validate (smm->free_event_vector, num_threads - 1);
1334  vec_validate (smm->vpp_event_queues, num_threads - 1);
1335  vec_validate (smm->peekers_rw_locks, num_threads - 1);
1336  vec_validate_aligned (smm->ctx, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1337 
1338  for (i = 0; i < TRANSPORT_N_PROTO; i++)
1339  {
1340  vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1341  vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1342  for (j = 0; j < num_threads; j++)
1343  smm->current_enqueue_epoch[i][j] = 1;
1344  }
1345 
1346  for (i = 0; i < num_threads; i++)
1347  {
1348  vec_validate (smm->free_event_vector[i], 0);
1349  _vec_len (smm->free_event_vector[i]) = 0;
1350  vec_validate (smm->pending_event_vector[i], 0);
1351  _vec_len (smm->pending_event_vector[i]) = 0;
1352  vec_validate (smm->pending_disconnects[i], 0);
1353  _vec_len (smm->pending_disconnects[i]) = 0;
1354  if (num_threads > 1)
1355  clib_rwlock_init (&smm->peekers_rw_locks[i]);
1356  }
1357 
1358 #if SESSION_DEBUG
1359  vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1360 #endif
1361 
1362  /* Allocate vpp event queues segment and queue */
1364 
1365  /* Initialize fifo segment main baseva and timeout */
1366  sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1367  sm_args->size = smm->session_va_space_size;
1368  segment_manager_main_init (sm_args);
1369 
1370  /* Preallocate sessions */
1371  if (smm->preallocated_sessions)
1372  {
1373  if (num_threads == 1)
1374  {
1375  pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
1376  }
1377  else
1378  {
1379  int j;
1380  preallocated_sessions_per_worker =
1381  (1.1 * (f64) smm->preallocated_sessions /
1382  (f64) (num_threads - 1));
1383 
1384  for (j = 1; j < num_threads; j++)
1385  {
1386  pool_init_fixed (smm->sessions[j],
1387  preallocated_sessions_per_worker);
1388  }
1389  }
1390  }
1391 
1394  transport_init ();
1395 
1396  smm->is_enabled = 1;
1397 
1398  /* Enable transports */
1399  transport_enable_disable (vm, 1);
1400 
1401  return 0;
1402 }
1403 
1404 void
1406 {
1407  u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1409  u8 have_workers = vtm->n_threads != 0;
1410 
1411  /* *INDENT-OFF* */
1412  foreach_vlib_main (({
1413  if (have_workers && ii == 0)
1414  {
1415  vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1416  state);
1417  if (is_en)
1418  {
1419  vlib_node_t *n = vlib_get_node (this_vlib_main,
1421  vlib_start_process (this_vlib_main, n->runtime_index);
1422  }
1423  else
1424  {
1425  vlib_process_signal_event_mt (this_vlib_main,
1428  }
1429 
1430  continue;
1431  }
1432  vlib_node_set_state (this_vlib_main, session_queue_node.index,
1433  state);
1434  }));
1435  /* *INDENT-ON* */
1436 }
1437 
1438 clib_error_t *
1440 {
1441  clib_error_t *error = 0;
1442  if (is_en)
1443  {
1444  if (session_manager_main.is_enabled)
1445  return 0;
1446 
1448  error = session_manager_main_enable (vm);
1449  }
1450  else
1451  {
1452  session_manager_main.is_enabled = 0;
1454  }
1455 
1456  return error;
1457 }
1458 
1459 clib_error_t *
1461 {
1463  smm->session_baseva = 0x200000000ULL;
1464  smm->session_va_space_size = (u64) 128 << 30;
1465  smm->evt_qs_segment_size = 64 << 20;
1466  smm->is_enabled = 0;
1467  return 0;
1468 }
1469 
1471 
1472 static clib_error_t *
1474 {
1476  u32 nitems;
1477  uword tmp;
1478 
1479  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1480  {
1481  if (unformat (input, "event-queue-length %d", &nitems))
1482  {
1483  if (nitems >= 2048)
1484  smm->configured_event_queue_length = nitems;
1485  else
1486  clib_warning ("event queue length %d too small, ignored", nitems);
1487  }
1488  else if (unformat (input, "preallocated-sessions %d",
1489  &smm->preallocated_sessions))
1490  ;
1491  else if (unformat (input, "v4-session-table-buckets %d",
1492  &smm->configured_v4_session_table_buckets))
1493  ;
1494  else if (unformat (input, "v4-halfopen-table-buckets %d",
1495  &smm->configured_v4_halfopen_table_buckets))
1496  ;
1497  else if (unformat (input, "v6-session-table-buckets %d",
1498  &smm->configured_v6_session_table_buckets))
1499  ;
1500  else if (unformat (input, "v6-halfopen-table-buckets %d",
1501  &smm->configured_v6_halfopen_table_buckets))
1502  ;
1503  else if (unformat (input, "v4-session-table-memory %U",
1504  unformat_memory_size, &tmp))
1505  {
1506  if (tmp >= 0x100000000)
1507  return clib_error_return (0, "memory size %llx (%lld) too large",
1508  tmp, tmp);
1509  smm->configured_v4_session_table_memory = tmp;
1510  }
1511  else if (unformat (input, "v4-halfopen-table-memory %U",
1512  unformat_memory_size, &tmp))
1513  {
1514  if (tmp >= 0x100000000)
1515  return clib_error_return (0, "memory size %llx (%lld) too large",
1516  tmp, tmp);
1517  smm->configured_v4_halfopen_table_memory = tmp;
1518  }
1519  else if (unformat (input, "v6-session-table-memory %U",
1520  unformat_memory_size, &tmp))
1521  {
1522  if (tmp >= 0x100000000)
1523  return clib_error_return (0, "memory size %llx (%lld) too large",
1524  tmp, tmp);
1525  smm->configured_v6_session_table_memory = tmp;
1526  }
1527  else if (unformat (input, "v6-halfopen-table-memory %U",
1528  unformat_memory_size, &tmp))
1529  {
1530  if (tmp >= 0x100000000)
1531  return clib_error_return (0, "memory size %llx (%lld) too large",
1532  tmp, tmp);
1533  smm->configured_v6_halfopen_table_memory = tmp;
1534  }
1535  else if (unformat (input, "local-endpoints-table-memory %U",
1536  unformat_memory_size, &tmp))
1537  {
1538  if (tmp >= 0x100000000)
1539  return clib_error_return (0, "memory size %llx (%lld) too large",
1540  tmp, tmp);
1541  smm->local_endpoints_table_memory = tmp;
1542  }
1543  else if (unformat (input, "local-endpoints-table-buckets %d",
1544  &smm->local_endpoints_table_buckets))
1545  ;
1546  else if (unformat (input, "evt_qs_memfd_seg"))
1547  smm->evt_qs_use_memfd_seg = 1;
1548  else
1549  return clib_error_return (0, "unknown input `%U'",
1550  format_unformat_error, input);
1551  }
1552  return 0;
1553 }
1554 
1556 
1557 /*
1558  * fd.io coding-style-patch-verification: ON
1559  *
1560  * Local Variables:
1561  * eval: (c-set-style "gnu")
1562  * End:
1563  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:437
u64 ssvm_size
Definition: ssvm.h:84
static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES]
Definition: session.c:902
static svm_queue_t * session_manager_get_vpp_event_queue(u32 thread_index)
Definition: session.h:552
void session_flush_frames_main_thread(vlib_main_t *vm)
Definition: session.c:1307
int session_open_vc(u32 app_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:855
static session_listen_service_fn session_listen_srv_fns[TRANSPORT_N_SERVICES]
Definition: session.c:1006
int session_lookup_del_connection(transport_connection_t *tc)
Delete transport connection from session table.
static void svm_pop_heap(void *oldheap)
Definition: svm.h:94
uword requested_va
Definition: ssvm.h:87
int svm_queue_add(svm_queue_t *q, u8 *elem, int nowait)
Definition: queue.c:184
void svm_fifo_init_pointers(svm_fifo_t *f, u32 pointer)
Set fifo pointers to requested offset.
Definition: svm_fifo.c:854
#define SESSION_Q_PROCESS_FLUSH_FRAMES
Definition: session.h:259
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
int session_listen_cl(stream_session_t *s, session_endpoint_t *sep)
Definition: session.c:957
#define PREDICT_TRUE(x)
Definition: clib.h:106
unsigned long u64
Definition: types.h:89
session_manager_main_t session_manager_main
Definition: session.c:27
static int session_enqueue_notify(stream_session_t *s, u8 block)
Notify session peer that new data has been enqueued.
Definition: session.c:449
#define pool_get_aligned_will_expand(P, YESNO, A)
See if pool_get will expand the pool or not.
Definition: pool.h:230
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:523
void session_send_rpc_evt_to_thread(u32 thread_index, void *fp, void *rpc_args)
Definition: session.c:68
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:562
int i
transport_tx_fn_type_t transport_protocol_tx_fn_type(transport_proto_t tp)
Definition: transport.c:205
void svm_fifo_dequeue_drop_all(svm_fifo_t *f)
Definition: svm_fifo.c:832
transport_connection_t * session_get_transport(stream_session_t *s)
Definition: session.c:1267
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
Definition: svm_fifo.h:111
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)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:448
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:306
u64 session_lookup_half_open_handle(transport_connection_t *tc)
void session_node_enable_disable(u8 is_en)
Definition: session.c:1405
vlib_node_registration_t session_queue_node
(constructor) VLIB_REGISTER_NODE (session_queue_node)
Definition: session_node.c:47
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:1110
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:1223
static void session_send_evt_to_thread(u64 session_handle, fifo_event_type_t evt_type, u32 thread_index, void *fp, void *rpc_args)
Definition: session.c:31
struct _svm_fifo svm_fifo_t
void session_free(stream_session_t *s)
Definition: session.c:108
svm_queue_t * svm_queue_init(int nels, int elsize, int consumer_pid, int signal_when_queue_non_empty)
Definition: queue.c:51
int session_open_app(u32 app_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:890
fifo_event_type_t
Definition: session.h:33
segment_manager_t * application_get_listen_segment_manager(application_t *app, stream_session_t *s)
Definition: application.c:550
void app_namespaces_init(void)
static clib_error_t * session_config_fn(vlib_main_t *vm, unformat_input_t *input)
Definition: session.c:1473
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:156
static void * svm_push_data_heap(svm_region_t *rp)
Definition: svm.h:86
void stream_session_accept_notify(transport_connection_t *tc)
Definition: session.c:702
#define always_inline
Definition: clib.h:92
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
Definition: svm_fifo.h:105
static stream_session_t * session_alloc_for_connection(transport_connection_t *tc)
Definition: session.c:140
int session_listen_vc(stream_session_t *s, session_endpoint_t *sep)
Definition: session.c:930
static stream_session_t * listen_session_get(u32 index)
Definition: session.h:591
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:254
int svm_fifo_enqueue_nowait(svm_fifo_t *f, u32 max_bytes, const u8 *copy_from_here)
Definition: svm_fifo.c:538
void stream_session_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
Definition: session.c:760
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:362
void stream_session_cleanup(stream_session_t *s)
Cleanup transport and session state.
Definition: session.c:1122
void stream_session_delete(stream_session_t *s)
Cleans up session and lookup table.
Definition: session.c:737
unsigned int u32
Definition: types.h:88
struct _stream_session_t stream_session_t
void session_vpp_event_queues_allocate(session_manager_main_t *smm)
Allocate event queues in the shared-memory segment.
Definition: session.c:1169
int ssvm_master_init(ssvm_private_t *ssvm, ssvm_segment_type_t type)
Definition: ssvm.c:375
enum transport_dequeue_type_ transport_tx_fn_type_t
static void ssvm_pop_heap(void *oldheap)
Definition: ssvm.h:152
void session_send_session_evt_to_thread(u64 session_handle, fifo_event_type_t evt_type, u32 thread_index)
Definition: session.c:60
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:141
static clib_error_t * session_manager_main_enable(vlib_main_t *vm)
Definition: session.c:1315
#define session_endpoint_to_transport(_sep)
static transport_proto_t session_get_transport_proto(stream_session_t *s)
Definition: session.h:373
u32 stream_session_dequeue_drop(transport_connection_t *tc, u32 max_bytes)
Definition: session.c:434
int session_open(u32 app_index, session_endpoint_t *rmt, u32 opaque)
Ask transport to open connection to remote transport endpoint.
Definition: session.c:923
int segment_manager_alloc_session_fifos(segment_manager_t *sm, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo, u32 *fifo_segment_index)
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:666
static session_manager_main_t * vnet_get_session_manager_main()
Definition: session.h:266
static void clib_rwlock_init(clib_rwlock_t *p)
Definition: lock.h:122
transport_service_type_t transport_protocol_service_type(transport_proto_t tp)
Definition: transport.c:199
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:108
struct _session_endpoint session_endpoint_t
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
static session_handle_t session_handle(stream_session_t *s)
Definition: session.h:310
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:202
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:273
#define PREDICT_FALSE(x)
Definition: clib.h:105
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:164
clib_error_t * session_manager_main_init(vlib_main_t *vm)
Definition: session.c:1460
static stream_session_t * session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:297
struct _session_manager_main session_manager_main_t
Definition: session.h:153
#define foreach_vlib_main(body)
Definition: threads.h:244
int stream_session_accept(transport_connection_t *tc, u32 listener_index, u8 notify)
Accept a stream session.
Definition: session.c:789
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: session.c:1439
static stream_session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:290
struct _session_switch_pool_args session_switch_pool_args_t
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:201
int session_alloc_fifos(segment_manager_t *sm, stream_session_t *s)
Definition: session.c:116
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:188
#define SESSION_DBG(_fmt, _args...)
static u8 svm_fifo_set_event(svm_fifo_t *f)
Sets fifo event flag.
Definition: svm_fifo.h:128
static void clib_rwlock_writer_unlock(clib_rwlock_t *p)
Definition: lock.h:185
#define SESSION_EVT_DBG(_evt, _args...)
void transport_init(void)
Definition: transport.c:402
session_fifo_rx_fn session_tx_fifo_dequeue_and_snd
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
u32 runtime_index
Definition: node.h:276
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:417
static session_type_t session_type_from_proto_and_ip(transport_proto_t proto, u8 is_ip4)
Definition: session.h:386
vlib_main_t * vm
Definition: buffer.c:294
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:976
transport_service_type_t session_transport_service_type(stream_session_t *s)
Definition: session.c:1138
segment_manager_t * application_get_connect_segment_manager(application_t *app)
Definition: application.c:543
#define clib_warning(format, args...)
Definition: error.h:59
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:554
#define clib_memcpy(a, b, c)
Definition: string.h:75
struct _application application_t
u32 my_pid
Definition: ssvm.h:85
int( session_fifo_rx_fn)(vlib_main_t *vm, vlib_node_runtime_t *node, session_fifo_event_t *e0, stream_session_t *s0, int *n_tx_pkts)
Definition: session.h:156
void transport_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: transport.c:391
#define pool_init_fixed(pool, max_elts)
initialize a fixed-size, preallocated pool
Definition: pool.h:86
void stream_session_disconnect_notify(transport_connection_t *tc)
Notification from transport that connection is being closed.
Definition: session.c:720
#define SESSION_Q_PROCESS_STOP
Definition: session.h:260
ssvm_private_t * session_manager_get_evt_q_segment(void)
Definition: session.c:1214
#define ASSERT(truth)
u32 session_tx_fifo_max_dequeue(transport_connection_t *tc)
Definition: session.c:417
u8 session_type_t
vhost_vring_state_t state
Definition: vhost-user.h:82
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:126
void segment_manager_main_init(segment_manager_main_init_args_t *a)
static void clib_mem_free(void *p)
Definition: mem.h:179
int listen_session_get_local_session_endpoint(stream_session_t *listener, session_endpoint_t *sep)
Definition: session.c:1287
void stream_session_disconnect(stream_session_t *s)
Initialize session disconnect.
Definition: session.c:1063
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:215
void stream_session_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
Definition: session.c:775
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:147
int session_listen_app(stream_session_t *s, session_endpoint_t *sep)
Definition: session.c:991
int svm_fifo_enqueue_with_offset(svm_fifo_t *f, u32 offset, u32 required_bytes, u8 *copy_from_here)
Definition: svm_fifo.c:614
int stream_session_stop_listen(stream_session_t *s)
Ask transport to stop listening on local transport endpoint.
Definition: session.c:1034
static void * clib_mem_alloc(uword size)
Definition: mem.h:112
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:81
#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:187
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:152
template key/value backing page structure
Definition: bihash_doc.h:44
static void session_switch_pool(void *cb_args)
Definition: session.c:647
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 max_bytes)
Definition: svm_fifo.c:792
enum _transport_proto transport_proto_t
transport_connection_t * listen_session_get_transport(stream_session_t *s)
Definition: session.c:1280
void session_lookup_init(void)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
session_fifo_rx_fn session_tx_fifo_dequeue_internal
static stream_session_t * session_clone_safe(u32 session_index, u32 thread_index)
Definition: session.h:480
application_t * application_get(u32 index)
Definition: application.c:386
struct _transport_endpoint transport_endpoint_t
u64 uword
Definition: types.h:112
struct _segment_manager segment_manager_t
struct _svm_queue svm_queue_t
unformat_function_t unformat_memory_size
Definition: format.h:294
int session_manager_flush_all_enqueue_events(u8 transport_proto)
Definition: session.c:539
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:1146
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:515
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:564
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)
Definition: session_node.c:916
static u32 vlib_num_workers()
Definition: threads.h:375
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:218
u8 session_tx_is_dgram(stream_session_t *s)
Definition: session.c:1154
int(* session_open_service_fn)(u32, session_endpoint_t *, u32)
Definition: session.c:899
int session_open_cl(u32 app_index, session_endpoint_t *rmt, u32 opaque)
Definition: session.c:819
int application_is_builtin_proxy(application_t *app)
Definition: application.c:591
int(* session_listen_service_fn)(stream_session_t *, session_endpoint_t *)
Definition: session.c:1001
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:62
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:111
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:160
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1346
int svm_fifo_peek(svm_fifo_t *f, u32 relative_offset, u32 max_bytes, u8 *copy_here)
Definition: svm_fifo.c:776
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:1238
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:426
u8 transport_protocol_is_cl(transport_proto_t tp)
Definition: transport.c:211
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
int i_am_master
Definition: ssvm.h:88
void stream_session_disconnect_transport(stream_session_t *s)
Notify transport the session can be disconnected.
Definition: session.c:1107
struct _session_endpoint_extended session_endpoint_extended_t
application_t * application_get_if_valid(u32 index)
Definition: application.c:394
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:402
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:169
int stream_session_listen(stream_session_t *s, session_endpoint_t *sep)
Ask transport to listen on local transport endpoint.
Definition: session.c:1022