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