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