session: refactor local/cut-through listens
[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/session_debug.h>
22 #include <vnet/session/application.h>
23 #include <vnet/dpo/load_balance.h>
24 #include <vnet/fib/ip4_fib.h>
25
26 session_manager_main_t session_manager_main;
27
28 static inline int
29 session_send_evt_to_thread (void *data, void *args, u32 thread_index,
30                             session_evt_type_t evt_type)
31 {
32   session_event_t *evt;
33   svm_msg_q_msg_t msg;
34   svm_msg_q_t *mq;
35   u32 tries = 0, max_tries;
36
37   mq = session_manager_get_vpp_event_queue (thread_index);
38   while (svm_msg_q_try_lock (mq))
39     {
40       max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
41       if (tries++ == max_tries)
42         {
43           SESSION_DBG ("failed to enqueue evt");
44           return -1;
45         }
46     }
47   if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
48     {
49       svm_msg_q_unlock (mq);
50       return -2;
51     }
52   msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
53   if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
54     {
55       svm_msg_q_unlock (mq);
56       return -2;
57     }
58   evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
59   evt->event_type = evt_type;
60   switch (evt_type)
61     {
62     case FIFO_EVENT_RPC:
63       evt->rpc_args.fp = data;
64       evt->rpc_args.arg = args;
65       break;
66     case FIFO_EVENT_APP_TX:
67     case SESSION_IO_EVT_TX_FLUSH:
68     case FIFO_EVENT_BUILTIN_RX:
69       evt->fifo = data;
70       break;
71     case FIFO_EVENT_BUILTIN_TX:
72     case FIFO_EVENT_DISCONNECT:
73       evt->session_handle = session_handle ((session_t *) data);
74       break;
75     default:
76       clib_warning ("evt unhandled!");
77       svm_msg_q_unlock (mq);
78       return -1;
79     }
80
81   svm_msg_q_add_and_unlock (mq, &msg);
82   return 0;
83 }
84
85 int
86 session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
87 {
88   return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
89 }
90
91 int
92 session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
93                                       session_evt_type_t evt_type)
94 {
95   return session_send_evt_to_thread (data, 0, thread_index, evt_type);
96 }
97
98 int
99 session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type)
100 {
101   /* only event supported for now is disconnect */
102   ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
103   return session_send_evt_to_thread (s, 0, s->thread_index,
104                                      FIFO_EVENT_DISCONNECT);
105 }
106
107 void
108 session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
109 {
110   if (thread_index != vlib_get_thread_index ())
111     session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
112   else
113     {
114       void (*fnp) (void *) = fp;
115       fnp (rpc_args);
116     }
117 }
118
119 static void
120 session_program_transport_close (session_t * s)
121 {
122   u32 thread_index = vlib_get_thread_index ();
123   session_manager_worker_t *wrk;
124   session_event_t *evt;
125
126   /* If we are in the handler thread, or being called with the worker barrier
127    * held, just append a new event to pending disconnects vector. */
128   if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
129     {
130       wrk = session_manager_get_worker (s->thread_index);
131       vec_add2 (wrk->pending_disconnects, evt, 1);
132       clib_memset (evt, 0, sizeof (*evt));
133       evt->session_handle = session_handle (s);
134       evt->event_type = FIFO_EVENT_DISCONNECT;
135     }
136   else
137     session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT);
138 }
139
140 session_t *
141 session_alloc (u32 thread_index)
142 {
143   session_manager_worker_t *wrk = &session_manager_main.wrk[thread_index];
144   session_t *s;
145   u8 will_expand = 0;
146   pool_get_aligned_will_expand (wrk->sessions, will_expand,
147                                 CLIB_CACHE_LINE_BYTES);
148   /* If we have peekers, let them finish */
149   if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
150     {
151       clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
152       pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
153       clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
154     }
155   else
156     {
157       pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
158     }
159   clib_memset (s, 0, sizeof (*s));
160   s->session_index = s - wrk->sessions;
161   s->thread_index = thread_index;
162   return s;
163 }
164
165 void
166 session_free (session_t * s)
167 {
168   pool_put (session_manager_main.wrk[s->thread_index].sessions, s);
169   if (CLIB_DEBUG)
170     clib_memset (s, 0xFA, sizeof (*s));
171 }
172
173 void
174 session_free_w_fifos (session_t * s)
175 {
176   segment_manager_dealloc_fifos (s->svm_segment_index, s->rx_fifo,
177                                  s->tx_fifo);
178   session_free (s);
179 }
180
181 /**
182  * Cleans up session and lookup table.
183  *
184  * Transport connection must still be valid.
185  */
186 static void
187 session_delete (session_t * s)
188 {
189   int rv;
190
191   /* Delete from the main lookup table. */
192   if ((rv = session_lookup_del_session (s)))
193     clib_warning ("hash delete error, rv %d", rv);
194
195   session_free_w_fifos (s);
196 }
197
198 static session_t *
199 session_alloc_for_connection (transport_connection_t * tc)
200 {
201   session_t *s;
202   u32 thread_index = tc->thread_index;
203
204   ASSERT (thread_index == vlib_get_thread_index ()
205           || transport_protocol_is_cl (tc->proto));
206
207   s = session_alloc (thread_index);
208   s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
209   s->enqueue_epoch = (u64) ~ 0;
210   s->session_state = SESSION_STATE_CLOSED;
211
212   /* Attach transport to session and vice versa */
213   s->connection_index = tc->c_index;
214   tc->s_index = s->session_index;
215   return s;
216 }
217
218 /**
219  * Discards bytes from buffer chain
220  *
221  * It discards n_bytes_to_drop starting at first buffer after chain_b
222  */
223 always_inline void
224 session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
225                                      vlib_buffer_t ** chain_b,
226                                      u32 n_bytes_to_drop)
227 {
228   vlib_buffer_t *next = *chain_b;
229   u32 to_drop = n_bytes_to_drop;
230   ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
231   while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
232     {
233       next = vlib_get_buffer (vm, next->next_buffer);
234       if (next->current_length > to_drop)
235         {
236           vlib_buffer_advance (next, to_drop);
237           to_drop = 0;
238         }
239       else
240         {
241           to_drop -= next->current_length;
242           next->current_length = 0;
243         }
244     }
245   *chain_b = next;
246
247   if (to_drop == 0)
248     b->total_length_not_including_first_buffer -= n_bytes_to_drop;
249 }
250
251 /**
252  * Enqueue buffer chain tail
253  */
254 always_inline int
255 session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
256                             u32 offset, u8 is_in_order)
257 {
258   vlib_buffer_t *chain_b;
259   u32 chain_bi, len, diff;
260   vlib_main_t *vm = vlib_get_main ();
261   u8 *data;
262   u32 written = 0;
263   int rv = 0;
264
265   if (is_in_order && offset)
266     {
267       diff = offset - b->current_length;
268       if (diff > b->total_length_not_including_first_buffer)
269         return 0;
270       chain_b = b;
271       session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
272       chain_bi = vlib_get_buffer_index (vm, chain_b);
273     }
274   else
275     chain_bi = b->next_buffer;
276
277   do
278     {
279       chain_b = vlib_get_buffer (vm, chain_bi);
280       data = vlib_buffer_get_current (chain_b);
281       len = chain_b->current_length;
282       if (!len)
283         continue;
284       if (is_in_order)
285         {
286           rv = svm_fifo_enqueue_nowait (s->rx_fifo, len, data);
287           if (rv == len)
288             {
289               written += rv;
290             }
291           else if (rv < len)
292             {
293               return (rv > 0) ? (written + rv) : written;
294             }
295           else if (rv > len)
296             {
297               written += rv;
298
299               /* written more than what was left in chain */
300               if (written > b->total_length_not_including_first_buffer)
301                 return written;
302
303               /* drop the bytes that have already been delivered */
304               session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
305             }
306         }
307       else
308         {
309           rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
310           if (rv)
311             {
312               clib_warning ("failed to enqueue multi-buffer seg");
313               return -1;
314             }
315           offset += len;
316         }
317     }
318   while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
319           ? chain_b->next_buffer : 0));
320
321   if (is_in_order)
322     return written;
323
324   return 0;
325 }
326
327 /*
328  * Enqueue data for delivery to session peer. Does not notify peer of enqueue
329  * event but on request can queue notification events for later delivery by
330  * calling stream_server_flush_enqueue_events().
331  *
332  * @param tc Transport connection which is to be enqueued data
333  * @param b Buffer to be enqueued
334  * @param offset Offset at which to start enqueueing if out-of-order
335  * @param queue_event Flag to indicate if peer is to be notified or if event
336  *                    is to be queued. The former is useful when more data is
337  *                    enqueued and only one event is to be generated.
338  * @param is_in_order Flag to indicate if data is in order
339  * @return Number of bytes enqueued or a negative value if enqueueing failed.
340  */
341 int
342 session_enqueue_stream_connection (transport_connection_t * tc,
343                                    vlib_buffer_t * b, u32 offset,
344                                    u8 queue_event, u8 is_in_order)
345 {
346   session_t *s;
347   int enqueued = 0, rv, in_order_off;
348
349   s = session_get (tc->s_index, tc->thread_index);
350
351   if (is_in_order)
352     {
353       enqueued = svm_fifo_enqueue_nowait (s->rx_fifo,
354                                           b->current_length,
355                                           vlib_buffer_get_current (b));
356       if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
357                          && enqueued >= 0))
358         {
359           in_order_off = enqueued > b->current_length ? enqueued : 0;
360           rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
361           if (rv > 0)
362             enqueued += rv;
363         }
364     }
365   else
366     {
367       rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
368                                          b->current_length,
369                                          vlib_buffer_get_current (b));
370       if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
371         session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
372       /* if something was enqueued, report even this as success for ooo
373        * segment handling */
374       return rv;
375     }
376
377   if (queue_event)
378     {
379       /* Queue RX event on this fifo. Eventually these will need to be flushed
380        * by calling stream_server_flush_enqueue_events () */
381       session_manager_worker_t *wrk;
382
383       wrk = session_manager_get_worker (s->thread_index);
384       if (s->enqueue_epoch != wrk->current_enqueue_epoch[tc->proto])
385         {
386           s->enqueue_epoch = wrk->current_enqueue_epoch[tc->proto];
387           vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
388         }
389     }
390
391   return enqueued;
392 }
393
394 int
395 session_enqueue_dgram_connection (session_t * s,
396                                   session_dgram_hdr_t * hdr,
397                                   vlib_buffer_t * b, u8 proto, u8 queue_event)
398 {
399   int enqueued = 0, rv, in_order_off;
400
401   ASSERT (svm_fifo_max_enqueue (s->rx_fifo)
402           >= b->current_length + sizeof (*hdr));
403
404   svm_fifo_enqueue_nowait (s->rx_fifo, sizeof (session_dgram_hdr_t),
405                            (u8 *) hdr);
406   enqueued = svm_fifo_enqueue_nowait (s->rx_fifo, b->current_length,
407                                       vlib_buffer_get_current (b));
408   if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
409     {
410       in_order_off = enqueued > b->current_length ? enqueued : 0;
411       rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
412       if (rv > 0)
413         enqueued += rv;
414     }
415   if (queue_event)
416     {
417       /* Queue RX event on this fifo. Eventually these will need to be flushed
418        * by calling stream_server_flush_enqueue_events () */
419       session_manager_worker_t *wrk;
420
421       wrk = session_manager_get_worker (s->thread_index);
422       if (s->enqueue_epoch != wrk->current_enqueue_epoch[proto])
423         {
424           s->enqueue_epoch = wrk->current_enqueue_epoch[proto];
425           vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
426         }
427     }
428   return enqueued;
429 }
430
431 /** Check if we have space in rx fifo to push more bytes */
432 u8
433 stream_session_no_space (transport_connection_t * tc, u32 thread_index,
434                          u16 data_len)
435 {
436   session_t *s = session_get (tc->s_index, thread_index);
437
438   if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
439     return 1;
440
441   if (data_len > svm_fifo_max_enqueue (s->rx_fifo))
442     return 1;
443
444   return 0;
445 }
446
447 u32
448 session_tx_fifo_max_dequeue (transport_connection_t * tc)
449 {
450   session_t *s = session_get (tc->s_index, tc->thread_index);
451   if (!s->tx_fifo)
452     return 0;
453   return svm_fifo_max_dequeue (s->tx_fifo);
454 }
455
456 int
457 stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
458                            u32 offset, u32 max_bytes)
459 {
460   session_t *s = session_get (tc->s_index, tc->thread_index);
461   return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
462 }
463
464 u32
465 session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
466 {
467   session_t *s = session_get (tc->s_index, tc->thread_index);
468   return svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
469 }
470
471 static inline int
472 session_notify_subscribers (u32 app_index, session_t * s,
473                             svm_fifo_t * f, session_evt_type_t evt_type)
474 {
475   app_worker_t *app_wrk;
476   application_t *app;
477   int i;
478
479   app = application_get (app_index);
480   if (!app)
481     return -1;
482
483   for (i = 0; i < f->n_subscribers; i++)
484     {
485       app_wrk = application_get_worker (app, f->subscribers[i]);
486       if (!app_wrk)
487         continue;
488       if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
489         return -1;
490     }
491
492   return 0;
493 }
494
495 /**
496  * Notify session peer that new data has been enqueued.
497  *
498  * @param s     Stream session for which the event is to be generated.
499  * @param lock  Flag to indicate if call should lock message queue.
500  *
501  * @return 0 on success or negative number if failed to send notification.
502  */
503 static inline int
504 session_enqueue_notify (session_t * s)
505 {
506   app_worker_t *app_wrk;
507
508   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
509   if (PREDICT_FALSE (!app_wrk))
510     {
511       SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
512       return 0;
513     }
514
515   /* *INDENT-OFF* */
516   SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
517       ed->data[0] = FIFO_EVENT_APP_RX;
518       ed->data[1] = svm_fifo_max_dequeue (s->rx_fifo);
519   }));
520   /* *INDENT-ON* */
521
522   if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
523                                                      FIFO_EVENT_APP_RX)))
524     return -1;
525
526   if (PREDICT_FALSE (svm_fifo_n_subscribers (s->rx_fifo)))
527     return session_notify_subscribers (app_wrk->app_index, s,
528                                        s->rx_fifo, FIFO_EVENT_APP_RX);
529
530   return 0;
531 }
532
533 int
534 session_dequeue_notify (session_t * s)
535 {
536   app_worker_t *app_wrk;
537
538   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
539   if (PREDICT_FALSE (!app_wrk))
540     return -1;
541
542   if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
543                                                      FIFO_EVENT_APP_TX)))
544     return -1;
545
546   if (PREDICT_FALSE (s->tx_fifo->n_subscribers))
547     return session_notify_subscribers (app_wrk->app_index, s,
548                                        s->tx_fifo, FIFO_EVENT_APP_TX);
549
550   svm_fifo_clear_tx_ntf (s->tx_fifo);
551
552   return 0;
553 }
554
555 /**
556  * Flushes queue of sessions that are to be notified of new data
557  * enqueued events.
558  *
559  * @param thread_index Thread index for which the flush is to be performed.
560  * @return 0 on success or a positive number indicating the number of
561  *         failures due to API queue being full.
562  */
563 int
564 session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
565 {
566   session_manager_worker_t *wrk = session_manager_get_worker (thread_index);
567   session_t *s;
568   int i, errors = 0;
569   u32 *indices;
570
571   indices = wrk->session_to_enqueue[transport_proto];
572
573   for (i = 0; i < vec_len (indices); i++)
574     {
575       s = session_get_if_valid (indices[i], thread_index);
576       if (PREDICT_FALSE (!s))
577         {
578           errors++;
579           continue;
580         }
581       if (PREDICT_FALSE (session_enqueue_notify (s)))
582         errors++;
583     }
584
585   vec_reset_length (indices);
586   wrk->session_to_enqueue[transport_proto] = indices;
587   wrk->current_enqueue_epoch[transport_proto]++;
588
589   return errors;
590 }
591
592 int
593 session_manager_flush_all_enqueue_events (u8 transport_proto)
594 {
595   vlib_thread_main_t *vtm = vlib_get_thread_main ();
596   int i, errors = 0;
597   for (i = 0; i < 1 + vtm->n_threads; i++)
598     errors += session_manager_flush_enqueue_events (transport_proto, i);
599   return errors;
600 }
601
602 /**
603  * Init fifo tail and head pointers
604  *
605  * Useful if transport uses absolute offsets for tracking ooo segments.
606  */
607 void
608 stream_session_init_fifos_pointers (transport_connection_t * tc,
609                                     u32 rx_pointer, u32 tx_pointer)
610 {
611   session_t *s;
612   s = session_get (tc->s_index, tc->thread_index);
613   svm_fifo_init_pointers (s->rx_fifo, rx_pointer);
614   svm_fifo_init_pointers (s->tx_fifo, tx_pointer);
615 }
616
617 int
618 session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
619 {
620   u32 opaque = 0, new_ti, new_si;
621   app_worker_t *app_wrk;
622   session_t *s = 0;
623   u64 ho_handle;
624
625   /*
626    * Find connection handle and cleanup half-open table
627    */
628   ho_handle = session_lookup_half_open_handle (tc);
629   if (ho_handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
630     {
631       SESSION_DBG ("half-open was removed!");
632       return -1;
633     }
634   session_lookup_del_half_open (tc);
635
636   /* Get the app's index from the handle we stored when opening connection
637    * and the opaque (api_context for external apps) from transport session
638    * index */
639   app_wrk = app_worker_get_if_valid (ho_handle >> 32);
640   if (!app_wrk)
641     return -1;
642
643   opaque = tc->s_index;
644
645   if (is_fail)
646     return app_worker_connect_notify (app_wrk, s, opaque);
647
648   s = session_alloc_for_connection (tc);
649   s->session_state = SESSION_STATE_CONNECTING;
650   s->app_wrk_index = app_wrk->wrk_index;
651   new_si = s->session_index;
652   new_ti = s->thread_index;
653
654   if (app_worker_init_connected (app_wrk, s))
655     {
656       session_free (s);
657       app_worker_connect_notify (app_wrk, 0, opaque);
658       return -1;
659     }
660
661   if (app_worker_connect_notify (app_wrk, s, opaque))
662     {
663       s = session_get (new_si, new_ti);
664       session_free_w_fifos (s);
665       return -1;
666     }
667
668   s = session_get (new_si, new_ti);
669   s->session_state = SESSION_STATE_READY;
670   session_lookup_add_connection (tc, session_handle (s));
671
672   return 0;
673 }
674
675 typedef struct _session_switch_pool_args
676 {
677   u32 session_index;
678   u32 thread_index;
679   u32 new_thread_index;
680   u32 new_session_index;
681 } session_switch_pool_args_t;
682
683 static void
684 session_switch_pool (void *cb_args)
685 {
686   session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
687   session_t *s;
688   ASSERT (args->thread_index == vlib_get_thread_index ());
689   s = session_get (args->session_index, args->thread_index);
690   s->tx_fifo->master_session_index = args->new_session_index;
691   s->tx_fifo->master_thread_index = args->new_thread_index;
692   transport_cleanup (session_get_transport_proto (s), s->connection_index,
693                      s->thread_index);
694   session_free (s);
695   clib_mem_free (cb_args);
696 }
697
698 /**
699  * Move dgram session to the right thread
700  */
701 int
702 session_dgram_connect_notify (transport_connection_t * tc,
703                               u32 old_thread_index, session_t ** new_session)
704 {
705   session_t *new_s;
706   session_switch_pool_args_t *rpc_args;
707
708   /*
709    * Clone half-open session to the right thread.
710    */
711   new_s = session_clone_safe (tc->s_index, old_thread_index);
712   new_s->connection_index = tc->c_index;
713   new_s->rx_fifo->master_session_index = new_s->session_index;
714   new_s->rx_fifo->master_thread_index = new_s->thread_index;
715   new_s->session_state = SESSION_STATE_READY;
716   session_lookup_add_connection (tc, session_handle (new_s));
717
718   /*
719    * Ask thread owning the old session to clean it up and make us the tx
720    * fifo owner
721    */
722   rpc_args = clib_mem_alloc (sizeof (*rpc_args));
723   rpc_args->new_session_index = new_s->session_index;
724   rpc_args->new_thread_index = new_s->thread_index;
725   rpc_args->session_index = tc->s_index;
726   rpc_args->thread_index = old_thread_index;
727   session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
728                                   rpc_args);
729
730   tc->s_index = new_s->session_index;
731   new_s->connection_index = tc->c_index;
732   *new_session = new_s;
733   return 0;
734 }
735
736 /**
737  * Notification from transport that connection is being closed.
738  *
739  * A disconnect is sent to application but state is not removed. Once
740  * disconnect is acknowledged by application, session disconnect is called.
741  * Ultimately this leads to close being called on transport (passive close).
742  */
743 void
744 session_transport_closing_notify (transport_connection_t * tc)
745 {
746   app_worker_t *app_wrk;
747   application_t *app;
748   session_t *s;
749
750   s = session_get (tc->s_index, tc->thread_index);
751   if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
752     return;
753   s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
754   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
755   if (!app_wrk)
756     return;
757   app = application_get (app_wrk->app_index);
758   app->cb_fns.session_disconnect_callback (s);
759 }
760
761 /**
762  * Notification from transport that connection is being deleted
763  *
764  * This removes the session if it is still valid. It should be called only on
765  * previously fully established sessions. For instance failed connects should
766  * call stream_session_connect_notify and indicate that the connect has
767  * failed.
768  */
769 void
770 session_transport_delete_notify (transport_connection_t * tc)
771 {
772   session_t *s;
773
774   /* App might've been removed already */
775   if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
776     return;
777
778   /* Make sure we don't try to send anything more */
779   svm_fifo_dequeue_drop_all (s->tx_fifo);
780
781   switch (s->session_state)
782     {
783     case SESSION_STATE_CREATED:
784       /* Session was created but accept notification was not yet sent to the
785        * app. Cleanup everything. */
786       session_lookup_del_session (s);
787       session_free_w_fifos (s);
788       break;
789     case SESSION_STATE_ACCEPTING:
790     case SESSION_STATE_TRANSPORT_CLOSING:
791       /* If transport finishes or times out before we get a reply
792        * from the app, mark transport as closed and wait for reply
793        * before removing the session. Cleanup session table in advance
794        * because transport will soon be closed and closed sessions
795        * are assumed to have been removed from the lookup table */
796       session_lookup_del_session (s);
797       s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
798       break;
799     case SESSION_STATE_CLOSING:
800     case SESSION_STATE_CLOSED_WAITING:
801       /* Cleanup lookup table as transport needs to still be valid.
802        * Program transport close to ensure that all session events
803        * have been cleaned up. Once transport close is called, the
804        * session is just removed because both transport and app have
805        * confirmed the close*/
806       session_lookup_del_session (s);
807       s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
808       session_program_transport_close (s);
809       break;
810     case SESSION_STATE_TRANSPORT_CLOSED:
811       break;
812     case SESSION_STATE_CLOSED:
813       session_delete (s);
814       break;
815     default:
816       clib_warning ("session state %u", s->session_state);
817       session_delete (s);
818       break;
819     }
820 }
821
822 /**
823  * Notification from transport that session can be closed
824  *
825  * Should be called by transport only if it was closed with non-empty
826  * tx fifo and once it decides to begin the closing procedure prior to
827  * issuing a delete notify. This gives the chance to the session layer
828  * to cleanup any outstanding events.
829  */
830 void
831 session_transport_closed_notify (transport_connection_t * tc)
832 {
833   session_t *s;
834
835   if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
836     return;
837
838   /* If app close has not been received or has not yet resulted in
839    * a transport close, only mark the session transport as closed */
840   if (s->session_state <= SESSION_STATE_CLOSING)
841     {
842       session_lookup_del_session (s);
843       s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
844     }
845   else
846     s->session_state = SESSION_STATE_CLOSED;
847 }
848
849 /**
850  * Notify application that connection has been reset.
851  */
852 void
853 session_transport_reset_notify (transport_connection_t * tc)
854 {
855   session_t *s;
856   app_worker_t *app_wrk;
857   application_t *app;
858   s = session_get (tc->s_index, tc->thread_index);
859   svm_fifo_dequeue_drop_all (s->tx_fifo);
860   if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
861     return;
862   s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
863   app_wrk = app_worker_get (s->app_wrk_index);
864   app = application_get (app_wrk->app_index);
865   app->cb_fns.session_reset_callback (s);
866 }
867
868 int
869 session_stream_accept_notify (transport_connection_t * tc)
870 {
871   app_worker_t *app_wrk;
872   session_t *s;
873
874   s = session_get (tc->s_index, tc->thread_index);
875   app_wrk = app_worker_get_if_valid (s->app_wrk_index);
876   if (!app_wrk)
877     return -1;
878   s->session_state = SESSION_STATE_ACCEPTING;
879   return app_worker_accept_notify (app_wrk, s);
880 }
881
882 /**
883  * Accept a stream session. Optionally ping the server by callback.
884  */
885 int
886 session_stream_accept (transport_connection_t * tc, u32 listener_index,
887                        u8 notify)
888 {
889   session_t *s;
890   int rv;
891
892   s = session_alloc_for_connection (tc);
893   s->listener_index = listener_index;
894   s->session_state = SESSION_STATE_CREATED;
895
896   if ((rv = app_worker_init_accepted (s)))
897     return rv;
898
899   session_lookup_add_connection (tc, session_handle (s));
900
901   /* Shoulder-tap the server */
902   if (notify)
903     {
904       app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
905       return app_worker_accept_notify (app_wrk, s);
906     }
907
908   return 0;
909 }
910
911 int
912 session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
913 {
914   transport_connection_t *tc;
915   transport_endpoint_cfg_t *tep;
916   app_worker_t *app_wrk;
917   session_t *s;
918   int rv;
919
920   tep = session_endpoint_to_transport_cfg (rmt);
921   rv = transport_connect (rmt->transport_proto, tep);
922   if (rv < 0)
923     {
924       SESSION_DBG ("Transport failed to open connection.");
925       return VNET_API_ERROR_SESSION_CONNECT;
926     }
927
928   tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
929
930   /* For dgram type of service, allocate session and fifos now */
931   app_wrk = app_worker_get (app_wrk_index);
932   s = session_alloc_for_connection (tc);
933   s->app_wrk_index = app_wrk->wrk_index;
934   s->session_state = SESSION_STATE_OPENED;
935   if (app_worker_init_connected (app_wrk, s))
936     {
937       session_free (s);
938       return -1;
939     }
940
941   return app_worker_connect_notify (app_wrk, s, opaque);
942 }
943
944 int
945 session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
946 {
947   transport_connection_t *tc;
948   transport_endpoint_cfg_t *tep;
949   u64 handle;
950   int rv;
951
952   tep = session_endpoint_to_transport_cfg (rmt);
953   rv = transport_connect (rmt->transport_proto, tep);
954   if (rv < 0)
955     {
956       SESSION_DBG ("Transport failed to open connection.");
957       return VNET_API_ERROR_SESSION_CONNECT;
958     }
959
960   tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
961
962   /* If transport offers a stream service, only allocate session once the
963    * connection has been established.
964    * Add connection to half-open table and save app and tc index. The
965    * latter is needed to help establish the connection while the former
966    * is needed when the connect notify comes and we have to notify the
967    * external app
968    */
969   handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
970   session_lookup_add_half_open (tc, handle);
971
972   /* Store api_context (opaque) for when the reply comes. Not the nicest
973    * thing but better than allocating a separate half-open pool.
974    */
975   tc->s_index = opaque;
976   return 0;
977 }
978
979 int
980 session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
981 {
982   session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt;
983   transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep);
984
985   sep->app_wrk_index = app_wrk_index;
986   sep->opaque = opaque;
987
988   return transport_connect (rmt->transport_proto, tep_cfg);
989 }
990
991 typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
992
993 /* *INDENT-OFF* */
994 static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
995   session_open_vc,
996   session_open_cl,
997   session_open_app,
998 };
999 /* *INDENT-ON* */
1000
1001 /**
1002  * Ask transport to open connection to remote transport endpoint.
1003  *
1004  * Stores handle for matching request with reply since the call can be
1005  * asynchronous. For instance, for TCP the 3-way handshake must complete
1006  * before reply comes. Session is only created once connection is established.
1007  *
1008  * @param app_index Index of the application requesting the connect
1009  * @param st Session type requested.
1010  * @param tep Remote transport endpoint
1011  * @param opaque Opaque data (typically, api_context) the application expects
1012  *               on open completion.
1013  */
1014 int
1015 session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
1016 {
1017   transport_service_type_t tst;
1018   tst = transport_protocol_service_type (rmt->transport_proto);
1019   return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
1020 }
1021
1022 /**
1023  * Ask transport to listen on session endpoint.
1024  *
1025  * @param s Session for which listen will be called. Note that unlike
1026  *          established sessions, listen sessions are not associated to a
1027  *          thread.
1028  * @param sep Local endpoint to be listened on.
1029  */
1030 int
1031 session_listen (session_t * ls, session_endpoint_cfg_t * sep)
1032 {
1033   transport_endpoint_t *tep;
1034   u32 tc_index, s_index;
1035
1036   /* Transport bind/listen */
1037   tep = session_endpoint_to_transport (sep);
1038   s_index = ls->session_index;
1039   tc_index = transport_start_listen (session_get_transport_proto (ls),
1040                                      s_index, tep);
1041
1042   if (tc_index == (u32) ~ 0)
1043     return -1;
1044
1045   /* Attach transport to session. Lookup tables are populated by the app
1046    * worker because local tables (for ct sessions) are not backed by a fib */
1047   ls = listen_session_get (s_index);
1048   ls->connection_index = tc_index;
1049
1050   return 0;
1051 }
1052
1053 /**
1054  * Ask transport to stop listening on local transport endpoint.
1055  *
1056  * @param s Session to stop listening on. It must be in state LISTENING.
1057  */
1058 int
1059 session_stop_listen (session_t * s)
1060 {
1061   transport_proto_t tp = session_get_transport_proto (s);
1062   transport_connection_t *tc;
1063
1064   if (s->session_state != SESSION_STATE_LISTENING)
1065     return -1;
1066
1067   tc = transport_get_listener (tp, s->connection_index);
1068   if (!tc)
1069     return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1070
1071   session_lookup_del_connection (tc);
1072   transport_stop_listen (tp, s->connection_index);
1073   return 0;
1074 }
1075
1076 /**
1077  * Initialize session closing procedure.
1078  *
1079  * Request is always sent to session node to ensure that all outstanding
1080  * requests are served before transport is notified.
1081  */
1082 void
1083 session_close (session_t * s)
1084 {
1085   if (!s)
1086     return;
1087
1088   if (s->session_state >= SESSION_STATE_CLOSING)
1089     {
1090       /* Session will only be removed once both app and transport
1091        * acknowledge the close */
1092       if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1093         session_program_transport_close (s);
1094
1095       /* Session already closed. Clear the tx fifo */
1096       if (s->session_state == SESSION_STATE_CLOSED)
1097         svm_fifo_dequeue_drop_all (s->tx_fifo);
1098       return;
1099     }
1100
1101   s->session_state = SESSION_STATE_CLOSING;
1102   session_program_transport_close (s);
1103 }
1104
1105 /**
1106  * Notify transport the session can be disconnected. This should eventually
1107  * result in a delete notification that allows us to cleanup session state.
1108  * Called for both active/passive disconnects.
1109  *
1110  * Must be called from the session's thread.
1111  */
1112 void
1113 session_transport_close (session_t * s)
1114 {
1115   /* If transport is already closed, just free the session */
1116   if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1117     {
1118       session_free_w_fifos (s);
1119       return;
1120     }
1121
1122   /* If tx queue wasn't drained, change state to closed waiting for transport.
1123    * This way, the transport, if it so wishes, can continue to try sending the
1124    * outstanding data (in closed state it cannot). It MUST however at one
1125    * point, either after sending everything or after a timeout, call delete
1126    * notify. This will finally lead to the complete cleanup of the session.
1127    */
1128   if (svm_fifo_max_dequeue (s->tx_fifo))
1129     s->session_state = SESSION_STATE_CLOSED_WAITING;
1130   else
1131     s->session_state = SESSION_STATE_CLOSED;
1132
1133   transport_close (session_get_transport_proto (s), s->connection_index,
1134                    s->thread_index);
1135 }
1136
1137 /**
1138  * Cleanup transport and session state.
1139  *
1140  * Notify transport of the cleanup and free the session. This should
1141  * be called only if transport reported some error and is already
1142  * closed.
1143  */
1144 void
1145 session_transport_cleanup (session_t * s)
1146 {
1147   s->session_state = SESSION_STATE_CLOSED;
1148
1149   /* Delete from main lookup table before we axe the the transport */
1150   session_lookup_del_session (s);
1151   transport_cleanup (session_get_transport_proto (s), s->connection_index,
1152                      s->thread_index);
1153   /* Since we called cleanup, no delete notification will come. So, make
1154    * sure the session is properly freed. */
1155   session_free_w_fifos (s);
1156 }
1157
1158 /**
1159  * Allocate event queues in the shared-memory segment
1160  *
1161  * That can either be a newly created memfd segment, that will need to be
1162  * mapped by all stack users, or the binary api's svm region. The latter is
1163  * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1164  * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1165  * vpp uses api svm region for event queues.
1166  */
1167 void
1168 session_vpp_event_queues_allocate (session_manager_main_t * smm)
1169 {
1170   u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
1171   ssvm_private_t *eqs = &smm->evt_qs_segment;
1172   api_main_t *am = &api_main;
1173   uword eqs_size = 64 << 20;
1174   pid_t vpp_pid = getpid ();
1175   void *oldheap;
1176   int i;
1177
1178   if (smm->configured_event_queue_length)
1179     evt_q_length = smm->configured_event_queue_length;
1180
1181   if (smm->evt_qs_use_memfd_seg)
1182     {
1183       if (smm->evt_qs_segment_size)
1184         eqs_size = smm->evt_qs_segment_size;
1185
1186       eqs->ssvm_size = eqs_size;
1187       eqs->i_am_master = 1;
1188       eqs->my_pid = vpp_pid;
1189       eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1190       eqs->requested_va = smm->session_baseva;
1191
1192       if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1193         {
1194           clib_warning ("failed to initialize queue segment");
1195           return;
1196         }
1197     }
1198
1199   if (smm->evt_qs_use_memfd_seg)
1200     oldheap = ssvm_push_heap (eqs->sh);
1201   else
1202     oldheap = svm_push_data_heap (am->vlib_rp);
1203
1204   for (i = 0; i < vec_len (smm->wrk); i++)
1205     {
1206       svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1207       svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1208         {evt_q_length, evt_size, 0}
1209         ,
1210         {evt_q_length >> 1, 256, 0}
1211       };
1212       cfg->consumer_pid = 0;
1213       cfg->n_rings = 2;
1214       cfg->q_nitems = evt_q_length;
1215       cfg->ring_cfgs = rc;
1216       smm->wrk[i].vpp_event_queue = svm_msg_q_alloc (cfg);
1217       if (smm->evt_qs_use_memfd_seg)
1218         {
1219           if (svm_msg_q_alloc_consumer_eventfd (smm->wrk[i].vpp_event_queue))
1220             clib_warning ("eventfd returned");
1221         }
1222     }
1223
1224   if (smm->evt_qs_use_memfd_seg)
1225     ssvm_pop_heap (oldheap);
1226   else
1227     svm_pop_heap (oldheap);
1228 }
1229
1230 ssvm_private_t *
1231 session_manager_get_evt_q_segment (void)
1232 {
1233   session_manager_main_t *smm = &session_manager_main;
1234   if (smm->evt_qs_use_memfd_seg)
1235     return &smm->evt_qs_segment;
1236   return 0;
1237 }
1238
1239 /* *INDENT-OFF* */
1240 static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1241     session_tx_fifo_peek_and_snd,
1242     session_tx_fifo_dequeue_and_snd,
1243     session_tx_fifo_dequeue_internal,
1244     session_tx_fifo_dequeue_and_snd
1245 };
1246 /* *INDENT-ON* */
1247
1248 /**
1249  * Initialize session layer for given transport proto and ip version
1250  *
1251  * Allocates per session type (transport proto + ip version) data structures
1252  * and adds arc from session queue node to session type output node.
1253  */
1254 void
1255 session_register_transport (transport_proto_t transport_proto,
1256                             const transport_proto_vft_t * vft, u8 is_ip4,
1257                             u32 output_node)
1258 {
1259   session_manager_main_t *smm = &session_manager_main;
1260   session_type_t session_type;
1261   u32 next_index = ~0;
1262
1263   session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1264
1265   vec_validate (smm->session_type_to_next, session_type);
1266   vec_validate (smm->session_tx_fns, session_type);
1267
1268   /* *INDENT-OFF* */
1269   if (output_node != ~0)
1270     {
1271       foreach_vlib_main (({
1272           next_index = vlib_node_add_next (this_vlib_main,
1273                                            session_queue_node.index,
1274                                            output_node);
1275       }));
1276     }
1277   /* *INDENT-ON* */
1278
1279   smm->session_type_to_next[session_type] = next_index;
1280   smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
1281 }
1282
1283 transport_connection_t *
1284 session_get_transport (session_t * s)
1285 {
1286   if (s->session_state != SESSION_STATE_LISTENING)
1287     return transport_get_connection (session_get_transport_proto (s),
1288                                      s->connection_index, s->thread_index);
1289   else
1290     return transport_get_listener (session_get_transport_proto (s),
1291                                    s->connection_index);
1292 }
1293
1294 transport_connection_t *
1295 listen_session_get_transport (session_t * s)
1296 {
1297   return transport_get_listener (session_get_transport_proto (s),
1298                                  s->connection_index);
1299 }
1300
1301 int
1302 listen_session_get_local_session_endpoint (session_t * listener,
1303                                            session_endpoint_t * sep)
1304 {
1305   transport_connection_t *tc;
1306   tc = listen_session_get_transport (listener);
1307   if (!tc)
1308     {
1309       clib_warning ("no transport");
1310       return -1;
1311     }
1312
1313   /* N.B. The ip should not be copied because this is the local endpoint */
1314   sep->port = tc->lcl_port;
1315   sep->transport_proto = tc->proto;
1316   sep->is_ip4 = tc->is_ip4;
1317   return 0;
1318 }
1319
1320 void
1321 session_flush_frames_main_thread (vlib_main_t * vm)
1322 {
1323   ASSERT (vlib_get_thread_index () == 0);
1324   vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1325                                 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1326 }
1327
1328 static clib_error_t *
1329 session_manager_main_enable (vlib_main_t * vm)
1330 {
1331   segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
1332   session_manager_main_t *smm = &session_manager_main;
1333   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1334   u32 num_threads, preallocated_sessions_per_worker;
1335   session_manager_worker_t *wrk;
1336   int i, j;
1337
1338   num_threads = 1 /* main thread */  + vtm->n_threads;
1339
1340   if (num_threads < 1)
1341     return clib_error_return (0, "n_thread_stacks not set");
1342
1343   /* Allocate cache line aligned worker contexts */
1344   vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1345
1346   for (i = 0; i < TRANSPORT_N_PROTO; i++)
1347     {
1348       for (j = 0; j < num_threads; j++)
1349         smm->wrk[j].current_enqueue_epoch[i] = 1;
1350     }
1351
1352   for (i = 0; i < num_threads; i++)
1353     {
1354       wrk = &smm->wrk[i];
1355       vec_validate (wrk->free_event_vector, 128);
1356       _vec_len (wrk->free_event_vector) = 0;
1357       vec_validate (wrk->pending_event_vector, 128);
1358       _vec_len (wrk->pending_event_vector) = 0;
1359       vec_validate (wrk->pending_disconnects, 128);
1360       _vec_len (wrk->pending_disconnects) = 0;
1361       vec_validate (wrk->postponed_event_vector, 128);
1362       _vec_len (wrk->postponed_event_vector) = 0;
1363
1364       wrk->last_vlib_time = vlib_time_now (vlib_mains[i]);
1365       wrk->dispatch_period = 500e-6;
1366
1367       if (num_threads > 1)
1368         clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
1369     }
1370
1371 #if SESSION_DEBUG
1372   vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1373 #endif
1374
1375   /* Allocate vpp event queues segment and queue */
1376   session_vpp_event_queues_allocate (smm);
1377
1378   /* Initialize fifo segment main baseva and timeout */
1379   sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1380   sm_args->size = smm->session_va_space_size;
1381   segment_manager_main_init (sm_args);
1382
1383   /* Preallocate sessions */
1384   if (smm->preallocated_sessions)
1385     {
1386       if (num_threads == 1)
1387         {
1388           pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
1389         }
1390       else
1391         {
1392           int j;
1393           preallocated_sessions_per_worker =
1394             (1.1 * (f64) smm->preallocated_sessions /
1395              (f64) (num_threads - 1));
1396
1397           for (j = 1; j < num_threads; j++)
1398             {
1399               pool_init_fixed (smm->wrk[j].sessions,
1400                                preallocated_sessions_per_worker);
1401             }
1402         }
1403     }
1404
1405   session_lookup_init ();
1406   app_namespaces_init ();
1407   transport_init ();
1408
1409   smm->is_enabled = 1;
1410
1411   /* Enable transports */
1412   transport_enable_disable (vm, 1);
1413   transport_init_tx_pacers_period ();
1414   return 0;
1415 }
1416
1417 void
1418 session_node_enable_disable (u8 is_en)
1419 {
1420   u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1421   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1422   u8 have_workers = vtm->n_threads != 0;
1423
1424   /* *INDENT-OFF* */
1425   foreach_vlib_main (({
1426     if (have_workers && ii == 0)
1427       {
1428         vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1429                              state);
1430         if (is_en)
1431           {
1432             vlib_node_t *n = vlib_get_node (this_vlib_main,
1433                                             session_queue_process_node.index);
1434             vlib_start_process (this_vlib_main, n->runtime_index);
1435           }
1436         else
1437           {
1438             vlib_process_signal_event_mt (this_vlib_main,
1439                                           session_queue_process_node.index,
1440                                           SESSION_Q_PROCESS_STOP, 0);
1441           }
1442
1443         continue;
1444       }
1445     vlib_node_set_state (this_vlib_main, session_queue_node.index,
1446                          state);
1447   }));
1448   /* *INDENT-ON* */
1449 }
1450
1451 clib_error_t *
1452 vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1453 {
1454   clib_error_t *error = 0;
1455   if (is_en)
1456     {
1457       if (session_manager_main.is_enabled)
1458         return 0;
1459
1460       session_node_enable_disable (is_en);
1461       error = session_manager_main_enable (vm);
1462     }
1463   else
1464     {
1465       session_manager_main.is_enabled = 0;
1466       session_node_enable_disable (is_en);
1467     }
1468
1469   return error;
1470 }
1471
1472 clib_error_t *
1473 session_manager_main_init (vlib_main_t * vm)
1474 {
1475   session_manager_main_t *smm = &session_manager_main;
1476   smm->session_baseva = HIGH_SEGMENT_BASEVA;
1477 #if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1478   smm->session_va_space_size = 128ULL << 30;
1479   smm->evt_qs_segment_size = 64 << 20;
1480 #else
1481   smm->session_va_space_size = 128 << 20;
1482   smm->evt_qs_segment_size = 1 << 20;
1483 #endif
1484   smm->is_enabled = 0;
1485   return 0;
1486 }
1487
1488 VLIB_INIT_FUNCTION (session_manager_main_init);
1489
1490 static clib_error_t *
1491 session_config_fn (vlib_main_t * vm, unformat_input_t * input)
1492 {
1493   session_manager_main_t *smm = &session_manager_main;
1494   u32 nitems;
1495   uword tmp;
1496
1497   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1498     {
1499       if (unformat (input, "event-queue-length %d", &nitems))
1500         {
1501           if (nitems >= 2048)
1502             smm->configured_event_queue_length = nitems;
1503           else
1504             clib_warning ("event queue length %d too small, ignored", nitems);
1505         }
1506       else if (unformat (input, "preallocated-sessions %d",
1507                          &smm->preallocated_sessions))
1508         ;
1509       else if (unformat (input, "v4-session-table-buckets %d",
1510                          &smm->configured_v4_session_table_buckets))
1511         ;
1512       else if (unformat (input, "v4-halfopen-table-buckets %d",
1513                          &smm->configured_v4_halfopen_table_buckets))
1514         ;
1515       else if (unformat (input, "v6-session-table-buckets %d",
1516                          &smm->configured_v6_session_table_buckets))
1517         ;
1518       else if (unformat (input, "v6-halfopen-table-buckets %d",
1519                          &smm->configured_v6_halfopen_table_buckets))
1520         ;
1521       else if (unformat (input, "v4-session-table-memory %U",
1522                          unformat_memory_size, &tmp))
1523         {
1524           if (tmp >= 0x100000000)
1525             return clib_error_return (0, "memory size %llx (%lld) too large",
1526                                       tmp, tmp);
1527           smm->configured_v4_session_table_memory = tmp;
1528         }
1529       else if (unformat (input, "v4-halfopen-table-memory %U",
1530                          unformat_memory_size, &tmp))
1531         {
1532           if (tmp >= 0x100000000)
1533             return clib_error_return (0, "memory size %llx (%lld) too large",
1534                                       tmp, tmp);
1535           smm->configured_v4_halfopen_table_memory = tmp;
1536         }
1537       else if (unformat (input, "v6-session-table-memory %U",
1538                          unformat_memory_size, &tmp))
1539         {
1540           if (tmp >= 0x100000000)
1541             return clib_error_return (0, "memory size %llx (%lld) too large",
1542                                       tmp, tmp);
1543           smm->configured_v6_session_table_memory = tmp;
1544         }
1545       else if (unformat (input, "v6-halfopen-table-memory %U",
1546                          unformat_memory_size, &tmp))
1547         {
1548           if (tmp >= 0x100000000)
1549             return clib_error_return (0, "memory size %llx (%lld) too large",
1550                                       tmp, tmp);
1551           smm->configured_v6_halfopen_table_memory = tmp;
1552         }
1553       else if (unformat (input, "local-endpoints-table-memory %U",
1554                          unformat_memory_size, &tmp))
1555         {
1556           if (tmp >= 0x100000000)
1557             return clib_error_return (0, "memory size %llx (%lld) too large",
1558                                       tmp, tmp);
1559           smm->local_endpoints_table_memory = tmp;
1560         }
1561       else if (unformat (input, "local-endpoints-table-buckets %d",
1562                          &smm->local_endpoints_table_buckets))
1563         ;
1564       else if (unformat (input, "evt_qs_memfd_seg"))
1565         smm->evt_qs_use_memfd_seg = 1;
1566       else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
1567                          &smm->evt_qs_segment_size))
1568         ;
1569       else
1570         return clib_error_return (0, "unknown input `%U'",
1571                                   format_unformat_error, input);
1572     }
1573   return 0;
1574 }
1575
1576 VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1577
1578 /*
1579  * fd.io coding-style-patch-verification: ON
1580  *
1581  * Local Variables:
1582  * eval: (c-set-style "gnu")
1583  * End:
1584  */