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