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