blob: fced034df85eb8d48752a18c5c2c09b23500ff46 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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>
Florin Coras04e53442017-07-16 17:12:15 -070021#include <vnet/session/session_debug.h>
22#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023#include <vnet/dpo/load_balance.h>
24#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050025
Florin Coras31c99552019-03-01 13:00:58 -080026session_main_t session_main;
Florin Coras3eb50622017-07-13 01:24:57 -040027
Florin Coras3c2fed52018-07-04 04:15:05 -070028static inline int
29session_send_evt_to_thread (void *data, void *args, u32 thread_index,
30 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070031{
Florin Coras52207f12018-07-12 14:48:06 -070032 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070033 svm_msg_q_msg_t msg;
34 svm_msg_q_t *mq;
Florin Corasb2371c22018-05-31 17:14:10 -070035 u32 tries = 0, max_tries;
Florin Coras3cbc04b2017-10-02 00:18:51 -070036
Florin Coras31c99552019-03-01 13:00:58 -080037 mq = session_main_get_vpp_event_queue (thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -070038 while (svm_msg_q_try_lock (mq))
Florin Coras3cbc04b2017-10-02 00:18:51 -070039 {
Florin Corasb2371c22018-05-31 17:14:10 -070040 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
41 if (tries++ == max_tries)
Florin Coras3cbc04b2017-10-02 00:18:51 -070042 {
43 SESSION_DBG ("failed to enqueue evt");
Florin Coras3c2fed52018-07-04 04:15:05 -070044 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -070045 }
46 }
Florin Coras3c2fed52018-07-04 04:15:05 -070047 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 }
Florin Coras52207f12018-07-12 14:48:06 -070058 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070059 evt->event_type = evt_type;
60 switch (evt_type)
61 {
Florin Corasf6c43132019-03-01 12:41:21 -080062 case SESSION_CTRL_EVT_RPC:
Florin Coras3c2fed52018-07-04 04:15:05 -070063 evt->rpc_args.fp = data;
64 evt->rpc_args.arg = args;
65 break;
Florin Corasf6c43132019-03-01 12:41:21 -080066 case SESSION_IO_EVT_TX:
Florin Coras844a36d2018-12-20 09:50:50 -080067 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasf6c43132019-03-01 12:41:21 -080068 case SESSION_IO_EVT_BUILTIN_RX:
Florin Coras3c2fed52018-07-04 04:15:05 -070069 evt->fifo = data;
70 break;
Florin Corasf6c43132019-03-01 12:41:21 -080071 case SESSION_IO_EVT_BUILTIN_TX:
72 case SESSION_CTRL_EVT_CLOSE:
Florin Coras288eaab2019-02-03 15:26:14 -080073 evt->session_handle = session_handle ((session_t *) data);
Florin Coras3c2fed52018-07-04 04:15:05 -070074 break;
75 default:
76 clib_warning ("evt unhandled!");
77 svm_msg_q_unlock (mq);
78 return -1;
79 }
80
Florin Coras52207f12018-07-12 14:48:06 -070081 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070082 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070083}
84
Florin Coras3c2fed52018-07-04 04:15:05 -070085int
86session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070087{
Florin Coras3c2fed52018-07-04 04:15:05 -070088 return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
89}
90
91int
Florin Corasef915342018-09-29 10:23:06 -070092session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
Florin Coras3c2fed52018-07-04 04:15:05 -070093 session_evt_type_t evt_type)
94{
Florin Corasef915342018-09-29 10:23:06 -070095 return session_send_evt_to_thread (data, 0, thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070096}
97
98int
Florin Coras288eaab2019-02-03 15:26:14 -080099session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -0700100{
101 /* only event supported for now is disconnect */
Florin Corasf6c43132019-03-01 12:41:21 -0800102 ASSERT (evt_type == SESSION_CTRL_EVT_CLOSE);
Florin Coras3c2fed52018-07-04 04:15:05 -0700103 return session_send_evt_to_thread (s, 0, s->thread_index,
Florin Corasf6c43132019-03-01 12:41:21 -0800104 SESSION_CTRL_EVT_CLOSE);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700105}
106
107void
108session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
109{
110 if (thread_index != vlib_get_thread_index ())
Florin Corasf6c43132019-03-01 12:41:21 -0800111 session_send_evt_to_thread (fp, rpc_args, thread_index,
112 SESSION_CTRL_EVT_RPC);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700113 else
114 {
115 void (*fnp) (void *) = fp;
116 fnp (rpc_args);
117 }
118}
119
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800120static void
Florin Coras288eaab2019-02-03 15:26:14 -0800121session_program_transport_close (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800122{
123 u32 thread_index = vlib_get_thread_index ();
Florin Coras31c99552019-03-01 13:00:58 -0800124 session_worker_t *wrk;
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800125 session_event_t *evt;
126
Florin Coras2b81e3c2019-02-27 07:55:46 -0800127 if (!session_has_transport (s))
128 {
129 /* Polling may not be enabled on main thread so close now */
130 session_transport_close (s);
131 return;
132 }
133
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800134 /* If we are in the handler thread, or being called with the worker barrier
135 * held, just append a new event to pending disconnects vector. */
136 if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
137 {
Florin Coras31c99552019-03-01 13:00:58 -0800138 wrk = session_main_get_worker (s->thread_index);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800139 vec_add2 (wrk->pending_disconnects, evt, 1);
140 clib_memset (evt, 0, sizeof (*evt));
141 evt->session_handle = session_handle (s);
Florin Corasf6c43132019-03-01 12:41:21 -0800142 evt->event_type = SESSION_CTRL_EVT_CLOSE;
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800143 }
144 else
Florin Corasf6c43132019-03-01 12:41:21 -0800145 session_send_ctrl_evt_to_thread (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800146}
147
Florin Coras288eaab2019-02-03 15:26:14 -0800148session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700149session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500150{
Florin Coras31c99552019-03-01 13:00:58 -0800151 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras288eaab2019-02-03 15:26:14 -0800152 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700153 u8 will_expand = 0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700154 pool_get_aligned_will_expand (wrk->sessions, will_expand,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700155 CLIB_CACHE_LINE_BYTES);
156 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800157 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700158 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700159 clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
160 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
161 clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700162 }
163 else
164 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700165 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700166 }
Dave Barachb7b92992018-10-17 10:38:51 -0400167 clib_memset (s, 0, sizeof (*s));
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700168 s->session_index = s - wrk->sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700169 s->thread_index = thread_index;
170 return s;
171}
172
Florin Coras371ca502018-02-21 12:07:41 -0800173void
Florin Coras288eaab2019-02-03 15:26:14 -0800174session_free (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700175{
Florin Coras31c99552019-03-01 13:00:58 -0800176 pool_put (session_main.wrk[s->thread_index].sessions, s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700177 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400178 clib_memset (s, 0xFA, sizeof (*s));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700179}
180
Florin Coraseb97e5f2018-10-15 21:35:42 -0700181void
Florin Coras288eaab2019-02-03 15:26:14 -0800182session_free_w_fifos (session_t * s)
Florin Coras568ebc72018-09-18 16:12:50 -0700183{
Florin Coras288eaab2019-02-03 15:26:14 -0800184 segment_manager_dealloc_fifos (s->svm_segment_index, s->rx_fifo,
185 s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700186 session_free (s);
187}
188
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800189/**
190 * Cleans up session and lookup table.
191 *
192 * Transport connection must still be valid.
193 */
194static void
Florin Coras288eaab2019-02-03 15:26:14 -0800195session_delete (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800196{
197 int rv;
198
199 /* Delete from the main lookup table. */
200 if ((rv = session_lookup_del_session (s)))
201 clib_warning ("hash delete error, rv %d", rv);
202
203 session_free_w_fifos (s);
204}
205
Florin Coras288eaab2019-02-03 15:26:14 -0800206static session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700207session_alloc_for_connection (transport_connection_t * tc)
208{
Florin Coras288eaab2019-02-03 15:26:14 -0800209 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700210 u32 thread_index = tc->thread_index;
211
Florin Coras40903ac2018-06-10 14:41:23 -0700212 ASSERT (thread_index == vlib_get_thread_index ()
213 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400214
Florin Coras3cbc04b2017-10-02 00:18:51 -0700215 s = session_alloc (thread_index);
216 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Florin Coraseb97e5f2018-10-15 21:35:42 -0700217 s->enqueue_epoch = (u64) ~ 0;
Florin Corasb0f662f2018-12-27 14:51:46 -0800218 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500219
Florin Coras3cbc04b2017-10-02 00:18:51 -0700220 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500222 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700223 return s;
224}
225
Florin Coras1f152cd2017-08-18 19:28:03 -0700226/**
227 * Discards bytes from buffer chain
228 *
229 * It discards n_bytes_to_drop starting at first buffer after chain_b
230 */
231always_inline void
232session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
233 vlib_buffer_t ** chain_b,
234 u32 n_bytes_to_drop)
235{
236 vlib_buffer_t *next = *chain_b;
237 u32 to_drop = n_bytes_to_drop;
238 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
239 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
240 {
241 next = vlib_get_buffer (vm, next->next_buffer);
242 if (next->current_length > to_drop)
243 {
244 vlib_buffer_advance (next, to_drop);
245 to_drop = 0;
246 }
247 else
248 {
249 to_drop -= next->current_length;
250 next->current_length = 0;
251 }
252 }
253 *chain_b = next;
254
255 if (to_drop == 0)
256 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
257}
258
259/**
260 * Enqueue buffer chain tail
261 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700262always_inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800263session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700264 u32 offset, u8 is_in_order)
265{
266 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700267 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700268 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700269 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700270 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700271 int rv = 0;
272
Florin Coras1f152cd2017-08-18 19:28:03 -0700273 if (is_in_order && offset)
274 {
275 diff = offset - b->current_length;
276 if (diff > b->total_length_not_including_first_buffer)
277 return 0;
278 chain_b = b;
279 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
280 chain_bi = vlib_get_buffer_index (vm, chain_b);
281 }
282 else
283 chain_bi = b->next_buffer;
284
Florin Corasf6d68ed2017-05-07 19:12:02 -0700285 do
286 {
287 chain_b = vlib_get_buffer (vm, chain_bi);
288 data = vlib_buffer_get_current (chain_b);
289 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700290 if (!len)
291 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700292 if (is_in_order)
293 {
Florin Coras288eaab2019-02-03 15:26:14 -0800294 rv = svm_fifo_enqueue_nowait (s->rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700295 if (rv == len)
296 {
297 written += rv;
298 }
299 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700300 {
301 return (rv > 0) ? (written + rv) : written;
302 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700303 else if (rv > len)
304 {
305 written += rv;
306
307 /* written more than what was left in chain */
308 if (written > b->total_length_not_including_first_buffer)
309 return written;
310
311 /* drop the bytes that have already been delivered */
312 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
313 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700314 }
315 else
316 {
Florin Coras288eaab2019-02-03 15:26:14 -0800317 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700318 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700319 {
320 clib_warning ("failed to enqueue multi-buffer seg");
321 return -1;
322 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700323 offset += len;
324 }
325 }
326 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
327 ? chain_b->next_buffer : 0));
328
329 if (is_in_order)
330 return written;
331
332 return 0;
333}
334
Dave Barach68b0fb02017-02-28 15:15:56 -0500335/*
336 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
337 * event but on request can queue notification events for later delivery by
338 * calling stream_server_flush_enqueue_events().
339 *
340 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700341 * @param b Buffer to be enqueued
342 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500343 * @param queue_event Flag to indicate if peer is to be notified or if event
344 * is to be queued. The former is useful when more data is
345 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700346 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500347 * @return Number of bytes enqueued or a negative value if enqueueing failed.
348 */
349int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700350session_enqueue_stream_connection (transport_connection_t * tc,
351 vlib_buffer_t * b, u32 offset,
352 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500353{
Florin Coras288eaab2019-02-03 15:26:14 -0800354 session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700355 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500356
Florin Corascea194d2017-10-02 00:18:51 -0700357 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500358
Florin Corasf6d68ed2017-05-07 19:12:02 -0700359 if (is_in_order)
360 {
Florin Coras288eaab2019-02-03 15:26:14 -0800361 enqueued = svm_fifo_enqueue_nowait (s->rx_fifo,
Florin Coras1f152cd2017-08-18 19:28:03 -0700362 b->current_length,
363 vlib_buffer_get_current (b));
364 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
365 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700366 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700367 in_order_off = enqueued > b->current_length ? enqueued : 0;
368 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
369 if (rv > 0)
370 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700371 }
372 }
373 else
374 {
Florin Coras288eaab2019-02-03 15:26:14 -0800375 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700376 b->current_length,
377 vlib_buffer_get_current (b));
378 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700379 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
380 /* if something was enqueued, report even this as success for ooo
381 * segment handling */
382 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700383 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500384
385 if (queue_event)
386 {
387 /* Queue RX event on this fifo. Eventually these will need to be flushed
388 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800389 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500390
Florin Coras31c99552019-03-01 13:00:58 -0800391 wrk = session_main_get_worker (s->thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700392 if (s->enqueue_epoch != wrk->current_enqueue_epoch[tc->proto])
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700394 s->enqueue_epoch = wrk->current_enqueue_epoch[tc->proto];
395 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 }
397 }
398
Chris Lukeb2bcad62017-09-18 08:51:22 -0400399 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500400}
401
Florin Coras3cbc04b2017-10-02 00:18:51 -0700402int
Florin Coras288eaab2019-02-03 15:26:14 -0800403session_enqueue_dgram_connection (session_t * s,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700404 session_dgram_hdr_t * hdr,
405 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700406{
407 int enqueued = 0, rv, in_order_off;
408
Florin Coras288eaab2019-02-03 15:26:14 -0800409 ASSERT (svm_fifo_max_enqueue (s->rx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700410 >= b->current_length + sizeof (*hdr));
411
Florin Coras288eaab2019-02-03 15:26:14 -0800412 svm_fifo_enqueue_nowait (s->rx_fifo, sizeof (session_dgram_hdr_t),
Florin Coras7fb0fe12018-04-09 09:24:52 -0700413 (u8 *) hdr);
Florin Coras288eaab2019-02-03 15:26:14 -0800414 enqueued = svm_fifo_enqueue_nowait (s->rx_fifo, b->current_length,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700415 vlib_buffer_get_current (b));
416 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
417 {
418 in_order_off = enqueued > b->current_length ? enqueued : 0;
419 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
420 if (rv > 0)
421 enqueued += rv;
422 }
423 if (queue_event)
424 {
425 /* Queue RX event on this fifo. Eventually these will need to be flushed
426 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800427 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700428
Florin Coras31c99552019-03-01 13:00:58 -0800429 wrk = session_main_get_worker (s->thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700430 if (s->enqueue_epoch != wrk->current_enqueue_epoch[proto])
Florin Coras3cbc04b2017-10-02 00:18:51 -0700431 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700432 s->enqueue_epoch = wrk->current_enqueue_epoch[proto];
433 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700434 }
435 }
436 return enqueued;
437}
438
Florin Coras93992a92017-05-24 18:03:56 -0700439int
Florin Coras31c99552019-03-01 13:00:58 -0800440session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
441 u32 offset, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500442{
Florin Coras288eaab2019-02-03 15:26:14 -0800443 session_t *s = session_get (tc->s_index, tc->thread_index);
444 return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500445}
446
447u32
Florin Coras31c99552019-03-01 13:00:58 -0800448session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500449{
Florin Coras288eaab2019-02-03 15:26:14 -0800450 session_t *s = session_get (tc->s_index, tc->thread_index);
451 return svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500452}
453
Florin Coras72b04282019-01-14 17:23:11 -0800454static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800455session_notify_subscribers (u32 app_index, session_t * s,
Florin Coras72b04282019-01-14 17:23:11 -0800456 svm_fifo_t * f, session_evt_type_t evt_type)
457{
458 app_worker_t *app_wrk;
459 application_t *app;
460 int i;
461
462 app = application_get (app_index);
463 if (!app)
464 return -1;
465
466 for (i = 0; i < f->n_subscribers; i++)
467 {
468 app_wrk = application_get_worker (app, f->subscribers[i]);
469 if (!app_wrk)
470 continue;
471 if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
472 return -1;
473 }
474
475 return 0;
476}
477
Dave Barach68b0fb02017-02-28 15:15:56 -0500478/**
479 * Notify session peer that new data has been enqueued.
480 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700481 * @param s Stream session for which the event is to be generated.
482 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500483 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700484 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500485 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700486static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800487session_enqueue_notify (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500488{
Florin Coras72b04282019-01-14 17:23:11 -0800489 app_worker_t *app_wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500490
Florin Coras72b04282019-01-14 17:23:11 -0800491 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
492 if (PREDICT_FALSE (!app_wrk))
Dave Barach818eb542017-08-02 13:56:13 -0400493 {
Florin Coras15531972018-08-12 23:50:53 -0700494 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400495 return 0;
496 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500497
Florin Corase69f4952017-03-07 10:06:24 -0800498 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700499 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Corasf6c43132019-03-01 12:41:21 -0800500 ed->data[0] = SESSION_IO_EVT_RX;
Florin Coras288eaab2019-02-03 15:26:14 -0800501 ed->data[1] = svm_fifo_max_dequeue (s->rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800502 }));
503 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500504
Florin Coras72b04282019-01-14 17:23:11 -0800505 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800506 SESSION_IO_EVT_RX)))
Florin Coras72b04282019-01-14 17:23:11 -0800507 return -1;
508
Florin Coras288eaab2019-02-03 15:26:14 -0800509 if (PREDICT_FALSE (svm_fifo_n_subscribers (s->rx_fifo)))
Florin Coras72b04282019-01-14 17:23:11 -0800510 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800511 s->rx_fifo, SESSION_IO_EVT_RX);
Florin Coras72b04282019-01-14 17:23:11 -0800512
513 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500514}
515
Florin Coras0d60a0f2018-06-29 02:02:08 -0700516int
Florin Coras288eaab2019-02-03 15:26:14 -0800517session_dequeue_notify (session_t * s)
Florin Coras0d60a0f2018-06-29 02:02:08 -0700518{
Florin Coras72b04282019-01-14 17:23:11 -0800519 app_worker_t *app_wrk;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700520
Florin Coras72b04282019-01-14 17:23:11 -0800521 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
522 if (PREDICT_FALSE (!app_wrk))
Florin Coras208daa12018-07-02 01:30:51 -0700523 return -1;
524
Florin Coras72b04282019-01-14 17:23:11 -0800525 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800526 SESSION_IO_EVT_TX)))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800527 return -1;
528
Florin Coras288eaab2019-02-03 15:26:14 -0800529 if (PREDICT_FALSE (s->tx_fifo->n_subscribers))
Florin Coras72b04282019-01-14 17:23:11 -0800530 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800531 s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras72b04282019-01-14 17:23:11 -0800532
Florin Coras288eaab2019-02-03 15:26:14 -0800533 svm_fifo_clear_tx_ntf (s->tx_fifo);
Florin Coras72b04282019-01-14 17:23:11 -0800534
Florin Coras1bcad5c2019-01-09 20:04:38 -0800535 return 0;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700536}
537
Dave Barach68b0fb02017-02-28 15:15:56 -0500538/**
539 * Flushes queue of sessions that are to be notified of new data
540 * enqueued events.
541 *
542 * @param thread_index Thread index for which the flush is to be performed.
543 * @return 0 on success or a positive number indicating the number of
544 * failures due to API queue being full.
545 */
546int
Florin Coras31c99552019-03-01 13:00:58 -0800547session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500548{
Florin Coras31c99552019-03-01 13:00:58 -0800549 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800550 session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700551 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700552 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500553
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700554 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500555
Florin Coras3cbc04b2017-10-02 00:18:51 -0700556 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500557 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700558 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700559 if (PREDICT_FALSE (!s))
560 {
561 errors++;
562 continue;
563 }
Florin Coras21795132018-09-09 09:40:51 -0700564 if (PREDICT_FALSE (session_enqueue_notify (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700565 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500566 }
567
Florin Coras3cbc04b2017-10-02 00:18:51 -0700568 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700569 wrk->session_to_enqueue[transport_proto] = indices;
570 wrk->current_enqueue_epoch[transport_proto]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500571
572 return errors;
573}
574
Florin Coras7fb0fe12018-04-09 09:24:52 -0700575int
Florin Coras31c99552019-03-01 13:00:58 -0800576session_main_flush_all_enqueue_events (u8 transport_proto)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700577{
578 vlib_thread_main_t *vtm = vlib_get_thread_main ();
579 int i, errors = 0;
580 for (i = 0; i < 1 + vtm->n_threads; i++)
Florin Coras31c99552019-03-01 13:00:58 -0800581 errors += session_main_flush_enqueue_events (transport_proto, i);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700582 return errors;
583}
584
Florin Corasf03a59a2017-06-09 21:07:32 -0700585int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700586session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500587{
Florin Coras371ca502018-02-21 12:07:41 -0800588 u32 opaque = 0, new_ti, new_si;
Florin Coras15531972018-08-12 23:50:53 -0700589 app_worker_t *app_wrk;
Florin Corasa27a46e2019-02-18 13:02:28 -0800590 session_t *s = 0;
591 u64 ho_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500592
Florin Coras3cbc04b2017-10-02 00:18:51 -0700593 /*
594 * Find connection handle and cleanup half-open table
595 */
Florin Corasa27a46e2019-02-18 13:02:28 -0800596 ho_handle = session_lookup_half_open_handle (tc);
597 if (ho_handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500598 {
Florin Corascea194d2017-10-02 00:18:51 -0700599 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700600 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500601 }
Florin Corascea194d2017-10-02 00:18:51 -0700602 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400603
Florin Corasab0289a2017-08-14 11:25:25 -0700604 /* Get the app's index from the handle we stored when opening connection
605 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400606 * index */
Florin Corasa27a46e2019-02-18 13:02:28 -0800607 app_wrk = app_worker_get_if_valid (ho_handle >> 32);
Florin Coras15531972018-08-12 23:50:53 -0700608 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700609 return -1;
Florin Corasa27a46e2019-02-18 13:02:28 -0800610
Florin Corasab0289a2017-08-14 11:25:25 -0700611 opaque = tc->s_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500612
Florin Corasa27a46e2019-02-18 13:02:28 -0800613 if (is_fail)
614 return app_worker_connect_notify (app_wrk, s, opaque);
615
616 s = session_alloc_for_connection (tc);
617 s->session_state = SESSION_STATE_CONNECTING;
618 s->app_wrk_index = app_wrk->wrk_index;
619 new_si = s->session_index;
620 new_ti = s->thread_index;
621
622 if (app_worker_init_connected (app_wrk, s))
Dave Barach68b0fb02017-02-28 15:15:56 -0500623 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800624 session_free (s);
625 app_worker_connect_notify (app_wrk, 0, opaque);
626 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500627 }
628
Florin Corasa27a46e2019-02-18 13:02:28 -0800629 if (app_worker_connect_notify (app_wrk, s, opaque))
Florin Coras6534b7a2017-07-18 05:38:03 -0400630 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800631 s = session_get (new_si, new_ti);
632 session_free_w_fifos (s);
633 return -1;
Florin Coras6534b7a2017-07-18 05:38:03 -0400634 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500635
Florin Corasa27a46e2019-02-18 13:02:28 -0800636 s = session_get (new_si, new_ti);
637 s->session_state = SESSION_STATE_READY;
638 session_lookup_add_connection (tc, session_handle (s));
639
640 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641}
642
Florin Coras3cbc04b2017-10-02 00:18:51 -0700643typedef struct _session_switch_pool_args
644{
645 u32 session_index;
646 u32 thread_index;
647 u32 new_thread_index;
648 u32 new_session_index;
649} session_switch_pool_args_t;
650
651static void
652session_switch_pool (void *cb_args)
653{
654 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras288eaab2019-02-03 15:26:14 -0800655 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700656 ASSERT (args->thread_index == vlib_get_thread_index ());
657 s = session_get (args->session_index, args->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800658 s->tx_fifo->master_session_index = args->new_session_index;
659 s->tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras1ee78302019-02-05 15:51:15 -0800660 transport_cleanup (session_get_transport_proto (s), s->connection_index,
661 s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700662 session_free (s);
663 clib_mem_free (cb_args);
664}
665
666/**
667 * Move dgram session to the right thread
668 */
669int
670session_dgram_connect_notify (transport_connection_t * tc,
Florin Coras288eaab2019-02-03 15:26:14 -0800671 u32 old_thread_index, session_t ** new_session)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700672{
Florin Coras288eaab2019-02-03 15:26:14 -0800673 session_t *new_s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700674 session_switch_pool_args_t *rpc_args;
675
676 /*
677 * Clone half-open session to the right thread.
678 */
679 new_s = session_clone_safe (tc->s_index, old_thread_index);
680 new_s->connection_index = tc->c_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800681 new_s->rx_fifo->master_session_index = new_s->session_index;
682 new_s->rx_fifo->master_thread_index = new_s->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700683 new_s->session_state = SESSION_STATE_READY;
684 session_lookup_add_connection (tc, session_handle (new_s));
685
686 /*
687 * Ask thread owning the old session to clean it up and make us the tx
688 * fifo owner
689 */
690 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
691 rpc_args->new_session_index = new_s->session_index;
692 rpc_args->new_thread_index = new_s->thread_index;
693 rpc_args->session_index = tc->s_index;
694 rpc_args->thread_index = old_thread_index;
695 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
696 rpc_args);
697
698 tc->s_index = new_s->session_index;
699 new_s->connection_index = tc->c_index;
700 *new_session = new_s;
701 return 0;
702}
703
Dave Barach68b0fb02017-02-28 15:15:56 -0500704/**
705 * Notification from transport that connection is being closed.
706 *
707 * A disconnect is sent to application but state is not removed. Once
708 * disconnect is acknowledged by application, session disconnect is called.
709 * Ultimately this leads to close being called on transport (passive close).
710 */
711void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800712session_transport_closing_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500713{
Florin Coras15531972018-08-12 23:50:53 -0700714 app_worker_t *app_wrk;
715 application_t *app;
Florin Coras288eaab2019-02-03 15:26:14 -0800716 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500717
Florin Corascea194d2017-10-02 00:18:51 -0700718 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -0700719 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
720 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700721 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -0700722 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
723 if (!app_wrk)
724 return;
725 app = application_get (app_wrk->app_index);
726 app->cb_fns.session_disconnect_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500727}
728
729/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500730 * Notification from transport that connection is being deleted
731 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400732 * This removes the session if it is still valid. It should be called only on
733 * previously fully established sessions. For instance failed connects should
734 * call stream_session_connect_notify and indicate that the connect has
735 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500736 */
737void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800738session_transport_delete_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500739{
Florin Coras288eaab2019-02-03 15:26:14 -0800740 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741
Florin Corase04c2992017-03-01 08:17:34 -0800742 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -0700743 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -0700744 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700745
746 /* Make sure we don't try to send anything more */
Florin Coras288eaab2019-02-03 15:26:14 -0800747 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700748
749 switch (s->session_state)
750 {
Florin Coras222e1f412019-02-16 20:47:32 -0800751 case SESSION_STATE_CREATED:
752 /* Session was created but accept notification was not yet sent to the
753 * app. Cleanup everything. */
754 session_lookup_del_session (s);
755 session_free_w_fifos (s);
756 break;
Florin Corasb0f662f2018-12-27 14:51:46 -0800757 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -0700758 case SESSION_STATE_TRANSPORT_CLOSING:
759 /* If transport finishes or times out before we get a reply
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800760 * from the app, mark transport as closed and wait for reply
761 * before removing the session. Cleanup session table in advance
Florin Corasa9d5bea2018-12-17 08:24:19 -0800762 * because transport will soon be closed and closed sessions
763 * are assumed to have been removed from the lookup table */
764 session_lookup_del_session (s);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800765 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
Florin Coras568ebc72018-09-18 16:12:50 -0700766 break;
767 case SESSION_STATE_CLOSING:
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800768 case SESSION_STATE_CLOSED_WAITING:
769 /* Cleanup lookup table as transport needs to still be valid.
770 * Program transport close to ensure that all session events
771 * have been cleaned up. Once transport close is called, the
772 * session is just removed because both transport and app have
773 * confirmed the close*/
Florin Coras568ebc72018-09-18 16:12:50 -0700774 session_lookup_del_session (s);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800775 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
776 session_program_transport_close (s);
Florin Coras568ebc72018-09-18 16:12:50 -0700777 break;
Florin Corasb0f662f2018-12-27 14:51:46 -0800778 case SESSION_STATE_TRANSPORT_CLOSED:
779 break;
Florin Coras568ebc72018-09-18 16:12:50 -0700780 case SESSION_STATE_CLOSED:
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800781 session_delete (s);
Florin Coras568ebc72018-09-18 16:12:50 -0700782 break;
Florin Corasc01d5782018-10-17 14:53:11 -0700783 default:
Florin Corasb0f662f2018-12-27 14:51:46 -0800784 clib_warning ("session state %u", s->session_state);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800785 session_delete (s);
Florin Corasc01d5782018-10-17 14:53:11 -0700786 break;
Florin Coras568ebc72018-09-18 16:12:50 -0700787 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500788}
789
790/**
Florin Coras54ddf432018-12-21 13:54:09 -0800791 * Notification from transport that session can be closed
792 *
793 * Should be called by transport only if it was closed with non-empty
794 * tx fifo and once it decides to begin the closing procedure prior to
795 * issuing a delete notify. This gives the chance to the session layer
796 * to cleanup any outstanding events.
797 */
798void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800799session_transport_closed_notify (transport_connection_t * tc)
Florin Coras54ddf432018-12-21 13:54:09 -0800800{
Florin Coras288eaab2019-02-03 15:26:14 -0800801 session_t *s;
Florin Coras54ddf432018-12-21 13:54:09 -0800802
803 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
804 return;
Florin Corasb0f662f2018-12-27 14:51:46 -0800805
806 /* If app close has not been received or has not yet resulted in
807 * a transport close, only mark the session transport as closed */
808 if (s->session_state <= SESSION_STATE_CLOSING)
809 {
810 session_lookup_del_session (s);
811 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
812 }
813 else
814 s->session_state = SESSION_STATE_CLOSED;
Florin Coras54ddf432018-12-21 13:54:09 -0800815}
816
817/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500818 * Notify application that connection has been reset.
819 */
820void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800821session_transport_reset_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500822{
Florin Coras288eaab2019-02-03 15:26:14 -0800823 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700824 app_worker_t *app_wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500825 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700826 s = session_get (tc->s_index, tc->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800827 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800828 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
829 return;
830 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -0700831 app_wrk = app_worker_get (s->app_wrk_index);
832 app = application_get (app_wrk->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 app->cb_fns.session_reset_callback (s);
834}
835
Florin Corasa27a46e2019-02-18 13:02:28 -0800836int
837session_stream_accept_notify (transport_connection_t * tc)
838{
839 app_worker_t *app_wrk;
840 session_t *s;
841
842 s = session_get (tc->s_index, tc->thread_index);
843 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
844 if (!app_wrk)
845 return -1;
846 s->session_state = SESSION_STATE_ACCEPTING;
847 return app_worker_accept_notify (app_wrk, s);
848}
849
Dave Barach68b0fb02017-02-28 15:15:56 -0500850/**
851 * Accept a stream session. Optionally ping the server by callback.
852 */
853int
Florin Corasc9940fc2019-02-05 20:55:11 -0800854session_stream_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700855 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500856{
Florin Corasa27a46e2019-02-18 13:02:28 -0800857 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500858 int rv;
859
Florin Corasa27a46e2019-02-18 13:02:28 -0800860 s = session_alloc_for_connection (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700861 s->listener_index = listener_index;
Florin Coras222e1f412019-02-16 20:47:32 -0800862 s->session_state = SESSION_STATE_CREATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500863
Florin Corasa27a46e2019-02-18 13:02:28 -0800864 if ((rv = app_worker_init_accepted (s)))
865 return rv;
866
867 session_lookup_add_connection (tc, session_handle (s));
868
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 /* Shoulder-tap the server */
870 if (notify)
871 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800872 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
873 return app_worker_accept_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500874 }
875
876 return 0;
877}
878
Florin Coras371ca502018-02-21 12:07:41 -0800879int
Florin Coras15531972018-08-12 23:50:53 -0700880session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800881{
882 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -0700883 transport_endpoint_cfg_t *tep;
Florin Coras15531972018-08-12 23:50:53 -0700884 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800885 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -0800886 int rv;
887
Florin Coras5665ced2018-10-25 18:03:45 -0700888 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -0800889 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -0800890 if (rv < 0)
891 {
892 SESSION_DBG ("Transport failed to open connection.");
893 return VNET_API_ERROR_SESSION_CONNECT;
894 }
895
Florin Coras1ee78302019-02-05 15:51:15 -0800896 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -0800897
Florin Corasa27a46e2019-02-18 13:02:28 -0800898 /* For dgram type of service, allocate session and fifos now */
Florin Coras15531972018-08-12 23:50:53 -0700899 app_wrk = app_worker_get (app_wrk_index);
Florin Corasa27a46e2019-02-18 13:02:28 -0800900 s = session_alloc_for_connection (tc);
Florin Coras15531972018-08-12 23:50:53 -0700901 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700902 s->session_state = SESSION_STATE_OPENED;
Florin Corasa27a46e2019-02-18 13:02:28 -0800903 if (app_worker_init_connected (app_wrk, s))
904 {
905 session_free (s);
906 return -1;
907 }
Florin Coras371ca502018-02-21 12:07:41 -0800908
Florin Corasa27a46e2019-02-18 13:02:28 -0800909 return app_worker_connect_notify (app_wrk, s, opaque);
Florin Coras371ca502018-02-21 12:07:41 -0800910}
911
912int
Florin Coras15531972018-08-12 23:50:53 -0700913session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800914{
915 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -0700916 transport_endpoint_cfg_t *tep;
Florin Coras371ca502018-02-21 12:07:41 -0800917 u64 handle;
918 int rv;
919
Florin Coras5665ced2018-10-25 18:03:45 -0700920 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -0800921 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -0800922 if (rv < 0)
923 {
924 SESSION_DBG ("Transport failed to open connection.");
925 return VNET_API_ERROR_SESSION_CONNECT;
926 }
927
Florin Coras1ee78302019-02-05 15:51:15 -0800928 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -0800929
930 /* If transport offers a stream service, only allocate session once the
931 * connection has been established.
932 * Add connection to half-open table and save app and tc index. The
933 * latter is needed to help establish the connection while the former
934 * is needed when the connect notify comes and we have to notify the
935 * external app
936 */
Florin Coras15531972018-08-12 23:50:53 -0700937 handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
Florin Coras371ca502018-02-21 12:07:41 -0800938 session_lookup_add_half_open (tc, handle);
939
940 /* Store api_context (opaque) for when the reply comes. Not the nicest
941 * thing but better than allocating a separate half-open pool.
942 */
943 tc->s_index = opaque;
944 return 0;
945}
946
947int
Florin Coras15531972018-08-12 23:50:53 -0700948session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800949{
Florin Coras5665ced2018-10-25 18:03:45 -0700950 session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt;
951 transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep);
952
Florin Coras15531972018-08-12 23:50:53 -0700953 sep->app_wrk_index = app_wrk_index;
Florin Coras8f89dd02018-03-05 16:53:07 -0800954 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800955
Florin Coras1ee78302019-02-05 15:51:15 -0800956 return transport_connect (rmt->transport_proto, tep_cfg);
Florin Coras371ca502018-02-21 12:07:41 -0800957}
958
959typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
960
961/* *INDENT-OFF* */
962static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
963 session_open_vc,
964 session_open_cl,
965 session_open_app,
966};
967/* *INDENT-ON* */
968
Florin Coras6cf30ad2017-04-04 23:08:23 -0700969/**
970 * Ask transport to open connection to remote transport endpoint.
971 *
972 * Stores handle for matching request with reply since the call can be
973 * asynchronous. For instance, for TCP the 3-way handshake must complete
974 * before reply comes. Session is only created once connection is established.
975 *
976 * @param app_index Index of the application requesting the connect
977 * @param st Session type requested.
978 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700979 * @param opaque Opaque data (typically, api_context) the application expects
980 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700981 */
Florin Corase04c2992017-03-01 08:17:34 -0800982int
Florin Coras15531972018-08-12 23:50:53 -0700983session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500984{
Florin Coras1ee78302019-02-05 15:51:15 -0800985 transport_service_type_t tst;
986 tst = transport_protocol_service_type (rmt->transport_proto);
Florin Coras15531972018-08-12 23:50:53 -0700987 return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700988}
989
Florin Coras7fb0fe12018-04-09 09:24:52 -0700990/**
Florin Corasab2f6db2018-08-31 14:31:41 -0700991 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -0700992 *
993 * @param s Session for which listen will be called. Note that unlike
994 * established sessions, listen sessions are not associated to a
995 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -0700996 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -0700997 */
Florin Coras371ca502018-02-21 12:07:41 -0800998int
Florin Coras288eaab2019-02-03 15:26:14 -0800999session_listen (session_t * ls, session_endpoint_cfg_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001000{
Florin Corasab2f6db2018-08-31 14:31:41 -07001001 transport_endpoint_t *tep;
Florin Coras74cac882018-09-07 09:13:15 -07001002 u32 tc_index, s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001003
1004 /* Transport bind/listen */
1005 tep = session_endpoint_to_transport (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001006 s_index = ls->session_index;
Florin Corasd4295e62019-02-22 13:11:38 -08001007 tc_index = transport_start_listen (session_get_transport_proto (ls),
1008 s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001009
1010 if (tc_index == (u32) ~ 0)
1011 return -1;
1012
Florin Corasd4295e62019-02-22 13:11:38 -08001013 /* Attach transport to session. Lookup tables are populated by the app
1014 * worker because local tables (for ct sessions) are not backed by a fib */
Florin Coras74cac882018-09-07 09:13:15 -07001015 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001016 ls->connection_index = tc_index;
1017
Florin Corasab2f6db2018-08-31 14:31:41 -07001018 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001019}
1020
Florin Coras6cf30ad2017-04-04 23:08:23 -07001021/**
1022 * Ask transport to stop listening on local transport endpoint.
1023 *
1024 * @param s Session to stop listening on. It must be in state LISTENING.
1025 */
1026int
Florin Coras288eaab2019-02-03 15:26:14 -08001027session_stop_listen (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001028{
Florin Coras561af9b2017-12-09 10:19:43 -08001029 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001030 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001031
Florin Coras1ee78302019-02-05 15:51:15 -08001032 if (s->session_state != SESSION_STATE_LISTENING)
1033 return -1;
1034
1035 tc = transport_get_listener (tp, s->connection_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001036 if (!tc)
Florin Coras1ee78302019-02-05 15:51:15 -08001037 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001038
Florin Corascea194d2017-10-02 00:18:51 -07001039 session_lookup_del_connection (tc);
Florin Coras1ee78302019-02-05 15:51:15 -08001040 transport_stop_listen (tp, s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001041 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001042}
1043
1044/**
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001045 * Initialize session closing procedure.
Florin Corasa5464812017-04-19 13:00:05 -07001046 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001047 * Request is always sent to session node to ensure that all outstanding
1048 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001049 */
1050void
Florin Coras288eaab2019-02-03 15:26:14 -08001051session_close (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001052{
Florin Coras25579b42018-06-06 17:55:02 -07001053 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001054 return;
Florin Coras25579b42018-06-06 17:55:02 -07001055
1056 if (s->session_state >= SESSION_STATE_CLOSING)
1057 {
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001058 /* Session will only be removed once both app and transport
1059 * acknowledge the close */
1060 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1061 session_program_transport_close (s);
1062
Florin Coras25579b42018-06-06 17:55:02 -07001063 /* Session already closed. Clear the tx fifo */
1064 if (s->session_state == SESSION_STATE_CLOSED)
Florin Coras288eaab2019-02-03 15:26:14 -08001065 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras25579b42018-06-06 17:55:02 -07001066 return;
1067 }
1068
Florin Corasb2371c22018-05-31 17:14:10 -07001069 s->session_state = SESSION_STATE_CLOSING;
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001070 session_program_transport_close (s);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001071}
1072
1073/**
1074 * Notify transport the session can be disconnected. This should eventually
1075 * result in a delete notification that allows us to cleanup session state.
1076 * Called for both active/passive disconnects.
1077 *
1078 * Must be called from the session's thread.
1079 */
1080void
Florin Coras288eaab2019-02-03 15:26:14 -08001081session_transport_close (session_t * s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001082{
Florin Coras568ebc72018-09-18 16:12:50 -07001083 /* If transport is already closed, just free the session */
Florin Corasb0f662f2018-12-27 14:51:46 -08001084 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
Florin Coras568ebc72018-09-18 16:12:50 -07001085 {
1086 session_free_w_fifos (s);
1087 return;
1088 }
Florin Coras78cc4b02018-12-20 18:24:49 -08001089
1090 /* If tx queue wasn't drained, change state to closed waiting for transport.
1091 * This way, the transport, if it so wishes, can continue to try sending the
1092 * outstanding data (in closed state it cannot). It MUST however at one
1093 * point, either after sending everything or after a timeout, call delete
1094 * notify. This will finally lead to the complete cleanup of the session.
1095 */
Florin Coras288eaab2019-02-03 15:26:14 -08001096 if (svm_fifo_max_dequeue (s->tx_fifo))
Florin Coras78cc4b02018-12-20 18:24:49 -08001097 s->session_state = SESSION_STATE_CLOSED_WAITING;
1098 else
1099 s->session_state = SESSION_STATE_CLOSED;
1100
Florin Coras1ee78302019-02-05 15:51:15 -08001101 transport_close (session_get_transport_proto (s), s->connection_index,
1102 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001103}
1104
1105/**
1106 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001107 *
Florin Coras25579b42018-06-06 17:55:02 -07001108 * Notify transport of the cleanup and free the session. This should
1109 * be called only if transport reported some error and is already
1110 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 */
1112void
Florin Coras288eaab2019-02-03 15:26:14 -08001113session_transport_cleanup (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001114{
Florin Corasd79b41e2017-03-04 05:37:52 -08001115 s->session_state = SESSION_STATE_CLOSED;
1116
Florin Coras25579b42018-06-06 17:55:02 -07001117 /* Delete from main lookup table before we axe the the transport */
1118 session_lookup_del_session (s);
Florin Coras1ee78302019-02-05 15:51:15 -08001119 transport_cleanup (session_get_transport_proto (s), s->connection_index,
1120 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001121 /* Since we called cleanup, no delete notification will come. So, make
1122 * sure the session is properly freed. */
Florin Coras568ebc72018-09-18 16:12:50 -07001123 session_free_w_fifos (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001124}
1125
Florin Corasa5464812017-04-19 13:00:05 -07001126/**
Florin Corasb384b542018-01-15 01:08:33 -08001127 * Allocate event queues in the shared-memory segment
1128 *
1129 * That can either be a newly created memfd segment, that will need to be
1130 * mapped by all stack users, or the binary api's svm region. The latter is
1131 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1132 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1133 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001134 */
1135void
Florin Coras31c99552019-03-01 13:00:58 -08001136session_vpp_event_queues_allocate (session_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001137{
Florin Coras52207f12018-07-12 14:48:06 -07001138 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Corasb384b542018-01-15 01:08:33 -08001139 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001140 api_main_t *am = &api_main;
Florin Corasb4c14912019-02-09 13:51:25 -08001141 uword eqs_size = 64 << 20;
Florin Corasb384b542018-01-15 01:08:33 -08001142 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001143 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001144 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001145
Florin Corasb384b542018-01-15 01:08:33 -08001146 if (smm->configured_event_queue_length)
1147 evt_q_length = smm->configured_event_queue_length;
1148
1149 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001150 {
Florin Corasb384b542018-01-15 01:08:33 -08001151 if (smm->evt_qs_segment_size)
1152 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001153
Florin Corasb384b542018-01-15 01:08:33 -08001154 eqs->ssvm_size = eqs_size;
1155 eqs->i_am_master = 1;
1156 eqs->my_pid = vpp_pid;
1157 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1158 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001159
Florin Coras95e0ce02018-07-05 23:44:23 -07001160 if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1161 {
1162 clib_warning ("failed to initialize queue segment");
1163 return;
1164 }
Florin Corasa5464812017-04-19 13:00:05 -07001165 }
Florin Corasb384b542018-01-15 01:08:33 -08001166
1167 if (smm->evt_qs_use_memfd_seg)
1168 oldheap = ssvm_push_heap (eqs->sh);
1169 else
1170 oldheap = svm_push_data_heap (am->vlib_rp);
1171
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001172 for (i = 0; i < vec_len (smm->wrk); i++)
Florin Corasb384b542018-01-15 01:08:33 -08001173 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001174 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
Florin Coras3c2fed52018-07-04 04:15:05 -07001175 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1176 {evt_q_length, evt_size, 0}
1177 ,
Florin Corasb4c14912019-02-09 13:51:25 -08001178 {evt_q_length >> 1, 256, 0}
Florin Coras3c2fed52018-07-04 04:15:05 -07001179 };
1180 cfg->consumer_pid = 0;
1181 cfg->n_rings = 2;
1182 cfg->q_nitems = evt_q_length;
1183 cfg->ring_cfgs = rc;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001184 smm->wrk[i].vpp_event_queue = svm_msg_q_alloc (cfg);
Florin Coras99368312018-08-02 10:45:44 -07001185 if (smm->evt_qs_use_memfd_seg)
1186 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001187 if (svm_msg_q_alloc_consumer_eventfd (smm->wrk[i].vpp_event_queue))
Florin Coras99368312018-08-02 10:45:44 -07001188 clib_warning ("eventfd returned");
1189 }
Florin Corasb384b542018-01-15 01:08:33 -08001190 }
1191
1192 if (smm->evt_qs_use_memfd_seg)
1193 ssvm_pop_heap (oldheap);
1194 else
1195 svm_pop_heap (oldheap);
1196}
1197
1198ssvm_private_t *
Florin Coras31c99552019-03-01 13:00:58 -08001199session_main_get_evt_q_segment (void)
Florin Corasb384b542018-01-15 01:08:33 -08001200{
Florin Coras31c99552019-03-01 13:00:58 -08001201 session_main_t *smm = &session_main;
Florin Corasb384b542018-01-15 01:08:33 -08001202 if (smm->evt_qs_use_memfd_seg)
1203 return &smm->evt_qs_segment;
1204 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001205}
1206
Florin Coras31c99552019-03-01 13:00:58 -08001207u64
1208session_segment_handle (session_t * s)
1209{
1210 svm_fifo_t *f;
1211
1212 if (s->session_state == SESSION_STATE_LISTENING)
1213 return SESSION_INVALID_HANDLE;
1214
1215 f = s->rx_fifo;
1216 return segment_manager_make_segment_handle (f->segment_manager,
1217 f->segment_index);
1218}
1219
Florin Coras371ca502018-02-21 12:07:41 -08001220/* *INDENT-OFF* */
1221static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1222 session_tx_fifo_peek_and_snd,
1223 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001224 session_tx_fifo_dequeue_internal,
1225 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001226};
1227/* *INDENT-ON* */
1228
Florin Coras561af9b2017-12-09 10:19:43 -08001229/**
1230 * Initialize session layer for given transport proto and ip version
1231 *
1232 * Allocates per session type (transport proto + ip version) data structures
1233 * and adds arc from session queue node to session type output node.
1234 */
1235void
1236session_register_transport (transport_proto_t transport_proto,
1237 const transport_proto_vft_t * vft, u8 is_ip4,
1238 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001239{
Florin Coras31c99552019-03-01 13:00:58 -08001240 session_main_t *smm = &session_main;
Florin Coras561af9b2017-12-09 10:19:43 -08001241 session_type_t session_type;
1242 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001243
Florin Coras561af9b2017-12-09 10:19:43 -08001244 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1245
1246 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001247 vec_validate (smm->session_tx_fns, session_type);
1248
1249 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001250 if (output_node != ~0)
1251 {
1252 foreach_vlib_main (({
1253 next_index = vlib_node_add_next (this_vlib_main,
1254 session_queue_node.index,
1255 output_node);
1256 }));
1257 }
Florin Coras561af9b2017-12-09 10:19:43 -08001258 /* *INDENT-ON* */
1259
1260 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001261 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001262}
1263
Florin Coras3cbc04b2017-10-02 00:18:51 -07001264transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001265session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001266{
Florin Corasade70e42017-10-14 18:56:41 -07001267 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras4edc37e2019-02-04 23:01:34 -08001268 return transport_get_connection (session_get_transport_proto (s),
1269 s->connection_index, s->thread_index);
1270 else
1271 return transport_get_listener (session_get_transport_proto (s),
1272 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001273}
1274
1275transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001276listen_session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001277{
Florin Coras4edc37e2019-02-04 23:01:34 -08001278 return transport_get_listener (session_get_transport_proto (s),
1279 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001280}
1281
Florin Corasfd542f12018-05-16 19:28:24 -07001282void
1283session_flush_frames_main_thread (vlib_main_t * vm)
1284{
1285 ASSERT (vlib_get_thread_index () == 0);
1286 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1287 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1288}
1289
Dave Barach68b0fb02017-02-28 15:15:56 -05001290static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001291session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001292{
Florin Corasa332c462018-01-31 06:52:17 -08001293 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Florin Coras31c99552019-03-01 13:00:58 -08001294 session_main_t *smm = &session_main;
Florin Corase04c2992017-03-01 08:17:34 -08001295 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001296 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras31c99552019-03-01 13:00:58 -08001297 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001298 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001299
Dave Barach68b0fb02017-02-28 15:15:56 -05001300 num_threads = 1 /* main thread */ + vtm->n_threads;
1301
1302 if (num_threads < 1)
1303 return clib_error_return (0, "n_thread_stacks not set");
1304
Florin Coras5f56d732018-10-30 10:21:59 -07001305 /* Allocate cache line aligned worker contexts */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001306 vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001307
1308 for (i = 0; i < TRANSPORT_N_PROTO; i++)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001309 {
Florin Coras7fb0fe12018-04-09 09:24:52 -07001310 for (j = 0; j < num_threads; j++)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001311 smm->wrk[j].current_enqueue_epoch[i] = 1;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001312 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001313
Dave Barachacd2a6a2017-05-16 17:41:34 -04001314 for (i = 0; i < num_threads; i++)
1315 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001316 wrk = &smm->wrk[i];
Florin Coras5f56d732018-10-30 10:21:59 -07001317 vec_validate (wrk->free_event_vector, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001318 _vec_len (wrk->free_event_vector) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001319 vec_validate (wrk->pending_event_vector, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001320 _vec_len (wrk->pending_event_vector) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001321 vec_validate (wrk->pending_disconnects, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001322 _vec_len (wrk->pending_disconnects) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001323 vec_validate (wrk->postponed_event_vector, 128);
1324 _vec_len (wrk->postponed_event_vector) = 0;
Florin Corasd67f1122018-05-21 17:47:40 -07001325
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001326 wrk->last_vlib_time = vlib_time_now (vlib_mains[i]);
Florin Corasc44a5582018-11-01 16:30:54 -07001327 wrk->dispatch_period = 500e-6;
Florin Corasd67f1122018-05-21 17:47:40 -07001328
Florin Coras29ca16f2017-11-02 18:14:17 -04001329 if (num_threads > 1)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001330 clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001331 }
1332
Florin Corasc1a448b2018-04-20 10:51:49 -07001333#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -07001334 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1335#endif
1336
Florin Corasb384b542018-01-15 01:08:33 -08001337 /* Allocate vpp event queues segment and queue */
1338 session_vpp_event_queues_allocate (smm);
1339
1340 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001341 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1342 sm_args->size = smm->session_va_space_size;
1343 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001344
Florin Coras66b11312017-07-31 17:18:03 -07001345 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001346 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001347 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001348 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001349 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001350 pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001351 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001352 else
Florin Coras66b11312017-07-31 17:18:03 -07001353 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001354 int j;
1355 preallocated_sessions_per_worker =
1356 (1.1 * (f64) smm->preallocated_sessions /
1357 (f64) (num_threads - 1));
1358
1359 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001360 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001361 pool_init_fixed (smm->wrk[j].sessions,
Dave Barachb7f1faa2017-08-29 11:43:37 -04001362 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001363 }
Florin Coras66b11312017-07-31 17:18:03 -07001364 }
1365 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001366
Florin Coras04e53442017-07-16 17:12:15 -07001367 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001368 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001369 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001370
Florin Corase04c2992017-03-01 08:17:34 -08001371 smm->is_enabled = 1;
1372
Florin Coras561af9b2017-12-09 10:19:43 -08001373 /* Enable transports */
1374 transport_enable_disable (vm, 1);
Florin Corasd67f1122018-05-21 17:47:40 -07001375 transport_init_tx_pacers_period ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001376 return 0;
1377}
1378
Florin Corasa5464812017-04-19 13:00:05 -07001379void
1380session_node_enable_disable (u8 is_en)
1381{
1382 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Corasfd542f12018-05-16 19:28:24 -07001383 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1384 u8 have_workers = vtm->n_threads != 0;
1385
Florin Corasa5464812017-04-19 13:00:05 -07001386 /* *INDENT-OFF* */
1387 foreach_vlib_main (({
Florin Corasfd542f12018-05-16 19:28:24 -07001388 if (have_workers && ii == 0)
1389 {
1390 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1391 state);
1392 if (is_en)
1393 {
1394 vlib_node_t *n = vlib_get_node (this_vlib_main,
1395 session_queue_process_node.index);
1396 vlib_start_process (this_vlib_main, n->runtime_index);
1397 }
1398 else
1399 {
1400 vlib_process_signal_event_mt (this_vlib_main,
1401 session_queue_process_node.index,
1402 SESSION_Q_PROCESS_STOP, 0);
1403 }
1404
1405 continue;
1406 }
Florin Corasa5464812017-04-19 13:00:05 -07001407 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1408 state);
1409 }));
1410 /* *INDENT-ON* */
1411}
1412
Florin Corase04c2992017-03-01 08:17:34 -08001413clib_error_t *
1414vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1415{
Florin Corascea194d2017-10-02 00:18:51 -07001416 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001417 if (is_en)
1418 {
Florin Coras31c99552019-03-01 13:00:58 -08001419 if (session_main.is_enabled)
Florin Corase04c2992017-03-01 08:17:34 -08001420 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001421
Florin Corasa5464812017-04-19 13:00:05 -07001422 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001423 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001424 }
1425 else
1426 {
Florin Coras31c99552019-03-01 13:00:58 -08001427 session_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001428 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001429 }
1430
Florin Corascea194d2017-10-02 00:18:51 -07001431 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001432}
1433
Florin Corase04c2992017-03-01 08:17:34 -08001434clib_error_t *
1435session_manager_main_init (vlib_main_t * vm)
1436{
Florin Coras31c99552019-03-01 13:00:58 -08001437 session_main_t *smm = &session_main;
David Johnsond9818dd2018-12-14 14:53:41 -05001438 smm->session_baseva = HIGH_SEGMENT_BASEVA;
1439#if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1440 smm->session_va_space_size = 128ULL << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001441 smm->evt_qs_segment_size = 64 << 20;
David Johnsond9818dd2018-12-14 14:53:41 -05001442#else
1443 smm->session_va_space_size = 128 << 20;
1444 smm->evt_qs_segment_size = 1 << 20;
1445#endif
Florin Corase04c2992017-03-01 08:17:34 -08001446 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001447 return 0;
1448}
1449
Dave Barach2c25a622017-06-26 11:35:07 -04001450VLIB_INIT_FUNCTION (session_manager_main_init);
1451
1452static clib_error_t *
1453session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001454{
Florin Coras31c99552019-03-01 13:00:58 -08001455 session_main_t *smm = &session_main;
Dave Barach10d8cc62017-05-30 09:30:07 -04001456 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001457 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001458
1459 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1460 {
1461 if (unformat (input, "event-queue-length %d", &nitems))
1462 {
1463 if (nitems >= 2048)
1464 smm->configured_event_queue_length = nitems;
1465 else
1466 clib_warning ("event queue length %d too small, ignored", nitems);
1467 }
Florin Coras66b11312017-07-31 17:18:03 -07001468 else if (unformat (input, "preallocated-sessions %d",
1469 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001470 ;
Florin Coras66b11312017-07-31 17:18:03 -07001471 else if (unformat (input, "v4-session-table-buckets %d",
1472 &smm->configured_v4_session_table_buckets))
1473 ;
1474 else if (unformat (input, "v4-halfopen-table-buckets %d",
1475 &smm->configured_v4_halfopen_table_buckets))
1476 ;
1477 else if (unformat (input, "v6-session-table-buckets %d",
1478 &smm->configured_v6_session_table_buckets))
1479 ;
1480 else if (unformat (input, "v6-halfopen-table-buckets %d",
1481 &smm->configured_v6_halfopen_table_buckets))
1482 ;
1483 else if (unformat (input, "v4-session-table-memory %U",
1484 unformat_memory_size, &tmp))
1485 {
1486 if (tmp >= 0x100000000)
1487 return clib_error_return (0, "memory size %llx (%lld) too large",
1488 tmp, tmp);
1489 smm->configured_v4_session_table_memory = tmp;
1490 }
1491 else if (unformat (input, "v4-halfopen-table-memory %U",
1492 unformat_memory_size, &tmp))
1493 {
1494 if (tmp >= 0x100000000)
1495 return clib_error_return (0, "memory size %llx (%lld) too large",
1496 tmp, tmp);
1497 smm->configured_v4_halfopen_table_memory = tmp;
1498 }
1499 else if (unformat (input, "v6-session-table-memory %U",
1500 unformat_memory_size, &tmp))
1501 {
1502 if (tmp >= 0x100000000)
1503 return clib_error_return (0, "memory size %llx (%lld) too large",
1504 tmp, tmp);
1505 smm->configured_v6_session_table_memory = tmp;
1506 }
1507 else if (unformat (input, "v6-halfopen-table-memory %U",
1508 unformat_memory_size, &tmp))
1509 {
1510 if (tmp >= 0x100000000)
1511 return clib_error_return (0, "memory size %llx (%lld) too large",
1512 tmp, tmp);
1513 smm->configured_v6_halfopen_table_memory = tmp;
1514 }
Florin Coras93e65802017-11-29 00:07:11 -05001515 else if (unformat (input, "local-endpoints-table-memory %U",
1516 unformat_memory_size, &tmp))
1517 {
1518 if (tmp >= 0x100000000)
1519 return clib_error_return (0, "memory size %llx (%lld) too large",
1520 tmp, tmp);
1521 smm->local_endpoints_table_memory = tmp;
1522 }
1523 else if (unformat (input, "local-endpoints-table-buckets %d",
1524 &smm->local_endpoints_table_buckets))
1525 ;
Florin Corasb384b542018-01-15 01:08:33 -08001526 else if (unformat (input, "evt_qs_memfd_seg"))
1527 smm->evt_qs_use_memfd_seg = 1;
Florin Corasb4c14912019-02-09 13:51:25 -08001528 else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
1529 &smm->evt_qs_segment_size))
1530 ;
Dave Barach10d8cc62017-05-30 09:30:07 -04001531 else
1532 return clib_error_return (0, "unknown input `%U'",
1533 format_unformat_error, input);
1534 }
1535 return 0;
1536}
1537
1538VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1539
Dave Barach68b0fb02017-02-28 15:15:56 -05001540/*
1541 * fd.io coding-style-patch-verification: ON
1542 *
1543 * Local Variables:
1544 * eval: (c-set-style "gnu")
1545 * End:
1546 */