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