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