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