2 * Copyright (c) 2017 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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @brief Session and session manager
20 #include <vnet/session/session.h>
21 #include <vnet/session/session_debug.h>
22 #include <vnet/session/application.h>
23 #include <vlibmemory/api.h>
24 #include <vnet/dpo/load_balance.h>
25 #include <vnet/fib/ip4_fib.h>
27 session_manager_main_t session_manager_main;
28 extern transport_proto_vft_t *tp_vfts;
31 session_send_evt_to_thread (void *data, void *args, u32 thread_index,
32 session_evt_type_t evt_type)
37 u32 tries = 0, max_tries;
39 mq = session_manager_get_vpp_event_queue (thread_index);
40 while (svm_msg_q_try_lock (mq))
42 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
43 if (tries++ == max_tries)
45 SESSION_DBG ("failed to enqueue evt");
49 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
51 svm_msg_q_unlock (mq);
54 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
55 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
57 svm_msg_q_unlock (mq);
60 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
61 evt->event_type = evt_type;
65 evt->rpc_args.fp = data;
66 evt->rpc_args.arg = args;
68 case FIFO_EVENT_APP_TX:
69 case FIFO_EVENT_BUILTIN_RX:
72 case FIFO_EVENT_DISCONNECT:
73 evt->session_handle = session_handle ((stream_session_t *) data);
76 clib_warning ("evt unhandled!");
77 svm_msg_q_unlock (mq);
81 svm_msg_q_add_and_unlock (mq, &msg);
86 session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
88 return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
92 session_send_io_evt_to_thread_custom (svm_fifo_t * f, u32 thread_index,
93 session_evt_type_t evt_type)
95 return session_send_evt_to_thread (f, 0, thread_index, evt_type);
99 session_send_ctrl_evt_to_thread (stream_session_t * s,
100 session_evt_type_t evt_type)
102 /* only event supported for now is disconnect */
103 ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
104 return session_send_evt_to_thread (s, 0, s->thread_index,
105 FIFO_EVENT_DISCONNECT);
109 session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
111 if (thread_index != vlib_get_thread_index ())
112 session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
115 void (*fnp) (void *) = fp;
121 session_alloc (u32 thread_index)
123 session_manager_main_t *smm = &session_manager_main;
126 pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
127 CLIB_CACHE_LINE_BYTES);
128 /* If we have peekers, let them finish */
129 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
131 clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
132 pool_get_aligned (session_manager_main.sessions[thread_index], s,
133 CLIB_CACHE_LINE_BYTES);
134 clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
138 pool_get_aligned (session_manager_main.sessions[thread_index], s,
139 CLIB_CACHE_LINE_BYTES);
141 memset (s, 0, sizeof (*s));
142 s->session_index = s - session_manager_main.sessions[thread_index];
143 s->thread_index = thread_index;
148 session_free (stream_session_t * s)
150 pool_put (session_manager_main.sessions[s->thread_index], s);
152 memset (s, 0xFA, sizeof (*s));
156 session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
158 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
159 u32 fifo_segment_index;
162 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
164 &fifo_segment_index)))
166 /* Initialize backpointers */
167 server_rx_fifo->master_session_index = s->session_index;
168 server_rx_fifo->master_thread_index = s->thread_index;
170 server_tx_fifo->master_session_index = s->session_index;
171 server_tx_fifo->master_thread_index = s->thread_index;
173 s->server_rx_fifo = server_rx_fifo;
174 s->server_tx_fifo = server_tx_fifo;
175 s->svm_segment_index = fifo_segment_index;
179 static stream_session_t *
180 session_alloc_for_connection (transport_connection_t * tc)
183 u32 thread_index = tc->thread_index;
185 ASSERT (thread_index == vlib_get_thread_index ()
186 || transport_protocol_is_cl (tc->proto));
188 s = session_alloc (thread_index);
189 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
190 s->session_state = SESSION_STATE_CONNECTING;
191 s->enqueue_epoch = ~0;
193 /* Attach transport to session and vice versa */
194 s->connection_index = tc->c_index;
195 tc->s_index = s->session_index;
200 session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
201 u8 alloc_fifos, stream_session_t ** ret_s)
206 s = session_alloc_for_connection (tc);
207 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
214 /* Add to the main lookup table */
215 session_lookup_add_connection (tc, session_handle (s));
222 * Discards bytes from buffer chain
224 * It discards n_bytes_to_drop starting at first buffer after chain_b
227 session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
228 vlib_buffer_t ** chain_b,
231 vlib_buffer_t *next = *chain_b;
232 u32 to_drop = n_bytes_to_drop;
233 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
234 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
236 next = vlib_get_buffer (vm, next->next_buffer);
237 if (next->current_length > to_drop)
239 vlib_buffer_advance (next, to_drop);
244 to_drop -= next->current_length;
245 next->current_length = 0;
251 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
255 * Enqueue buffer chain tail
258 session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
259 u32 offset, u8 is_in_order)
261 vlib_buffer_t *chain_b;
262 u32 chain_bi, len, diff;
263 vlib_main_t *vm = vlib_get_main ();
268 if (is_in_order && offset)
270 diff = offset - b->current_length;
271 if (diff > b->total_length_not_including_first_buffer)
274 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
275 chain_bi = vlib_get_buffer_index (vm, chain_b);
278 chain_bi = b->next_buffer;
282 chain_b = vlib_get_buffer (vm, chain_bi);
283 data = vlib_buffer_get_current (chain_b);
284 len = chain_b->current_length;
289 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
296 return (rv > 0) ? (written + rv) : written;
302 /* written more than what was left in chain */
303 if (written > b->total_length_not_including_first_buffer)
306 /* drop the bytes that have already been delivered */
307 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
312 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
316 clib_warning ("failed to enqueue multi-buffer seg");
322 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
323 ? chain_b->next_buffer : 0));
332 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
333 * event but on request can queue notification events for later delivery by
334 * calling stream_server_flush_enqueue_events().
336 * @param tc Transport connection which is to be enqueued data
337 * @param b Buffer to be enqueued
338 * @param offset Offset at which to start enqueueing if out-of-order
339 * @param queue_event Flag to indicate if peer is to be notified or if event
340 * is to be queued. The former is useful when more data is
341 * enqueued and only one event is to be generated.
342 * @param is_in_order Flag to indicate if data is in order
343 * @return Number of bytes enqueued or a negative value if enqueueing failed.
346 session_enqueue_stream_connection (transport_connection_t * tc,
347 vlib_buffer_t * b, u32 offset,
348 u8 queue_event, u8 is_in_order)
351 int enqueued = 0, rv, in_order_off;
353 s = session_get (tc->s_index, tc->thread_index);
357 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
359 vlib_buffer_get_current (b));
360 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
363 in_order_off = enqueued > b->current_length ? enqueued : 0;
364 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
371 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
373 vlib_buffer_get_current (b));
374 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
375 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
376 /* if something was enqueued, report even this as success for ooo
377 * segment handling */
383 /* Queue RX event on this fifo. Eventually these will need to be flushed
384 * by calling stream_server_flush_enqueue_events () */
385 session_manager_main_t *smm = vnet_get_session_manager_main ();
386 u32 thread_index = s->thread_index;
387 u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
389 if (s->enqueue_epoch != enqueue_epoch)
391 s->enqueue_epoch = enqueue_epoch;
392 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
393 s - smm->sessions[thread_index]);
402 session_enqueue_dgram_connection (stream_session_t * s,
403 session_dgram_hdr_t * hdr,
404 vlib_buffer_t * b, u8 proto, u8 queue_event)
406 int enqueued = 0, rv, in_order_off;
408 ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
409 >= b->current_length + sizeof (*hdr));
411 svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
413 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
414 vlib_buffer_get_current (b));
415 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
417 in_order_off = enqueued > b->current_length ? enqueued : 0;
418 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
424 /* Queue RX event on this fifo. Eventually these will need to be flushed
425 * by calling stream_server_flush_enqueue_events () */
426 session_manager_main_t *smm = vnet_get_session_manager_main ();
427 u32 thread_index = s->thread_index;
428 u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
430 if (s->enqueue_epoch != enqueue_epoch)
432 s->enqueue_epoch = enqueue_epoch;
433 vec_add1 (smm->session_to_enqueue[proto][thread_index],
434 s - smm->sessions[thread_index]);
440 /** Check if we have space in rx fifo to push more bytes */
442 stream_session_no_space (transport_connection_t * tc, u32 thread_index,
445 stream_session_t *s = session_get (tc->s_index, thread_index);
447 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
450 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
457 session_tx_fifo_max_dequeue (transport_connection_t * tc)
459 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
460 if (!s->server_tx_fifo)
462 return svm_fifo_max_dequeue (s->server_tx_fifo);
466 stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
467 u32 offset, u32 max_bytes)
469 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
470 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
474 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
476 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
477 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
481 * Notify session peer that new data has been enqueued.
483 * @param s Stream session for which the event is to be generated.
484 * @param lock Flag to indicate if call should lock message queue.
486 * @return 0 on success or negative number if failed to send notification.
489 session_enqueue_notify (stream_session_t * s)
493 app = app_worker_get_if_valid (s->app_wrk_index);
494 if (PREDICT_FALSE (!app))
496 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
501 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
502 ed->data[0] = FIFO_EVENT_APP_RX;
503 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
507 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_RX);
511 session_dequeue_notify (stream_session_t * s)
515 app = app_worker_get_if_valid (s->app_wrk_index);
516 if (PREDICT_FALSE (!app))
519 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_TX);
523 * Flushes queue of sessions that are to be notified of new data
526 * @param thread_index Thread index for which the flush is to be performed.
527 * @return 0 on success or a positive number indicating the number of
528 * failures due to API queue being full.
531 session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
533 session_manager_main_t *smm = &session_manager_main;
538 indices = smm->session_to_enqueue[transport_proto][thread_index];
540 for (i = 0; i < vec_len (indices); i++)
542 s = session_get_if_valid (indices[i], thread_index);
543 if (PREDICT_FALSE (!s))
548 if (PREDICT_FALSE (session_enqueue_notify (s)))
552 vec_reset_length (indices);
553 smm->session_to_enqueue[transport_proto][thread_index] = indices;
554 smm->current_enqueue_epoch[transport_proto][thread_index]++;
560 session_manager_flush_all_enqueue_events (u8 transport_proto)
562 vlib_thread_main_t *vtm = vlib_get_thread_main ();
564 for (i = 0; i < 1 + vtm->n_threads; i++)
565 errors += session_manager_flush_enqueue_events (transport_proto, i);
570 * Init fifo tail and head pointers
572 * Useful if transport uses absolute offsets for tracking ooo segments.
575 stream_session_init_fifos_pointers (transport_connection_t * tc,
576 u32 rx_pointer, u32 tx_pointer)
579 s = session_get (tc->s_index, tc->thread_index);
580 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
581 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
585 session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
587 u32 opaque = 0, new_ti, new_si;
588 stream_session_t *new_s = 0;
589 segment_manager_t *sm;
590 app_worker_t *app_wrk;
597 * Find connection handle and cleanup half-open table
599 handle = session_lookup_half_open_handle (tc);
600 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
602 SESSION_DBG ("half-open was removed!");
605 session_lookup_del_half_open (tc);
607 /* Get the app's index from the handle we stored when opening connection
608 * and the opaque (api_context for external apps) from transport session
610 app_wrk = app_worker_get_if_valid (handle >> 32);
613 opaque = tc->s_index;
614 app = application_get (app_wrk->app_index);
617 * Allocate new session with fifos (svm segments are allocated if needed)
621 sm = app_worker_get_connect_segment_manager (app_wrk);
622 alloc_fifos = !application_is_builtin_proxy (app);
623 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
630 new_s->app_wrk_index = app_wrk->wrk_index;
631 new_si = new_s->session_index;
632 new_ti = new_s->thread_index;
637 * Notify client application
639 if (app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque,
642 SESSION_DBG ("failed to notify app");
645 new_s = session_get (new_si, new_ti);
646 stream_session_disconnect_transport (new_s);
653 new_s = session_get (new_si, new_ti);
654 new_s->session_state = SESSION_STATE_READY;
661 typedef struct _session_switch_pool_args
665 u32 new_thread_index;
666 u32 new_session_index;
667 } session_switch_pool_args_t;
670 session_switch_pool (void *cb_args)
672 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
673 transport_proto_t tp;
675 ASSERT (args->thread_index == vlib_get_thread_index ());
676 s = session_get (args->session_index, args->thread_index);
677 s->server_tx_fifo->master_session_index = args->new_session_index;
678 s->server_tx_fifo->master_thread_index = args->new_thread_index;
679 tp = session_get_transport_proto (s);
680 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
682 clib_mem_free (cb_args);
686 * Move dgram session to the right thread
689 session_dgram_connect_notify (transport_connection_t * tc,
690 u32 old_thread_index,
691 stream_session_t ** new_session)
693 stream_session_t *new_s;
694 session_switch_pool_args_t *rpc_args;
697 * Clone half-open session to the right thread.
699 new_s = session_clone_safe (tc->s_index, old_thread_index);
700 new_s->connection_index = tc->c_index;
701 new_s->server_rx_fifo->master_session_index = new_s->session_index;
702 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
703 new_s->session_state = SESSION_STATE_READY;
704 session_lookup_add_connection (tc, session_handle (new_s));
707 * Ask thread owning the old session to clean it up and make us the tx
710 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
711 rpc_args->new_session_index = new_s->session_index;
712 rpc_args->new_thread_index = new_s->thread_index;
713 rpc_args->session_index = tc->s_index;
714 rpc_args->thread_index = old_thread_index;
715 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
718 tc->s_index = new_s->session_index;
719 new_s->connection_index = tc->c_index;
720 *new_session = new_s;
725 stream_session_accept_notify (transport_connection_t * tc)
727 app_worker_t *app_wrk;
731 s = session_get (tc->s_index, tc->thread_index);
732 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
735 app = application_get (app_wrk->app_index);
736 app->cb_fns.session_accept_callback (s);
740 * Notification from transport that connection is being closed.
742 * A disconnect is sent to application but state is not removed. Once
743 * disconnect is acknowledged by application, session disconnect is called.
744 * Ultimately this leads to close being called on transport (passive close).
747 stream_session_disconnect_notify (transport_connection_t * tc)
749 app_worker_t *app_wrk;
753 s = session_get (tc->s_index, tc->thread_index);
754 s->session_state = SESSION_STATE_CLOSING;
755 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
758 app = application_get (app_wrk->app_index);
759 app->cb_fns.session_disconnect_callback (s);
763 * Cleans up session and lookup table.
765 * Transport connection must still be valid.
768 stream_session_delete (stream_session_t * s)
772 /* Delete from the main lookup table. */
773 if ((rv = session_lookup_del_session (s)))
774 clib_warning ("hash delete error, rv %d", rv);
776 /* Cleanup fifo segments */
777 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
783 * Notification from transport that connection is being deleted
785 * This removes the session if it is still valid. It should be called only on
786 * previously fully established sessions. For instance failed connects should
787 * call stream_session_connect_notify and indicate that the connect has
791 stream_session_delete_notify (transport_connection_t * tc)
795 /* App might've been removed already */
796 s = session_get_if_valid (tc->s_index, tc->thread_index);
799 stream_session_delete (s);
803 * Notify application that connection has been reset.
806 stream_session_reset_notify (transport_connection_t * tc)
809 app_worker_t *app_wrk;
811 s = session_get (tc->s_index, tc->thread_index);
812 s->session_state = SESSION_STATE_CLOSED;
813 app_wrk = app_worker_get (s->app_wrk_index);
814 app = application_get (app_wrk->app_index);
815 app->cb_fns.session_reset_callback (s);
819 * Accept a stream session. Optionally ping the server by callback.
822 stream_session_accept (transport_connection_t * tc, u32 listener_index,
825 stream_session_t *s, *listener;
826 app_worker_t *app_wrk;
827 segment_manager_t *sm;
830 /* Find the server */
831 listener = listen_session_get (listener_index);
832 app_wrk = application_listener_select_worker (listener, 0);
834 sm = app_worker_get_listen_segment_manager (app_wrk, listener);
835 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
838 s->app_wrk_index = app_wrk->wrk_index;
839 s->listener_index = listener_index;
840 s->session_state = SESSION_STATE_ACCEPTING;
842 /* Shoulder-tap the server */
845 application_t *app = application_get (app_wrk->app_index);
846 app->cb_fns.session_accept_callback (s);
853 session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
855 transport_connection_t *tc;
856 transport_endpoint_t *tep;
857 segment_manager_t *sm;
858 app_worker_t *app_wrk;
863 tep = session_endpoint_to_transport (rmt);
864 rv = tp_vfts[rmt->transport_proto].open (tep);
867 SESSION_DBG ("Transport failed to open connection.");
868 return VNET_API_ERROR_SESSION_CONNECT;
871 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
873 /* For dgram type of service, allocate session and fifos now.
875 app_wrk = app_worker_get (app_wrk_index);
876 sm = app_worker_get_connect_segment_manager (app_wrk);
878 if (session_alloc_and_init (sm, tc, 1, &s))
880 s->app_wrk_index = app_wrk->wrk_index;
881 s->session_state = SESSION_STATE_OPENED;
883 /* Tell the app about the new event fifo for this session */
884 app = application_get (app_wrk->app_index);
885 app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, s, 0);
891 session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
893 transport_connection_t *tc;
894 transport_endpoint_t *tep;
898 tep = session_endpoint_to_transport (rmt);
899 rv = tp_vfts[rmt->transport_proto].open (tep);
902 SESSION_DBG ("Transport failed to open connection.");
903 return VNET_API_ERROR_SESSION_CONNECT;
906 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
908 /* If transport offers a stream service, only allocate session once the
909 * connection has been established.
910 * Add connection to half-open table and save app and tc index. The
911 * latter is needed to help establish the connection while the former
912 * is needed when the connect notify comes and we have to notify the
915 handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
916 session_lookup_add_half_open (tc, handle);
918 /* Store api_context (opaque) for when the reply comes. Not the nicest
919 * thing but better than allocating a separate half-open pool.
921 tc->s_index = opaque;
926 session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
928 session_endpoint_extended_t *sep = (session_endpoint_extended_t *) rmt;
929 sep->app_wrk_index = app_wrk_index;
930 sep->opaque = opaque;
932 return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
935 typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
938 static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
946 * Ask transport to open connection to remote transport endpoint.
948 * Stores handle for matching request with reply since the call can be
949 * asynchronous. For instance, for TCP the 3-way handshake must complete
950 * before reply comes. Session is only created once connection is established.
952 * @param app_index Index of the application requesting the connect
953 * @param st Session type requested.
954 * @param tep Remote transport endpoint
955 * @param opaque Opaque data (typically, api_context) the application expects
956 * on open completion.
959 session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
961 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
962 return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
966 * Ask transport to listen on session endpoint.
968 * @param s Session for which listen will be called. Note that unlike
969 * established sessions, listen sessions are not associated to a
971 * @param sep Local endpoint to be listened on.
974 session_listen (stream_session_t * ls, session_endpoint_extended_t * sep)
976 transport_connection_t *tc;
977 transport_endpoint_t *tep;
978 u32 tc_index, s_index;
980 /* Transport bind/listen */
981 tep = session_endpoint_to_transport (sep);
982 s_index = ls->session_index;
983 tc_index = tp_vfts[sep->transport_proto].bind (s_index, tep);
985 if (tc_index == (u32) ~ 0)
988 /* Attach transport to session */
989 ls = listen_session_get (s_index);
990 ls->connection_index = tc_index;
992 /* Add to the main lookup table after transport was initialized */
993 tc = tp_vfts[sep->transport_proto].get_listener (tc_index);
994 session_lookup_add_connection (tc, s_index);
999 * Ask transport to stop listening on local transport endpoint.
1001 * @param s Session to stop listening on. It must be in state LISTENING.
1004 session_stop_listen (stream_session_t * s)
1006 transport_proto_t tp = session_get_transport_proto (s);
1007 transport_connection_t *tc;
1008 if (s->session_state != SESSION_STATE_LISTENING)
1010 clib_warning ("not a listening session");
1014 tc = tp_vfts[tp].get_listener (s->connection_index);
1017 clib_warning ("no transport");
1018 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1021 session_lookup_del_connection (tc);
1022 tp_vfts[tp].unbind (s->connection_index);
1027 * Initialize session disconnect.
1029 * Request is always sent to session node to ensure that all outstanding
1030 * requests are served before transport is notified.
1033 stream_session_disconnect (stream_session_t * s)
1035 u32 thread_index = vlib_get_thread_index ();
1036 session_manager_main_t *smm = &session_manager_main;
1037 session_event_t *evt;
1042 if (s->session_state >= SESSION_STATE_CLOSING)
1044 /* Session already closed. Clear the tx fifo */
1045 if (s->session_state == SESSION_STATE_CLOSED)
1046 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1050 s->session_state = SESSION_STATE_CLOSING;
1052 /* If we are in the handler thread, or being called with the worker barrier
1053 * held (api/cli), just append a new event to pending disconnects vector. */
1054 if ((thread_index == 0 && !vlib_get_current_process (vlib_get_main ()))
1055 || thread_index == s->thread_index)
1057 ASSERT (s->thread_index == thread_index || thread_index == 0);
1058 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1059 memset (evt, 0, sizeof (*evt));
1060 evt->session_handle = session_handle (s);
1061 evt->event_type = FIFO_EVENT_DISCONNECT;
1064 session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT);
1068 * Notify transport the session can be disconnected. This should eventually
1069 * result in a delete notification that allows us to cleanup session state.
1070 * Called for both active/passive disconnects.
1072 * Must be called from the session's thread.
1075 stream_session_disconnect_transport (stream_session_t * s)
1077 s->session_state = SESSION_STATE_CLOSED;
1078 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1083 * Cleanup transport and session state.
1085 * Notify transport of the cleanup and free the session. This should
1086 * be called only if transport reported some error and is already
1090 stream_session_cleanup (stream_session_t * s)
1092 s->session_state = SESSION_STATE_CLOSED;
1094 /* Delete from main lookup table before we axe the the transport */
1095 session_lookup_del_session (s);
1096 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1098 /* Since we called cleanup, no delete notification will come. So, make
1099 * sure the session is properly freed. */
1100 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
1105 transport_service_type_t
1106 session_transport_service_type (stream_session_t * s)
1108 transport_proto_t tp;
1109 tp = session_get_transport_proto (s);
1110 return transport_protocol_service_type (tp);
1113 transport_tx_fn_type_t
1114 session_transport_tx_fn_type (stream_session_t * s)
1116 transport_proto_t tp;
1117 tp = session_get_transport_proto (s);
1118 return transport_protocol_tx_fn_type (tp);
1122 session_tx_is_dgram (stream_session_t * s)
1124 return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
1128 * Allocate event queues in the shared-memory segment
1130 * That can either be a newly created memfd segment, that will need to be
1131 * mapped by all stack users, or the binary api's svm region. The latter is
1132 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1133 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1134 * vpp uses api svm region for event queues.
1137 session_vpp_event_queues_allocate (session_manager_main_t * smm)
1139 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
1140 ssvm_private_t *eqs = &smm->evt_qs_segment;
1141 api_main_t *am = &api_main;
1142 u64 eqs_size = 64 << 20;
1143 pid_t vpp_pid = getpid ();
1147 if (smm->configured_event_queue_length)
1148 evt_q_length = smm->configured_event_queue_length;
1150 if (smm->evt_qs_use_memfd_seg)
1152 if (smm->evt_qs_segment_size)
1153 eqs_size = smm->evt_qs_segment_size;
1155 eqs->ssvm_size = eqs_size;
1156 eqs->i_am_master = 1;
1157 eqs->my_pid = vpp_pid;
1158 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1159 eqs->requested_va = smm->session_baseva;
1161 if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1163 clib_warning ("failed to initialize queue segment");
1168 if (smm->evt_qs_use_memfd_seg)
1169 oldheap = ssvm_push_heap (eqs->sh);
1171 oldheap = svm_push_data_heap (am->vlib_rp);
1173 for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1175 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1176 u32 notif_q_size = clib_max (16, evt_q_length >> 4);
1177 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1178 {evt_q_length, evt_size, 0}
1180 {notif_q_size, 256, 0}
1182 cfg->consumer_pid = 0;
1184 cfg->q_nitems = evt_q_length;
1185 cfg->ring_cfgs = rc;
1186 smm->vpp_event_queues[i] = svm_msg_q_alloc (cfg);
1187 if (smm->evt_qs_use_memfd_seg)
1189 if (svm_msg_q_alloc_consumer_eventfd (smm->vpp_event_queues[i]))
1190 clib_warning ("eventfd returned");
1194 if (smm->evt_qs_use_memfd_seg)
1195 ssvm_pop_heap (oldheap);
1197 svm_pop_heap (oldheap);
1201 session_manager_get_evt_q_segment (void)
1203 session_manager_main_t *smm = &session_manager_main;
1204 if (smm->evt_qs_use_memfd_seg)
1205 return &smm->evt_qs_segment;
1210 static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1211 session_tx_fifo_peek_and_snd,
1212 session_tx_fifo_dequeue_and_snd,
1213 session_tx_fifo_dequeue_internal,
1214 session_tx_fifo_dequeue_and_snd
1219 * Initialize session layer for given transport proto and ip version
1221 * Allocates per session type (transport proto + ip version) data structures
1222 * and adds arc from session queue node to session type output node.
1225 session_register_transport (transport_proto_t transport_proto,
1226 const transport_proto_vft_t * vft, u8 is_ip4,
1229 session_manager_main_t *smm = &session_manager_main;
1230 session_type_t session_type;
1231 u32 next_index = ~0;
1233 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1235 vec_validate (smm->session_type_to_next, session_type);
1236 vec_validate (smm->session_tx_fns, session_type);
1239 if (output_node != ~0)
1241 foreach_vlib_main (({
1242 next_index = vlib_node_add_next (this_vlib_main,
1243 session_queue_node.index,
1249 smm->session_type_to_next[session_type] = next_index;
1250 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
1253 transport_connection_t *
1254 session_get_transport (stream_session_t * s)
1256 transport_proto_t tp;
1257 if (s->session_state != SESSION_STATE_LISTENING)
1259 tp = session_get_transport_proto (s);
1260 return tp_vfts[tp].get_connection (s->connection_index,
1266 transport_connection_t *
1267 listen_session_get_transport (stream_session_t * s)
1269 transport_proto_t tp = session_get_transport_proto (s);
1270 return tp_vfts[tp].get_listener (s->connection_index);
1274 listen_session_get_local_session_endpoint (stream_session_t * listener,
1275 session_endpoint_t * sep)
1277 transport_proto_t tp = session_get_transport_proto (listener);
1278 transport_connection_t *tc;
1279 tc = tp_vfts[tp].get_listener (listener->connection_index);
1282 clib_warning ("no transport");
1286 /* N.B. The ip should not be copied because this is the local endpoint */
1287 sep->port = tc->lcl_port;
1288 sep->transport_proto = tc->proto;
1289 sep->is_ip4 = tc->is_ip4;
1294 session_flush_frames_main_thread (vlib_main_t * vm)
1296 ASSERT (vlib_get_thread_index () == 0);
1297 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1298 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1301 static clib_error_t *
1302 session_manager_main_enable (vlib_main_t * vm)
1304 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
1305 session_manager_main_t *smm = &session_manager_main;
1306 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1307 u32 num_threads, preallocated_sessions_per_worker;
1310 num_threads = 1 /* main thread */ + vtm->n_threads;
1312 if (num_threads < 1)
1313 return clib_error_return (0, "n_thread_stacks not set");
1315 /* configure per-thread ** vectors */
1316 vec_validate (smm->sessions, num_threads - 1);
1317 vec_validate (smm->tx_buffers, num_threads - 1);
1318 vec_validate (smm->pending_event_vector, num_threads - 1);
1319 vec_validate (smm->pending_disconnects, num_threads - 1);
1320 vec_validate (smm->free_event_vector, num_threads - 1);
1321 vec_validate (smm->vpp_event_queues, num_threads - 1);
1322 vec_validate (smm->peekers_rw_locks, num_threads - 1);
1323 vec_validate_aligned (smm->ctx, num_threads - 1, CLIB_CACHE_LINE_BYTES);
1325 for (i = 0; i < TRANSPORT_N_PROTO; i++)
1327 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1328 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1329 for (j = 0; j < num_threads; j++)
1330 smm->current_enqueue_epoch[i][j] = 1;
1333 for (i = 0; i < num_threads; i++)
1335 vec_validate (smm->free_event_vector[i], 0);
1336 _vec_len (smm->free_event_vector[i]) = 0;
1337 vec_validate (smm->pending_event_vector[i], 0);
1338 _vec_len (smm->pending_event_vector[i]) = 0;
1339 vec_validate (smm->pending_disconnects[i], 0);
1340 _vec_len (smm->pending_disconnects[i]) = 0;
1341 if (num_threads > 1)
1342 clib_rwlock_init (&smm->peekers_rw_locks[i]);
1346 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1349 /* Allocate vpp event queues segment and queue */
1350 session_vpp_event_queues_allocate (smm);
1352 /* Initialize fifo segment main baseva and timeout */
1353 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1354 sm_args->size = smm->session_va_space_size;
1355 segment_manager_main_init (sm_args);
1357 /* Preallocate sessions */
1358 if (smm->preallocated_sessions)
1360 if (num_threads == 1)
1362 pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
1367 preallocated_sessions_per_worker =
1368 (1.1 * (f64) smm->preallocated_sessions /
1369 (f64) (num_threads - 1));
1371 for (j = 1; j < num_threads; j++)
1373 pool_init_fixed (smm->sessions[j],
1374 preallocated_sessions_per_worker);
1379 session_lookup_init ();
1380 app_namespaces_init ();
1383 smm->is_enabled = 1;
1385 /* Enable transports */
1386 transport_enable_disable (vm, 1);
1392 session_node_enable_disable (u8 is_en)
1394 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1395 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1396 u8 have_workers = vtm->n_threads != 0;
1399 foreach_vlib_main (({
1400 if (have_workers && ii == 0)
1402 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1406 vlib_node_t *n = vlib_get_node (this_vlib_main,
1407 session_queue_process_node.index);
1408 vlib_start_process (this_vlib_main, n->runtime_index);
1412 vlib_process_signal_event_mt (this_vlib_main,
1413 session_queue_process_node.index,
1414 SESSION_Q_PROCESS_STOP, 0);
1419 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1426 vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1428 clib_error_t *error = 0;
1431 if (session_manager_main.is_enabled)
1434 session_node_enable_disable (is_en);
1435 error = session_manager_main_enable (vm);
1439 session_manager_main.is_enabled = 0;
1440 session_node_enable_disable (is_en);
1447 session_manager_main_init (vlib_main_t * vm)
1449 session_manager_main_t *smm = &session_manager_main;
1450 smm->session_baseva = 0x200000000ULL;
1451 smm->session_va_space_size = (u64) 128 << 30;
1452 smm->evt_qs_segment_size = 64 << 20;
1453 smm->is_enabled = 0;
1457 VLIB_INIT_FUNCTION (session_manager_main_init);
1459 static clib_error_t *
1460 session_config_fn (vlib_main_t * vm, unformat_input_t * input)
1462 session_manager_main_t *smm = &session_manager_main;
1466 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1468 if (unformat (input, "event-queue-length %d", &nitems))
1471 smm->configured_event_queue_length = nitems;
1473 clib_warning ("event queue length %d too small, ignored", nitems);
1475 else if (unformat (input, "preallocated-sessions %d",
1476 &smm->preallocated_sessions))
1478 else if (unformat (input, "v4-session-table-buckets %d",
1479 &smm->configured_v4_session_table_buckets))
1481 else if (unformat (input, "v4-halfopen-table-buckets %d",
1482 &smm->configured_v4_halfopen_table_buckets))
1484 else if (unformat (input, "v6-session-table-buckets %d",
1485 &smm->configured_v6_session_table_buckets))
1487 else if (unformat (input, "v6-halfopen-table-buckets %d",
1488 &smm->configured_v6_halfopen_table_buckets))
1490 else if (unformat (input, "v4-session-table-memory %U",
1491 unformat_memory_size, &tmp))
1493 if (tmp >= 0x100000000)
1494 return clib_error_return (0, "memory size %llx (%lld) too large",
1496 smm->configured_v4_session_table_memory = tmp;
1498 else if (unformat (input, "v4-halfopen-table-memory %U",
1499 unformat_memory_size, &tmp))
1501 if (tmp >= 0x100000000)
1502 return clib_error_return (0, "memory size %llx (%lld) too large",
1504 smm->configured_v4_halfopen_table_memory = tmp;
1506 else if (unformat (input, "v6-session-table-memory %U",
1507 unformat_memory_size, &tmp))
1509 if (tmp >= 0x100000000)
1510 return clib_error_return (0, "memory size %llx (%lld) too large",
1512 smm->configured_v6_session_table_memory = tmp;
1514 else if (unformat (input, "v6-halfopen-table-memory %U",
1515 unformat_memory_size, &tmp))
1517 if (tmp >= 0x100000000)
1518 return clib_error_return (0, "memory size %llx (%lld) too large",
1520 smm->configured_v6_halfopen_table_memory = tmp;
1522 else if (unformat (input, "local-endpoints-table-memory %U",
1523 unformat_memory_size, &tmp))
1525 if (tmp >= 0x100000000)
1526 return clib_error_return (0, "memory size %llx (%lld) too large",
1528 smm->local_endpoints_table_memory = tmp;
1530 else if (unformat (input, "local-endpoints-table-buckets %d",
1531 &smm->local_endpoints_table_buckets))
1533 else if (unformat (input, "evt_qs_memfd_seg"))
1534 smm->evt_qs_use_memfd_seg = 1;
1536 return clib_error_return (0, "unknown input `%U'",
1537 format_unformat_error, input);
1542 VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1545 * fd.io coding-style-patch-verification: ON
1548 * eval: (c-set-style "gnu")