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