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