session: support half-close connection
[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 = session_get (tc->s_index, tc->thread_index);
318   app_wrk = app_worker_get (s->app_wrk_index);
319   app_worker_del_half_open (app_wrk, s->ho_index);
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 static 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 (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
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 (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   session_lookup_add_connection (tc, sh);
1260   return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque);
1261 }
1262
1263 int
1264 session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1265 {
1266   transport_connection_t *tc;
1267   transport_endpoint_cfg_t *tep;
1268   app_worker_t *app_wrk;
1269   session_t *s;
1270   int rv;
1271
1272   tep = session_endpoint_to_transport_cfg (rmt);
1273   rv = transport_connect (rmt->transport_proto, tep);
1274   if (rv < 0)
1275     {
1276       SESSION_DBG ("Transport failed to open connection.");
1277       return rv;
1278     }
1279
1280   tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
1281
1282   app_wrk = app_worker_get (app_wrk_index);
1283
1284   /* If transport offers a vc service, only allocate established
1285    * session once the connection has been established.
1286    * In the meantime allocate half-open session for tracking purposes
1287    * associate half-open connection to it and add session to app-worker
1288    * half-open table. These are needed to allocate the established
1289    * session on transport notification, and to cleanup the half-open
1290    * session if the app detaches before connection establishment.
1291    */
1292   s = session_alloc_for_half_open (tc);
1293   s->app_wrk_index = app_wrk->wrk_index;
1294   s->ho_index = app_worker_add_half_open (app_wrk, session_handle (s));
1295   s->opaque = opaque;
1296
1297   session_lookup_add_half_open (tc, tc->c_index);
1298
1299   return 0;
1300 }
1301
1302 int
1303 session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1304 {
1305   session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt;
1306   transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep);
1307
1308   sep->app_wrk_index = app_wrk_index;
1309   sep->opaque = opaque;
1310
1311   return transport_connect (rmt->transport_proto, tep_cfg);
1312 }
1313
1314 typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
1315
1316 /* *INDENT-OFF* */
1317 static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
1318   session_open_vc,
1319   session_open_cl,
1320   session_open_app,
1321 };
1322 /* *INDENT-ON* */
1323
1324 /**
1325  * Ask transport to open connection to remote transport endpoint.
1326  *
1327  * Stores handle for matching request with reply since the call can be
1328  * asynchronous. For instance, for TCP the 3-way handshake must complete
1329  * before reply comes. Session is only created once connection is established.
1330  *
1331  * @param app_index Index of the application requesting the connect
1332  * @param st Session type requested.
1333  * @param tep Remote transport endpoint
1334  * @param opaque Opaque data (typically, api_context) the application expects
1335  *               on open completion.
1336  */
1337 int
1338 session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1339 {
1340   transport_service_type_t tst;
1341   tst = transport_protocol_service_type (rmt->transport_proto);
1342   return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
1343 }
1344
1345 /**
1346  * Ask transport to listen on session endpoint.
1347  *
1348  * @param s Session for which listen will be called. Note that unlike
1349  *          established sessions, listen sessions are not associated to a
1350  *          thread.
1351  * @param sep Local endpoint to be listened on.
1352  */
1353 int
1354 session_listen (session_t * ls, session_endpoint_cfg_t * sep)
1355 {
1356   transport_endpoint_t *tep;
1357   int tc_index;
1358   u32 s_index;
1359
1360   /* Transport bind/listen */
1361   tep = session_endpoint_to_transport (sep);
1362   s_index = ls->session_index;
1363   tc_index = transport_start_listen (session_get_transport_proto (ls),
1364                                      s_index, tep);
1365
1366   if (tc_index < 0)
1367     return tc_index;
1368
1369   /* Attach transport to session. Lookup tables are populated by the app
1370    * worker because local tables (for ct sessions) are not backed by a fib */
1371   ls = listen_session_get (s_index);
1372   ls->connection_index = tc_index;
1373
1374   return 0;
1375 }
1376
1377 /**
1378  * Ask transport to stop listening on local transport endpoint.
1379  *
1380  * @param s Session to stop listening on. It must be in state LISTENING.
1381  */
1382 int
1383 session_stop_listen (session_t * s)
1384 {
1385   transport_proto_t tp = session_get_transport_proto (s);
1386   transport_connection_t *tc;
1387
1388   if (s->session_state != SESSION_STATE_LISTENING)
1389     return SESSION_E_NOLISTEN;
1390
1391   tc = transport_get_listener (tp, s->connection_index);
1392
1393   /* If no transport, assume everything was cleaned up already */
1394   if (!tc)
1395     return SESSION_E_NONE;
1396
1397   if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1398     session_lookup_del_connection (tc);
1399
1400   transport_stop_listen (tp, s->connection_index);
1401   return 0;
1402 }
1403
1404 /**
1405  * Initialize session half-closing procedure.
1406  *
1407  * Note that half-closing will not change the state of the session.
1408  */
1409 void
1410 session_half_close (session_t *s)
1411 {
1412   if (!s)
1413     return;
1414
1415   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_HALF_CLOSE);
1416 }
1417
1418 /**
1419  * Initialize session closing procedure.
1420  *
1421  * Request is always sent to session node to ensure that all outstanding
1422  * requests are served before transport is notified.
1423  */
1424 void
1425 session_close (session_t * s)
1426 {
1427   if (!s)
1428     return;
1429
1430   if (s->session_state >= SESSION_STATE_CLOSING)
1431     {
1432       /* Session will only be removed once both app and transport
1433        * acknowledge the close */
1434       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED
1435           || s->session_state == SESSION_STATE_TRANSPORT_DELETED)
1436         session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1437       return;
1438     }
1439
1440   s->session_state = SESSION_STATE_CLOSING;
1441   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1442 }
1443
1444 /**
1445  * Force a close without waiting for data to be flushed
1446  */
1447 void
1448 session_reset (session_t * s)
1449 {
1450   if (s->session_state >= SESSION_STATE_CLOSING)
1451     return;
1452   /* Drop all outstanding tx data */
1453   svm_fifo_dequeue_drop_all (s->tx_fifo);
1454   s->session_state = SESSION_STATE_CLOSING;
1455   session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET);
1456 }
1457
1458 /**
1459  * Notify transport the session can be half-disconnected.
1460  *
1461  * Must be called from the session's thread.
1462  */
1463 void
1464 session_transport_half_close (session_t *s)
1465 {
1466   /* Only READY session can be half-closed */
1467   if (s->session_state != SESSION_STATE_READY)
1468     {
1469       return;
1470     }
1471
1472   transport_half_close (session_get_transport_proto (s), s->connection_index,
1473                         s->thread_index);
1474 }
1475
1476 /**
1477  * Notify transport the session can be disconnected. This should eventually
1478  * result in a delete notification that allows us to cleanup session state.
1479  * Called for both active/passive disconnects.
1480  *
1481  * Must be called from the session's thread.
1482  */
1483 void
1484 session_transport_close (session_t * s)
1485 {
1486   if (s->session_state >= SESSION_STATE_APP_CLOSED)
1487     {
1488       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1489         s->session_state = SESSION_STATE_CLOSED;
1490       /* If transport is already deleted, just free the session */
1491       else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1492         session_free_w_fifos (s);
1493       return;
1494     }
1495
1496   /* If the tx queue wasn't drained, the transport can continue to try
1497    * sending the outstanding data (in closed state it cannot). It MUST however
1498    * at one point, either after sending everything or after a timeout, call
1499    * delete notify. This will finally lead to the complete cleanup of the
1500    * session.
1501    */
1502   s->session_state = SESSION_STATE_APP_CLOSED;
1503
1504   transport_close (session_get_transport_proto (s), s->connection_index,
1505                    s->thread_index);
1506 }
1507
1508 /**
1509  * Force transport close
1510  */
1511 void
1512 session_transport_reset (session_t * s)
1513 {
1514   if (s->session_state >= SESSION_STATE_APP_CLOSED)
1515     {
1516       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1517         s->session_state = SESSION_STATE_CLOSED;
1518       else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1519         session_free_w_fifos (s);
1520       return;
1521     }
1522
1523   s->session_state = SESSION_STATE_APP_CLOSED;
1524   transport_reset (session_get_transport_proto (s), s->connection_index,
1525                    s->thread_index);
1526 }
1527
1528 /**
1529  * Cleanup transport and session state.
1530  *
1531  * Notify transport of the cleanup and free the session. This should
1532  * be called only if transport reported some error and is already
1533  * closed.
1534  */
1535 void
1536 session_transport_cleanup (session_t * s)
1537 {
1538   /* Delete from main lookup table before we axe the the transport */
1539   session_lookup_del_session (s);
1540   if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
1541     transport_cleanup (session_get_transport_proto (s), s->connection_index,
1542                        s->thread_index);
1543   /* Since we called cleanup, no delete notification will come. So, make
1544    * sure the session is properly freed. */
1545   segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1546   session_free (s);
1547 }
1548
1549 /**
1550  * Allocate event queues in the shared-memory segment
1551  *
1552  * That can only be a newly created memfd segment, that must be
1553  * mapped by all apps/stack users.
1554  */
1555 void
1556 session_vpp_event_queues_allocate (session_main_t * smm)
1557 {
1558   u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
1559   fifo_segment_t *eqs = &smm->evt_qs_segment;
1560   uword eqs_size = 64 << 20;
1561   pid_t vpp_pid = getpid ();
1562   int i;
1563
1564   if (smm->configured_event_queue_length)
1565     evt_q_length = smm->configured_event_queue_length;
1566
1567   if (smm->evt_qs_segment_size)
1568     eqs_size = smm->evt_qs_segment_size;
1569
1570   eqs->ssvm.ssvm_size = eqs_size;
1571   eqs->ssvm.my_pid = vpp_pid;
1572   eqs->ssvm.name = format (0, "%s%c", "session: evt-qs-segment", 0);
1573   /* clib_mem_vm_map_shared consumes first page before requested_va */
1574   eqs->ssvm.requested_va = smm->session_baseva + clib_mem_get_page_size ();
1575
1576   if (ssvm_server_init (&eqs->ssvm, SSVM_SEGMENT_MEMFD))
1577     {
1578       clib_warning ("failed to initialize queue segment");
1579       return;
1580     }
1581
1582   fifo_segment_init (eqs);
1583
1584   /* Special fifo segment that's filled only with mqs */
1585   eqs->h->n_mqs = vec_len (smm->wrk);
1586
1587   for (i = 0; i < vec_len (smm->wrk); i++)
1588     {
1589       svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1590       svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1591         {evt_q_length, evt_size, 0}
1592         ,
1593         {evt_q_length >> 1, 256, 0}
1594       };
1595       cfg->consumer_pid = 0;
1596       cfg->n_rings = 2;
1597       cfg->q_nitems = evt_q_length;
1598       cfg->ring_cfgs = rc;
1599
1600       smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (eqs, i, cfg);
1601     }
1602 }
1603
1604 fifo_segment_t *
1605 session_main_get_evt_q_segment (void)
1606 {
1607   return &session_main.evt_qs_segment;
1608 }
1609
1610 u64
1611 session_segment_handle (session_t * s)
1612 {
1613   svm_fifo_t *f;
1614
1615   if (!s->rx_fifo)
1616     return SESSION_INVALID_HANDLE;
1617
1618   f = s->rx_fifo;
1619   return segment_manager_make_segment_handle (f->segment_manager,
1620                                               f->segment_index);
1621 }
1622
1623 /* *INDENT-OFF* */
1624 static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1625     session_tx_fifo_peek_and_snd,
1626     session_tx_fifo_dequeue_and_snd,
1627     session_tx_fifo_dequeue_internal,
1628     session_tx_fifo_dequeue_and_snd
1629 };
1630 /* *INDENT-ON* */
1631
1632 void
1633 session_register_transport (transport_proto_t transport_proto,
1634                             const transport_proto_vft_t * vft, u8 is_ip4,
1635                             u32 output_node)
1636 {
1637   session_main_t *smm = &session_main;
1638   session_type_t session_type;
1639   u32 next_index = ~0;
1640
1641   session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1642
1643   vec_validate (smm->session_type_to_next, session_type);
1644   vec_validate (smm->session_tx_fns, session_type);
1645
1646   if (output_node != ~0)
1647     next_index = vlib_node_add_next (vlib_get_main (),
1648                                      session_queue_node.index, output_node);
1649
1650   smm->session_type_to_next[session_type] = next_index;
1651   smm->session_tx_fns[session_type] =
1652     session_tx_fns[vft->transport_options.tx_type];
1653 }
1654
1655 transport_proto_t
1656 session_add_transport_proto (void)
1657 {
1658   session_main_t *smm = &session_main;
1659   session_worker_t *wrk;
1660   u32 thread;
1661
1662   smm->last_transport_proto_type += 1;
1663
1664   for (thread = 0; thread < vec_len (smm->wrk); thread++)
1665     {
1666       wrk = session_main_get_worker (thread);
1667       vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1668     }
1669
1670   return smm->last_transport_proto_type;
1671 }
1672
1673 transport_connection_t *
1674 session_get_transport (session_t * s)
1675 {
1676   if (s->session_state != SESSION_STATE_LISTENING)
1677     return transport_get_connection (session_get_transport_proto (s),
1678                                      s->connection_index, s->thread_index);
1679   else
1680     return transport_get_listener (session_get_transport_proto (s),
1681                                    s->connection_index);
1682 }
1683
1684 void
1685 session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl)
1686 {
1687   if (s->session_state != SESSION_STATE_LISTENING)
1688     return transport_get_endpoint (session_get_transport_proto (s),
1689                                    s->connection_index, s->thread_index, tep,
1690                                    is_lcl);
1691   else
1692     return transport_get_listener_endpoint (session_get_transport_proto (s),
1693                                             s->connection_index, tep, is_lcl);
1694 }
1695
1696 int
1697 session_transport_attribute (session_t *s, u8 is_get,
1698                              transport_endpt_attr_t *attr)
1699 {
1700   if (s->session_state < SESSION_STATE_READY)
1701     return -1;
1702
1703   return transport_connection_attribute (session_get_transport_proto (s),
1704                                          s->connection_index, s->thread_index,
1705                                          is_get, attr);
1706 }
1707
1708 transport_connection_t *
1709 listen_session_get_transport (session_t * s)
1710 {
1711   return transport_get_listener (session_get_transport_proto (s),
1712                                  s->connection_index);
1713 }
1714
1715 void
1716 session_queue_run_on_main_thread (vlib_main_t * vm)
1717 {
1718   ASSERT (vlib_get_thread_index () == 0);
1719   vlib_node_set_interrupt_pending (vm, session_queue_node.index);
1720 }
1721
1722 static clib_error_t *
1723 session_manager_main_enable (vlib_main_t * vm)
1724 {
1725   session_main_t *smm = &session_main;
1726   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1727   u32 num_threads, preallocated_sessions_per_worker;
1728   session_worker_t *wrk;
1729   int i;
1730
1731   /* We only initialize once and do not de-initialized on disable */
1732   if (smm->is_initialized)
1733     goto done;
1734
1735   num_threads = 1 /* main thread */  + vtm->n_threads;
1736
1737   if (num_threads < 1)
1738     return clib_error_return (0, "n_thread_stacks not set");
1739
1740   /* Allocate cache line aligned worker contexts */
1741   vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1742
1743   for (i = 0; i < num_threads; i++)
1744     {
1745       wrk = &smm->wrk[i];
1746       wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list);
1747       wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list);
1748       wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list);
1749       wrk->vm = vlib_get_main_by_index (i);
1750       wrk->last_vlib_time = vlib_time_now (vm);
1751       wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
1752       vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1753
1754       if (num_threads > 1)
1755         clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
1756
1757       if (!smm->no_adaptive && smm->use_private_rx_mqs)
1758         session_wrk_enable_adaptive_mode (wrk);
1759     }
1760
1761   /* Allocate vpp event queues segment and queue */
1762   session_vpp_event_queues_allocate (smm);
1763
1764   /* Initialize segment manager properties */
1765   segment_manager_main_init ();
1766
1767   /* Preallocate sessions */
1768   if (smm->preallocated_sessions)
1769     {
1770       if (num_threads == 1)
1771         {
1772           pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
1773         }
1774       else
1775         {
1776           int j;
1777           preallocated_sessions_per_worker =
1778             (1.1 * (f64) smm->preallocated_sessions /
1779              (f64) (num_threads - 1));
1780
1781           for (j = 1; j < num_threads; j++)
1782             {
1783               pool_init_fixed (smm->wrk[j].sessions,
1784                                preallocated_sessions_per_worker);
1785             }
1786         }
1787     }
1788
1789   session_lookup_init ();
1790   app_namespaces_init ();
1791   transport_init ();
1792   smm->is_initialized = 1;
1793
1794 done:
1795
1796   smm->is_enabled = 1;
1797
1798   /* Enable transports */
1799   transport_enable_disable (vm, 1);
1800   session_debug_init ();
1801
1802   return 0;
1803 }
1804
1805 static void
1806 session_manager_main_disable (vlib_main_t * vm)
1807 {
1808   transport_enable_disable (vm, 0 /* is_en */ );
1809 }
1810
1811 void
1812 session_node_enable_disable (u8 is_en)
1813 {
1814   u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
1815   u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1816   session_main_t *sm = &session_main;
1817   vlib_main_t *vm;
1818   vlib_node_t *n;
1819   int n_vlibs, i;
1820
1821   n_vlibs = vlib_get_n_threads ();
1822   for (i = 0; i < n_vlibs; i++)
1823     {
1824       vm = vlib_get_main_by_index (i);
1825       /* main thread with workers and not polling */
1826       if (i == 0 && n_vlibs > 1)
1827         {
1828           vlib_node_set_state (vm, session_queue_node.index, mstate);
1829           if (is_en)
1830             {
1831               vlib_node_set_state (vm, session_queue_process_node.index,
1832                                    state);
1833               n = vlib_get_node (vm, session_queue_process_node.index);
1834               vlib_start_process (vm, n->runtime_index);
1835             }
1836           else
1837             {
1838               vlib_process_signal_event_mt (vm,
1839                                             session_queue_process_node.index,
1840                                             SESSION_Q_PROCESS_STOP, 0);
1841             }
1842           if (!sm->poll_main)
1843             continue;
1844         }
1845       vlib_node_set_state (vm, session_queue_node.index, state);
1846     }
1847
1848   if (sm->use_private_rx_mqs)
1849     application_enable_rx_mqs_nodes (is_en);
1850 }
1851
1852 clib_error_t *
1853 vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1854 {
1855   clib_error_t *error = 0;
1856   if (is_en)
1857     {
1858       if (session_main.is_enabled)
1859         return 0;
1860
1861       error = session_manager_main_enable (vm);
1862       session_node_enable_disable (is_en);
1863     }
1864   else
1865     {
1866       session_main.is_enabled = 0;
1867       session_manager_main_disable (vm);
1868       session_node_enable_disable (is_en);
1869     }
1870
1871   return error;
1872 }
1873
1874 clib_error_t *
1875 session_main_init (vlib_main_t * vm)
1876 {
1877   session_main_t *smm = &session_main;
1878
1879   smm->is_enabled = 0;
1880   smm->session_enable_asap = 0;
1881   smm->poll_main = 0;
1882   smm->use_private_rx_mqs = 0;
1883   smm->no_adaptive = 0;
1884   smm->session_baseva = HIGH_SEGMENT_BASEVA;
1885
1886 #if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1887   smm->session_va_space_size = 128ULL << 30;
1888   smm->evt_qs_segment_size = 64 << 20;
1889 #else
1890   smm->session_va_space_size = 128 << 20;
1891   smm->evt_qs_segment_size = 1 << 20;
1892 #endif
1893
1894   smm->last_transport_proto_type = TRANSPORT_PROTO_DTLS;
1895
1896   return 0;
1897 }
1898
1899 static clib_error_t *
1900 session_main_loop_init (vlib_main_t * vm)
1901 {
1902   session_main_t *smm = &session_main;
1903   if (smm->session_enable_asap)
1904     {
1905       vlib_worker_thread_barrier_sync (vm);
1906       vnet_session_enable_disable (vm, 1 /* is_en */ );
1907       vlib_worker_thread_barrier_release (vm);
1908     }
1909   return 0;
1910 }
1911
1912 VLIB_INIT_FUNCTION (session_main_init);
1913 VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init);
1914
1915 static clib_error_t *
1916 session_config_fn (vlib_main_t * vm, unformat_input_t * input)
1917 {
1918   session_main_t *smm = &session_main;
1919   u32 nitems;
1920   uword tmp;
1921
1922   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1923     {
1924       if (unformat (input, "event-queue-length %d", &nitems))
1925         {
1926           if (nitems >= 2048)
1927             smm->configured_event_queue_length = nitems;
1928           else
1929             clib_warning ("event queue length %d too small, ignored", nitems);
1930         }
1931       else if (unformat (input, "preallocated-sessions %d",
1932                          &smm->preallocated_sessions))
1933         ;
1934       else if (unformat (input, "v4-session-table-buckets %d",
1935                          &smm->configured_v4_session_table_buckets))
1936         ;
1937       else if (unformat (input, "v4-halfopen-table-buckets %d",
1938                          &smm->configured_v4_halfopen_table_buckets))
1939         ;
1940       else if (unformat (input, "v6-session-table-buckets %d",
1941                          &smm->configured_v6_session_table_buckets))
1942         ;
1943       else if (unformat (input, "v6-halfopen-table-buckets %d",
1944                          &smm->configured_v6_halfopen_table_buckets))
1945         ;
1946       else if (unformat (input, "v4-session-table-memory %U",
1947                          unformat_memory_size, &tmp))
1948         {
1949           if (tmp >= 0x100000000)
1950             return clib_error_return (0, "memory size %llx (%lld) too large",
1951                                       tmp, tmp);
1952           smm->configured_v4_session_table_memory = tmp;
1953         }
1954       else if (unformat (input, "v4-halfopen-table-memory %U",
1955                          unformat_memory_size, &tmp))
1956         {
1957           if (tmp >= 0x100000000)
1958             return clib_error_return (0, "memory size %llx (%lld) too large",
1959                                       tmp, tmp);
1960           smm->configured_v4_halfopen_table_memory = tmp;
1961         }
1962       else if (unformat (input, "v6-session-table-memory %U",
1963                          unformat_memory_size, &tmp))
1964         {
1965           if (tmp >= 0x100000000)
1966             return clib_error_return (0, "memory size %llx (%lld) too large",
1967                                       tmp, tmp);
1968           smm->configured_v6_session_table_memory = tmp;
1969         }
1970       else if (unformat (input, "v6-halfopen-table-memory %U",
1971                          unformat_memory_size, &tmp))
1972         {
1973           if (tmp >= 0x100000000)
1974             return clib_error_return (0, "memory size %llx (%lld) too large",
1975                                       tmp, tmp);
1976           smm->configured_v6_halfopen_table_memory = tmp;
1977         }
1978       else if (unformat (input, "local-endpoints-table-memory %U",
1979                          unformat_memory_size, &tmp))
1980         {
1981           if (tmp >= 0x100000000)
1982             return clib_error_return (0, "memory size %llx (%lld) too large",
1983                                       tmp, tmp);
1984           smm->local_endpoints_table_memory = tmp;
1985         }
1986       else if (unformat (input, "local-endpoints-table-buckets %d",
1987                          &smm->local_endpoints_table_buckets))
1988         ;
1989       /* Deprecated but maintained for compatibility */
1990       else if (unformat (input, "evt_qs_memfd_seg"))
1991         ;
1992       else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
1993                          &smm->evt_qs_segment_size))
1994         ;
1995       else if (unformat (input, "enable"))
1996         smm->session_enable_asap = 1;
1997       else if (unformat (input, "segment-baseva 0x%lx", &smm->session_baseva))
1998         ;
1999       else if (unformat (input, "use-app-socket-api"))
2000         appns_sapi_enable ();
2001       else if (unformat (input, "poll-main"))
2002         smm->poll_main = 1;
2003       else if (unformat (input, "use-private-rx-mqs"))
2004         smm->use_private_rx_mqs = 1;
2005       else if (unformat (input, "no-adaptive"))
2006         smm->no_adaptive = 1;
2007       else
2008         return clib_error_return (0, "unknown input `%U'",
2009                                   format_unformat_error, input);
2010     }
2011   return 0;
2012 }
2013
2014 VLIB_CONFIG_FUNCTION (session_config_fn, "session");
2015
2016 /*
2017  * fd.io coding-style-patch-verification: ON
2018  *
2019  * Local Variables:
2020  * eval: (c-set-style "gnu")
2021  * End:
2022  */