blob: e82c1d662e2df05ce5ba45dec87a0cd90c553daa [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/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050022#include <vnet/dpo/load_balance.h>
23#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
Florin Coras31c99552019-03-01 13:00:58 -080025session_main_t session_main;
Florin Coras3eb50622017-07-13 01:24:57 -040026
Florin Coras3c2fed52018-07-04 04:15:05 -070027static inline int
28session_send_evt_to_thread (void *data, void *args, u32 thread_index,
29 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070030{
Florin Coras7da88292021-03-18 15:04:34 -070031 session_worker_t *wrk = session_main_get_worker (thread_index);
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 Coras3cbc04b2017-10-02 00:18:51 -070035
Florin Coras7da88292021-03-18 15:04:34 -070036 mq = wrk->vpp_event_queue;
Nathan Skrzypczakb4c67752019-06-20 09:58:37 +020037 if (PREDICT_FALSE (svm_msg_q_lock (mq)))
38 return -1;
Nathan Skrzypczak989bc472019-11-19 16:48:58 +010039 if (PREDICT_FALSE (svm_msg_q_is_full (mq)
40 || svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
Florin Coras3c2fed52018-07-04 04:15:05 -070041 {
42 svm_msg_q_unlock (mq);
43 return -2;
44 }
Florin Coras3c2fed52018-07-04 04:15:05 -070045 switch (evt_type)
46 {
Florin Corasf6c43132019-03-01 12:41:21 -080047 case SESSION_CTRL_EVT_RPC:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020048 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
49 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070050 evt->rpc_args.fp = data;
51 evt->rpc_args.arg = args;
52 break;
Aloys Augustin0c7f54d2019-07-03 16:59:43 +020053 case SESSION_IO_EVT_RX:
Florin Corasf6c43132019-03-01 12:41:21 -080054 case SESSION_IO_EVT_TX:
Florin Coras844a36d2018-12-20 09:50:50 -080055 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasf6c43132019-03-01 12:41:21 -080056 case SESSION_IO_EVT_BUILTIN_RX:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020057 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
58 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Corasc0737e92019-03-04 14:19:39 -080059 evt->session_index = *(u32 *) data;
Florin Coras3c2fed52018-07-04 04:15:05 -070060 break;
Florin Corasf6c43132019-03-01 12:41:21 -080061 case SESSION_IO_EVT_BUILTIN_TX:
62 case SESSION_CTRL_EVT_CLOSE:
Florin Coras73cad332019-08-28 17:12:32 -070063 case SESSION_CTRL_EVT_RESET:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020064 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
65 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras288eaab2019-02-03 15:26:14 -080066 evt->session_handle = session_handle ((session_t *) data);
Florin Coras3c2fed52018-07-04 04:15:05 -070067 break;
68 default:
69 clib_warning ("evt unhandled!");
70 svm_msg_q_unlock (mq);
71 return -1;
72 }
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020073 evt->event_type = evt_type;
Florin Coras3c2fed52018-07-04 04:15:05 -070074
Florin Coras52207f12018-07-12 14:48:06 -070075 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras7da88292021-03-18 15:04:34 -070076
77 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
78 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
79
Florin Coras3c2fed52018-07-04 04:15:05 -070080 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070081}
82
Florin Coras3c2fed52018-07-04 04:15:05 -070083int
84session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070085{
Florin Corasc547e912020-12-08 17:50:45 -080086 return session_send_evt_to_thread (&f->shr->master_session_index, 0,
Florin Corasc0737e92019-03-04 14:19:39 -080087 f->master_thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070088}
89
90int
Florin Corasef915342018-09-29 10:23:06 -070091session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
Florin Coras3c2fed52018-07-04 04:15:05 -070092 session_evt_type_t evt_type)
93{
Florin Corasef915342018-09-29 10:23:06 -070094 return session_send_evt_to_thread (data, 0, thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070095}
96
97int
Florin Coras288eaab2019-02-03 15:26:14 -080098session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -070099{
liuyacan534468e2021-05-09 03:50:40 +0000100 /* only events supported are disconnect, shutdown and reset */
101 ASSERT (evt_type == SESSION_CTRL_EVT_CLOSE ||
102 evt_type == SESSION_CTRL_EVT_HALF_CLOSE ||
103 evt_type == SESSION_CTRL_EVT_RESET);
Florin Coras458089b2019-08-21 16:20:44 -0700104 return session_send_evt_to_thread (s, 0, s->thread_index, evt_type);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700105}
106
107void
Nathan Skrzypczak60f3e652019-03-19 13:57:31 +0100108session_send_rpc_evt_to_thread_force (u32 thread_index, void *fp,
109 void *rpc_args)
110{
111 session_send_evt_to_thread (fp, rpc_args, thread_index,
112 SESSION_CTRL_EVT_RPC);
113}
114
115void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700116session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
117{
118 if (thread_index != vlib_get_thread_index ())
Nathan Skrzypczak60f3e652019-03-19 13:57:31 +0100119 session_send_rpc_evt_to_thread_force (thread_index, fp, rpc_args);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700120 else
121 {
122 void (*fnp) (void *) = fp;
123 fnp (rpc_args);
124 }
125}
126
Florin Coras26dd6de2019-07-23 23:54:47 -0700127void
128session_add_self_custom_tx_evt (transport_connection_t * tc, u8 has_prio)
129{
Florin Coras7da88292021-03-18 15:04:34 -0700130 session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Coras26dd6de2019-07-23 23:54:47 -0700131
Florin Coras26dd6de2019-07-23 23:54:47 -0700132 ASSERT (s->thread_index == vlib_get_thread_index ());
Florin Corasbe237bf2019-09-27 08:16:40 -0700133 ASSERT (s->session_state != SESSION_STATE_TRANSPORT_DELETED);
Florin Coras7da88292021-03-18 15:04:34 -0700134
Florin Coras26dd6de2019-07-23 23:54:47 -0700135 if (!(s->flags & SESSION_F_CUSTOM_TX))
136 {
137 s->flags |= SESSION_F_CUSTOM_TX;
Florin Coras6080e0d2020-03-13 20:39:43 +0000138 if (svm_fifo_set_event (s->tx_fifo)
139 || transport_connection_is_descheduled (tc))
Florin Coras26dd6de2019-07-23 23:54:47 -0700140 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700141 session_evt_elt_t *elt;
Florin Coras7da88292021-03-18 15:04:34 -0700142 session_worker_t *wrk;
143
Florin Coras26dd6de2019-07-23 23:54:47 -0700144 wrk = session_main_get_worker (tc->thread_index);
145 if (has_prio)
146 elt = session_evt_alloc_new (wrk);
147 else
148 elt = session_evt_alloc_old (wrk);
149 elt->evt.session_index = tc->s_index;
150 elt->evt.event_type = SESSION_IO_EVT_TX;
Florin Coras6080e0d2020-03-13 20:39:43 +0000151 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras7da88292021-03-18 15:04:34 -0700152
153 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
154 vlib_node_set_interrupt_pending (wrk->vm,
155 session_queue_node.index);
Florin Coras26dd6de2019-07-23 23:54:47 -0700156 }
157 }
158}
159
Florin Coras70f879d2020-03-13 17:54:42 +0000160void
161sesssion_reschedule_tx (transport_connection_t * tc)
162{
163 session_worker_t *wrk = session_main_get_worker (tc->thread_index);
164 session_evt_elt_t *elt;
165
166 ASSERT (tc->thread_index == vlib_get_thread_index ());
167
168 elt = session_evt_alloc_new (wrk);
169 elt->evt.session_index = tc->s_index;
170 elt->evt.event_type = SESSION_IO_EVT_TX;
Florin Coras7da88292021-03-18 15:04:34 -0700171
172 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
173 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
Florin Coras70f879d2020-03-13 17:54:42 +0000174}
175
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800176static void
Florin Corasdfb3b872019-08-16 17:48:44 -0700177session_program_transport_ctrl_evt (session_t * s, session_evt_type_t evt)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800178{
179 u32 thread_index = vlib_get_thread_index ();
Florin Coras2062ec02019-07-15 13:15:18 -0700180 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -0800181 session_worker_t *wrk;
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800182
183 /* If we are in the handler thread, or being called with the worker barrier
184 * held, just append a new event to pending disconnects vector. */
185 if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
186 {
Florin Coras31c99552019-03-01 13:00:58 -0800187 wrk = session_main_get_worker (s->thread_index);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700188 elt = session_evt_alloc_ctrl (wrk);
Florin Coras2062ec02019-07-15 13:15:18 -0700189 clib_memset (&elt->evt, 0, sizeof (session_event_t));
190 elt->evt.session_handle = session_handle (s);
Florin Corasdfb3b872019-08-16 17:48:44 -0700191 elt->evt.event_type = evt;
Florin Coras7da88292021-03-18 15:04:34 -0700192
193 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
194 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800195 }
196 else
Florin Corasdfb3b872019-08-16 17:48:44 -0700197 session_send_ctrl_evt_to_thread (s, evt);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800198}
199
Florin Coras288eaab2019-02-03 15:26:14 -0800200session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700201session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500202{
Florin Coras31c99552019-03-01 13:00:58 -0800203 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras288eaab2019-02-03 15:26:14 -0800204 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700205 u8 will_expand = 0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700206 pool_get_aligned_will_expand (wrk->sessions, will_expand,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700207 CLIB_CACHE_LINE_BYTES);
208 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800209 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700210 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700211 clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
212 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
213 clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700214 }
215 else
216 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700217 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700218 }
Dave Barachb7b92992018-10-17 10:38:51 -0400219 clib_memset (s, 0, sizeof (*s));
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700220 s->session_index = s - wrk->sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700221 s->thread_index = thread_index;
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200222 s->app_index = APP_INVALID_INDEX;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700223 return s;
224}
225
Florin Coras371ca502018-02-21 12:07:41 -0800226void
Florin Coras288eaab2019-02-03 15:26:14 -0800227session_free (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700228{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700229 if (CLIB_DEBUG)
Florin Coras6416e622019-04-03 17:52:43 -0700230 {
231 u8 thread_index = s->thread_index;
232 clib_memset (s, 0xFA, sizeof (*s));
233 pool_put (session_main.wrk[thread_index].sessions, s);
234 return;
235 }
Florin Corascca96182019-07-19 07:34:13 -0700236 SESSION_EVT (SESSION_EVT_FREE, s);
Florin Coras6416e622019-04-03 17:52:43 -0700237 pool_put (session_main.wrk[s->thread_index].sessions, s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700238}
239
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800240u8
241session_is_valid (u32 si, u8 thread_index)
242{
243 session_t *s;
244 transport_connection_t *tc;
245
246 s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
247
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800248 if (s->thread_index != thread_index || s->session_index != si)
249 return 0;
250
251 if (s->session_state == SESSION_STATE_TRANSPORT_DELETED
252 || s->session_state <= SESSION_STATE_LISTENING)
253 return 1;
254
Florin Corasea727642021-05-07 19:39:43 -0700255 if (s->session_state == SESSION_STATE_CONNECTING &&
256 (s->flags & SESSION_F_HALF_OPEN))
257 return 1;
258
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800259 tc = session_get_transport (s);
260 if (s->connection_index != tc->c_index
261 || s->thread_index != tc->thread_index || tc->s_index != si)
262 return 0;
263
264 return 1;
265}
266
Florin Coras70f26d52019-07-08 11:47:18 -0700267static void
268session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf)
269{
270 app_worker_t *app_wrk;
271
272 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
273 if (!app_wrk)
274 return;
275 app_worker_cleanup_notify (app_wrk, s, ntf);
276}
277
Florin Coraseb97e5f2018-10-15 21:35:42 -0700278void
Florin Coras288eaab2019-02-03 15:26:14 -0800279session_free_w_fifos (session_t * s)
Florin Coras568ebc72018-09-18 16:12:50 -0700280{
Florin Coras70f26d52019-07-08 11:47:18 -0700281 session_cleanup_notify (s, SESSION_CLEANUP_SESSION);
Florin Coras19223e02019-03-03 14:56:05 -0800282 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700283 session_free (s);
284}
285
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800286/**
287 * Cleans up session and lookup table.
288 *
289 * Transport connection must still be valid.
290 */
291static void
Florin Coras288eaab2019-02-03 15:26:14 -0800292session_delete (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800293{
294 int rv;
295
296 /* Delete from the main lookup table. */
297 if ((rv = session_lookup_del_session (s)))
Florin Corasd09236d2019-08-08 17:38:26 -0700298 clib_warning ("session %u hash delete rv %d", s->session_index, rv);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800299
300 session_free_w_fifos (s);
301}
302
Florin Corasd50ff7f2020-04-16 04:30:22 +0000303void
Florin Corasea727642021-05-07 19:39:43 -0700304session_cleanup_half_open (session_handle_t ho_handle)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000305{
Florin Corasbab6c522021-05-13 08:36:56 -0700306 session_t *ho = session_get_from_handle (ho_handle);
307
308 /* App transports can migrate their half-opens */
309 if (ho->flags & SESSION_F_IS_MIGRATING)
310 {
311 /* Session still migrating, move to closed state to signal that the
312 * session should be removed. */
313 if (ho->connection_index == ~0)
314 {
315 ho->session_state = SESSION_STATE_CLOSED;
316 return;
317 }
318 /* Migrated transports are no longer half-opens */
319 transport_cleanup (session_get_transport_proto (ho),
320 ho->connection_index, ho->app_index /* overloaded */);
Florin Corasbab6c522021-05-13 08:36:56 -0700321 }
Florin Coras374df7a2021-05-13 11:37:43 -0700322 else
323 transport_cleanup_half_open (session_get_transport_proto (ho),
324 ho->connection_index);
325 session_free (ho);
Florin Corasbab6c522021-05-13 08:36:56 -0700326}
327
328static void
Florin Coras374df7a2021-05-13 11:37:43 -0700329session_half_open_free (session_t *ho)
Florin Corasbab6c522021-05-13 08:36:56 -0700330{
331 app_worker_t *app_wrk;
Florin Corasbab6c522021-05-13 08:36:56 -0700332
333 ASSERT (vlib_get_thread_index () <= 1);
Florin Corasbab6c522021-05-13 08:36:56 -0700334 app_wrk = app_worker_get (ho->app_wrk_index);
335 app_worker_del_half_open (app_wrk, ho);
336 session_free (ho);
337}
338
339static void
340session_half_open_free_rpc (void *args)
341{
Florin Coras374df7a2021-05-13 11:37:43 -0700342 session_t *ho = ho_session_get (pointer_to_uword (args));
343 session_half_open_free (ho);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000344}
345
346void
Florin Corasea727642021-05-07 19:39:43 -0700347session_half_open_delete_notify (transport_connection_t *tc)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000348{
Florin Coras374df7a2021-05-13 11:37:43 -0700349 /* Notification from ctrl thread accepted without rpc */
350 if (tc->thread_index <= 1)
351 {
352 session_half_open_free (ho_session_get (tc->s_index));
353 }
354 else
355 {
356 void *args = uword_to_pointer ((uword) tc->s_index, void *);
357 u32 ctrl_thread = vlib_num_workers () ? 1 : 0;
358 session_send_rpc_evt_to_thread (ctrl_thread, session_half_open_free_rpc,
359 args);
360 }
Florin Corasbab6c522021-05-13 08:36:56 -0700361}
Florin Corasea727642021-05-07 19:39:43 -0700362
Florin Corasbab6c522021-05-13 08:36:56 -0700363void
364session_half_open_migrate_notify (transport_connection_t *tc)
365{
366 session_t *ho;
367
368 ho = ho_session_get (tc->s_index);
369 ho->flags |= SESSION_F_IS_MIGRATING;
370 ho->connection_index = ~0;
371}
372
373int
374session_half_open_migrated_notify (transport_connection_t *tc)
375{
376 session_t *ho;
377
378 ho = ho_session_get (tc->s_index);
379
380 /* App probably detached so the half-open must be cleaned up */
381 if (ho->session_state == SESSION_STATE_CLOSED)
382 {
383 session_half_open_delete_notify (tc);
384 return -1;
385 }
386 ho->connection_index = tc->c_index;
387 /* Overload app index for half-open with new thread */
388 ho->app_index = tc->thread_index;
389 return 0;
Florin Corasd50ff7f2020-04-16 04:30:22 +0000390}
391
Andreas Schultz1a8c4372020-03-20 09:39:59 +0100392session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700393session_alloc_for_connection (transport_connection_t * tc)
394{
Florin Coras288eaab2019-02-03 15:26:14 -0800395 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700396 u32 thread_index = tc->thread_index;
397
Florin Coras40903ac2018-06-10 14:41:23 -0700398 ASSERT (thread_index == vlib_get_thread_index ()
399 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400400
Florin Coras3cbc04b2017-10-02 00:18:51 -0700401 s = session_alloc (thread_index);
402 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Florin Corasb0f662f2018-12-27 14:51:46 -0800403 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500404
Florin Coras3cbc04b2017-10-02 00:18:51 -0700405 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500406 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500407 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700408 return s;
409}
410
Florin Coras2c876f92021-05-10 21:12:27 -0700411session_t *
Florin Corasea727642021-05-07 19:39:43 -0700412session_alloc_for_half_open (transport_connection_t *tc)
413{
414 session_t *s;
415
416 s = ho_session_alloc ();
417 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
418 s->connection_index = tc->c_index;
419 tc->s_index = s->session_index;
420 return s;
421}
422
Florin Coras1f152cd2017-08-18 19:28:03 -0700423/**
424 * Discards bytes from buffer chain
425 *
426 * It discards n_bytes_to_drop starting at first buffer after chain_b
427 */
428always_inline void
429session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
430 vlib_buffer_t ** chain_b,
431 u32 n_bytes_to_drop)
432{
433 vlib_buffer_t *next = *chain_b;
434 u32 to_drop = n_bytes_to_drop;
435 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
436 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
437 {
438 next = vlib_get_buffer (vm, next->next_buffer);
439 if (next->current_length > to_drop)
440 {
441 vlib_buffer_advance (next, to_drop);
442 to_drop = 0;
443 }
444 else
445 {
446 to_drop -= next->current_length;
447 next->current_length = 0;
448 }
449 }
450 *chain_b = next;
451
452 if (to_drop == 0)
453 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
454}
455
456/**
457 * Enqueue buffer chain tail
458 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700459always_inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800460session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700461 u32 offset, u8 is_in_order)
462{
463 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700464 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700465 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700466 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700467 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700468 int rv = 0;
469
Florin Coras1f152cd2017-08-18 19:28:03 -0700470 if (is_in_order && offset)
471 {
472 diff = offset - b->current_length;
473 if (diff > b->total_length_not_including_first_buffer)
474 return 0;
475 chain_b = b;
476 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
477 chain_bi = vlib_get_buffer_index (vm, chain_b);
478 }
479 else
480 chain_bi = b->next_buffer;
481
Florin Corasf6d68ed2017-05-07 19:12:02 -0700482 do
483 {
484 chain_b = vlib_get_buffer (vm, chain_bi);
485 data = vlib_buffer_get_current (chain_b);
486 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700487 if (!len)
488 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700489 if (is_in_order)
490 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700491 rv = svm_fifo_enqueue (s->rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700492 if (rv == len)
493 {
494 written += rv;
495 }
496 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700497 {
498 return (rv > 0) ? (written + rv) : written;
499 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700500 else if (rv > len)
501 {
502 written += rv;
503
504 /* written more than what was left in chain */
505 if (written > b->total_length_not_including_first_buffer)
506 return written;
507
508 /* drop the bytes that have already been delivered */
509 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
510 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700511 }
512 else
513 {
Florin Coras288eaab2019-02-03 15:26:14 -0800514 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700515 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700516 {
517 clib_warning ("failed to enqueue multi-buffer seg");
518 return -1;
519 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700520 offset += len;
521 }
522 }
523 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
524 ? chain_b->next_buffer : 0));
525
526 if (is_in_order)
527 return written;
528
529 return 0;
530}
531
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000532void
533session_fifo_tuning (session_t * s, svm_fifo_t * f,
534 session_ft_action_t act, u32 len)
535{
536 if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING)
537 {
538 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
539 app_worker_session_fifo_tuning (app_wrk, s, f, act, len);
540 if (CLIB_ASSERT_ENABLE)
541 {
542 segment_manager_t *sm;
543 sm = segment_manager_get (f->segment_manager);
Florin Corasc547e912020-12-08 17:50:45 -0800544 ASSERT (f->shr->size >= 4096);
545 ASSERT (f->shr->size <= sm->max_fifo_size);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000546 }
547 }
548}
549
Dave Barach68b0fb02017-02-28 15:15:56 -0500550/*
551 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
552 * event but on request can queue notification events for later delivery by
553 * calling stream_server_flush_enqueue_events().
554 *
555 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700556 * @param b Buffer to be enqueued
557 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500558 * @param queue_event Flag to indicate if peer is to be notified or if event
559 * is to be queued. The former is useful when more data is
560 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700561 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500562 * @return Number of bytes enqueued or a negative value if enqueueing failed.
563 */
564int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700565session_enqueue_stream_connection (transport_connection_t * tc,
566 vlib_buffer_t * b, u32 offset,
567 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500568{
Florin Coras288eaab2019-02-03 15:26:14 -0800569 session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700570 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500571
Florin Corascea194d2017-10-02 00:18:51 -0700572 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500573
Florin Corasf6d68ed2017-05-07 19:12:02 -0700574 if (is_in_order)
575 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700576 enqueued = svm_fifo_enqueue (s->rx_fifo,
577 b->current_length,
578 vlib_buffer_get_current (b));
Florin Coras1f152cd2017-08-18 19:28:03 -0700579 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
580 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700581 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700582 in_order_off = enqueued > b->current_length ? enqueued : 0;
583 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
584 if (rv > 0)
585 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700586 }
587 }
588 else
589 {
Florin Coras288eaab2019-02-03 15:26:14 -0800590 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700591 b->current_length,
592 vlib_buffer_get_current (b));
593 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700594 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
595 /* if something was enqueued, report even this as success for ooo
596 * segment handling */
597 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700598 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500599
600 if (queue_event)
601 {
602 /* Queue RX event on this fifo. Eventually these will need to be flushed
603 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800604 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500605
Florin Coras31c99552019-03-01 13:00:58 -0800606 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700607 if (!(s->flags & SESSION_F_RX_EVT))
Dave Barach68b0fb02017-02-28 15:15:56 -0500608 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700609 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700610 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500611 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000612
613 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500614 }
615
Chris Lukeb2bcad62017-09-18 08:51:22 -0400616 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500617}
618
Florin Coras3cbc04b2017-10-02 00:18:51 -0700619int
Florin Coras288eaab2019-02-03 15:26:14 -0800620session_enqueue_dgram_connection (session_t * s,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700621 session_dgram_hdr_t * hdr,
622 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700623{
Florin Corasc95cfa22020-11-24 08:41:17 -0800624 int rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700625
Sirshak Das28aa5392019-02-05 01:33:33 -0600626 ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700627 >= b->current_length + sizeof (*hdr));
628
Florin Corasc95cfa22020-11-24 08:41:17 -0800629 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700630 {
Florin Corasc95cfa22020-11-24 08:41:17 -0800631 /* *INDENT-OFF* */
632 svm_fifo_seg_t segs[2] = {
633 { (u8 *) hdr, sizeof (*hdr) },
634 { vlib_buffer_get_current (b), b->current_length }
635 };
636 /* *INDENT-ON* */
637
638 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2,
639 0 /* allow_partial */ );
Florin Coras3cbc04b2017-10-02 00:18:51 -0700640 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800641 else
642 {
643 vlib_main_t *vm = vlib_get_main ();
644 svm_fifo_seg_t *segs = 0, *seg;
645 vlib_buffer_t *it = b;
646 u32 n_segs = 1;
647
648 vec_add2 (segs, seg, 1);
649 seg->data = (u8 *) hdr;
650 seg->len = sizeof (*hdr);
651 while (it)
652 {
653 vec_add2 (segs, seg, 1);
654 seg->data = vlib_buffer_get_current (it);
655 seg->len = it->current_length;
656 n_segs++;
657 if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT))
658 break;
659 it = vlib_get_buffer (vm, it->next_buffer);
660 }
661 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs,
662 0 /* allow partial */ );
663 vec_free (segs);
664 }
665
666 if (queue_event && rv > 0)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700667 {
668 /* Queue RX event on this fifo. Eventually these will need to be flushed
669 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800670 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700671
Florin Coras31c99552019-03-01 13:00:58 -0800672 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700673 if (!(s->flags & SESSION_F_RX_EVT))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700674 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700675 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700676 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700677 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000678
679 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700680 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800681 return rv > 0 ? rv : 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700682}
683
Florin Coras93992a92017-05-24 18:03:56 -0700684int
Florin Coras31c99552019-03-01 13:00:58 -0800685session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
686 u32 offset, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500687{
Florin Coras288eaab2019-02-03 15:26:14 -0800688 session_t *s = session_get (tc->s_index, tc->thread_index);
689 return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500690}
691
692u32
Florin Coras31c99552019-03-01 13:00:58 -0800693session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500694{
Florin Coras288eaab2019-02-03 15:26:14 -0800695 session_t *s = session_get (tc->s_index, tc->thread_index);
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300696 u32 rv;
697
698 rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000699 session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv);
Florin Coras0e573f52019-05-07 16:28:16 -0700700
Florin Coras2d379d82019-06-28 12:45:12 -0700701 if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes))
Florin Coras0e573f52019-05-07 16:28:16 -0700702 session_dequeue_notify (s);
703
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300704 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500705}
706
Florin Coras72b04282019-01-14 17:23:11 -0800707static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800708session_notify_subscribers (u32 app_index, session_t * s,
Florin Coras72b04282019-01-14 17:23:11 -0800709 svm_fifo_t * f, session_evt_type_t evt_type)
710{
711 app_worker_t *app_wrk;
712 application_t *app;
713 int i;
714
715 app = application_get (app_index);
716 if (!app)
717 return -1;
718
Florin Corasc547e912020-12-08 17:50:45 -0800719 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800720 {
Florin Corasc547e912020-12-08 17:50:45 -0800721 app_wrk = application_get_worker (app, f->shr->subscribers[i]);
Florin Coras72b04282019-01-14 17:23:11 -0800722 if (!app_wrk)
723 continue;
724 if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
725 return -1;
726 }
727
728 return 0;
729}
730
Dave Barach68b0fb02017-02-28 15:15:56 -0500731/**
732 * Notify session peer that new data has been enqueued.
733 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700734 * @param s Stream session for which the event is to be generated.
735 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500736 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700737 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700739static inline int
Florin Coras653e43f2019-03-04 10:56:23 -0800740session_enqueue_notify_inline (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500741{
Florin Coras72b04282019-01-14 17:23:11 -0800742 app_worker_t *app_wrk;
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200743 u32 session_index;
744 u8 n_subscribers;
745
746 session_index = s->session_index;
747 n_subscribers = svm_fifo_n_subscribers (s->rx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500748
Florin Coras72b04282019-01-14 17:23:11 -0800749 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
750 if (PREDICT_FALSE (!app_wrk))
Dave Barach818eb542017-08-02 13:56:13 -0400751 {
Florin Coras15531972018-08-12 23:50:53 -0700752 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400753 return 0;
754 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500755
Florin Corascca96182019-07-19 07:34:13 -0700756 SESSION_EVT (SESSION_EVT_ENQ, s, svm_fifo_max_dequeue_prod (s->rx_fifo));
Dave Barach68b0fb02017-02-28 15:15:56 -0500757
Florin Corasd5c604d2019-03-18 09:06:35 -0700758 s->flags &= ~SESSION_F_RX_EVT;
Florin Corasda302e42020-04-19 22:41:55 +0000759
760 /* Application didn't confirm accept yet */
761 if (PREDICT_FALSE (s->session_state == SESSION_STATE_ACCEPTING))
762 return 0;
763
Florin Coras72b04282019-01-14 17:23:11 -0800764 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800765 SESSION_IO_EVT_RX)))
Florin Coras72b04282019-01-14 17:23:11 -0800766 return -1;
767
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200768 if (PREDICT_FALSE (n_subscribers))
769 {
770 s = session_get (session_index, vlib_get_thread_index ());
771 return session_notify_subscribers (app_wrk->app_index, s,
772 s->rx_fifo, SESSION_IO_EVT_RX);
773 }
Florin Coras72b04282019-01-14 17:23:11 -0800774
775 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500776}
777
Florin Coras0d60a0f2018-06-29 02:02:08 -0700778int
Florin Coras653e43f2019-03-04 10:56:23 -0800779session_enqueue_notify (session_t * s)
780{
781 return session_enqueue_notify_inline (s);
782}
783
Aloys Augustinb3392332019-08-06 16:09:01 +0200784static void
785session_enqueue_notify_rpc (void *arg)
786{
Florin Coras5d8a8062019-08-13 08:35:39 -0700787 u32 session_index = pointer_to_uword (arg);
Aloys Augustinb3392332019-08-06 16:09:01 +0200788 session_t *s;
789
Florin Coras5d8a8062019-08-13 08:35:39 -0700790 s = session_get_if_valid (session_index, vlib_get_thread_index ());
Aloys Augustinb3392332019-08-06 16:09:01 +0200791 if (!s)
792 return;
793
794 session_enqueue_notify (s);
795}
796
797/**
798 * Like session_enqueue_notify, but can be called from a thread that does not
799 * own the session.
800 */
801void
802session_enqueue_notify_thread (session_handle_t sh)
803{
804 u32 thread_index = session_thread_from_handle (sh);
Florin Coras5d8a8062019-08-13 08:35:39 -0700805 u32 session_index = session_index_from_handle (sh);
806
807 /*
808 * Pass session index (u32) as opposed to handle (u64) in case pointers
809 * are not 64-bit.
810 */
Aloys Augustinb3392332019-08-06 16:09:01 +0200811 session_send_rpc_evt_to_thread (thread_index,
Florin Coras5d8a8062019-08-13 08:35:39 -0700812 session_enqueue_notify_rpc,
813 uword_to_pointer (session_index, void *));
Aloys Augustinb3392332019-08-06 16:09:01 +0200814}
815
Florin Coras653e43f2019-03-04 10:56:23 -0800816int
Florin Coras288eaab2019-02-03 15:26:14 -0800817session_dequeue_notify (session_t * s)
Florin Coras0d60a0f2018-06-29 02:02:08 -0700818{
Florin Coras72b04282019-01-14 17:23:11 -0800819 app_worker_t *app_wrk;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700820
Vladimir Kropylev5c89fbf2019-08-30 13:04:06 +0300821 svm_fifo_clear_deq_ntf (s->tx_fifo);
822
Florin Coras72b04282019-01-14 17:23:11 -0800823 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
824 if (PREDICT_FALSE (!app_wrk))
Florin Coras208daa12018-07-02 01:30:51 -0700825 return -1;
826
Florin Coras72b04282019-01-14 17:23:11 -0800827 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800828 SESSION_IO_EVT_TX)))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800829 return -1;
830
Florin Corasc547e912020-12-08 17:50:45 -0800831 if (PREDICT_FALSE (s->tx_fifo->shr->n_subscribers))
Florin Coras72b04282019-01-14 17:23:11 -0800832 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800833 s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras72b04282019-01-14 17:23:11 -0800834
Florin Coras1bcad5c2019-01-09 20:04:38 -0800835 return 0;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700836}
837
Dave Barach68b0fb02017-02-28 15:15:56 -0500838/**
839 * Flushes queue of sessions that are to be notified of new data
840 * enqueued events.
841 *
842 * @param thread_index Thread index for which the flush is to be performed.
843 * @return 0 on success or a positive number indicating the number of
844 * failures due to API queue being full.
845 */
846int
Florin Coras31c99552019-03-01 13:00:58 -0800847session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500848{
Florin Coras31c99552019-03-01 13:00:58 -0800849 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800850 session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700851 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700852 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500853
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700854 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500855
Florin Coras3cbc04b2017-10-02 00:18:51 -0700856 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500857 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700858 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700859 if (PREDICT_FALSE (!s))
860 {
861 errors++;
862 continue;
863 }
Florin Coras653e43f2019-03-04 10:56:23 -0800864
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000865 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED,
866 0 /* TODO/not needed */ );
867
Florin Coras653e43f2019-03-04 10:56:23 -0800868 if (PREDICT_FALSE (session_enqueue_notify_inline (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700869 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500870 }
871
Florin Coras3cbc04b2017-10-02 00:18:51 -0700872 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700873 wrk->session_to_enqueue[transport_proto] = indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500874
875 return errors;
876}
877
Florin Coras7fb0fe12018-04-09 09:24:52 -0700878int
Florin Coras31c99552019-03-01 13:00:58 -0800879session_main_flush_all_enqueue_events (u8 transport_proto)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700880{
881 vlib_thread_main_t *vtm = vlib_get_thread_main ();
882 int i, errors = 0;
883 for (i = 0; i < 1 + vtm->n_threads; i++)
Florin Coras31c99552019-03-01 13:00:58 -0800884 errors += session_main_flush_enqueue_events (transport_proto, i);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700885 return errors;
886}
887
Florin Coras4fde4ae2020-04-13 16:48:04 +0000888int
889session_stream_connect_notify (transport_connection_t * tc,
890 session_error_t err)
Dave Barach68b0fb02017-02-28 15:15:56 -0500891{
Florin Coras371ca502018-02-21 12:07:41 -0800892 u32 opaque = 0, new_ti, new_si;
Florin Coras15531972018-08-12 23:50:53 -0700893 app_worker_t *app_wrk;
Florin Corasea727642021-05-07 19:39:43 -0700894 session_t *s = 0, *ho;
Dave Barach68b0fb02017-02-28 15:15:56 -0500895
Florin Coras3cbc04b2017-10-02 00:18:51 -0700896 /*
Florin Corasea727642021-05-07 19:39:43 -0700897 * Cleanup half-open table
Florin Coras3cbc04b2017-10-02 00:18:51 -0700898 */
Florin Corascea194d2017-10-02 00:18:51 -0700899 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400900
Florin Corasea727642021-05-07 19:39:43 -0700901 ho = ho_session_get (tc->s_index);
902 opaque = ho->opaque;
903 app_wrk = app_worker_get_if_valid (ho->app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700904 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700905 return -1;
Florin Corasa27a46e2019-02-18 13:02:28 -0800906
Florin Coras00e01d32019-10-21 16:07:46 -0700907 if (err)
908 return app_worker_connect_notify (app_wrk, s, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800909
910 s = session_alloc_for_connection (tc);
911 s->session_state = SESSION_STATE_CONNECTING;
912 s->app_wrk_index = app_wrk->wrk_index;
913 new_si = s->session_index;
914 new_ti = s->thread_index;
915
Florin Coras00e01d32019-10-21 16:07:46 -0700916 if ((err = app_worker_init_connected (app_wrk, s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500917 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800918 session_free (s);
Florin Coras00e01d32019-10-21 16:07:46 -0700919 app_worker_connect_notify (app_wrk, 0, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800920 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500921 }
922
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200923 s = session_get (new_si, new_ti);
Florin Coras4fde4ae2020-04-13 16:48:04 +0000924 s->session_state = SESSION_STATE_READY;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200925 session_lookup_add_connection (tc, session_handle (s));
926
Florin Coras00e01d32019-10-21 16:07:46 -0700927 if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque))
Florin Coras6534b7a2017-07-18 05:38:03 -0400928 {
Florin Corasc7fd24e2020-07-24 10:09:07 -0700929 session_lookup_del_connection (tc);
930 /* Avoid notifying app about rejected session cleanup */
Florin Corasa27a46e2019-02-18 13:02:28 -0800931 s = session_get (new_si, new_ti);
Florin Corasc7fd24e2020-07-24 10:09:07 -0700932 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
933 session_free (s);
Florin Corasa27a46e2019-02-18 13:02:28 -0800934 return -1;
Florin Coras6534b7a2017-07-18 05:38:03 -0400935 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500936
Florin Corasa27a46e2019-02-18 13:02:28 -0800937 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500938}
939
Florin Coras6d7552c2020-04-09 01:49:45 +0000940static void
941session_switch_pool_reply (void *arg)
942{
943 u32 session_index = pointer_to_uword (arg);
Florin Coras6d7552c2020-04-09 01:49:45 +0000944 session_t *s;
945
946 s = session_get_if_valid (session_index, vlib_get_thread_index ());
947 if (!s)
948 return;
949
Florin Coras6d7552c2020-04-09 01:49:45 +0000950 /* Notify app that it has data on the new session */
951 session_enqueue_notify (s);
952}
953
Florin Coras3cbc04b2017-10-02 00:18:51 -0700954typedef struct _session_switch_pool_args
955{
956 u32 session_index;
957 u32 thread_index;
958 u32 new_thread_index;
959 u32 new_session_index;
960} session_switch_pool_args_t;
961
Florin Coras49568af2019-07-31 16:46:24 -0700962/**
963 * Notify old thread of the session pool switch
964 */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700965static void
966session_switch_pool (void *cb_args)
967{
968 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras6d7552c2020-04-09 01:49:45 +0000969 session_handle_t new_sh;
970 segment_manager_t *sm;
Florin Coras49568af2019-07-31 16:46:24 -0700971 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800972 session_t *s;
Florin Coras6d7552c2020-04-09 01:49:45 +0000973 void *rargs;
Florin Coras49568af2019-07-31 16:46:24 -0700974
Florin Coras3cbc04b2017-10-02 00:18:51 -0700975 ASSERT (args->thread_index == vlib_get_thread_index ());
976 s = session_get (args->session_index, args->thread_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000977
Florin Coras1ee78302019-02-05 15:51:15 -0800978 transport_cleanup (session_get_transport_proto (s), s->connection_index,
979 s->thread_index);
Florin Coras49568af2019-07-31 16:46:24 -0700980
Florin Coras6d7552c2020-04-09 01:49:45 +0000981 new_sh = session_make_handle (args->new_session_index,
982 args->new_thread_index);
983
Florin Coras49568af2019-07-31 16:46:24 -0700984 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
985 if (app_wrk)
986 {
Florin Coras6d7552c2020-04-09 01:49:45 +0000987 /* Cleanup fifo segment slice state for fifos */
988 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras0bc78d82021-01-09 14:34:01 -0800989 segment_manager_detach_fifo (sm, &s->rx_fifo);
990 segment_manager_detach_fifo (sm, &s->tx_fifo);
Aloys Augustinb3392332019-08-06 16:09:01 +0200991
Florin Coras6d7552c2020-04-09 01:49:45 +0000992 /* Notify app, using old session, about the migration event */
993 app_worker_migrate_notify (app_wrk, s, new_sh);
Florin Coras49568af2019-07-31 16:46:24 -0700994 }
995
Florin Coras6d7552c2020-04-09 01:49:45 +0000996 /* Trigger app read and fifo updates on the new thread */
997 rargs = uword_to_pointer (args->new_session_index, void *);
998 session_send_rpc_evt_to_thread (args->new_thread_index,
999 session_switch_pool_reply, rargs);
1000
Florin Coras3cbc04b2017-10-02 00:18:51 -07001001 session_free (s);
1002 clib_mem_free (cb_args);
1003}
1004
1005/**
1006 * Move dgram session to the right thread
1007 */
1008int
1009session_dgram_connect_notify (transport_connection_t * tc,
Florin Coras288eaab2019-02-03 15:26:14 -08001010 u32 old_thread_index, session_t ** new_session)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001011{
Florin Coras288eaab2019-02-03 15:26:14 -08001012 session_t *new_s;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001013 session_switch_pool_args_t *rpc_args;
Florin Coras0bc78d82021-01-09 14:34:01 -08001014 segment_manager_t *sm;
1015 app_worker_t *app_wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001016
1017 /*
1018 * Clone half-open session to the right thread.
1019 */
1020 new_s = session_clone_safe (tc->s_index, old_thread_index);
1021 new_s->connection_index = tc->c_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001022 new_s->session_state = SESSION_STATE_READY;
Nathan Skrzypczakcaa7acf2019-10-02 10:02:05 +02001023 new_s->flags |= SESSION_F_IS_MIGRATING;
Florin Coras6d7552c2020-04-09 01:49:45 +00001024
Florin Coras0bc78d82021-01-09 14:34:01 -08001025 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1026 session_lookup_add_connection (tc, session_handle (new_s));
1027
1028 app_wrk = app_worker_get_if_valid (new_s->app_wrk_index);
1029 if (app_wrk)
1030 {
1031 /* New set of fifos attached to the same shared memory */
1032 sm = app_worker_get_connect_segment_manager (app_wrk);
1033 segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s);
1034 segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s);
1035 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001036
1037 /*
1038 * Ask thread owning the old session to clean it up and make us the tx
1039 * fifo owner
1040 */
1041 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
1042 rpc_args->new_session_index = new_s->session_index;
1043 rpc_args->new_thread_index = new_s->thread_index;
1044 rpc_args->session_index = tc->s_index;
1045 rpc_args->thread_index = old_thread_index;
1046 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
1047 rpc_args);
1048
1049 tc->s_index = new_s->session_index;
1050 new_s->connection_index = tc->c_index;
1051 *new_session = new_s;
1052 return 0;
1053}
1054
Dave Barach68b0fb02017-02-28 15:15:56 -05001055/**
1056 * Notification from transport that connection is being closed.
1057 *
1058 * A disconnect is sent to application but state is not removed. Once
1059 * disconnect is acknowledged by application, session disconnect is called.
1060 * Ultimately this leads to close being called on transport (passive close).
1061 */
1062void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001063session_transport_closing_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001064{
Florin Coras15531972018-08-12 23:50:53 -07001065 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001066 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001067
Florin Corascea194d2017-10-02 00:18:51 -07001068 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -07001069 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1070 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001071 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Corasbf7ce2c2019-03-06 14:44:42 -08001072 app_wrk = app_worker_get (s->app_wrk_index);
1073 app_worker_close_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001074}
1075
1076/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001077 * Notification from transport that connection is being deleted
1078 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001079 * This removes the session if it is still valid. It should be called only on
1080 * previously fully established sessions. For instance failed connects should
1081 * call stream_session_connect_notify and indicate that the connect has
1082 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001083 */
1084void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001085session_transport_delete_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001086{
Florin Coras288eaab2019-02-03 15:26:14 -08001087 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001088
Florin Corase04c2992017-03-01 08:17:34 -08001089 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -07001090 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -07001091 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001092
Florin Coras568ebc72018-09-18 16:12:50 -07001093 switch (s->session_state)
1094 {
Florin Coras222e1f412019-02-16 20:47:32 -08001095 case SESSION_STATE_CREATED:
1096 /* Session was created but accept notification was not yet sent to the
1097 * app. Cleanup everything. */
1098 session_lookup_del_session (s);
Zeyu Zhangcbbc4a22019-10-12 14:21:59 +08001099 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1100 session_free (s);
Florin Coras222e1f412019-02-16 20:47:32 -08001101 break;
Florin Corasb0f662f2018-12-27 14:51:46 -08001102 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -07001103 case SESSION_STATE_TRANSPORT_CLOSING:
Florin Coras692b9492019-07-12 15:01:53 -07001104 case SESSION_STATE_CLOSING:
Florin Coras5f066322019-07-22 19:03:03 -07001105 case SESSION_STATE_TRANSPORT_CLOSED:
Florin Coras568ebc72018-09-18 16:12:50 -07001106 /* If transport finishes or times out before we get a reply
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001107 * from the app, mark transport as closed and wait for reply
1108 * before removing the session. Cleanup session table in advance
Florin Corasa9d5bea2018-12-17 08:24:19 -08001109 * because transport will soon be closed and closed sessions
1110 * are assumed to have been removed from the lookup table */
1111 session_lookup_del_session (s);
Florin Coras5f066322019-07-22 19:03:03 -07001112 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001113 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1114 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -07001115 break;
Florin Coras692b9492019-07-12 15:01:53 -07001116 case SESSION_STATE_APP_CLOSED:
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001117 /* Cleanup lookup table as transport needs to still be valid.
1118 * Program transport close to ensure that all session events
1119 * have been cleaned up. Once transport close is called, the
1120 * session is just removed because both transport and app have
1121 * confirmed the close*/
Florin Coras568ebc72018-09-18 16:12:50 -07001122 session_lookup_del_session (s);
Florin Coras3b5e2222019-10-25 16:23:39 -07001123 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001124 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1125 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Corasdfb3b872019-08-16 17:48:44 -07001126 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras568ebc72018-09-18 16:12:50 -07001127 break;
Florin Coras5f066322019-07-22 19:03:03 -07001128 case SESSION_STATE_TRANSPORT_DELETED:
Florin Corasb0f662f2018-12-27 14:51:46 -08001129 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001130 case SESSION_STATE_CLOSED:
Florin Coras70f26d52019-07-08 11:47:18 -07001131 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001132 session_delete (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001133 break;
Florin Corasc01d5782018-10-17 14:53:11 -07001134 default:
Florin Corasb0f662f2018-12-27 14:51:46 -08001135 clib_warning ("session state %u", s->session_state);
Florin Coras70f26d52019-07-08 11:47:18 -07001136 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001137 session_delete (s);
Florin Corasc01d5782018-10-17 14:53:11 -07001138 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001139 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001140}
1141
1142/**
Florin Coras692b9492019-07-12 15:01:53 -07001143 * Notification from transport that it is closed
Florin Coras54ddf432018-12-21 13:54:09 -08001144 *
Florin Coras692b9492019-07-12 15:01:53 -07001145 * Should be called by transport, prior to calling delete notify, once it
1146 * knows that no more data will be exchanged. This could serve as an
1147 * early acknowledgment of an active close especially if transport delete
1148 * can be delayed a long time, e.g., tcp time-wait.
Florin Coras54ddf432018-12-21 13:54:09 -08001149 */
1150void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001151session_transport_closed_notify (transport_connection_t * tc)
Florin Coras54ddf432018-12-21 13:54:09 -08001152{
Florin Coras692b9492019-07-12 15:01:53 -07001153 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001154 session_t *s;
Florin Coras54ddf432018-12-21 13:54:09 -08001155
1156 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1157 return;
Florin Corasb0f662f2018-12-27 14:51:46 -08001158
Florin Coras06a2eec2019-05-23 22:28:16 -07001159 /* Transport thinks that app requested close but it actually didn't.
liuyacan534468e2021-05-09 03:50:40 +00001160 * Can happen for tcp:
1161 * 1)if fin and rst are received in close succession.
1162 * 2)if app shutdown the connection. */
Florin Coras06a2eec2019-05-23 22:28:16 -07001163 if (s->session_state == SESSION_STATE_READY)
1164 {
1165 session_transport_closing_notify (tc);
1166 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras692b9492019-07-12 15:01:53 -07001167 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
Florin Coras06a2eec2019-05-23 22:28:16 -07001168 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001169 /* If app close has not been received or has not yet resulted in
1170 * a transport close, only mark the session transport as closed */
Florin Coras06a2eec2019-05-23 22:28:16 -07001171 else if (s->session_state <= SESSION_STATE_CLOSING)
Florin Corasb0f662f2018-12-27 14:51:46 -08001172 {
Florin Corasb0f662f2018-12-27 14:51:46 -08001173 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1174 }
Florin Coras5f066322019-07-22 19:03:03 -07001175 /* If app also closed, switch to closed */
1176 else if (s->session_state == SESSION_STATE_APP_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001177 s->session_state = SESSION_STATE_CLOSED;
Florin Coras692b9492019-07-12 15:01:53 -07001178
1179 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1180 if (app_wrk)
1181 app_worker_transport_closed_notify (app_wrk, s);
Florin Coras54ddf432018-12-21 13:54:09 -08001182}
1183
1184/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001185 * Notify application that connection has been reset.
1186 */
1187void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001188session_transport_reset_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001189{
Florin Coras15531972018-08-12 23:50:53 -07001190 app_worker_t *app_wrk;
Florin Coras69b68ef2019-04-02 11:38:51 -07001191 session_t *s;
1192
Florin Corascea194d2017-10-02 00:18:51 -07001193 s = session_get (tc->s_index, tc->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -08001194 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001195 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1196 return;
1197 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -07001198 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras69b68ef2019-04-02 11:38:51 -07001199 app_worker_reset_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001200}
1201
Florin Corasa27a46e2019-02-18 13:02:28 -08001202int
1203session_stream_accept_notify (transport_connection_t * tc)
1204{
1205 app_worker_t *app_wrk;
1206 session_t *s;
1207
1208 s = session_get (tc->s_index, tc->thread_index);
1209 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1210 if (!app_wrk)
1211 return -1;
Florin Coras600d7a82021-04-29 11:55:23 -07001212 if (s->session_state != SESSION_STATE_CREATED)
1213 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001214 s->session_state = SESSION_STATE_ACCEPTING;
Florin Coras4dc10a42020-02-11 05:31:49 +00001215 if (app_worker_accept_notify (app_wrk, s))
1216 {
1217 /* On transport delete, no notifications should be sent. Unless, the
1218 * accept is retried and successful. */
1219 s->session_state = SESSION_STATE_CREATED;
1220 return -1;
1221 }
1222 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001223}
1224
Dave Barach68b0fb02017-02-28 15:15:56 -05001225/**
1226 * Accept a stream session. Optionally ping the server by callback.
1227 */
1228int
Florin Corasc9940fc2019-02-05 20:55:11 -08001229session_stream_accept (transport_connection_t * tc, u32 listener_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001230 u32 thread_index, u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -05001231{
Florin Corasa27a46e2019-02-18 13:02:28 -08001232 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001233 int rv;
1234
Florin Corasa27a46e2019-02-18 13:02:28 -08001235 s = session_alloc_for_connection (tc);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001236 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
Florin Coras222e1f412019-02-16 20:47:32 -08001237 s->session_state = SESSION_STATE_CREATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001238
Florin Corasa27a46e2019-02-18 13:02:28 -08001239 if ((rv = app_worker_init_accepted (s)))
Florin Coras12813d52020-04-09 20:59:20 +00001240 {
1241 session_free (s);
1242 return rv;
1243 }
Florin Corasa27a46e2019-02-18 13:02:28 -08001244
1245 session_lookup_add_connection (tc, session_handle (s));
1246
Dave Barach68b0fb02017-02-28 15:15:56 -05001247 /* Shoulder-tap the server */
1248 if (notify)
1249 {
Florin Corasa27a46e2019-02-18 13:02:28 -08001250 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras12813d52020-04-09 20:59:20 +00001251 if ((rv = app_worker_accept_notify (app_wrk, s)))
1252 {
1253 session_lookup_del_session (s);
1254 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1255 session_free (s);
1256 return rv;
1257 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001258 }
1259
1260 return 0;
1261}
1262
Florin Coras371ca502018-02-21 12:07:41 -08001263int
Florin Corase759bb52020-04-08 01:55:39 +00001264session_dgram_accept (transport_connection_t * tc, u32 listener_index,
1265 u32 thread_index)
1266{
1267 app_worker_t *app_wrk;
1268 session_t *s;
1269 int rv;
1270
1271 s = session_alloc_for_connection (tc);
1272 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1273
1274 if ((rv = app_worker_init_accepted (s)))
1275 {
1276 session_free (s);
1277 return rv;
1278 }
1279
Florin Coras473556d2020-11-23 15:59:36 -08001280 session_lookup_add_connection (tc, session_handle (s));
1281
Florin Corase759bb52020-04-08 01:55:39 +00001282 app_wrk = app_worker_get (s->app_wrk_index);
1283 if ((rv = app_worker_accept_notify (app_wrk, s)))
1284 {
Florin Coras473556d2020-11-23 15:59:36 -08001285 session_lookup_del_session (s);
Florin Coras12813d52020-04-09 20:59:20 +00001286 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1287 session_free (s);
Florin Corase759bb52020-04-08 01:55:39 +00001288 return rv;
1289 }
1290
1291 s->session_state = SESSION_STATE_READY;
Florin Corase759bb52020-04-08 01:55:39 +00001292
1293 return 0;
1294}
1295
1296int
Florin Coras89a9f612021-05-11 11:55:07 -07001297session_open_cl (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001298{
1299 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001300 transport_endpoint_cfg_t *tep;
Florin Coras15531972018-08-12 23:50:53 -07001301 app_worker_t *app_wrk;
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001302 session_handle_t sh;
Florin Coras288eaab2019-02-03 15:26:14 -08001303 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -08001304 int rv;
1305
Florin Coras5665ced2018-10-25 18:03:45 -07001306 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001307 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001308 if (rv < 0)
1309 {
1310 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001311 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001312 }
1313
Florin Coras1ee78302019-02-05 15:51:15 -08001314 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001315
Florin Corasa27a46e2019-02-18 13:02:28 -08001316 /* For dgram type of service, allocate session and fifos now */
Florin Coras89a9f612021-05-11 11:55:07 -07001317 app_wrk = app_worker_get (rmt->app_wrk_index);
Florin Corasa27a46e2019-02-18 13:02:28 -08001318 s = session_alloc_for_connection (tc);
Florin Coras15531972018-08-12 23:50:53 -07001319 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001320 s->session_state = SESSION_STATE_OPENED;
Florin Corasa27a46e2019-02-18 13:02:28 -08001321 if (app_worker_init_connected (app_wrk, s))
1322 {
1323 session_free (s);
1324 return -1;
1325 }
Florin Coras371ca502018-02-21 12:07:41 -08001326
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001327 sh = session_handle (s);
Florin Coras89a9f612021-05-11 11:55:07 -07001328 *rsh = sh;
1329
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001330 session_lookup_add_connection (tc, sh);
Florin Coras89a9f612021-05-11 11:55:07 -07001331 return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, rmt->opaque);
Florin Coras371ca502018-02-21 12:07:41 -08001332}
1333
1334int
Florin Coras89a9f612021-05-11 11:55:07 -07001335session_open_vc (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001336{
1337 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001338 transport_endpoint_cfg_t *tep;
Florin Corasea727642021-05-07 19:39:43 -07001339 app_worker_t *app_wrk;
Florin Coras89a9f612021-05-11 11:55:07 -07001340 session_t *ho;
Florin Coras371ca502018-02-21 12:07:41 -08001341 int rv;
1342
Florin Coras5665ced2018-10-25 18:03:45 -07001343 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001344 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001345 if (rv < 0)
1346 {
1347 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001348 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001349 }
1350
Florin Coras1ee78302019-02-05 15:51:15 -08001351 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001352
Florin Coras89a9f612021-05-11 11:55:07 -07001353 app_wrk = app_worker_get (rmt->app_wrk_index);
Florin Coras371ca502018-02-21 12:07:41 -08001354
Florin Corasea727642021-05-07 19:39:43 -07001355 /* If transport offers a vc service, only allocate established
1356 * session once the connection has been established.
1357 * In the meantime allocate half-open session for tracking purposes
1358 * associate half-open connection to it and add session to app-worker
1359 * half-open table. These are needed to allocate the established
1360 * session on transport notification, and to cleanup the half-open
1361 * session if the app detaches before connection establishment.
Florin Coras371ca502018-02-21 12:07:41 -08001362 */
Florin Coras89a9f612021-05-11 11:55:07 -07001363 ho = session_alloc_for_half_open (tc);
1364 ho->app_wrk_index = app_wrk->wrk_index;
1365 ho->ho_index = app_worker_add_half_open (app_wrk, session_handle (ho));
1366 ho->opaque = rmt->opaque;
1367 *rsh = session_handle (ho);
Florin Corasd50ff7f2020-04-16 04:30:22 +00001368
Florin Coras2c876f92021-05-10 21:12:27 -07001369 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1370 session_lookup_add_half_open (tc, tc->c_index);
Florin Coras4fde4ae2020-04-13 16:48:04 +00001371
Florin Coras371ca502018-02-21 12:07:41 -08001372 return 0;
1373}
1374
1375int
Florin Coras89a9f612021-05-11 11:55:07 -07001376session_open_app (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001377{
Florin Coras89a9f612021-05-11 11:55:07 -07001378 transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (rmt);
Florin Coras5665ced2018-10-25 18:03:45 -07001379
Florin Coras89a9f612021-05-11 11:55:07 -07001380 /* Not supported for now */
1381 *rsh = SESSION_INVALID_HANDLE;
Florin Coras1ee78302019-02-05 15:51:15 -08001382 return transport_connect (rmt->transport_proto, tep_cfg);
Florin Coras371ca502018-02-21 12:07:41 -08001383}
1384
Florin Coras89a9f612021-05-11 11:55:07 -07001385typedef int (*session_open_service_fn) (session_endpoint_cfg_t *,
1386 session_handle_t *);
Florin Coras371ca502018-02-21 12:07:41 -08001387
1388/* *INDENT-OFF* */
1389static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
1390 session_open_vc,
1391 session_open_cl,
1392 session_open_app,
1393};
1394/* *INDENT-ON* */
1395
Florin Coras6cf30ad2017-04-04 23:08:23 -07001396/**
1397 * Ask transport to open connection to remote transport endpoint.
1398 *
1399 * Stores handle for matching request with reply since the call can be
1400 * asynchronous. For instance, for TCP the 3-way handshake must complete
1401 * before reply comes. Session is only created once connection is established.
1402 *
1403 * @param app_index Index of the application requesting the connect
1404 * @param st Session type requested.
1405 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -07001406 * @param opaque Opaque data (typically, api_context) the application expects
1407 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -07001408 */
Florin Corase04c2992017-03-01 08:17:34 -08001409int
Florin Coras89a9f612021-05-11 11:55:07 -07001410session_open (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Dave Barach68b0fb02017-02-28 15:15:56 -05001411{
Florin Coras1ee78302019-02-05 15:51:15 -08001412 transport_service_type_t tst;
1413 tst = transport_protocol_service_type (rmt->transport_proto);
Florin Coras89a9f612021-05-11 11:55:07 -07001414 return session_open_srv_fns[tst](rmt, rsh);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001415}
1416
Florin Coras7fb0fe12018-04-09 09:24:52 -07001417/**
Florin Corasab2f6db2018-08-31 14:31:41 -07001418 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001419 *
1420 * @param s Session for which listen will be called. Note that unlike
1421 * established sessions, listen sessions are not associated to a
1422 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -07001423 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001424 */
Florin Coras371ca502018-02-21 12:07:41 -08001425int
Florin Coras288eaab2019-02-03 15:26:14 -08001426session_listen (session_t * ls, session_endpoint_cfg_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001427{
Florin Corasab2f6db2018-08-31 14:31:41 -07001428 transport_endpoint_t *tep;
Florin Corasa8c3b862020-04-07 22:31:06 +00001429 int tc_index;
1430 u32 s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001431
1432 /* Transport bind/listen */
1433 tep = session_endpoint_to_transport (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001434 s_index = ls->session_index;
Florin Corasd4295e62019-02-22 13:11:38 -08001435 tc_index = transport_start_listen (session_get_transport_proto (ls),
1436 s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001437
Florin Corasa8c3b862020-04-07 22:31:06 +00001438 if (tc_index < 0)
1439 return tc_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001440
Florin Corasd4295e62019-02-22 13:11:38 -08001441 /* Attach transport to session. Lookup tables are populated by the app
1442 * worker because local tables (for ct sessions) are not backed by a fib */
Florin Coras74cac882018-09-07 09:13:15 -07001443 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001444 ls->connection_index = tc_index;
1445
Florin Corasab2f6db2018-08-31 14:31:41 -07001446 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001447}
1448
Florin Coras6cf30ad2017-04-04 23:08:23 -07001449/**
1450 * Ask transport to stop listening on local transport endpoint.
1451 *
1452 * @param s Session to stop listening on. It must be in state LISTENING.
1453 */
1454int
Florin Coras288eaab2019-02-03 15:26:14 -08001455session_stop_listen (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001456{
Florin Coras561af9b2017-12-09 10:19:43 -08001457 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001458 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001459
Florin Coras1ee78302019-02-05 15:51:15 -08001460 if (s->session_state != SESSION_STATE_LISTENING)
Florin Corasa8c3b862020-04-07 22:31:06 +00001461 return SESSION_E_NOLISTEN;
Florin Coras1ee78302019-02-05 15:51:15 -08001462
1463 tc = transport_get_listener (tp, s->connection_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001464
1465 /* If no transport, assume everything was cleaned up already */
Florin Coras6cf30ad2017-04-04 23:08:23 -07001466 if (!tc)
Florin Corasa8c3b862020-04-07 22:31:06 +00001467 return SESSION_E_NONE;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001468
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +02001469 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1470 session_lookup_del_connection (tc);
Florin Corasa8c3b862020-04-07 22:31:06 +00001471
Florin Coras1ee78302019-02-05 15:51:15 -08001472 transport_stop_listen (tp, s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001473 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001474}
1475
1476/**
liuyacan534468e2021-05-09 03:50:40 +00001477 * Initialize session half-closing procedure.
1478 *
1479 * Note that half-closing will not change the state of the session.
1480 */
1481void
1482session_half_close (session_t *s)
1483{
1484 if (!s)
1485 return;
1486
1487 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_HALF_CLOSE);
1488}
1489
1490/**
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001491 * Initialize session closing procedure.
Florin Corasa5464812017-04-19 13:00:05 -07001492 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001493 * Request is always sent to session node to ensure that all outstanding
1494 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001495 */
1496void
Florin Coras288eaab2019-02-03 15:26:14 -08001497session_close (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001498{
Florin Coras25579b42018-06-06 17:55:02 -07001499 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001500 return;
Florin Coras25579b42018-06-06 17:55:02 -07001501
1502 if (s->session_state >= SESSION_STATE_CLOSING)
1503 {
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001504 /* Session will only be removed once both app and transport
1505 * acknowledge the close */
Florin Coras5f066322019-07-22 19:03:03 -07001506 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED
1507 || s->session_state == SESSION_STATE_TRANSPORT_DELETED)
Florin Corasdfb3b872019-08-16 17:48:44 -07001508 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras25579b42018-06-06 17:55:02 -07001509 return;
1510 }
1511
Florin Corasb2371c22018-05-31 17:14:10 -07001512 s->session_state = SESSION_STATE_CLOSING;
Florin Corasdfb3b872019-08-16 17:48:44 -07001513 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1514}
1515
1516/**
1517 * Force a close without waiting for data to be flushed
1518 */
1519void
1520session_reset (session_t * s)
1521{
1522 if (s->session_state >= SESSION_STATE_CLOSING)
1523 return;
1524 /* Drop all outstanding tx data */
1525 svm_fifo_dequeue_drop_all (s->tx_fifo);
1526 s->session_state = SESSION_STATE_CLOSING;
1527 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001528}
1529
1530/**
liuyacan534468e2021-05-09 03:50:40 +00001531 * Notify transport the session can be half-disconnected.
1532 *
1533 * Must be called from the session's thread.
1534 */
1535void
1536session_transport_half_close (session_t *s)
1537{
1538 /* Only READY session can be half-closed */
1539 if (s->session_state != SESSION_STATE_READY)
1540 {
1541 return;
1542 }
1543
1544 transport_half_close (session_get_transport_proto (s), s->connection_index,
1545 s->thread_index);
1546}
1547
1548/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001549 * Notify transport the session can be disconnected. This should eventually
1550 * result in a delete notification that allows us to cleanup session state.
1551 * Called for both active/passive disconnects.
1552 *
1553 * Must be called from the session's thread.
1554 */
1555void
Florin Coras288eaab2019-02-03 15:26:14 -08001556session_transport_close (session_t * s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001557{
Florin Coras692b9492019-07-12 15:01:53 -07001558 if (s->session_state >= SESSION_STATE_APP_CLOSED)
Florin Coras568ebc72018-09-18 16:12:50 -07001559 {
Florin Coras5f066322019-07-22 19:03:03 -07001560 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1561 s->session_state = SESSION_STATE_CLOSED;
1562 /* If transport is already deleted, just free the session */
1563 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
Florin Coras692b9492019-07-12 15:01:53 -07001564 session_free_w_fifos (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001565 return;
1566 }
Florin Coras78cc4b02018-12-20 18:24:49 -08001567
Florin Coras692b9492019-07-12 15:01:53 -07001568 /* If the tx queue wasn't drained, the transport can continue to try
1569 * sending the outstanding data (in closed state it cannot). It MUST however
1570 * at one point, either after sending everything or after a timeout, call
1571 * delete notify. This will finally lead to the complete cleanup of the
1572 * session.
Florin Coras78cc4b02018-12-20 18:24:49 -08001573 */
Florin Coras692b9492019-07-12 15:01:53 -07001574 s->session_state = SESSION_STATE_APP_CLOSED;
Florin Coras78cc4b02018-12-20 18:24:49 -08001575
Florin Coras1ee78302019-02-05 15:51:15 -08001576 transport_close (session_get_transport_proto (s), s->connection_index,
1577 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001578}
1579
1580/**
Florin Corasdfb3b872019-08-16 17:48:44 -07001581 * Force transport close
1582 */
1583void
1584session_transport_reset (session_t * s)
1585{
1586 if (s->session_state >= SESSION_STATE_APP_CLOSED)
1587 {
1588 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1589 s->session_state = SESSION_STATE_CLOSED;
1590 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1591 session_free_w_fifos (s);
1592 return;
1593 }
1594
1595 s->session_state = SESSION_STATE_APP_CLOSED;
1596 transport_reset (session_get_transport_proto (s), s->connection_index,
1597 s->thread_index);
1598}
1599
1600/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001601 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001602 *
Florin Coras25579b42018-06-06 17:55:02 -07001603 * Notify transport of the cleanup and free the session. This should
1604 * be called only if transport reported some error and is already
1605 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001606 */
1607void
Florin Coras288eaab2019-02-03 15:26:14 -08001608session_transport_cleanup (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001609{
Florin Coras25579b42018-06-06 17:55:02 -07001610 /* Delete from main lookup table before we axe the the transport */
1611 session_lookup_del_session (s);
Florin Coras5afea122019-10-28 08:46:37 -07001612 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
1613 transport_cleanup (session_get_transport_proto (s), s->connection_index,
1614 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001615 /* Since we called cleanup, no delete notification will come. So, make
1616 * sure the session is properly freed. */
Florin Corasd3955fb2019-11-29 09:31:47 -08001617 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1618 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001619}
1620
Florin Corasa5464812017-04-19 13:00:05 -07001621/**
Florin Corasb384b542018-01-15 01:08:33 -08001622 * Allocate event queues in the shared-memory segment
1623 *
Florin Coras6c10ab22020-11-08 16:50:39 -08001624 * That can only be a newly created memfd segment, that must be
1625 * mapped by all apps/stack users.
Florin Corasa5464812017-04-19 13:00:05 -07001626 */
1627void
Florin Coras31c99552019-03-01 13:00:58 -08001628session_vpp_event_queues_allocate (session_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001629{
Florin Coras52207f12018-07-12 14:48:06 -07001630 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Coras04943b42020-12-25 11:45:40 -08001631 fifo_segment_t *eqs = &smm->evt_qs_segment;
Florin Corasb4c14912019-02-09 13:51:25 -08001632 uword eqs_size = 64 << 20;
Florin Corasb384b542018-01-15 01:08:33 -08001633 pid_t vpp_pid = getpid ();
Florin Corasb384b542018-01-15 01:08:33 -08001634 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001635
Florin Corasb384b542018-01-15 01:08:33 -08001636 if (smm->configured_event_queue_length)
1637 evt_q_length = smm->configured_event_queue_length;
1638
Florin Coras6c10ab22020-11-08 16:50:39 -08001639 if (smm->evt_qs_segment_size)
1640 eqs_size = smm->evt_qs_segment_size;
1641
Florin Coras04943b42020-12-25 11:45:40 -08001642 eqs->ssvm.ssvm_size = eqs_size;
1643 eqs->ssvm.my_pid = vpp_pid;
1644 eqs->ssvm.name = format (0, "%s%c", "session: evt-qs-segment", 0);
Florin Coras6c10ab22020-11-08 16:50:39 -08001645 /* clib_mem_vm_map_shared consumes first page before requested_va */
Florin Coras04943b42020-12-25 11:45:40 -08001646 eqs->ssvm.requested_va = smm->session_baseva + clib_mem_get_page_size ();
Florin Coras6c10ab22020-11-08 16:50:39 -08001647
Florin Coras04943b42020-12-25 11:45:40 -08001648 if (ssvm_server_init (&eqs->ssvm, SSVM_SEGMENT_MEMFD))
Florin Corasa5464812017-04-19 13:00:05 -07001649 {
Florin Coras6c10ab22020-11-08 16:50:39 -08001650 clib_warning ("failed to initialize queue segment");
1651 return;
Florin Corasa5464812017-04-19 13:00:05 -07001652 }
Florin Corasb384b542018-01-15 01:08:33 -08001653
Florin Coras04943b42020-12-25 11:45:40 -08001654 fifo_segment_init (eqs);
Florin Corasb384b542018-01-15 01:08:33 -08001655
Florin Corasb4624182020-12-11 13:58:12 -08001656 /* Special fifo segment that's filled only with mqs */
1657 eqs->h->n_mqs = vec_len (smm->wrk);
1658
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001659 for (i = 0; i < vec_len (smm->wrk); i++)
Florin Corasb384b542018-01-15 01:08:33 -08001660 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001661 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
Florin Coras3c2fed52018-07-04 04:15:05 -07001662 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1663 {evt_q_length, evt_size, 0}
1664 ,
Florin Corasb4c14912019-02-09 13:51:25 -08001665 {evt_q_length >> 1, 256, 0}
Florin Coras3c2fed52018-07-04 04:15:05 -07001666 };
1667 cfg->consumer_pid = 0;
1668 cfg->n_rings = 2;
1669 cfg->q_nitems = evt_q_length;
1670 cfg->ring_cfgs = rc;
Florin Coras04943b42020-12-25 11:45:40 -08001671
Florin Corasb4624182020-12-11 13:58:12 -08001672 smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (eqs, i, cfg);
Florin Corasb384b542018-01-15 01:08:33 -08001673 }
Florin Corasb384b542018-01-15 01:08:33 -08001674}
1675
Florin Coras04943b42020-12-25 11:45:40 -08001676fifo_segment_t *
Florin Coras31c99552019-03-01 13:00:58 -08001677session_main_get_evt_q_segment (void)
Florin Corasb384b542018-01-15 01:08:33 -08001678{
Florin Coras6c10ab22020-11-08 16:50:39 -08001679 return &session_main.evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001680}
1681
Florin Coras31c99552019-03-01 13:00:58 -08001682u64
1683session_segment_handle (session_t * s)
1684{
1685 svm_fifo_t *f;
1686
Aloys Augustincdb71702019-04-08 17:54:39 +02001687 if (!s->rx_fifo)
Florin Coras31c99552019-03-01 13:00:58 -08001688 return SESSION_INVALID_HANDLE;
1689
1690 f = s->rx_fifo;
1691 return segment_manager_make_segment_handle (f->segment_manager,
1692 f->segment_index);
1693}
1694
Florin Coras371ca502018-02-21 12:07:41 -08001695/* *INDENT-OFF* */
1696static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1697 session_tx_fifo_peek_and_snd,
1698 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001699 session_tx_fifo_dequeue_internal,
1700 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001701};
1702/* *INDENT-ON* */
1703
Florin Coras561af9b2017-12-09 10:19:43 -08001704void
1705session_register_transport (transport_proto_t transport_proto,
1706 const transport_proto_vft_t * vft, u8 is_ip4,
1707 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001708{
Florin Coras31c99552019-03-01 13:00:58 -08001709 session_main_t *smm = &session_main;
Florin Coras561af9b2017-12-09 10:19:43 -08001710 session_type_t session_type;
1711 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001712
Florin Coras561af9b2017-12-09 10:19:43 -08001713 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1714
1715 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001716 vec_validate (smm->session_tx_fns, session_type);
1717
Florin Coras371ca502018-02-21 12:07:41 -08001718 if (output_node != ~0)
Florin Coraseb839cc2021-04-14 11:23:55 -07001719 next_index = vlib_node_add_next (vlib_get_main (),
1720 session_queue_node.index, output_node);
Florin Coras561af9b2017-12-09 10:19:43 -08001721
1722 smm->session_type_to_next[session_type] = next_index;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001723 smm->session_tx_fns[session_type] =
1724 session_tx_fns[vft->transport_options.tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001725}
1726
Florin Coras07063b82020-03-13 04:44:51 +00001727transport_proto_t
1728session_add_transport_proto (void)
1729{
1730 session_main_t *smm = &session_main;
1731 session_worker_t *wrk;
1732 u32 thread;
1733
1734 smm->last_transport_proto_type += 1;
1735
1736 for (thread = 0; thread < vec_len (smm->wrk); thread++)
1737 {
1738 wrk = session_main_get_worker (thread);
1739 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1740 }
1741
1742 return smm->last_transport_proto_type;
1743}
1744
Florin Coras3cbc04b2017-10-02 00:18:51 -07001745transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001746session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001747{
Florin Corasade70e42017-10-14 18:56:41 -07001748 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras4edc37e2019-02-04 23:01:34 -08001749 return transport_get_connection (session_get_transport_proto (s),
1750 s->connection_index, s->thread_index);
1751 else
1752 return transport_get_listener (session_get_transport_proto (s),
1753 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001754}
1755
Aloys Augustincdb71702019-04-08 17:54:39 +02001756void
Florin Coras09d18c22019-04-24 11:10:02 -07001757session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +02001758{
1759 if (s->session_state != SESSION_STATE_LISTENING)
1760 return transport_get_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001761 s->connection_index, s->thread_index, tep,
1762 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001763 else
1764 return transport_get_listener_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001765 s->connection_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001766}
1767
Florin Coras04ae8272021-04-12 19:55:37 -07001768int
1769session_transport_attribute (session_t *s, u8 is_get,
1770 transport_endpt_attr_t *attr)
1771{
1772 if (s->session_state < SESSION_STATE_READY)
1773 return -1;
1774
1775 return transport_connection_attribute (session_get_transport_proto (s),
1776 s->connection_index, s->thread_index,
1777 is_get, attr);
1778}
1779
Florin Coras3cbc04b2017-10-02 00:18:51 -07001780transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001781listen_session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001782{
Florin Coras4edc37e2019-02-04 23:01:34 -08001783 return transport_get_listener (session_get_transport_proto (s),
1784 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001785}
1786
Florin Corasfd542f12018-05-16 19:28:24 -07001787void
Florin Coras5484daa2020-03-27 23:55:06 +00001788session_queue_run_on_main_thread (vlib_main_t * vm)
Florin Corasfd542f12018-05-16 19:28:24 -07001789{
1790 ASSERT (vlib_get_thread_index () == 0);
Florin Coras1d2e38b2021-03-17 21:52:49 -07001791 vlib_node_set_interrupt_pending (vm, session_queue_node.index);
Florin Corasfd542f12018-05-16 19:28:24 -07001792}
1793
Dave Barach68b0fb02017-02-28 15:15:56 -05001794static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001795session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001796{
Florin Coras31c99552019-03-01 13:00:58 -08001797 session_main_t *smm = &session_main;
Florin Corase04c2992017-03-01 08:17:34 -08001798 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001799 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras31c99552019-03-01 13:00:58 -08001800 session_worker_t *wrk;
Florin Corasd5c604d2019-03-18 09:06:35 -07001801 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001802
Florin Corase10da622020-10-25 14:00:29 -07001803 /* We only initialize once and do not de-initialized on disable */
1804 if (smm->is_initialized)
1805 goto done;
1806
Dave Barach68b0fb02017-02-28 15:15:56 -05001807 num_threads = 1 /* main thread */ + vtm->n_threads;
1808
1809 if (num_threads < 1)
1810 return clib_error_return (0, "n_thread_stacks not set");
1811
Florin Coras5f56d732018-10-30 10:21:59 -07001812 /* Allocate cache line aligned worker contexts */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001813 vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001814
Dave Barachacd2a6a2017-05-16 17:41:34 -04001815 for (i = 0; i < num_threads; i++)
1816 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001817 wrk = &smm->wrk[i];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001818 wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras2062ec02019-07-15 13:15:18 -07001819 wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras60183db2019-07-20 15:53:16 -07001820 wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Corasaf972212021-05-05 09:54:00 -07001821 wrk->pending_connects = clib_llist_make_head (wrk->event_elts, evt_list);
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001822 wrk->vm = vlib_get_main_by_index (i);
Dave Barach77d98382020-04-28 18:00:21 -04001823 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001824 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Corasa48dffe2021-05-16 10:58:53 -07001825 wrk->timerfd = -1;
Florin Coras07063b82020-03-13 04:44:51 +00001826 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
Florin Corasd67f1122018-05-21 17:47:40 -07001827
Florin Coras29ca16f2017-11-02 18:14:17 -04001828 if (num_threads > 1)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001829 clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
Florin Coras7da88292021-03-18 15:04:34 -07001830
1831 if (!smm->no_adaptive && smm->use_private_rx_mqs)
1832 session_wrk_enable_adaptive_mode (wrk);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001833 }
1834
Florin Corasb384b542018-01-15 01:08:33 -08001835 /* Allocate vpp event queues segment and queue */
1836 session_vpp_event_queues_allocate (smm);
1837
Florin Coras9a45bd82020-12-28 16:28:07 -08001838 /* Initialize segment manager properties */
1839 segment_manager_main_init ();
Florin Coras6cf30ad2017-04-04 23:08:23 -07001840
Florin Coras66b11312017-07-31 17:18:03 -07001841 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001842 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001843 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001844 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001845 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001846 pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001847 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001848 else
Florin Coras66b11312017-07-31 17:18:03 -07001849 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001850 int j;
1851 preallocated_sessions_per_worker =
1852 (1.1 * (f64) smm->preallocated_sessions /
1853 (f64) (num_threads - 1));
1854
1855 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001856 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001857 pool_init_fixed (smm->wrk[j].sessions,
Dave Barachb7f1faa2017-08-29 11:43:37 -04001858 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001859 }
Florin Coras66b11312017-07-31 17:18:03 -07001860 }
1861 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001862
Florin Coras04e53442017-07-16 17:12:15 -07001863 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001864 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001865 transport_init ();
Florin Corase10da622020-10-25 14:00:29 -07001866 smm->is_initialized = 1;
1867
1868done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001869
Florin Corase04c2992017-03-01 08:17:34 -08001870 smm->is_enabled = 1;
1871
Florin Coras561af9b2017-12-09 10:19:43 -08001872 /* Enable transports */
1873 transport_enable_disable (vm, 1);
Florin Coras11166672020-04-13 01:20:25 +00001874 session_debug_init ();
Srikanth Akula73570432020-04-06 19:19:49 -07001875
Dave Barach68b0fb02017-02-28 15:15:56 -05001876 return 0;
1877}
1878
Florin Corase10da622020-10-25 14:00:29 -07001879static void
1880session_manager_main_disable (vlib_main_t * vm)
1881{
1882 transport_enable_disable (vm, 0 /* is_en */ );
1883}
1884
Florin Corasa5464812017-04-19 13:00:05 -07001885void
1886session_node_enable_disable (u8 is_en)
1887{
Florin Coras1d2e38b2021-03-17 21:52:49 -07001888 u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
Florin Corasa5464812017-04-19 13:00:05 -07001889 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Coras1d2e38b2021-03-17 21:52:49 -07001890 session_main_t *sm = &session_main;
1891 vlib_main_t *vm;
1892 vlib_node_t *n;
1893 int n_vlibs, i;
Florin Corasfd542f12018-05-16 19:28:24 -07001894
Florin Coras1d2e38b2021-03-17 21:52:49 -07001895 n_vlibs = vlib_get_n_threads ();
1896 for (i = 0; i < n_vlibs; i++)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001897 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001898 vm = vlib_get_main_by_index (i);
1899 /* main thread with workers and not polling */
1900 if (i == 0 && n_vlibs > 1)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001901 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001902 vlib_node_set_state (vm, session_queue_node.index, mstate);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001903 if (is_en)
1904 {
Florin Corasb32af352021-05-19 07:58:49 -07001905 session_main_get_worker (0)->state = SESSION_WRK_INTERRUPT;
Florin Coras1d2e38b2021-03-17 21:52:49 -07001906 vlib_node_set_state (vm, session_queue_process_node.index,
1907 state);
1908 n = vlib_get_node (vm, session_queue_process_node.index);
1909 vlib_start_process (vm, n->runtime_index);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001910 }
1911 else
1912 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001913 vlib_process_signal_event_mt (vm,
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001914 session_queue_process_node.index,
1915 SESSION_Q_PROCESS_STOP, 0);
1916 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07001917 if (!sm->poll_main)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001918 continue;
1919 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07001920 vlib_node_set_state (vm, session_queue_node.index, state);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001921 }
Florin Coras41d5f542021-01-15 13:49:33 -08001922
Florin Coras1d2e38b2021-03-17 21:52:49 -07001923 if (sm->use_private_rx_mqs)
Florin Coras41d5f542021-01-15 13:49:33 -08001924 application_enable_rx_mqs_nodes (is_en);
Florin Corasa5464812017-04-19 13:00:05 -07001925}
1926
Florin Corase04c2992017-03-01 08:17:34 -08001927clib_error_t *
1928vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1929{
Florin Corascea194d2017-10-02 00:18:51 -07001930 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001931 if (is_en)
1932 {
Florin Coras31c99552019-03-01 13:00:58 -08001933 if (session_main.is_enabled)
Florin Corase04c2992017-03-01 08:17:34 -08001934 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001935
Florin Corascea194d2017-10-02 00:18:51 -07001936 error = session_manager_main_enable (vm);
Vladimir Kropyleva2e44512019-07-16 21:32:41 +03001937 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001938 }
1939 else
1940 {
Florin Coras31c99552019-03-01 13:00:58 -08001941 session_main.is_enabled = 0;
Florin Corase10da622020-10-25 14:00:29 -07001942 session_manager_main_disable (vm);
Florin Corasa5464812017-04-19 13:00:05 -07001943 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001944 }
1945
Florin Corascea194d2017-10-02 00:18:51 -07001946 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001947}
1948
Florin Corase04c2992017-03-01 08:17:34 -08001949clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00001950session_main_init (vlib_main_t * vm)
Florin Corase04c2992017-03-01 08:17:34 -08001951{
Florin Coras31c99552019-03-01 13:00:58 -08001952 session_main_t *smm = &session_main;
Florin Corase33c0022020-04-03 17:23:42 +00001953
1954 smm->is_enabled = 0;
1955 smm->session_enable_asap = 0;
Florin Corase92c9462020-11-25 08:44:16 -08001956 smm->poll_main = 0;
Florin Coras41d5f542021-01-15 13:49:33 -08001957 smm->use_private_rx_mqs = 0;
Florin Coras7da88292021-03-18 15:04:34 -07001958 smm->no_adaptive = 0;
David Johnsond9818dd2018-12-14 14:53:41 -05001959 smm->session_baseva = HIGH_SEGMENT_BASEVA;
Florin Corase33c0022020-04-03 17:23:42 +00001960
David Johnsond9818dd2018-12-14 14:53:41 -05001961#if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1962 smm->session_va_space_size = 128ULL << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001963 smm->evt_qs_segment_size = 64 << 20;
David Johnsond9818dd2018-12-14 14:53:41 -05001964#else
1965 smm->session_va_space_size = 128 << 20;
1966 smm->evt_qs_segment_size = 1 << 20;
1967#endif
Florin Corase33c0022020-04-03 17:23:42 +00001968
Florin Coras4b47ee22020-11-19 13:38:26 -08001969 smm->last_transport_proto_type = TRANSPORT_PROTO_DTLS;
Florin Corase33c0022020-04-03 17:23:42 +00001970
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01001971 return 0;
1972}
1973
1974static clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00001975session_main_loop_init (vlib_main_t * vm)
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01001976{
1977 session_main_t *smm = &session_main;
1978 if (smm->session_enable_asap)
1979 {
1980 vlib_worker_thread_barrier_sync (vm);
1981 vnet_session_enable_disable (vm, 1 /* is_en */ );
1982 vlib_worker_thread_barrier_release (vm);
1983 }
Florin Corase04c2992017-03-01 08:17:34 -08001984 return 0;
1985}
1986
Florin Corase33c0022020-04-03 17:23:42 +00001987VLIB_INIT_FUNCTION (session_main_init);
1988VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init);
Dave Barach2c25a622017-06-26 11:35:07 -04001989
1990static clib_error_t *
1991session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001992{
Florin Coras31c99552019-03-01 13:00:58 -08001993 session_main_t *smm = &session_main;
Dave Barach10d8cc62017-05-30 09:30:07 -04001994 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001995 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001996
1997 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1998 {
1999 if (unformat (input, "event-queue-length %d", &nitems))
2000 {
2001 if (nitems >= 2048)
2002 smm->configured_event_queue_length = nitems;
2003 else
2004 clib_warning ("event queue length %d too small, ignored", nitems);
2005 }
Florin Coras66b11312017-07-31 17:18:03 -07002006 else if (unformat (input, "preallocated-sessions %d",
2007 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04002008 ;
Florin Coras66b11312017-07-31 17:18:03 -07002009 else if (unformat (input, "v4-session-table-buckets %d",
2010 &smm->configured_v4_session_table_buckets))
2011 ;
2012 else if (unformat (input, "v4-halfopen-table-buckets %d",
2013 &smm->configured_v4_halfopen_table_buckets))
2014 ;
2015 else if (unformat (input, "v6-session-table-buckets %d",
2016 &smm->configured_v6_session_table_buckets))
2017 ;
2018 else if (unformat (input, "v6-halfopen-table-buckets %d",
2019 &smm->configured_v6_halfopen_table_buckets))
2020 ;
2021 else if (unformat (input, "v4-session-table-memory %U",
2022 unformat_memory_size, &tmp))
2023 {
2024 if (tmp >= 0x100000000)
2025 return clib_error_return (0, "memory size %llx (%lld) too large",
2026 tmp, tmp);
2027 smm->configured_v4_session_table_memory = tmp;
2028 }
2029 else if (unformat (input, "v4-halfopen-table-memory %U",
2030 unformat_memory_size, &tmp))
2031 {
2032 if (tmp >= 0x100000000)
2033 return clib_error_return (0, "memory size %llx (%lld) too large",
2034 tmp, tmp);
2035 smm->configured_v4_halfopen_table_memory = tmp;
2036 }
2037 else if (unformat (input, "v6-session-table-memory %U",
2038 unformat_memory_size, &tmp))
2039 {
2040 if (tmp >= 0x100000000)
2041 return clib_error_return (0, "memory size %llx (%lld) too large",
2042 tmp, tmp);
2043 smm->configured_v6_session_table_memory = tmp;
2044 }
2045 else if (unformat (input, "v6-halfopen-table-memory %U",
2046 unformat_memory_size, &tmp))
2047 {
2048 if (tmp >= 0x100000000)
2049 return clib_error_return (0, "memory size %llx (%lld) too large",
2050 tmp, tmp);
2051 smm->configured_v6_halfopen_table_memory = tmp;
2052 }
Florin Coras93e65802017-11-29 00:07:11 -05002053 else if (unformat (input, "local-endpoints-table-memory %U",
2054 unformat_memory_size, &tmp))
2055 {
2056 if (tmp >= 0x100000000)
2057 return clib_error_return (0, "memory size %llx (%lld) too large",
2058 tmp, tmp);
2059 smm->local_endpoints_table_memory = tmp;
2060 }
2061 else if (unformat (input, "local-endpoints-table-buckets %d",
2062 &smm->local_endpoints_table_buckets))
2063 ;
Florin Coras6c10ab22020-11-08 16:50:39 -08002064 /* Deprecated but maintained for compatibility */
Florin Corasb384b542018-01-15 01:08:33 -08002065 else if (unformat (input, "evt_qs_memfd_seg"))
Florin Coras6c10ab22020-11-08 16:50:39 -08002066 ;
Florin Corasb4c14912019-02-09 13:51:25 -08002067 else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
2068 &smm->evt_qs_segment_size))
2069 ;
Nathan Skrzypczak1292d192019-09-13 15:44:54 +02002070 else if (unformat (input, "enable"))
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01002071 smm->session_enable_asap = 1;
Florin Corasaae177e2020-10-12 18:39:44 -07002072 else if (unformat (input, "segment-baseva 0x%lx", &smm->session_baseva))
2073 ;
Florin Coras61ae0562020-09-02 19:10:28 -07002074 else if (unformat (input, "use-app-socket-api"))
2075 appns_sapi_enable ();
Florin Corase92c9462020-11-25 08:44:16 -08002076 else if (unformat (input, "poll-main"))
2077 smm->poll_main = 1;
Florin Coras41d5f542021-01-15 13:49:33 -08002078 else if (unformat (input, "use-private-rx-mqs"))
2079 smm->use_private_rx_mqs = 1;
Florin Coras7da88292021-03-18 15:04:34 -07002080 else if (unformat (input, "no-adaptive"))
2081 smm->no_adaptive = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04002082 else
2083 return clib_error_return (0, "unknown input `%U'",
2084 format_unformat_error, input);
2085 }
2086 return 0;
2087}
2088
2089VLIB_CONFIG_FUNCTION (session_config_fn, "session");
2090
Dave Barach68b0fb02017-02-28 15:15:56 -05002091/*
2092 * fd.io coding-style-patch-verification: ON
2093 *
2094 * Local Variables:
2095 * eval: (c-set-style "gnu")
2096 * End:
2097 */