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