session: deprecate mq segments baseva
[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/application.h>
22 #include <vnet/dpo/load_balance.h>
23 #include <vnet/fib/ip4_fib.h>
24
25 session_main_t session_main;
26
27 static inline int
28 session_send_evt_to_thread (void *data, void *args, u32 thread_index,
29                             session_evt_type_t evt_type)
30 {
31   session_worker_t *wrk = session_main_get_worker (thread_index);
32   session_event_t *evt;
33   svm_msg_q_msg_t msg;
34   svm_msg_q_t *mq;
35
36   mq = wrk->vpp_event_queue;
37   if (PREDICT_FALSE (svm_msg_q_lock (mq)))
38     return -1;
39   if (PREDICT_FALSE (svm_msg_q_is_full (mq)
40                      || svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
41     {
42       svm_msg_q_unlock (mq);
43       return -2;
44     }
45   switch (evt_type)
46     {
47     case SESSION_CTRL_EVT_RPC:
48       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
49       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
50       evt->rpc_args.fp = data;
51       evt->rpc_args.arg = args;
52       break;
53     case SESSION_IO_EVT_RX:
54     case SESSION_IO_EVT_TX:
55     case SESSION_IO_EVT_TX_FLUSH:
56     case SESSION_IO_EVT_BUILTIN_RX:
57       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
58       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
59       evt->session_index = *(u32 *) data;
60       break;
61     case SESSION_IO_EVT_BUILTIN_TX:
62     case SESSION_CTRL_EVT_CLOSE:
63     case SESSION_CTRL_EVT_RESET:
64       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
65       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
66       evt->session_handle = session_handle ((session_t *) data);
67       break;
68     default:
69       clib_warning ("evt unhandled!");
70       svm_msg_q_unlock (mq);
71       return -1;
72     }
73   evt->event_type = evt_type;
74
75   svm_msg_q_add_and_unlock (mq, &msg);
76
77   if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
78     vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
79
80   return 0;
81 }
82
83 int
84 session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
85 {
86   return session_send_evt_to_thread (&f->shr->master_session_index, 0,
87                                      f->master_thread_index, evt_type);
88 }
89
90 int
91 session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
92                                       session_evt_type_t evt_type)
93 {
94   return session_send_evt_to_thread (data, 0, thread_index, evt_type);
95 }
96
97 int
98 session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type)
99 {
100   /* only events supported are disconnect, shutdown and reset */
101   ASSERT (evt_type == SESSION_CTRL_EVT_CLOSE ||
102           evt_type == SESSION_CTRL_EVT_HALF_CLOSE ||
103           evt_type == SESSION_CTRL_EVT_RESET);
104   return session_send_evt_to_thread (s, 0, s->thread_index, evt_type);
105 }
106
107 void
108 session_send_rpc_evt_to_thread_force (u32 thread_index, void *fp,
109                                       void *rpc_args)
110 {
111   session_send_evt_to_thread (fp, rpc_args, thread_index,
112                               SESSION_CTRL_EVT_RPC);
113 }
114
115 void
116 session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
117 {
118   if (thread_index != vlib_get_thread_index ())
119     session_send_rpc_evt_to_thread_force (thread_index, fp, rpc_args);
120   else
121     {
122       void (*fnp) (void *) = fp;
123       fnp (rpc_args);
124     }
125 }
126
127 void
128 session_add_self_custom_tx_evt (transport_connection_t * tc, u8 has_prio)
129 {
130   session_t *s = session_get (tc->s_index, tc->thread_index);
131
132   ASSERT (s->thread_index == vlib_get_thread_index ());
133   ASSERT (s->session_state != SESSION_STATE_TRANSPORT_DELETED);
134
135   if (!(s->flags & SESSION_F_CUSTOM_TX))
136     {
137       s->flags |= SESSION_F_CUSTOM_TX;
138       if (svm_fifo_set_event (s->tx_fifo)
139           || transport_connection_is_descheduled (tc))
140         {
141           session_evt_elt_t *elt;
142           session_worker_t *wrk;
143
144           wrk = session_main_get_worker (tc->thread_index);
145           if (has_prio)
146             elt = session_evt_alloc_new (wrk);
147           else
148             elt = session_evt_alloc_old (wrk);
149           elt->evt.session_index = tc->s_index;
150           elt->evt.event_type = SESSION_IO_EVT_TX;
151           tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
152
153           if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
154             vlib_node_set_interrupt_pending (wrk->vm,
155                                              session_queue_node.index);
156         }
157     }
158 }
159
160 void
161 sesssion_reschedule_tx (transport_connection_t * tc)
162 {
163   session_worker_t *wrk = session_main_get_worker (tc->thread_index);
164   session_evt_elt_t *elt;
165
166   ASSERT (tc->thread_index == vlib_get_thread_index ());
167
168   elt = session_evt_alloc_new (wrk);
169   elt->evt.session_index = tc->s_index;
170   elt->evt.event_type = SESSION_IO_EVT_TX;
171
172   if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
173     vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
174 }
175
176 static void
177 session_program_transport_ctrl_evt (session_t * s, session_evt_type_t evt)
178 {
179   u32 thread_index = vlib_get_thread_index ();
180   session_evt_elt_t *elt;
181   session_worker_t *wrk;
182
183   /* If we are in the handler thread, or being called with the worker barrier
184    * held, just append a new event to pending disconnects vector. */
185   if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
186     {
187       wrk = session_main_get_worker (s->thread_index);
188       elt = session_evt_alloc_ctrl (wrk);
189       clib_memset (&elt->evt, 0, sizeof (session_event_t));
190       elt->evt.session_handle = session_handle (s);
191       elt->evt.event_type = evt;
192
193       if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
194         vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
195     }
196   else
197     session_send_ctrl_evt_to_thread (s, evt);
198 }
199
200 session_t *
201 session_alloc (u32 thread_index)
202 {
203   session_worker_t *wrk = &session_main.wrk[thread_index];
204   session_t *s;
205   u8 will_expand = 0;
206   pool_get_aligned_will_expand (wrk->sessions, will_expand,
207                                 CLIB_CACHE_LINE_BYTES);
208   /* If we have peekers, let them finish */
209   if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
210     {
211       clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
212       pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
213       clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
214     }
215   else
216     {
217       pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
218     }
219   clib_memset (s, 0, sizeof (*s));
220   s->session_index = s - wrk->sessions;
221   s->thread_index = thread_index;
222   s->app_index = APP_INVALID_INDEX;
223   return s;
224 }
225
226 void
227 session_free (session_t * s)
228 {
229   if (CLIB_DEBUG)
230     {
231       u8 thread_index = s->thread_index;
232       clib_memset (s, 0xFA, sizeof (*s));
233       pool_put (session_main.wrk[thread_index].sessions, s);
234       return;
235     }
236   SESSION_EVT (SESSION_EVT_FREE, s);
237   pool_put (session_main.wrk[s->thread_index].sessions, s);
238 }
239
240 u8
241 session_is_valid (u32 si, u8 thread_index)
242 {
243   session_t *s;
244   transport_connection_t *tc;
245
246   s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
247
248   if (s->thread_index != thread_index || s->session_index != si)
249     return 0;
250
251   if (s->session_state == SESSION_STATE_TRANSPORT_DELETED
252       || s->session_state <= SESSION_STATE_LISTENING)
253     return 1;
254
255   if (s->session_state == SESSION_STATE_CONNECTING &&
256       (s->flags & SESSION_F_HALF_OPEN))
257     return 1;
258
259   tc = session_get_transport (s);
260   if (s->connection_index != tc->c_index
261       || s->thread_index != tc->thread_index || tc->s_index != si)
262     return 0;
263
264   return 1;
265 }
266
267 static void
268 session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf)
269 {
270   app_worker_t *app_wrk;
271
272   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
273   if (!app_wrk)
274     return;
275   app_worker_cleanup_notify (app_wrk, s, ntf);
276 }
277
278 void
279 session_free_w_fifos (session_t * s)
280 {
281   session_cleanup_notify (s, SESSION_CLEANUP_SESSION);
282   segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
283   session_free (s);
284 }
285
286 /**
287  * Cleans up session and lookup table.
288  *
289  * Transport connection must still be valid.
290  */
291 static void
292 session_delete (session_t * s)
293 {
294   int rv;
295
296   /* Delete from the main lookup table. */
297   if ((rv = session_lookup_del_session (s)))
298     clib_warning ("session %u hash delete rv %d", s->session_index, rv);
299
300   session_free_w_fifos (s);
301 }
302
303 void
304 session_cleanup_half_open (session_handle_t ho_handle)
305 {
306   session_t *ho = session_get_from_handle (ho_handle);
307
308   /* App transports can migrate their half-opens */
309   if (ho->flags & SESSION_F_IS_MIGRATING)
310     {
311       /* Session still migrating, move to closed state to signal that the
312        * session should be removed. */
313       if (ho->connection_index == ~0)
314         {
315           ho->session_state = SESSION_STATE_CLOSED;
316           return;
317         }
318       /* Migrated transports are no longer half-opens */
319       transport_cleanup (session_get_transport_proto (ho),
320                          ho->connection_index, ho->app_index /* overloaded */);
321     }
322   else
323     transport_cleanup_half_open (session_get_transport_proto (ho),
324                                  ho->connection_index);
325   session_free (ho);
326 }
327
328 static void
329 session_half_open_free (session_t *ho)
330 {
331   app_worker_t *app_wrk;
332
333   ASSERT (vlib_get_thread_index () <= 1);
334   app_wrk = app_worker_get (ho->app_wrk_index);
335   app_worker_del_half_open (app_wrk, ho);
336   session_free (ho);
337 }
338
339 static void
340 session_half_open_free_rpc (void *args)
341 {
342   session_t *ho = ho_session_get (pointer_to_uword (args));
343   session_half_open_free (ho);
344 }
345
346 void
347 session_half_open_delete_notify (transport_connection_t *tc)
348 {
349   /* Notification from ctrl thread accepted without rpc */
350   if (!tc->thread_index)
351     {
352       session_half_open_free (ho_session_get (tc->s_index));
353     }
354   else
355     {
356       void *args = uword_to_pointer ((uword) tc->s_index, void *);
357       session_send_rpc_evt_to_thread_force (0, session_half_open_free_rpc,
358                                             args);
359     }
360 }
361
362 void
363 session_half_open_migrate_notify (transport_connection_t *tc)
364 {
365   session_t *ho;
366
367   ho = ho_session_get (tc->s_index);
368   ho->flags |= SESSION_F_IS_MIGRATING;
369   ho->connection_index = ~0;
370 }
371
372 int
373 session_half_open_migrated_notify (transport_connection_t *tc)
374 {
375   session_t *ho;
376
377   ho = ho_session_get (tc->s_index);
378
379   /* App probably detached so the half-open must be cleaned up */
380   if (ho->session_state == SESSION_STATE_CLOSED)
381     {
382       session_half_open_delete_notify (tc);
383       return -1;
384     }
385   ho->connection_index = tc->c_index;
386   /* Overload app index for half-open with new thread */
387   ho->app_index = tc->thread_index;
388   return 0;
389 }
390
391 session_t *
392 session_alloc_for_connection (transport_connection_t * tc)
393 {
394   session_t *s;
395   u32 thread_index = tc->thread_index;
396
397   ASSERT (thread_index == vlib_get_thread_index ()
398           || transport_protocol_is_cl (tc->proto));
399
400   s = session_alloc (thread_index);
401   s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
402   s->session_state = SESSION_STATE_CLOSED;
403
404   /* Attach transport to session and vice versa */
405   s->connection_index = tc->c_index;
406   tc->s_index = s->session_index;
407   return s;
408 }
409
410 session_t *
411 session_alloc_for_half_open (transport_connection_t *tc)
412 {
413   session_t *s;
414
415   s = ho_session_alloc ();
416   s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
417   s->connection_index = tc->c_index;
418   tc->s_index = s->session_index;
419   return s;
420 }
421
422 /**
423  * Discards bytes from buffer chain
424  *
425  * It discards n_bytes_to_drop starting at first buffer after chain_b
426  */
427 always_inline void
428 session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
429                                      vlib_buffer_t ** chain_b,
430                                      u32 n_bytes_to_drop)
431 {
432   vlib_buffer_t *next = *chain_b;
433   u32 to_drop = n_bytes_to_drop;
434   ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
435   while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
436     {
437       next = vlib_get_buffer (vm, next->next_buffer);
438       if (next->current_length > to_drop)
439         {
440           vlib_buffer_advance (next, to_drop);
441           to_drop = 0;
442         }
443       else
444         {
445           to_drop -= next->current_length;
446           next->current_length = 0;
447         }
448     }
449   *chain_b = next;
450
451   if (to_drop == 0)
452     b->total_length_not_including_first_buffer -= n_bytes_to_drop;
453 }
454
455 /**
456  * Enqueue buffer chain tail
457  */
458 always_inline int
459 session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
460                             u32 offset, u8 is_in_order)
461 {
462   vlib_buffer_t *chain_b;
463   u32 chain_bi, len, diff;
464   vlib_main_t *vm = vlib_get_main ();
465   u8 *data;
466   u32 written = 0;
467   int rv = 0;
468
469   if (is_in_order && offset)
470     {
471       diff = offset - b->current_length;
472       if (diff > b->total_length_not_including_first_buffer)
473         return 0;
474       chain_b = b;
475       session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
476       chain_bi = vlib_get_buffer_index (vm, chain_b);
477     }
478   else
479     chain_bi = b->next_buffer;
480
481   do
482     {
483       chain_b = vlib_get_buffer (vm, chain_bi);
484       data = vlib_buffer_get_current (chain_b);
485       len = chain_b->current_length;
486       if (!len)
487         continue;
488       if (is_in_order)
489         {
490           rv = svm_fifo_enqueue (s->rx_fifo, len, data);
491           if (rv == len)
492             {
493               written += rv;
494             }
495           else if (rv < len)
496             {
497               return (rv > 0) ? (written + rv) : written;
498             }
499           else if (rv > len)
500             {
501               written += rv;
502
503               /* written more than what was left in chain */
504               if (written > b->total_length_not_including_first_buffer)
505                 return written;
506
507               /* drop the bytes that have already been delivered */
508               session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
509             }
510         }
511       else
512         {
513           rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
514           if (rv)
515             {
516               clib_warning ("failed to enqueue multi-buffer seg");
517               return -1;
518             }
519           offset += len;
520         }
521     }
522   while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
523           ? chain_b->next_buffer : 0));
524
525   if (is_in_order)
526     return written;
527
528   return 0;
529 }
530
531 void
532 session_fifo_tuning (session_t * s, svm_fifo_t * f,
533                      session_ft_action_t act, u32 len)
534 {
535   if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING)
536     {
537       app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
538       app_worker_session_fifo_tuning (app_wrk, s, f, act, len);
539       if (CLIB_ASSERT_ENABLE)
540         {
541           segment_manager_t *sm;
542           sm = segment_manager_get (f->segment_manager);
543           ASSERT (f->shr->size >= 4096);
544           ASSERT (f->shr->size <= sm->max_fifo_size);
545         }
546     }
547 }
548
549 /*
550  * Enqueue data for delivery to session peer. Does not notify peer of enqueue
551  * event but on request can queue notification events for later delivery by
552  * calling stream_server_flush_enqueue_events().
553  *
554  * @param tc Transport connection which is to be enqueued data
555  * @param b Buffer to be enqueued
556  * @param offset Offset at which to start enqueueing if out-of-order
557  * @param queue_event Flag to indicate if peer is to be notified or if event
558  *                    is to be queued. The former is useful when more data is
559  *                    enqueued and only one event is to be generated.
560  * @param is_in_order Flag to indicate if data is in order
561  * @return Number of bytes enqueued or a negative value if enqueueing failed.
562  */
563 int
564 session_enqueue_stream_connection (transport_connection_t * tc,
565                                    vlib_buffer_t * b, u32 offset,
566                                    u8 queue_event, u8 is_in_order)
567 {
568   session_t *s;
569   int enqueued = 0, rv, in_order_off;
570
571   s = session_get (tc->s_index, tc->thread_index);
572
573   if (is_in_order)
574     {
575       enqueued = svm_fifo_enqueue (s->rx_fifo,
576                                    b->current_length,
577                                    vlib_buffer_get_current (b));
578       if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
579                          && enqueued >= 0))
580         {
581           in_order_off = enqueued > b->current_length ? enqueued : 0;
582           rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
583           if (rv > 0)
584             enqueued += rv;
585         }
586     }
587   else
588     {
589       rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
590                                          b->current_length,
591                                          vlib_buffer_get_current (b));
592       if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
593         session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
594       /* if something was enqueued, report even this as success for ooo
595        * segment handling */
596       return rv;
597     }
598
599   if (queue_event)
600     {
601       /* Queue RX event on this fifo. Eventually these will need to be flushed
602        * by calling stream_server_flush_enqueue_events () */
603       session_worker_t *wrk;
604
605       wrk = session_main_get_worker (s->thread_index);
606       if (!(s->flags & SESSION_F_RX_EVT))
607         {
608           s->flags |= SESSION_F_RX_EVT;
609           vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
610         }
611
612       session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
613     }
614
615   return enqueued;
616 }
617
618 int
619 session_enqueue_dgram_connection (session_t * s,
620                                   session_dgram_hdr_t * hdr,
621                                   vlib_buffer_t * b, u8 proto, u8 queue_event)
622 {
623   int rv;
624
625   ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo)
626           >= b->current_length + sizeof (*hdr));
627
628   if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
629     {
630       /* *INDENT-OFF* */
631       svm_fifo_seg_t segs[2] = {
632           { (u8 *) hdr, sizeof (*hdr) },
633           { vlib_buffer_get_current (b), b->current_length }
634       };
635       /* *INDENT-ON* */
636
637       rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2,
638                                       0 /* allow_partial */ );
639     }
640   else
641     {
642       vlib_main_t *vm = vlib_get_main ();
643       svm_fifo_seg_t *segs = 0, *seg;
644       vlib_buffer_t *it = b;
645       u32 n_segs = 1;
646
647       vec_add2 (segs, seg, 1);
648       seg->data = (u8 *) hdr;
649       seg->len = sizeof (*hdr);
650       while (it)
651         {
652           vec_add2 (segs, seg, 1);
653           seg->data = vlib_buffer_get_current (it);
654           seg->len = it->current_length;
655           n_segs++;
656           if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT))
657             break;
658           it = vlib_get_buffer (vm, it->next_buffer);
659         }
660       rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs,
661                                       0 /* allow partial */ );
662       vec_free (segs);
663     }
664
665   if (queue_event && rv > 0)
666     {
667       /* Queue RX event on this fifo. Eventually these will need to be flushed
668        * by calling stream_server_flush_enqueue_events () */
669       session_worker_t *wrk;
670
671       wrk = session_main_get_worker (s->thread_index);
672       if (!(s->flags & SESSION_F_RX_EVT))
673         {
674           s->flags |= SESSION_F_RX_EVT;
675           vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
676         }
677
678       session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
679     }
680   return rv > 0 ? rv : 0;
681 }
682
683 int
684 session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
685                             u32 offset, u32 max_bytes)
686 {
687   session_t *s = session_get (tc->s_index, tc->thread_index);
688   return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
689 }
690
691 u32
692 session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
693 {
694   session_t *s = session_get (tc->s_index, tc->thread_index);
695   u32 rv;
696
697   rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
698   session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv);
699
700   if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes))
701     session_dequeue_notify (s);
702
703   return rv;
704 }
705
706 static inline int
707 session_notify_subscribers (u32 app_index, session_t * s,
708                             svm_fifo_t * f, session_evt_type_t evt_type)
709 {
710   app_worker_t *app_wrk;
711   application_t *app;
712   int i;
713
714   app = application_get (app_index);
715   if (!app)
716     return -1;
717
718   for (i = 0; i < f->shr->n_subscribers; i++)
719     {
720       app_wrk = application_get_worker (app, f->shr->subscribers[i]);
721       if (!app_wrk)
722         continue;
723       if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
724         return -1;
725     }
726
727   return 0;
728 }
729
730 /**
731  * Notify session peer that new data has been enqueued.
732  *
733  * @param s     Stream session for which the event is to be generated.
734  * @param lock  Flag to indicate if call should lock message queue.
735  *
736  * @return 0 on success or negative number if failed to send notification.
737  */
738 static inline int
739 session_enqueue_notify_inline (session_t * s)
740 {
741   app_worker_t *app_wrk;
742   u32 session_index;
743   u8 n_subscribers;
744
745   session_index = s->session_index;
746   n_subscribers = svm_fifo_n_subscribers (s->rx_fifo);
747
748   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
749   if (PREDICT_FALSE (!app_wrk))
750     {
751       SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
752       return 0;
753     }
754
755   SESSION_EVT (SESSION_EVT_ENQ, s, svm_fifo_max_dequeue_prod (s->rx_fifo));
756
757   s->flags &= ~SESSION_F_RX_EVT;
758
759   /* Application didn't confirm accept yet */
760   if (PREDICT_FALSE (s->session_state == SESSION_STATE_ACCEPTING))
761     return 0;
762
763   if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
764                                                      SESSION_IO_EVT_RX)))
765     return -1;
766
767   if (PREDICT_FALSE (n_subscribers))
768     {
769       s = session_get (session_index, vlib_get_thread_index ());
770       return session_notify_subscribers (app_wrk->app_index, s,
771                                          s->rx_fifo, SESSION_IO_EVT_RX);
772     }
773
774   return 0;
775 }
776
777 int
778 session_enqueue_notify (session_t * s)
779 {
780   return session_enqueue_notify_inline (s);
781 }
782
783 static void
784 session_enqueue_notify_rpc (void *arg)
785 {
786   u32 session_index = pointer_to_uword (arg);
787   session_t *s;
788
789   s = session_get_if_valid (session_index, vlib_get_thread_index ());
790   if (!s)
791     return;
792
793   session_enqueue_notify (s);
794 }
795
796 /**
797  * Like session_enqueue_notify, but can be called from a thread that does not
798  * own the session.
799  */
800 void
801 session_enqueue_notify_thread (session_handle_t sh)
802 {
803   u32 thread_index = session_thread_from_handle (sh);
804   u32 session_index = session_index_from_handle (sh);
805
806   /*
807    * Pass session index (u32) as opposed to handle (u64) in case pointers
808    * are not 64-bit.
809    */
810   session_send_rpc_evt_to_thread (thread_index,
811                                   session_enqueue_notify_rpc,
812                                   uword_to_pointer (session_index, void *));
813 }
814
815 int
816 session_dequeue_notify (session_t * s)
817 {
818   app_worker_t *app_wrk;
819
820   svm_fifo_clear_deq_ntf (s->tx_fifo);
821
822   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
823   if (PREDICT_FALSE (!app_wrk))
824     return -1;
825
826   if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
827                                                      SESSION_IO_EVT_TX)))
828     return -1;
829
830   if (PREDICT_FALSE (s->tx_fifo->shr->n_subscribers))
831     return session_notify_subscribers (app_wrk->app_index, s,
832                                        s->tx_fifo, SESSION_IO_EVT_TX);
833
834   return 0;
835 }
836
837 /**
838  * Flushes queue of sessions that are to be notified of new data
839  * enqueued events.
840  *
841  * @param thread_index Thread index for which the flush is to be performed.
842  * @return 0 on success or a positive number indicating the number of
843  *         failures due to API queue being full.
844  */
845 int
846 session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
847 {
848   session_worker_t *wrk = session_main_get_worker (thread_index);
849   session_t *s;
850   int i, errors = 0;
851   u32 *indices;
852
853   indices = wrk->session_to_enqueue[transport_proto];
854
855   for (i = 0; i < vec_len (indices); i++)
856     {
857       s = session_get_if_valid (indices[i], thread_index);
858       if (PREDICT_FALSE (!s))
859         {
860           errors++;
861           continue;
862         }
863
864       session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED,
865                            0 /* TODO/not needed */ );
866
867       if (PREDICT_FALSE (session_enqueue_notify_inline (s)))
868         errors++;
869     }
870
871   vec_reset_length (indices);
872   wrk->session_to_enqueue[transport_proto] = indices;
873
874   return errors;
875 }
876
877 int
878 session_main_flush_all_enqueue_events (u8 transport_proto)
879 {
880   vlib_thread_main_t *vtm = vlib_get_thread_main ();
881   int i, errors = 0;
882   for (i = 0; i < 1 + vtm->n_threads; i++)
883     errors += session_main_flush_enqueue_events (transport_proto, i);
884   return errors;
885 }
886
887 int
888 session_stream_connect_notify (transport_connection_t * tc,
889                                session_error_t err)
890 {
891   u32 opaque = 0, new_ti, new_si;
892   app_worker_t *app_wrk;
893   session_t *s = 0, *ho;
894
895   /*
896    * Cleanup half-open table
897    */
898   session_lookup_del_half_open (tc);
899
900   ho = ho_session_get (tc->s_index);
901   opaque = ho->opaque;
902   app_wrk = app_worker_get_if_valid (ho->app_wrk_index);
903   if (!app_wrk)
904     return -1;
905
906   if (err)
907     return app_worker_connect_notify (app_wrk, s, err, opaque);
908
909   s = session_alloc_for_connection (tc);
910   s->session_state = SESSION_STATE_CONNECTING;
911   s->app_wrk_index = app_wrk->wrk_index;
912   new_si = s->session_index;
913   new_ti = s->thread_index;
914
915   if ((err = app_worker_init_connected (app_wrk, s)))
916     {
917       session_free (s);
918       app_worker_connect_notify (app_wrk, 0, err, opaque);
919       return -1;
920     }
921
922   s = session_get (new_si, new_ti);
923   s->session_state = SESSION_STATE_READY;
924   session_lookup_add_connection (tc, session_handle (s));
925
926   if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque))
927     {
928       session_lookup_del_connection (tc);
929       /* Avoid notifying app about rejected session cleanup */
930       s = session_get (new_si, new_ti);
931       segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
932       session_free (s);
933       return -1;
934     }
935
936   return 0;
937 }
938
939 typedef union session_switch_pool_reply_args_
940 {
941   struct
942   {
943     u32 session_index;
944     u16 thread_index;
945     u8 is_closed;
946   };
947   u64 as_u64;
948 } session_switch_pool_reply_args_t;
949
950 STATIC_ASSERT (sizeof (session_switch_pool_reply_args_t) <= sizeof (uword),
951                "switch pool reply args size");
952
953 static void
954 session_switch_pool_reply (void *arg)
955 {
956   session_switch_pool_reply_args_t rargs;
957   session_t *s;
958
959   rargs.as_u64 = pointer_to_uword (arg);
960   s = session_get_if_valid (rargs.session_index, rargs.thread_index);
961   if (!s)
962     return;
963
964   /* Session closed during migration. Clean everything up */
965   if (rargs.is_closed)
966     {
967       transport_cleanup (session_get_transport_proto (s), s->connection_index,
968                          s->thread_index);
969       segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
970       session_free (s);
971       return;
972     }
973
974   /* Notify app that it has data on the new session */
975   session_enqueue_notify (s);
976 }
977
978 typedef struct _session_switch_pool_args
979 {
980   u32 session_index;
981   u32 thread_index;
982   u32 new_thread_index;
983   u32 new_session_index;
984 } session_switch_pool_args_t;
985
986 /**
987  * Notify old thread of the session pool switch
988  */
989 static void
990 session_switch_pool (void *cb_args)
991 {
992   session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
993   session_switch_pool_reply_args_t rargs;
994   session_handle_t new_sh;
995   segment_manager_t *sm;
996   app_worker_t *app_wrk;
997   session_t *s;
998
999   ASSERT (args->thread_index == vlib_get_thread_index ());
1000   s = session_get (args->session_index, args->thread_index);
1001
1002   /* Check if session closed during migration */
1003   rargs.is_closed = s->session_state >= SESSION_STATE_TRANSPORT_CLOSING;
1004
1005   transport_cleanup (session_get_transport_proto (s), s->connection_index,
1006                      s->thread_index);
1007
1008   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1009   if (app_wrk)
1010     {
1011       /* Cleanup fifo segment slice state for fifos */
1012       sm = app_worker_get_connect_segment_manager (app_wrk);
1013       segment_manager_detach_fifo (sm, &s->rx_fifo);
1014       segment_manager_detach_fifo (sm, &s->tx_fifo);
1015
1016       /* Notify app, using old session, about the migration event */
1017       if (!rargs.is_closed)
1018         {
1019           new_sh = session_make_handle (args->new_session_index,
1020                                         args->new_thread_index);
1021           app_worker_migrate_notify (app_wrk, s, new_sh);
1022         }
1023     }
1024
1025   /* Trigger app read and fifo updates on the new thread */
1026   rargs.session_index = args->new_session_index;
1027   rargs.thread_index = args->new_thread_index;
1028   session_send_rpc_evt_to_thread (args->new_thread_index,
1029                                   session_switch_pool_reply,
1030                                   uword_to_pointer (rargs.as_u64, void *));
1031
1032   session_free (s);
1033   clib_mem_free (cb_args);
1034 }
1035
1036 /**
1037  * Move dgram session to the right thread
1038  */
1039 int
1040 session_dgram_connect_notify (transport_connection_t * tc,
1041                               u32 old_thread_index, session_t ** new_session)
1042 {
1043   session_t *new_s;
1044   session_switch_pool_args_t *rpc_args;
1045   segment_manager_t *sm;
1046   app_worker_t *app_wrk;
1047
1048   /*
1049    * Clone half-open session to the right thread.
1050    */
1051   new_s = session_clone_safe (tc->s_index, old_thread_index);
1052   new_s->connection_index = tc->c_index;
1053   new_s->session_state = SESSION_STATE_READY;
1054   new_s->flags |= SESSION_F_IS_MIGRATING;
1055
1056   if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1057     session_lookup_add_connection (tc, session_handle (new_s));
1058
1059   app_wrk = app_worker_get_if_valid (new_s->app_wrk_index);
1060   if (app_wrk)
1061     {
1062       /* New set of fifos attached to the same shared memory */
1063       sm = app_worker_get_connect_segment_manager (app_wrk);
1064       segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s);
1065       segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s);
1066     }
1067
1068   /*
1069    * Ask thread owning the old session to clean it up and make us the tx
1070    * fifo owner
1071    */
1072   rpc_args = clib_mem_alloc (sizeof (*rpc_args));
1073   rpc_args->new_session_index = new_s->session_index;
1074   rpc_args->new_thread_index = new_s->thread_index;
1075   rpc_args->session_index = tc->s_index;
1076   rpc_args->thread_index = old_thread_index;
1077   session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
1078                                   rpc_args);
1079
1080   tc->s_index = new_s->session_index;
1081   new_s->connection_index = tc->c_index;
1082   *new_session = new_s;
1083   return 0;
1084 }
1085
1086 /**
1087  * Notification from transport that connection is being closed.
1088  *
1089  * A disconnect is sent to application but state is not removed. Once
1090  * disconnect is acknowledged by application, session disconnect is called.
1091  * Ultimately this leads to close being called on transport (passive close).
1092  */
1093 void
1094 session_transport_closing_notify (transport_connection_t * tc)
1095 {
1096   app_worker_t *app_wrk;
1097   session_t *s;
1098
1099   s = session_get (tc->s_index, tc->thread_index);
1100   if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1101     return;
1102   s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
1103   app_wrk = app_worker_get (s->app_wrk_index);
1104   app_worker_close_notify (app_wrk, s);
1105 }
1106
1107 /**
1108  * Notification from transport that connection is being deleted
1109  *
1110  * This removes the session if it is still valid. It should be called only on
1111  * previously fully established sessions. For instance failed connects should
1112  * call stream_session_connect_notify and indicate that the connect has
1113  * failed.
1114  */
1115 void
1116 session_transport_delete_notify (transport_connection_t * tc)
1117 {
1118   session_t *s;
1119
1120   /* App might've been removed already */
1121   if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1122     return;
1123
1124   switch (s->session_state)
1125     {
1126     case SESSION_STATE_CREATED:
1127       /* Session was created but accept notification was not yet sent to the
1128        * app. Cleanup everything. */
1129       session_lookup_del_session (s);
1130       segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1131       session_free (s);
1132       break;
1133     case SESSION_STATE_ACCEPTING:
1134     case SESSION_STATE_TRANSPORT_CLOSING:
1135     case SESSION_STATE_CLOSING:
1136     case SESSION_STATE_TRANSPORT_CLOSED:
1137       /* If transport finishes or times out before we get a reply
1138        * from the app, mark transport as closed and wait for reply
1139        * before removing the session. Cleanup session table in advance
1140        * because transport will soon be closed and closed sessions
1141        * are assumed to have been removed from the lookup table */
1142       session_lookup_del_session (s);
1143       s->session_state = SESSION_STATE_TRANSPORT_DELETED;
1144       session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1145       svm_fifo_dequeue_drop_all (s->tx_fifo);
1146       break;
1147     case SESSION_STATE_APP_CLOSED:
1148       /* Cleanup lookup table as transport needs to still be valid.
1149        * Program transport close to ensure that all session events
1150        * have been cleaned up. Once transport close is called, the
1151        * session is just removed because both transport and app have
1152        * confirmed the close*/
1153       session_lookup_del_session (s);
1154       s->session_state = SESSION_STATE_TRANSPORT_DELETED;
1155       session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1156       svm_fifo_dequeue_drop_all (s->tx_fifo);
1157       session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1158       break;
1159     case SESSION_STATE_TRANSPORT_DELETED:
1160       break;
1161     case SESSION_STATE_CLOSED:
1162       session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1163       session_delete (s);
1164       break;
1165     default:
1166       clib_warning ("session state %u", s->session_state);
1167       session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1168       session_delete (s);
1169       break;
1170     }
1171 }
1172
1173 /**
1174  * Notification from transport that it is closed
1175  *
1176  * Should be called by transport, prior to calling delete notify, once it
1177  * knows that no more data will be exchanged. This could serve as an
1178  * early acknowledgment of an active close especially if transport delete
1179  * can be delayed a long time, e.g., tcp time-wait.
1180  */
1181 void
1182 session_transport_closed_notify (transport_connection_t * tc)
1183 {
1184   app_worker_t *app_wrk;
1185   session_t *s;
1186
1187   if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1188     return;
1189
1190   /* Transport thinks that app requested close but it actually didn't.
1191    * Can happen for tcp:
1192    * 1)if fin and rst are received in close succession.
1193    * 2)if app shutdown the connection.  */
1194   if (s->session_state == SESSION_STATE_READY)
1195     {
1196       session_transport_closing_notify (tc);
1197       svm_fifo_dequeue_drop_all (s->tx_fifo);
1198       s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1199     }
1200   /* If app close has not been received or has not yet resulted in
1201    * a transport close, only mark the session transport as closed */
1202   else if (s->session_state <= SESSION_STATE_CLOSING)
1203     {
1204       s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1205     }
1206   /* If app also closed, switch to closed */
1207   else if (s->session_state == SESSION_STATE_APP_CLOSED)
1208     s->session_state = SESSION_STATE_CLOSED;
1209
1210   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1211   if (app_wrk)
1212     app_worker_transport_closed_notify (app_wrk, s);
1213 }
1214
1215 /**
1216  * Notify application that connection has been reset.
1217  */
1218 void
1219 session_transport_reset_notify (transport_connection_t * tc)
1220 {
1221   app_worker_t *app_wrk;
1222   session_t *s;
1223
1224   s = session_get (tc->s_index, tc->thread_index);
1225   svm_fifo_dequeue_drop_all (s->tx_fifo);
1226   if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1227     return;
1228   s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
1229   app_wrk = app_worker_get (s->app_wrk_index);
1230   app_worker_reset_notify (app_wrk, s);
1231 }
1232
1233 int
1234 session_stream_accept_notify (transport_connection_t * tc)
1235 {
1236   app_worker_t *app_wrk;
1237   session_t *s;
1238
1239   s = session_get (tc->s_index, tc->thread_index);
1240   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1241   if (!app_wrk)
1242     return -1;
1243   if (s->session_state != SESSION_STATE_CREATED)
1244     return 0;
1245   s->session_state = SESSION_STATE_ACCEPTING;
1246   if (app_worker_accept_notify (app_wrk, s))
1247     {
1248       /* On transport delete, no notifications should be sent. Unless, the
1249        * accept is retried and successful. */
1250       s->session_state = SESSION_STATE_CREATED;
1251       return -1;
1252     }
1253   return 0;
1254 }
1255
1256 /**
1257  * Accept a stream session. Optionally ping the server by callback.
1258  */
1259 int
1260 session_stream_accept (transport_connection_t * tc, u32 listener_index,
1261                        u32 thread_index, u8 notify)
1262 {
1263   session_t *s;
1264   int rv;
1265
1266   s = session_alloc_for_connection (tc);
1267   s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1268   s->session_state = SESSION_STATE_CREATED;
1269
1270   if ((rv = app_worker_init_accepted (s)))
1271     {
1272       session_free (s);
1273       return rv;
1274     }
1275
1276   session_lookup_add_connection (tc, session_handle (s));
1277
1278   /* Shoulder-tap the server */
1279   if (notify)
1280     {
1281       app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
1282       if ((rv = app_worker_accept_notify (app_wrk, s)))
1283         {
1284           session_lookup_del_session (s);
1285           segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1286           session_free (s);
1287           return rv;
1288         }
1289     }
1290
1291   return 0;
1292 }
1293
1294 int
1295 session_dgram_accept (transport_connection_t * tc, u32 listener_index,
1296                       u32 thread_index)
1297 {
1298   app_worker_t *app_wrk;
1299   session_t *s;
1300   int rv;
1301
1302   s = session_alloc_for_connection (tc);
1303   s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1304
1305   if ((rv = app_worker_init_accepted (s)))
1306     {
1307       session_free (s);
1308       return rv;
1309     }
1310
1311   session_lookup_add_connection (tc, session_handle (s));
1312
1313   app_wrk = app_worker_get (s->app_wrk_index);
1314   if ((rv = app_worker_accept_notify (app_wrk, s)))
1315     {
1316       session_lookup_del_session (s);
1317       segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1318       session_free (s);
1319       return rv;
1320     }
1321
1322   return 0;
1323 }
1324
1325 int
1326 session_open_cl (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
1327 {
1328   transport_connection_t *tc;
1329   transport_endpoint_cfg_t *tep;
1330   app_worker_t *app_wrk;
1331   session_handle_t sh;
1332   session_t *s;
1333   int rv;
1334
1335   tep = session_endpoint_to_transport_cfg (rmt);
1336   rv = transport_connect (rmt->transport_proto, tep);
1337   if (rv < 0)
1338     {
1339       SESSION_DBG ("Transport failed to open connection.");
1340       return rv;
1341     }
1342
1343   tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
1344
1345   /* For dgram type of service, allocate session and fifos now */
1346   app_wrk = app_worker_get (rmt->app_wrk_index);
1347   s = session_alloc_for_connection (tc);
1348   s->app_wrk_index = app_wrk->wrk_index;
1349   s->session_state = SESSION_STATE_OPENED;
1350   if (app_worker_init_connected (app_wrk, s))
1351     {
1352       session_free (s);
1353       return -1;
1354     }
1355
1356   sh = session_handle (s);
1357   *rsh = sh;
1358
1359   session_lookup_add_connection (tc, sh);
1360   return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, rmt->opaque);
1361 }
1362
1363 int
1364 session_open_vc (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
1365 {
1366   transport_connection_t *tc;
1367   transport_endpoint_cfg_t *tep;
1368   app_worker_t *app_wrk;
1369   session_t *ho;
1370   int rv;
1371
1372   tep = session_endpoint_to_transport_cfg (rmt);
1373   rv = transport_connect (rmt->transport_proto, tep);
1374   if (rv < 0)
1375     {
1376       SESSION_DBG ("Transport failed to open connection.");
1377       return rv;
1378     }
1379
1380   tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
1381
1382   app_wrk = app_worker_get (rmt->app_wrk_index);
1383
1384   /* If transport offers a vc service, only allocate established
1385    * session once the connection has been established.
1386    * In the meantime allocate half-open session for tracking purposes
1387    * associate half-open connection to it and add session to app-worker
1388    * half-open table. These are needed to allocate the established
1389    * session on transport notification, and to cleanup the half-open
1390    * session if the app detaches before connection establishment.
1391    */
1392   ho = session_alloc_for_half_open (tc);
1393   ho->app_wrk_index = app_wrk->wrk_index;
1394   ho->ho_index = app_worker_add_half_open (app_wrk, session_handle (ho));
1395   ho->opaque = rmt->opaque;
1396   *rsh = session_handle (ho);
1397
1398   if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1399     session_lookup_add_half_open (tc, tc->c_index);
1400
1401   return 0;
1402 }
1403
1404 int
1405 session_open_app (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
1406 {
1407   transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (rmt);
1408
1409   /* Not supported for now */
1410   *rsh = SESSION_INVALID_HANDLE;
1411   return transport_connect (rmt->transport_proto, tep_cfg);
1412 }
1413
1414 typedef int (*session_open_service_fn) (session_endpoint_cfg_t *,
1415                                         session_handle_t *);
1416
1417 /* *INDENT-OFF* */
1418 static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
1419   session_open_vc,
1420   session_open_cl,
1421   session_open_app,
1422 };
1423 /* *INDENT-ON* */
1424
1425 /**
1426  * Ask transport to open connection to remote transport endpoint.
1427  *
1428  * Stores handle for matching request with reply since the call can be
1429  * asynchronous. For instance, for TCP the 3-way handshake must complete
1430  * before reply comes. Session is only created once connection is established.
1431  *
1432  * @param app_index Index of the application requesting the connect
1433  * @param st Session type requested.
1434  * @param tep Remote transport endpoint
1435  * @param opaque Opaque data (typically, api_context) the application expects
1436  *               on open completion.
1437  */
1438 int
1439 session_open (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
1440 {
1441   transport_service_type_t tst;
1442   tst = transport_protocol_service_type (rmt->transport_proto);
1443   return session_open_srv_fns[tst](rmt, rsh);
1444 }
1445
1446 /**
1447  * Ask transport to listen on session endpoint.
1448  *
1449  * @param s Session for which listen will be called. Note that unlike
1450  *          established sessions, listen sessions are not associated to a
1451  *          thread.
1452  * @param sep Local endpoint to be listened on.
1453  */
1454 int
1455 session_listen (session_t * ls, session_endpoint_cfg_t * sep)
1456 {
1457   transport_endpoint_t *tep;
1458   int tc_index;
1459   u32 s_index;
1460
1461   /* Transport bind/listen */
1462   tep = session_endpoint_to_transport (sep);
1463   s_index = ls->session_index;
1464   tc_index = transport_start_listen (session_get_transport_proto (ls),
1465                                      s_index, tep);
1466
1467   if (tc_index < 0)
1468     return tc_index;
1469
1470   /* Attach transport to session. Lookup tables are populated by the app
1471    * worker because local tables (for ct sessions) are not backed by a fib */
1472   ls = listen_session_get (s_index);
1473   ls->connection_index = tc_index;
1474
1475   return 0;
1476 }
1477
1478 /**
1479  * Ask transport to stop listening on local transport endpoint.
1480  *
1481  * @param s Session to stop listening on. It must be in state LISTENING.
1482  */
1483 int
1484 session_stop_listen (session_t * s)
1485 {
1486   transport_proto_t tp = session_get_transport_proto (s);
1487   transport_connection_t *tc;
1488
1489   if (s->session_state != SESSION_STATE_LISTENING)
1490     return SESSION_E_NOLISTEN;
1491
1492   tc = transport_get_listener (tp, s->connection_index);
1493
1494   /* If no transport, assume everything was cleaned up already */
1495   if (!tc)
1496     return SESSION_E_NONE;
1497
1498   if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1499     session_lookup_del_connection (tc);
1500
1501   transport_stop_listen (tp, s->connection_index);
1502   return 0;
1503 }
1504
1505 /**
1506  * Initialize session half-closing procedure.
1507  *
1508  * Note that half-closing will not change the state of the session.
1509  */
1510 void
1511 session_half_close (session_t *s)
1512 {
1513   if (!s)
1514     return;
1515
1516   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_HALF_CLOSE);
1517 }
1518
1519 /**
1520  * Initialize session closing procedure.
1521  *
1522  * Request is always sent to session node to ensure that all outstanding
1523  * requests are served before transport is notified.
1524  */
1525 void
1526 session_close (session_t * s)
1527 {
1528   if (!s)
1529     return;
1530
1531   if (s->session_state >= SESSION_STATE_CLOSING)
1532     {
1533       /* Session will only be removed once both app and transport
1534        * acknowledge the close */
1535       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED
1536           || s->session_state == SESSION_STATE_TRANSPORT_DELETED)
1537         session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1538       return;
1539     }
1540
1541   s->session_state = SESSION_STATE_CLOSING;
1542   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1543 }
1544
1545 /**
1546  * Force a close without waiting for data to be flushed
1547  */
1548 void
1549 session_reset (session_t * s)
1550 {
1551   if (s->session_state >= SESSION_STATE_CLOSING)
1552     return;
1553   /* Drop all outstanding tx data */
1554   svm_fifo_dequeue_drop_all (s->tx_fifo);
1555   s->session_state = SESSION_STATE_CLOSING;
1556   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET);
1557 }
1558
1559 /**
1560  * Notify transport the session can be half-disconnected.
1561  *
1562  * Must be called from the session's thread.
1563  */
1564 void
1565 session_transport_half_close (session_t *s)
1566 {
1567   /* Only READY session can be half-closed */
1568   if (s->session_state != SESSION_STATE_READY)
1569     {
1570       return;
1571     }
1572
1573   transport_half_close (session_get_transport_proto (s), s->connection_index,
1574                         s->thread_index);
1575 }
1576
1577 /**
1578  * Notify transport the session can be disconnected. This should eventually
1579  * result in a delete notification that allows us to cleanup session state.
1580  * Called for both active/passive disconnects.
1581  *
1582  * Must be called from the session's thread.
1583  */
1584 void
1585 session_transport_close (session_t * s)
1586 {
1587   if (s->session_state >= SESSION_STATE_APP_CLOSED)
1588     {
1589       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1590         s->session_state = SESSION_STATE_CLOSED;
1591       /* If transport is already deleted, just free the session */
1592       else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1593         session_free_w_fifos (s);
1594       return;
1595     }
1596
1597   /* If the tx queue wasn't drained, the transport can continue to try
1598    * sending the outstanding data (in closed state it cannot). It MUST however
1599    * at one point, either after sending everything or after a timeout, call
1600    * delete notify. This will finally lead to the complete cleanup of the
1601    * session.
1602    */
1603   s->session_state = SESSION_STATE_APP_CLOSED;
1604
1605   transport_close (session_get_transport_proto (s), s->connection_index,
1606                    s->thread_index);
1607 }
1608
1609 /**
1610  * Force transport close
1611  */
1612 void
1613 session_transport_reset (session_t * s)
1614 {
1615   if (s->session_state >= SESSION_STATE_APP_CLOSED)
1616     {
1617       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1618         s->session_state = SESSION_STATE_CLOSED;
1619       else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1620         session_free_w_fifos (s);
1621       return;
1622     }
1623
1624   s->session_state = SESSION_STATE_APP_CLOSED;
1625   transport_reset (session_get_transport_proto (s), s->connection_index,
1626                    s->thread_index);
1627 }
1628
1629 /**
1630  * Cleanup transport and session state.
1631  *
1632  * Notify transport of the cleanup and free the session. This should
1633  * be called only if transport reported some error and is already
1634  * closed.
1635  */
1636 void
1637 session_transport_cleanup (session_t * s)
1638 {
1639   /* Delete from main lookup table before we axe the the transport */
1640   session_lookup_del_session (s);
1641   if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
1642     transport_cleanup (session_get_transport_proto (s), s->connection_index,
1643                        s->thread_index);
1644   /* Since we called cleanup, no delete notification will come. So, make
1645    * sure the session is properly freed. */
1646   segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1647   session_free (s);
1648 }
1649
1650 /**
1651  * Allocate worker mqs in share-able segment
1652  *
1653  * That can only be a newly created memfd segment, that must be mapped
1654  * by all apps/stack users unless private rx mqs are enabled.
1655  */
1656 void
1657 session_vpp_wrk_mqs_alloc (session_main_t *smm)
1658 {
1659   u32 mq_q_length = 2048, evt_size = sizeof (session_event_t);
1660   fifo_segment_t *mqs_seg = &smm->wrk_mqs_segment;
1661   svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1662   uword mqs_seg_size;
1663   int i;
1664
1665   mq_q_length = clib_max (mq_q_length, smm->configured_wrk_mq_length);
1666
1667   svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1668     { mq_q_length, evt_size, 0 }, { mq_q_length >> 1, 256, 0 }
1669   };
1670   cfg->consumer_pid = 0;
1671   cfg->n_rings = 2;
1672   cfg->q_nitems = mq_q_length;
1673   cfg->ring_cfgs = rc;
1674
1675   /*
1676    * Compute mqs segment size based on rings config and leave space
1677    * for passing extended configuration messages, i.e., data allocated
1678    * outside of the rings. If provided with a config value, accept it
1679    * if larger than minimum size.
1680    */
1681   mqs_seg_size = svm_msg_q_size_to_alloc (cfg) * vec_len (smm->wrk);
1682   mqs_seg_size = mqs_seg_size + (32 << 10);
1683   mqs_seg_size = clib_max (mqs_seg_size, smm->wrk_mqs_segment_size);
1684
1685   mqs_seg->ssvm.ssvm_size = mqs_seg_size;
1686   mqs_seg->ssvm.my_pid = getpid ();
1687   mqs_seg->ssvm.name = format (0, "%s%c", "session: wrk-mqs-segment", 0);
1688
1689   if (ssvm_server_init (&mqs_seg->ssvm, SSVM_SEGMENT_MEMFD))
1690     {
1691       clib_warning ("failed to initialize queue segment");
1692       return;
1693     }
1694
1695   fifo_segment_init (mqs_seg);
1696
1697   /* Special fifo segment that's filled only with mqs */
1698   mqs_seg->h->n_mqs = vec_len (smm->wrk);
1699
1700   for (i = 0; i < vec_len (smm->wrk); i++)
1701     smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (mqs_seg, i, cfg);
1702 }
1703
1704 fifo_segment_t *
1705 session_main_get_wrk_mqs_segment (void)
1706 {
1707   return &session_main.wrk_mqs_segment;
1708 }
1709
1710 u64
1711 session_segment_handle (session_t * s)
1712 {
1713   svm_fifo_t *f;
1714
1715   if (!s->rx_fifo)
1716     return SESSION_INVALID_HANDLE;
1717
1718   f = s->rx_fifo;
1719   return segment_manager_make_segment_handle (f->segment_manager,
1720                                               f->segment_index);
1721 }
1722
1723 /* *INDENT-OFF* */
1724 static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1725     session_tx_fifo_peek_and_snd,
1726     session_tx_fifo_dequeue_and_snd,
1727     session_tx_fifo_dequeue_internal,
1728     session_tx_fifo_dequeue_and_snd
1729 };
1730 /* *INDENT-ON* */
1731
1732 void
1733 session_register_transport (transport_proto_t transport_proto,
1734                             const transport_proto_vft_t * vft, u8 is_ip4,
1735                             u32 output_node)
1736 {
1737   session_main_t *smm = &session_main;
1738   session_type_t session_type;
1739   u32 next_index = ~0;
1740
1741   session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1742
1743   vec_validate (smm->session_type_to_next, session_type);
1744   vec_validate (smm->session_tx_fns, session_type);
1745
1746   if (output_node != ~0)
1747     next_index = vlib_node_add_next (vlib_get_main (),
1748                                      session_queue_node.index, output_node);
1749
1750   smm->session_type_to_next[session_type] = next_index;
1751   smm->session_tx_fns[session_type] =
1752     session_tx_fns[vft->transport_options.tx_type];
1753 }
1754
1755 transport_proto_t
1756 session_add_transport_proto (void)
1757 {
1758   session_main_t *smm = &session_main;
1759   session_worker_t *wrk;
1760   u32 thread;
1761
1762   smm->last_transport_proto_type += 1;
1763
1764   for (thread = 0; thread < vec_len (smm->wrk); thread++)
1765     {
1766       wrk = session_main_get_worker (thread);
1767       vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1768     }
1769
1770   return smm->last_transport_proto_type;
1771 }
1772
1773 transport_connection_t *
1774 session_get_transport (session_t * s)
1775 {
1776   if (s->session_state != SESSION_STATE_LISTENING)
1777     return transport_get_connection (session_get_transport_proto (s),
1778                                      s->connection_index, s->thread_index);
1779   else
1780     return transport_get_listener (session_get_transport_proto (s),
1781                                    s->connection_index);
1782 }
1783
1784 void
1785 session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl)
1786 {
1787   if (s->session_state != SESSION_STATE_LISTENING)
1788     return transport_get_endpoint (session_get_transport_proto (s),
1789                                    s->connection_index, s->thread_index, tep,
1790                                    is_lcl);
1791   else
1792     return transport_get_listener_endpoint (session_get_transport_proto (s),
1793                                             s->connection_index, tep, is_lcl);
1794 }
1795
1796 int
1797 session_transport_attribute (session_t *s, u8 is_get,
1798                              transport_endpt_attr_t *attr)
1799 {
1800   if (s->session_state < SESSION_STATE_READY)
1801     return -1;
1802
1803   return transport_connection_attribute (session_get_transport_proto (s),
1804                                          s->connection_index, s->thread_index,
1805                                          is_get, attr);
1806 }
1807
1808 transport_connection_t *
1809 listen_session_get_transport (session_t * s)
1810 {
1811   return transport_get_listener (session_get_transport_proto (s),
1812                                  s->connection_index);
1813 }
1814
1815 void
1816 session_queue_run_on_main_thread (vlib_main_t * vm)
1817 {
1818   ASSERT (vlib_get_thread_index () == 0);
1819   vlib_node_set_interrupt_pending (vm, session_queue_node.index);
1820 }
1821
1822 static clib_error_t *
1823 session_manager_main_enable (vlib_main_t * vm)
1824 {
1825   session_main_t *smm = &session_main;
1826   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1827   u32 num_threads, preallocated_sessions_per_worker;
1828   session_worker_t *wrk;
1829   int i;
1830
1831   /* We only initialize once and do not de-initialized on disable */
1832   if (smm->is_initialized)
1833     goto done;
1834
1835   num_threads = 1 /* main thread */  + vtm->n_threads;
1836
1837   if (num_threads < 1)
1838     return clib_error_return (0, "n_thread_stacks not set");
1839
1840   /* Allocate cache line aligned worker contexts */
1841   vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1842
1843   for (i = 0; i < num_threads; i++)
1844     {
1845       wrk = &smm->wrk[i];
1846       wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list);
1847       wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list);
1848       wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list);
1849       wrk->pending_connects = clib_llist_make_head (wrk->event_elts, evt_list);
1850       wrk->vm = vlib_get_main_by_index (i);
1851       wrk->last_vlib_time = vlib_time_now (vm);
1852       wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
1853       wrk->timerfd = -1;
1854       vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1855
1856       if (num_threads > 1)
1857         clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
1858
1859       if (!smm->no_adaptive && smm->use_private_rx_mqs)
1860         session_wrk_enable_adaptive_mode (wrk);
1861     }
1862
1863   /* Allocate vpp event queues segment and queue */
1864   session_vpp_wrk_mqs_alloc (smm);
1865
1866   /* Initialize segment manager properties */
1867   segment_manager_main_init ();
1868
1869   /* Preallocate sessions */
1870   if (smm->preallocated_sessions)
1871     {
1872       if (num_threads == 1)
1873         {
1874           pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
1875         }
1876       else
1877         {
1878           int j;
1879           preallocated_sessions_per_worker =
1880             (1.1 * (f64) smm->preallocated_sessions /
1881              (f64) (num_threads - 1));
1882
1883           for (j = 1; j < num_threads; j++)
1884             {
1885               pool_init_fixed (smm->wrk[j].sessions,
1886                                preallocated_sessions_per_worker);
1887             }
1888         }
1889     }
1890
1891   session_lookup_init ();
1892   app_namespaces_init ();
1893   transport_init ();
1894   smm->is_initialized = 1;
1895
1896 done:
1897
1898   smm->is_enabled = 1;
1899
1900   /* Enable transports */
1901   transport_enable_disable (vm, 1);
1902   session_debug_init ();
1903
1904   return 0;
1905 }
1906
1907 static void
1908 session_manager_main_disable (vlib_main_t * vm)
1909 {
1910   transport_enable_disable (vm, 0 /* is_en */ );
1911 }
1912
1913 void
1914 session_node_enable_disable (u8 is_en)
1915 {
1916   u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
1917   u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1918   session_main_t *sm = &session_main;
1919   vlib_main_t *vm;
1920   vlib_node_t *n;
1921   int n_vlibs, i;
1922
1923   n_vlibs = vlib_get_n_threads ();
1924   for (i = 0; i < n_vlibs; i++)
1925     {
1926       vm = vlib_get_main_by_index (i);
1927       /* main thread with workers and not polling */
1928       if (i == 0 && n_vlibs > 1)
1929         {
1930           vlib_node_set_state (vm, session_queue_node.index, mstate);
1931           if (is_en)
1932             {
1933               session_main_get_worker (0)->state = SESSION_WRK_INTERRUPT;
1934               vlib_node_set_state (vm, session_queue_process_node.index,
1935                                    state);
1936               n = vlib_get_node (vm, session_queue_process_node.index);
1937               vlib_start_process (vm, n->runtime_index);
1938             }
1939           else
1940             {
1941               vlib_process_signal_event_mt (vm,
1942                                             session_queue_process_node.index,
1943                                             SESSION_Q_PROCESS_STOP, 0);
1944             }
1945           if (!sm->poll_main)
1946             continue;
1947         }
1948       vlib_node_set_state (vm, session_queue_node.index, state);
1949     }
1950
1951   if (sm->use_private_rx_mqs)
1952     application_enable_rx_mqs_nodes (is_en);
1953 }
1954
1955 clib_error_t *
1956 vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1957 {
1958   clib_error_t *error = 0;
1959   if (is_en)
1960     {
1961       if (session_main.is_enabled)
1962         return 0;
1963
1964       error = session_manager_main_enable (vm);
1965       session_node_enable_disable (is_en);
1966     }
1967   else
1968     {
1969       session_main.is_enabled = 0;
1970       session_manager_main_disable (vm);
1971       session_node_enable_disable (is_en);
1972     }
1973
1974   return error;
1975 }
1976
1977 clib_error_t *
1978 session_main_init (vlib_main_t * vm)
1979 {
1980   session_main_t *smm = &session_main;
1981
1982   smm->is_enabled = 0;
1983   smm->session_enable_asap = 0;
1984   smm->poll_main = 0;
1985   smm->use_private_rx_mqs = 0;
1986   smm->no_adaptive = 0;
1987   smm->last_transport_proto_type = TRANSPORT_PROTO_SRTP;
1988
1989   return 0;
1990 }
1991
1992 static clib_error_t *
1993 session_main_loop_init (vlib_main_t * vm)
1994 {
1995   session_main_t *smm = &session_main;
1996   if (smm->session_enable_asap)
1997     {
1998       vlib_worker_thread_barrier_sync (vm);
1999       vnet_session_enable_disable (vm, 1 /* is_en */ );
2000       vlib_worker_thread_barrier_release (vm);
2001     }
2002   return 0;
2003 }
2004
2005 VLIB_INIT_FUNCTION (session_main_init);
2006 VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init);
2007
2008 static clib_error_t *
2009 session_config_fn (vlib_main_t * vm, unformat_input_t * input)
2010 {
2011   session_main_t *smm = &session_main;
2012   u32 nitems;
2013   uword tmp;
2014
2015   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2016     {
2017       if (unformat (input, "wrk-mq-length %d", &nitems))
2018         {
2019           if (nitems >= 2048)
2020             smm->configured_wrk_mq_length = nitems;
2021           else
2022             clib_warning ("event queue length %d too small, ignored", nitems);
2023         }
2024       else if (unformat (input, "preallocated-sessions %d",
2025                          &smm->preallocated_sessions))
2026         ;
2027       else if (unformat (input, "v4-session-table-buckets %d",
2028                          &smm->configured_v4_session_table_buckets))
2029         ;
2030       else if (unformat (input, "v4-halfopen-table-buckets %d",
2031                          &smm->configured_v4_halfopen_table_buckets))
2032         ;
2033       else if (unformat (input, "v6-session-table-buckets %d",
2034                          &smm->configured_v6_session_table_buckets))
2035         ;
2036       else if (unformat (input, "v6-halfopen-table-buckets %d",
2037                          &smm->configured_v6_halfopen_table_buckets))
2038         ;
2039       else if (unformat (input, "v4-session-table-memory %U",
2040                          unformat_memory_size, &tmp))
2041         {
2042           if (tmp >= 0x100000000)
2043             return clib_error_return (0, "memory size %llx (%lld) too large",
2044                                       tmp, tmp);
2045           smm->configured_v4_session_table_memory = tmp;
2046         }
2047       else if (unformat (input, "v4-halfopen-table-memory %U",
2048                          unformat_memory_size, &tmp))
2049         {
2050           if (tmp >= 0x100000000)
2051             return clib_error_return (0, "memory size %llx (%lld) too large",
2052                                       tmp, tmp);
2053           smm->configured_v4_halfopen_table_memory = tmp;
2054         }
2055       else if (unformat (input, "v6-session-table-memory %U",
2056                          unformat_memory_size, &tmp))
2057         {
2058           if (tmp >= 0x100000000)
2059             return clib_error_return (0, "memory size %llx (%lld) too large",
2060                                       tmp, tmp);
2061           smm->configured_v6_session_table_memory = tmp;
2062         }
2063       else if (unformat (input, "v6-halfopen-table-memory %U",
2064                          unformat_memory_size, &tmp))
2065         {
2066           if (tmp >= 0x100000000)
2067             return clib_error_return (0, "memory size %llx (%lld) too large",
2068                                       tmp, tmp);
2069           smm->configured_v6_halfopen_table_memory = tmp;
2070         }
2071       else if (unformat (input, "local-endpoints-table-memory %U",
2072                          unformat_memory_size, &tmp))
2073         {
2074           if (tmp >= 0x100000000)
2075             return clib_error_return (0, "memory size %llx (%lld) too large",
2076                                       tmp, tmp);
2077           smm->local_endpoints_table_memory = tmp;
2078         }
2079       else if (unformat (input, "local-endpoints-table-buckets %d",
2080                          &smm->local_endpoints_table_buckets))
2081         ;
2082       else if (unformat (input, "enable"))
2083         smm->session_enable_asap = 1;
2084       else if (unformat (input, "use-app-socket-api"))
2085         (void) appns_sapi_enable_disable (1 /* is_enable */);
2086       else if (unformat (input, "poll-main"))
2087         smm->poll_main = 1;
2088       else if (unformat (input, "use-private-rx-mqs"))
2089         smm->use_private_rx_mqs = 1;
2090       else if (unformat (input, "no-adaptive"))
2091         smm->no_adaptive = 1;
2092       /*
2093        * Deprecated but maintained for compatibility
2094        */
2095       else if (unformat (input, "evt_qs_memfd_seg"))
2096         ;
2097       else if (unformat (input, "segment-baseva 0x%lx", &tmp))
2098         ;
2099       else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
2100                          &tmp))
2101         ;
2102       else if (unformat (input, "event-queue-length %d", &nitems))
2103         {
2104           if (nitems >= 2048)
2105             smm->configured_wrk_mq_length = nitems;
2106           else
2107             clib_warning ("event queue length %d too small, ignored", nitems);
2108         }
2109       else
2110         return clib_error_return (0, "unknown input `%U'",
2111                                   format_unformat_error, input);
2112     }
2113   return 0;
2114 }
2115
2116 VLIB_CONFIG_FUNCTION (session_config_fn, "session");
2117
2118 /*
2119  * fd.io coding-style-patch-verification: ON
2120  *
2121  * Local Variables:
2122  * eval: (c-set-style "gnu")
2123  * End:
2124  */