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