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