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