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