blob: 852f87da677501fd87b8405189959f96cae8e009 [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>
Florin Corasd82f4712022-04-25 16:15:02 -070024#include <vlib/stats/stats.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050025
Florin Coras31c99552019-03-01 13:00:58 -080026session_main_t session_main;
Florin Coras3eb50622017-07-13 01:24:57 -040027
Florin Coras3c2fed52018-07-04 04:15:05 -070028static inline int
29session_send_evt_to_thread (void *data, void *args, u32 thread_index,
30 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070031{
Florin Coras7da88292021-03-18 15:04:34 -070032 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras52207f12018-07-12 14:48:06 -070033 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070034 svm_msg_q_msg_t msg;
35 svm_msg_q_t *mq;
Florin Coras3cbc04b2017-10-02 00:18:51 -070036
Florin Coras7da88292021-03-18 15:04:34 -070037 mq = wrk->vpp_event_queue;
Nathan Skrzypczakb4c67752019-06-20 09:58:37 +020038 if (PREDICT_FALSE (svm_msg_q_lock (mq)))
39 return -1;
Florin Coras80d100c2022-04-19 18:57:24 -070040 if (PREDICT_FALSE (svm_msg_q_or_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;
Damjan Marion66d4cb52022-03-17 18:59:46 +0100205
Florin Corasd3915dc2022-03-31 15:42:17 -0700206 pool_get_aligned_safe (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400207 clib_memset (s, 0, sizeof (*s));
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700208 s->session_index = s - wrk->sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700209 s->thread_index = thread_index;
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200210 s->app_index = APP_INVALID_INDEX;
Florin Coras6bd8d3f2022-03-14 21:17:25 -0700211
Florin Coras3cbc04b2017-10-02 00:18:51 -0700212 return s;
213}
214
Florin Coras371ca502018-02-21 12:07:41 -0800215void
Florin Coras288eaab2019-02-03 15:26:14 -0800216session_free (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700217{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700218 if (CLIB_DEBUG)
Florin Coras6416e622019-04-03 17:52:43 -0700219 {
220 u8 thread_index = s->thread_index;
221 clib_memset (s, 0xFA, sizeof (*s));
222 pool_put (session_main.wrk[thread_index].sessions, s);
223 return;
224 }
Florin Corascca96182019-07-19 07:34:13 -0700225 SESSION_EVT (SESSION_EVT_FREE, s);
Florin Coras6416e622019-04-03 17:52:43 -0700226 pool_put (session_main.wrk[s->thread_index].sessions, s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700227}
228
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800229u8
230session_is_valid (u32 si, u8 thread_index)
231{
232 session_t *s;
233 transport_connection_t *tc;
234
235 s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
236
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800237 if (s->thread_index != thread_index || s->session_index != si)
238 return 0;
239
240 if (s->session_state == SESSION_STATE_TRANSPORT_DELETED
241 || s->session_state <= SESSION_STATE_LISTENING)
242 return 1;
243
Florin Corasea727642021-05-07 19:39:43 -0700244 if (s->session_state == SESSION_STATE_CONNECTING &&
245 (s->flags & SESSION_F_HALF_OPEN))
246 return 1;
247
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800248 tc = session_get_transport (s);
249 if (s->connection_index != tc->c_index
250 || s->thread_index != tc->thread_index || tc->s_index != si)
251 return 0;
252
253 return 1;
254}
255
Florin Coras70f26d52019-07-08 11:47:18 -0700256static void
257session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf)
258{
259 app_worker_t *app_wrk;
260
261 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
262 if (!app_wrk)
263 return;
264 app_worker_cleanup_notify (app_wrk, s, ntf);
265}
266
Florin Coraseb97e5f2018-10-15 21:35:42 -0700267void
Florin Coras288eaab2019-02-03 15:26:14 -0800268session_free_w_fifos (session_t * s)
Florin Coras568ebc72018-09-18 16:12:50 -0700269{
Florin Coras70f26d52019-07-08 11:47:18 -0700270 session_cleanup_notify (s, SESSION_CLEANUP_SESSION);
Florin Coras19223e02019-03-03 14:56:05 -0800271 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700272 session_free (s);
273}
274
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800275/**
276 * Cleans up session and lookup table.
277 *
278 * Transport connection must still be valid.
279 */
280static void
Florin Coras288eaab2019-02-03 15:26:14 -0800281session_delete (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800282{
283 int rv;
284
285 /* Delete from the main lookup table. */
286 if ((rv = session_lookup_del_session (s)))
Florin Corasd09236d2019-08-08 17:38:26 -0700287 clib_warning ("session %u hash delete rv %d", s->session_index, rv);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800288
289 session_free_w_fifos (s);
290}
291
Florin Corasd50ff7f2020-04-16 04:30:22 +0000292void
Florin Corasea727642021-05-07 19:39:43 -0700293session_cleanup_half_open (session_handle_t ho_handle)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000294{
Florin Corasbab6c522021-05-13 08:36:56 -0700295 session_t *ho = session_get_from_handle (ho_handle);
296
297 /* App transports can migrate their half-opens */
298 if (ho->flags & SESSION_F_IS_MIGRATING)
299 {
300 /* Session still migrating, move to closed state to signal that the
301 * session should be removed. */
302 if (ho->connection_index == ~0)
303 {
304 ho->session_state = SESSION_STATE_CLOSED;
305 return;
306 }
307 /* Migrated transports are no longer half-opens */
308 transport_cleanup (session_get_transport_proto (ho),
309 ho->connection_index, ho->app_index /* overloaded */);
Florin Corasbab6c522021-05-13 08:36:56 -0700310 }
Florin Coras374df7a2021-05-13 11:37:43 -0700311 else
312 transport_cleanup_half_open (session_get_transport_proto (ho),
313 ho->connection_index);
314 session_free (ho);
Florin Corasbab6c522021-05-13 08:36:56 -0700315}
316
317static void
Florin Coras374df7a2021-05-13 11:37:43 -0700318session_half_open_free (session_t *ho)
Florin Corasbab6c522021-05-13 08:36:56 -0700319{
320 app_worker_t *app_wrk;
Florin Corasbab6c522021-05-13 08:36:56 -0700321
322 ASSERT (vlib_get_thread_index () <= 1);
Florin Corasbab6c522021-05-13 08:36:56 -0700323 app_wrk = app_worker_get (ho->app_wrk_index);
324 app_worker_del_half_open (app_wrk, ho);
325 session_free (ho);
326}
327
328static void
329session_half_open_free_rpc (void *args)
330{
Florin Coras374df7a2021-05-13 11:37:43 -0700331 session_t *ho = ho_session_get (pointer_to_uword (args));
332 session_half_open_free (ho);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000333}
334
335void
Florin Corasea727642021-05-07 19:39:43 -0700336session_half_open_delete_notify (transport_connection_t *tc)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000337{
Florin Coras374df7a2021-05-13 11:37:43 -0700338 /* Notification from ctrl thread accepted without rpc */
Florin Coras6bd54ca2021-06-10 22:50:26 -0700339 if (!tc->thread_index)
Florin Coras374df7a2021-05-13 11:37:43 -0700340 {
341 session_half_open_free (ho_session_get (tc->s_index));
342 }
343 else
344 {
345 void *args = uword_to_pointer ((uword) tc->s_index, void *);
Florin Coras6bd54ca2021-06-10 22:50:26 -0700346 session_send_rpc_evt_to_thread_force (0, session_half_open_free_rpc,
347 args);
Florin Coras374df7a2021-05-13 11:37:43 -0700348 }
Florin Corasbab6c522021-05-13 08:36:56 -0700349}
Florin Corasea727642021-05-07 19:39:43 -0700350
Florin Corasbab6c522021-05-13 08:36:56 -0700351void
352session_half_open_migrate_notify (transport_connection_t *tc)
353{
354 session_t *ho;
355
356 ho = ho_session_get (tc->s_index);
357 ho->flags |= SESSION_F_IS_MIGRATING;
358 ho->connection_index = ~0;
359}
360
361int
362session_half_open_migrated_notify (transport_connection_t *tc)
363{
364 session_t *ho;
365
366 ho = ho_session_get (tc->s_index);
367
368 /* App probably detached so the half-open must be cleaned up */
369 if (ho->session_state == SESSION_STATE_CLOSED)
370 {
371 session_half_open_delete_notify (tc);
372 return -1;
373 }
374 ho->connection_index = tc->c_index;
375 /* Overload app index for half-open with new thread */
376 ho->app_index = tc->thread_index;
377 return 0;
Florin Corasd50ff7f2020-04-16 04:30:22 +0000378}
379
Andreas Schultz1a8c4372020-03-20 09:39:59 +0100380session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700381session_alloc_for_connection (transport_connection_t * tc)
382{
Florin Coras288eaab2019-02-03 15:26:14 -0800383 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700384 u32 thread_index = tc->thread_index;
385
Florin Coras40903ac2018-06-10 14:41:23 -0700386 ASSERT (thread_index == vlib_get_thread_index ()
387 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400388
Florin Coras3cbc04b2017-10-02 00:18:51 -0700389 s = session_alloc (thread_index);
390 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Florin Corasb0f662f2018-12-27 14:51:46 -0800391 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500392
Florin Coras3cbc04b2017-10-02 00:18:51 -0700393 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700396 return s;
397}
398
Florin Coras2c876f92021-05-10 21:12:27 -0700399session_t *
Florin Corasea727642021-05-07 19:39:43 -0700400session_alloc_for_half_open (transport_connection_t *tc)
401{
402 session_t *s;
403
404 s = ho_session_alloc ();
405 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
406 s->connection_index = tc->c_index;
407 tc->s_index = s->session_index;
408 return s;
409}
410
Florin Coras1f152cd2017-08-18 19:28:03 -0700411/**
412 * Discards bytes from buffer chain
413 *
414 * It discards n_bytes_to_drop starting at first buffer after chain_b
415 */
416always_inline void
417session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
418 vlib_buffer_t ** chain_b,
419 u32 n_bytes_to_drop)
420{
421 vlib_buffer_t *next = *chain_b;
422 u32 to_drop = n_bytes_to_drop;
423 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
424 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
425 {
426 next = vlib_get_buffer (vm, next->next_buffer);
427 if (next->current_length > to_drop)
428 {
429 vlib_buffer_advance (next, to_drop);
430 to_drop = 0;
431 }
432 else
433 {
434 to_drop -= next->current_length;
435 next->current_length = 0;
436 }
437 }
438 *chain_b = next;
439
440 if (to_drop == 0)
441 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
442}
443
444/**
445 * Enqueue buffer chain tail
446 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700447always_inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800448session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700449 u32 offset, u8 is_in_order)
450{
451 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700452 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700453 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700454 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700455 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700456 int rv = 0;
457
Florin Coras1f152cd2017-08-18 19:28:03 -0700458 if (is_in_order && offset)
459 {
460 diff = offset - b->current_length;
461 if (diff > b->total_length_not_including_first_buffer)
462 return 0;
463 chain_b = b;
464 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
465 chain_bi = vlib_get_buffer_index (vm, chain_b);
466 }
467 else
468 chain_bi = b->next_buffer;
469
Florin Corasf6d68ed2017-05-07 19:12:02 -0700470 do
471 {
472 chain_b = vlib_get_buffer (vm, chain_bi);
473 data = vlib_buffer_get_current (chain_b);
474 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700475 if (!len)
476 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700477 if (is_in_order)
478 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700479 rv = svm_fifo_enqueue (s->rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700480 if (rv == len)
481 {
482 written += rv;
483 }
484 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700485 {
486 return (rv > 0) ? (written + rv) : written;
487 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700488 else if (rv > len)
489 {
490 written += rv;
491
492 /* written more than what was left in chain */
493 if (written > b->total_length_not_including_first_buffer)
494 return written;
495
496 /* drop the bytes that have already been delivered */
497 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
498 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700499 }
500 else
501 {
Florin Coras288eaab2019-02-03 15:26:14 -0800502 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700503 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700504 {
505 clib_warning ("failed to enqueue multi-buffer seg");
506 return -1;
507 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700508 offset += len;
509 }
510 }
511 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
512 ? chain_b->next_buffer : 0));
513
514 if (is_in_order)
515 return written;
516
517 return 0;
518}
519
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000520void
521session_fifo_tuning (session_t * s, svm_fifo_t * f,
522 session_ft_action_t act, u32 len)
523{
524 if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING)
525 {
526 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
527 app_worker_session_fifo_tuning (app_wrk, s, f, act, len);
528 if (CLIB_ASSERT_ENABLE)
529 {
530 segment_manager_t *sm;
531 sm = segment_manager_get (f->segment_manager);
Florin Corasc547e912020-12-08 17:50:45 -0800532 ASSERT (f->shr->size >= 4096);
533 ASSERT (f->shr->size <= sm->max_fifo_size);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000534 }
535 }
536}
537
Dave Barach68b0fb02017-02-28 15:15:56 -0500538/*
539 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
540 * event but on request can queue notification events for later delivery by
541 * calling stream_server_flush_enqueue_events().
542 *
543 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700544 * @param b Buffer to be enqueued
545 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500546 * @param queue_event Flag to indicate if peer is to be notified or if event
547 * is to be queued. The former is useful when more data is
548 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700549 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500550 * @return Number of bytes enqueued or a negative value if enqueueing failed.
551 */
552int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700553session_enqueue_stream_connection (transport_connection_t * tc,
554 vlib_buffer_t * b, u32 offset,
555 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500556{
Florin Coras288eaab2019-02-03 15:26:14 -0800557 session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700558 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500559
Florin Corascea194d2017-10-02 00:18:51 -0700560 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500561
Florin Corasf6d68ed2017-05-07 19:12:02 -0700562 if (is_in_order)
563 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700564 enqueued = svm_fifo_enqueue (s->rx_fifo,
565 b->current_length,
566 vlib_buffer_get_current (b));
Florin Coras1f152cd2017-08-18 19:28:03 -0700567 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
568 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700569 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700570 in_order_off = enqueued > b->current_length ? enqueued : 0;
571 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
572 if (rv > 0)
573 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700574 }
575 }
576 else
577 {
Florin Coras288eaab2019-02-03 15:26:14 -0800578 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700579 b->current_length,
580 vlib_buffer_get_current (b));
581 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700582 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
583 /* if something was enqueued, report even this as success for ooo
584 * segment handling */
585 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700586 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500587
588 if (queue_event)
589 {
590 /* Queue RX event on this fifo. Eventually these will need to be flushed
591 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800592 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500593
Florin Coras31c99552019-03-01 13:00:58 -0800594 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700595 if (!(s->flags & SESSION_F_RX_EVT))
Dave Barach68b0fb02017-02-28 15:15:56 -0500596 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700597 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700598 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500599 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000600
601 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500602 }
603
Chris Lukeb2bcad62017-09-18 08:51:22 -0400604 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500605}
606
Florin Coras3cbc04b2017-10-02 00:18:51 -0700607int
Florin Coras288eaab2019-02-03 15:26:14 -0800608session_enqueue_dgram_connection (session_t * s,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700609 session_dgram_hdr_t * hdr,
610 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700611{
Florin Corasc95cfa22020-11-24 08:41:17 -0800612 int rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700613
Sirshak Das28aa5392019-02-05 01:33:33 -0600614 ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700615 >= b->current_length + sizeof (*hdr));
616
Florin Corasc95cfa22020-11-24 08:41:17 -0800617 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700618 {
Florin Corasc95cfa22020-11-24 08:41:17 -0800619 /* *INDENT-OFF* */
620 svm_fifo_seg_t segs[2] = {
621 { (u8 *) hdr, sizeof (*hdr) },
622 { vlib_buffer_get_current (b), b->current_length }
623 };
624 /* *INDENT-ON* */
625
626 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2,
627 0 /* allow_partial */ );
Florin Coras3cbc04b2017-10-02 00:18:51 -0700628 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800629 else
630 {
631 vlib_main_t *vm = vlib_get_main ();
632 svm_fifo_seg_t *segs = 0, *seg;
633 vlib_buffer_t *it = b;
634 u32 n_segs = 1;
635
636 vec_add2 (segs, seg, 1);
637 seg->data = (u8 *) hdr;
638 seg->len = sizeof (*hdr);
639 while (it)
640 {
641 vec_add2 (segs, seg, 1);
642 seg->data = vlib_buffer_get_current (it);
643 seg->len = it->current_length;
644 n_segs++;
645 if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT))
646 break;
647 it = vlib_get_buffer (vm, it->next_buffer);
648 }
649 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs,
650 0 /* allow partial */ );
651 vec_free (segs);
652 }
653
654 if (queue_event && rv > 0)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700655 {
656 /* Queue RX event on this fifo. Eventually these will need to be flushed
657 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800658 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700659
Florin Coras31c99552019-03-01 13:00:58 -0800660 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700661 if (!(s->flags & SESSION_F_RX_EVT))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700662 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700663 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700664 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700665 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000666
667 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700668 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800669 return rv > 0 ? rv : 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700670}
671
Florin Coras93992a92017-05-24 18:03:56 -0700672int
Florin Coras31c99552019-03-01 13:00:58 -0800673session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
674 u32 offset, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500675{
Florin Coras288eaab2019-02-03 15:26:14 -0800676 session_t *s = session_get (tc->s_index, tc->thread_index);
677 return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500678}
679
680u32
Florin Coras31c99552019-03-01 13:00:58 -0800681session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500682{
Florin Coras288eaab2019-02-03 15:26:14 -0800683 session_t *s = session_get (tc->s_index, tc->thread_index);
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300684 u32 rv;
685
686 rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000687 session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv);
Florin Coras0e573f52019-05-07 16:28:16 -0700688
Florin Coras2d379d82019-06-28 12:45:12 -0700689 if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes))
Florin Coras0e573f52019-05-07 16:28:16 -0700690 session_dequeue_notify (s);
691
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300692 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500693}
694
Florin Coras72b04282019-01-14 17:23:11 -0800695static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800696session_notify_subscribers (u32 app_index, session_t * s,
Florin Coras72b04282019-01-14 17:23:11 -0800697 svm_fifo_t * f, session_evt_type_t evt_type)
698{
699 app_worker_t *app_wrk;
700 application_t *app;
701 int i;
702
703 app = application_get (app_index);
704 if (!app)
705 return -1;
706
Florin Corasc547e912020-12-08 17:50:45 -0800707 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800708 {
Florin Corasc547e912020-12-08 17:50:45 -0800709 app_wrk = application_get_worker (app, f->shr->subscribers[i]);
Florin Coras72b04282019-01-14 17:23:11 -0800710 if (!app_wrk)
711 continue;
712 if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
713 return -1;
714 }
715
716 return 0;
717}
718
Dave Barach68b0fb02017-02-28 15:15:56 -0500719/**
720 * Notify session peer that new data has been enqueued.
721 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700722 * @param s Stream session for which the event is to be generated.
723 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500724 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700725 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500726 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700727static inline int
Florin Coras653e43f2019-03-04 10:56:23 -0800728session_enqueue_notify_inline (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500729{
Florin Coras72b04282019-01-14 17:23:11 -0800730 app_worker_t *app_wrk;
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200731 u32 session_index;
732 u8 n_subscribers;
733
734 session_index = s->session_index;
735 n_subscribers = svm_fifo_n_subscribers (s->rx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500736
Florin Coras72b04282019-01-14 17:23:11 -0800737 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
738 if (PREDICT_FALSE (!app_wrk))
Dave Barach818eb542017-08-02 13:56:13 -0400739 {
Florin Coras15531972018-08-12 23:50:53 -0700740 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400741 return 0;
742 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500743
Florin Corascca96182019-07-19 07:34:13 -0700744 SESSION_EVT (SESSION_EVT_ENQ, s, svm_fifo_max_dequeue_prod (s->rx_fifo));
Dave Barach68b0fb02017-02-28 15:15:56 -0500745
Florin Corasd5c604d2019-03-18 09:06:35 -0700746 s->flags &= ~SESSION_F_RX_EVT;
Florin Corasda302e42020-04-19 22:41:55 +0000747
748 /* Application didn't confirm accept yet */
749 if (PREDICT_FALSE (s->session_state == SESSION_STATE_ACCEPTING))
750 return 0;
751
Florin Coras72b04282019-01-14 17:23:11 -0800752 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800753 SESSION_IO_EVT_RX)))
Florin Coras72b04282019-01-14 17:23:11 -0800754 return -1;
755
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200756 if (PREDICT_FALSE (n_subscribers))
757 {
758 s = session_get (session_index, vlib_get_thread_index ());
759 return session_notify_subscribers (app_wrk->app_index, s,
760 s->rx_fifo, SESSION_IO_EVT_RX);
761 }
Florin Coras72b04282019-01-14 17:23:11 -0800762
763 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500764}
765
Florin Coras0d60a0f2018-06-29 02:02:08 -0700766int
Florin Coras653e43f2019-03-04 10:56:23 -0800767session_enqueue_notify (session_t * s)
768{
769 return session_enqueue_notify_inline (s);
770}
771
Aloys Augustinb3392332019-08-06 16:09:01 +0200772static void
773session_enqueue_notify_rpc (void *arg)
774{
Florin Coras5d8a8062019-08-13 08:35:39 -0700775 u32 session_index = pointer_to_uword (arg);
Aloys Augustinb3392332019-08-06 16:09:01 +0200776 session_t *s;
777
Florin Coras5d8a8062019-08-13 08:35:39 -0700778 s = session_get_if_valid (session_index, vlib_get_thread_index ());
Aloys Augustinb3392332019-08-06 16:09:01 +0200779 if (!s)
780 return;
781
782 session_enqueue_notify (s);
783}
784
785/**
786 * Like session_enqueue_notify, but can be called from a thread that does not
787 * own the session.
788 */
789void
790session_enqueue_notify_thread (session_handle_t sh)
791{
792 u32 thread_index = session_thread_from_handle (sh);
Florin Coras5d8a8062019-08-13 08:35:39 -0700793 u32 session_index = session_index_from_handle (sh);
794
795 /*
796 * Pass session index (u32) as opposed to handle (u64) in case pointers
797 * are not 64-bit.
798 */
Aloys Augustinb3392332019-08-06 16:09:01 +0200799 session_send_rpc_evt_to_thread (thread_index,
Florin Coras5d8a8062019-08-13 08:35:39 -0700800 session_enqueue_notify_rpc,
801 uword_to_pointer (session_index, void *));
Aloys Augustinb3392332019-08-06 16:09:01 +0200802}
803
Florin Coras653e43f2019-03-04 10:56:23 -0800804int
Florin Coras288eaab2019-02-03 15:26:14 -0800805session_dequeue_notify (session_t * s)
Florin Coras0d60a0f2018-06-29 02:02:08 -0700806{
Florin Coras72b04282019-01-14 17:23:11 -0800807 app_worker_t *app_wrk;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700808
Vladimir Kropylev5c89fbf2019-08-30 13:04:06 +0300809 svm_fifo_clear_deq_ntf (s->tx_fifo);
810
Florin Coras72b04282019-01-14 17:23:11 -0800811 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
812 if (PREDICT_FALSE (!app_wrk))
Florin Coras208daa12018-07-02 01:30:51 -0700813 return -1;
814
Florin Coras72b04282019-01-14 17:23:11 -0800815 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800816 SESSION_IO_EVT_TX)))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800817 return -1;
818
Florin Corasc547e912020-12-08 17:50:45 -0800819 if (PREDICT_FALSE (s->tx_fifo->shr->n_subscribers))
Florin Coras72b04282019-01-14 17:23:11 -0800820 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800821 s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras72b04282019-01-14 17:23:11 -0800822
Florin Coras1bcad5c2019-01-09 20:04:38 -0800823 return 0;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700824}
825
Dave Barach68b0fb02017-02-28 15:15:56 -0500826/**
827 * Flushes queue of sessions that are to be notified of new data
828 * enqueued events.
829 *
830 * @param thread_index Thread index for which the flush is to be performed.
831 * @return 0 on success or a positive number indicating the number of
832 * failures due to API queue being full.
833 */
834int
Florin Coras31c99552019-03-01 13:00:58 -0800835session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500836{
Florin Coras31c99552019-03-01 13:00:58 -0800837 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800838 session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700839 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700840 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500841
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700842 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500843
Florin Coras3cbc04b2017-10-02 00:18:51 -0700844 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500845 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700846 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700847 if (PREDICT_FALSE (!s))
848 {
849 errors++;
850 continue;
851 }
Florin Coras653e43f2019-03-04 10:56:23 -0800852
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000853 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED,
854 0 /* TODO/not needed */ );
855
Florin Coras653e43f2019-03-04 10:56:23 -0800856 if (PREDICT_FALSE (session_enqueue_notify_inline (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700857 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500858 }
859
Florin Coras3cbc04b2017-10-02 00:18:51 -0700860 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700861 wrk->session_to_enqueue[transport_proto] = indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500862
863 return errors;
864}
865
Florin Coras7fb0fe12018-04-09 09:24:52 -0700866int
Florin Coras31c99552019-03-01 13:00:58 -0800867session_main_flush_all_enqueue_events (u8 transport_proto)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700868{
869 vlib_thread_main_t *vtm = vlib_get_thread_main ();
870 int i, errors = 0;
871 for (i = 0; i < 1 + vtm->n_threads; i++)
Florin Coras31c99552019-03-01 13:00:58 -0800872 errors += session_main_flush_enqueue_events (transport_proto, i);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700873 return errors;
874}
875
Florin Coras4fde4ae2020-04-13 16:48:04 +0000876int
877session_stream_connect_notify (transport_connection_t * tc,
878 session_error_t err)
Dave Barach68b0fb02017-02-28 15:15:56 -0500879{
Florin Coras371ca502018-02-21 12:07:41 -0800880 u32 opaque = 0, new_ti, new_si;
Florin Coras15531972018-08-12 23:50:53 -0700881 app_worker_t *app_wrk;
Florin Corasea727642021-05-07 19:39:43 -0700882 session_t *s = 0, *ho;
Dave Barach68b0fb02017-02-28 15:15:56 -0500883
Florin Coras3cbc04b2017-10-02 00:18:51 -0700884 /*
Florin Corasea727642021-05-07 19:39:43 -0700885 * Cleanup half-open table
Florin Coras3cbc04b2017-10-02 00:18:51 -0700886 */
Florin Corascea194d2017-10-02 00:18:51 -0700887 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400888
Florin Corasea727642021-05-07 19:39:43 -0700889 ho = ho_session_get (tc->s_index);
890 opaque = ho->opaque;
891 app_wrk = app_worker_get_if_valid (ho->app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700892 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700893 return -1;
Florin Corasa27a46e2019-02-18 13:02:28 -0800894
Florin Coras00e01d32019-10-21 16:07:46 -0700895 if (err)
896 return app_worker_connect_notify (app_wrk, s, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800897
898 s = session_alloc_for_connection (tc);
899 s->session_state = SESSION_STATE_CONNECTING;
900 s->app_wrk_index = app_wrk->wrk_index;
901 new_si = s->session_index;
902 new_ti = s->thread_index;
903
Florin Coras00e01d32019-10-21 16:07:46 -0700904 if ((err = app_worker_init_connected (app_wrk, s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500905 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800906 session_free (s);
Florin Coras00e01d32019-10-21 16:07:46 -0700907 app_worker_connect_notify (app_wrk, 0, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800908 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500909 }
910
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200911 s = session_get (new_si, new_ti);
Florin Coras4fde4ae2020-04-13 16:48:04 +0000912 s->session_state = SESSION_STATE_READY;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200913 session_lookup_add_connection (tc, session_handle (s));
914
Florin Coras00e01d32019-10-21 16:07:46 -0700915 if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque))
Florin Coras6534b7a2017-07-18 05:38:03 -0400916 {
Florin Corasc7fd24e2020-07-24 10:09:07 -0700917 session_lookup_del_connection (tc);
918 /* Avoid notifying app about rejected session cleanup */
Florin Corasa27a46e2019-02-18 13:02:28 -0800919 s = session_get (new_si, new_ti);
Florin Corasc7fd24e2020-07-24 10:09:07 -0700920 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
921 session_free (s);
Florin Corasa27a46e2019-02-18 13:02:28 -0800922 return -1;
Florin Coras6534b7a2017-07-18 05:38:03 -0400923 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500924
Florin Corasa27a46e2019-02-18 13:02:28 -0800925 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500926}
927
Florin Coras02000442021-11-16 12:45:43 -0800928typedef union session_switch_pool_reply_args_
929{
930 struct
931 {
932 u32 session_index;
933 u16 thread_index;
934 u8 is_closed;
935 };
936 u64 as_u64;
937} session_switch_pool_reply_args_t;
938
939STATIC_ASSERT (sizeof (session_switch_pool_reply_args_t) <= sizeof (uword),
940 "switch pool reply args size");
941
Florin Coras6d7552c2020-04-09 01:49:45 +0000942static void
943session_switch_pool_reply (void *arg)
944{
Florin Coras02000442021-11-16 12:45:43 -0800945 session_switch_pool_reply_args_t rargs;
Florin Coras6d7552c2020-04-09 01:49:45 +0000946 session_t *s;
947
Florin Coras02000442021-11-16 12:45:43 -0800948 rargs.as_u64 = pointer_to_uword (arg);
949 s = session_get_if_valid (rargs.session_index, rargs.thread_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000950 if (!s)
951 return;
952
Florin Coras02000442021-11-16 12:45:43 -0800953 /* Session closed during migration. Clean everything up */
954 if (rargs.is_closed)
955 {
956 transport_cleanup (session_get_transport_proto (s), s->connection_index,
957 s->thread_index);
958 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
959 session_free (s);
960 return;
961 }
962
Florin Coras6d7552c2020-04-09 01:49:45 +0000963 /* Notify app that it has data on the new session */
964 session_enqueue_notify (s);
965}
966
Florin Coras3cbc04b2017-10-02 00:18:51 -0700967typedef struct _session_switch_pool_args
968{
969 u32 session_index;
970 u32 thread_index;
971 u32 new_thread_index;
972 u32 new_session_index;
973} session_switch_pool_args_t;
974
Florin Coras49568af2019-07-31 16:46:24 -0700975/**
976 * Notify old thread of the session pool switch
977 */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700978static void
979session_switch_pool (void *cb_args)
980{
981 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras02000442021-11-16 12:45:43 -0800982 session_switch_pool_reply_args_t rargs;
Florin Coras6d7552c2020-04-09 01:49:45 +0000983 session_handle_t new_sh;
984 segment_manager_t *sm;
Florin Coras49568af2019-07-31 16:46:24 -0700985 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800986 session_t *s;
Florin Coras49568af2019-07-31 16:46:24 -0700987
Florin Coras3cbc04b2017-10-02 00:18:51 -0700988 ASSERT (args->thread_index == vlib_get_thread_index ());
989 s = session_get (args->session_index, args->thread_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000990
Florin Corasfc8d0c52021-11-17 11:41:10 -0800991 /* Check if session closed during migration */
992 rargs.is_closed = s->session_state >= SESSION_STATE_TRANSPORT_CLOSING;
993
Florin Coras1ee78302019-02-05 15:51:15 -0800994 transport_cleanup (session_get_transport_proto (s), s->connection_index,
995 s->thread_index);
Florin Coras49568af2019-07-31 16:46:24 -0700996
997 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
998 if (app_wrk)
999 {
Florin Coras6d7552c2020-04-09 01:49:45 +00001000 /* Cleanup fifo segment slice state for fifos */
1001 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras0bc78d82021-01-09 14:34:01 -08001002 segment_manager_detach_fifo (sm, &s->rx_fifo);
1003 segment_manager_detach_fifo (sm, &s->tx_fifo);
Aloys Augustinb3392332019-08-06 16:09:01 +02001004
Florin Coras6d7552c2020-04-09 01:49:45 +00001005 /* Notify app, using old session, about the migration event */
Florin Coras02000442021-11-16 12:45:43 -08001006 if (!rargs.is_closed)
1007 {
1008 new_sh = session_make_handle (args->new_session_index,
1009 args->new_thread_index);
1010 app_worker_migrate_notify (app_wrk, s, new_sh);
1011 }
Florin Coras49568af2019-07-31 16:46:24 -07001012 }
1013
Florin Coras6d7552c2020-04-09 01:49:45 +00001014 /* Trigger app read and fifo updates on the new thread */
Florin Coras02000442021-11-16 12:45:43 -08001015 rargs.session_index = args->new_session_index;
1016 rargs.thread_index = args->new_thread_index;
Florin Coras6d7552c2020-04-09 01:49:45 +00001017 session_send_rpc_evt_to_thread (args->new_thread_index,
Florin Coras02000442021-11-16 12:45:43 -08001018 session_switch_pool_reply,
1019 uword_to_pointer (rargs.as_u64, void *));
Florin Coras6d7552c2020-04-09 01:49:45 +00001020
Florin Coras3cbc04b2017-10-02 00:18:51 -07001021 session_free (s);
1022 clib_mem_free (cb_args);
1023}
1024
1025/**
1026 * Move dgram session to the right thread
1027 */
1028int
1029session_dgram_connect_notify (transport_connection_t * tc,
Florin Coras288eaab2019-02-03 15:26:14 -08001030 u32 old_thread_index, session_t ** new_session)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001031{
Florin Coras288eaab2019-02-03 15:26:14 -08001032 session_t *new_s;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001033 session_switch_pool_args_t *rpc_args;
Florin Coras0bc78d82021-01-09 14:34:01 -08001034 segment_manager_t *sm;
1035 app_worker_t *app_wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001036
1037 /*
1038 * Clone half-open session to the right thread.
1039 */
1040 new_s = session_clone_safe (tc->s_index, old_thread_index);
1041 new_s->connection_index = tc->c_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001042 new_s->session_state = SESSION_STATE_READY;
Nathan Skrzypczakcaa7acf2019-10-02 10:02:05 +02001043 new_s->flags |= SESSION_F_IS_MIGRATING;
Florin Coras6d7552c2020-04-09 01:49:45 +00001044
Florin Coras0bc78d82021-01-09 14:34:01 -08001045 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1046 session_lookup_add_connection (tc, session_handle (new_s));
1047
1048 app_wrk = app_worker_get_if_valid (new_s->app_wrk_index);
1049 if (app_wrk)
1050 {
1051 /* New set of fifos attached to the same shared memory */
1052 sm = app_worker_get_connect_segment_manager (app_wrk);
1053 segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s);
1054 segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s);
1055 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001056
1057 /*
1058 * Ask thread owning the old session to clean it up and make us the tx
1059 * fifo owner
1060 */
1061 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
1062 rpc_args->new_session_index = new_s->session_index;
1063 rpc_args->new_thread_index = new_s->thread_index;
1064 rpc_args->session_index = tc->s_index;
1065 rpc_args->thread_index = old_thread_index;
1066 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
1067 rpc_args);
1068
1069 tc->s_index = new_s->session_index;
1070 new_s->connection_index = tc->c_index;
1071 *new_session = new_s;
1072 return 0;
1073}
1074
Dave Barach68b0fb02017-02-28 15:15:56 -05001075/**
1076 * Notification from transport that connection is being closed.
1077 *
1078 * A disconnect is sent to application but state is not removed. Once
1079 * disconnect is acknowledged by application, session disconnect is called.
1080 * Ultimately this leads to close being called on transport (passive close).
1081 */
1082void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001083session_transport_closing_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001084{
Florin Coras15531972018-08-12 23:50:53 -07001085 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001086 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001087
Florin Corascea194d2017-10-02 00:18:51 -07001088 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -07001089 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1090 return;
Florin Corasdfd27bc2021-11-27 10:45:55 -08001091
1092 /* Wait for reply from app before sending notification as the
1093 * accept might be rejected */
1094 if (s->session_state == SESSION_STATE_ACCEPTING)
1095 {
1096 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
1097 return;
1098 }
1099
Florin Coras568ebc72018-09-18 16:12:50 -07001100 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Corasbf7ce2c2019-03-06 14:44:42 -08001101 app_wrk = app_worker_get (s->app_wrk_index);
1102 app_worker_close_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001103}
1104
1105/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001106 * Notification from transport that connection is being deleted
1107 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001108 * This removes the session if it is still valid. It should be called only on
1109 * previously fully established sessions. For instance failed connects should
1110 * call stream_session_connect_notify and indicate that the connect has
1111 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001112 */
1113void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001114session_transport_delete_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001115{
Florin Coras288eaab2019-02-03 15:26:14 -08001116 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001117
Florin Corase04c2992017-03-01 08:17:34 -08001118 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -07001119 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -07001120 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001121
Florin Coras568ebc72018-09-18 16:12:50 -07001122 switch (s->session_state)
1123 {
Florin Coras222e1f412019-02-16 20:47:32 -08001124 case SESSION_STATE_CREATED:
1125 /* Session was created but accept notification was not yet sent to the
1126 * app. Cleanup everything. */
1127 session_lookup_del_session (s);
Zeyu Zhangcbbc4a22019-10-12 14:21:59 +08001128 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1129 session_free (s);
Florin Coras222e1f412019-02-16 20:47:32 -08001130 break;
Florin Corasb0f662f2018-12-27 14:51:46 -08001131 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -07001132 case SESSION_STATE_TRANSPORT_CLOSING:
Florin Coras692b9492019-07-12 15:01:53 -07001133 case SESSION_STATE_CLOSING:
Florin Coras5f066322019-07-22 19:03:03 -07001134 case SESSION_STATE_TRANSPORT_CLOSED:
Florin Coras568ebc72018-09-18 16:12:50 -07001135 /* If transport finishes or times out before we get a reply
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001136 * from the app, mark transport as closed and wait for reply
1137 * before removing the session. Cleanup session table in advance
Florin Corasa9d5bea2018-12-17 08:24:19 -08001138 * because transport will soon be closed and closed sessions
1139 * are assumed to have been removed from the lookup table */
1140 session_lookup_del_session (s);
Florin Coras5f066322019-07-22 19:03:03 -07001141 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001142 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1143 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -07001144 break;
Florin Coras692b9492019-07-12 15:01:53 -07001145 case SESSION_STATE_APP_CLOSED:
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001146 /* Cleanup lookup table as transport needs to still be valid.
1147 * Program transport close to ensure that all session events
1148 * have been cleaned up. Once transport close is called, the
1149 * session is just removed because both transport and app have
1150 * confirmed the close*/
Florin Coras568ebc72018-09-18 16:12:50 -07001151 session_lookup_del_session (s);
Florin Coras3b5e2222019-10-25 16:23:39 -07001152 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001153 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1154 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Corasdfb3b872019-08-16 17:48:44 -07001155 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras568ebc72018-09-18 16:12:50 -07001156 break;
Florin Coras5f066322019-07-22 19:03:03 -07001157 case SESSION_STATE_TRANSPORT_DELETED:
Florin Corasb0f662f2018-12-27 14:51:46 -08001158 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001159 case SESSION_STATE_CLOSED:
Florin Coras70f26d52019-07-08 11:47:18 -07001160 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001161 session_delete (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001162 break;
Florin Corasc01d5782018-10-17 14:53:11 -07001163 default:
Florin Corasb0f662f2018-12-27 14:51:46 -08001164 clib_warning ("session state %u", s->session_state);
Florin Coras70f26d52019-07-08 11:47:18 -07001165 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001166 session_delete (s);
Florin Corasc01d5782018-10-17 14:53:11 -07001167 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001168 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001169}
1170
1171/**
Florin Coras692b9492019-07-12 15:01:53 -07001172 * Notification from transport that it is closed
Florin Coras54ddf432018-12-21 13:54:09 -08001173 *
Florin Coras692b9492019-07-12 15:01:53 -07001174 * Should be called by transport, prior to calling delete notify, once it
1175 * knows that no more data will be exchanged. This could serve as an
1176 * early acknowledgment of an active close especially if transport delete
1177 * can be delayed a long time, e.g., tcp time-wait.
Florin Coras54ddf432018-12-21 13:54:09 -08001178 */
1179void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001180session_transport_closed_notify (transport_connection_t * tc)
Florin Coras54ddf432018-12-21 13:54:09 -08001181{
Florin Coras692b9492019-07-12 15:01:53 -07001182 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001183 session_t *s;
Florin Coras54ddf432018-12-21 13:54:09 -08001184
1185 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1186 return;
Florin Corasb0f662f2018-12-27 14:51:46 -08001187
Florin Coras06a2eec2019-05-23 22:28:16 -07001188 /* Transport thinks that app requested close but it actually didn't.
liuyacan534468e2021-05-09 03:50:40 +00001189 * Can happen for tcp:
1190 * 1)if fin and rst are received in close succession.
1191 * 2)if app shutdown the connection. */
Florin Coras06a2eec2019-05-23 22:28:16 -07001192 if (s->session_state == SESSION_STATE_READY)
1193 {
1194 session_transport_closing_notify (tc);
1195 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras692b9492019-07-12 15:01:53 -07001196 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
Florin Coras06a2eec2019-05-23 22:28:16 -07001197 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001198 /* If app close has not been received or has not yet resulted in
1199 * a transport close, only mark the session transport as closed */
Florin Coras06a2eec2019-05-23 22:28:16 -07001200 else if (s->session_state <= SESSION_STATE_CLOSING)
Florin Corasb0f662f2018-12-27 14:51:46 -08001201 {
Florin Corasb0f662f2018-12-27 14:51:46 -08001202 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1203 }
Florin Coras5f066322019-07-22 19:03:03 -07001204 /* If app also closed, switch to closed */
1205 else if (s->session_state == SESSION_STATE_APP_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001206 s->session_state = SESSION_STATE_CLOSED;
Florin Coras692b9492019-07-12 15:01:53 -07001207
1208 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1209 if (app_wrk)
1210 app_worker_transport_closed_notify (app_wrk, s);
Florin Coras54ddf432018-12-21 13:54:09 -08001211}
1212
1213/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001214 * Notify application that connection has been reset.
1215 */
1216void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001217session_transport_reset_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001218{
Florin Coras15531972018-08-12 23:50:53 -07001219 app_worker_t *app_wrk;
Florin Coras69b68ef2019-04-02 11:38:51 -07001220 session_t *s;
1221
Florin Corascea194d2017-10-02 00:18:51 -07001222 s = session_get (tc->s_index, tc->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -08001223 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001224 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1225 return;
Florin Corasdfd27bc2021-11-27 10:45:55 -08001226 if (s->session_state == SESSION_STATE_ACCEPTING)
1227 {
1228 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
1229 return;
1230 }
Florin Coras3c7d4f92018-12-14 11:28:43 -08001231 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -07001232 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras69b68ef2019-04-02 11:38:51 -07001233 app_worker_reset_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001234}
1235
Florin Corasa27a46e2019-02-18 13:02:28 -08001236int
1237session_stream_accept_notify (transport_connection_t * tc)
1238{
1239 app_worker_t *app_wrk;
1240 session_t *s;
1241
1242 s = session_get (tc->s_index, tc->thread_index);
1243 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1244 if (!app_wrk)
1245 return -1;
Florin Coras600d7a82021-04-29 11:55:23 -07001246 if (s->session_state != SESSION_STATE_CREATED)
1247 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001248 s->session_state = SESSION_STATE_ACCEPTING;
Florin Coras4dc10a42020-02-11 05:31:49 +00001249 if (app_worker_accept_notify (app_wrk, s))
1250 {
1251 /* On transport delete, no notifications should be sent. Unless, the
1252 * accept is retried and successful. */
1253 s->session_state = SESSION_STATE_CREATED;
1254 return -1;
1255 }
1256 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001257}
1258
Dave Barach68b0fb02017-02-28 15:15:56 -05001259/**
1260 * Accept a stream session. Optionally ping the server by callback.
1261 */
1262int
Florin Corasc9940fc2019-02-05 20:55:11 -08001263session_stream_accept (transport_connection_t * tc, u32 listener_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001264 u32 thread_index, u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -05001265{
Florin Corasa27a46e2019-02-18 13:02:28 -08001266 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001267 int rv;
1268
Florin Corasa27a46e2019-02-18 13:02:28 -08001269 s = session_alloc_for_connection (tc);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001270 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
Florin Coras222e1f412019-02-16 20:47:32 -08001271 s->session_state = SESSION_STATE_CREATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001272
Florin Corasa27a46e2019-02-18 13:02:28 -08001273 if ((rv = app_worker_init_accepted (s)))
Florin Coras12813d52020-04-09 20:59:20 +00001274 {
1275 session_free (s);
1276 return rv;
1277 }
Florin Corasa27a46e2019-02-18 13:02:28 -08001278
1279 session_lookup_add_connection (tc, session_handle (s));
1280
Dave Barach68b0fb02017-02-28 15:15:56 -05001281 /* Shoulder-tap the server */
1282 if (notify)
1283 {
Florin Corasa27a46e2019-02-18 13:02:28 -08001284 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras12813d52020-04-09 20:59:20 +00001285 if ((rv = app_worker_accept_notify (app_wrk, s)))
1286 {
1287 session_lookup_del_session (s);
1288 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1289 session_free (s);
1290 return rv;
1291 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001292 }
1293
1294 return 0;
1295}
1296
Florin Coras371ca502018-02-21 12:07:41 -08001297int
Florin Corase759bb52020-04-08 01:55:39 +00001298session_dgram_accept (transport_connection_t * tc, u32 listener_index,
1299 u32 thread_index)
1300{
1301 app_worker_t *app_wrk;
1302 session_t *s;
1303 int rv;
1304
1305 s = session_alloc_for_connection (tc);
1306 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1307
1308 if ((rv = app_worker_init_accepted (s)))
1309 {
1310 session_free (s);
1311 return rv;
1312 }
1313
Florin Coras473556d2020-11-23 15:59:36 -08001314 session_lookup_add_connection (tc, session_handle (s));
Florin Corasfc20c8e2022-06-28 16:01:35 -07001315 s->session_state = SESSION_STATE_ACCEPTING;
Florin Coras473556d2020-11-23 15:59:36 -08001316
Florin Corase759bb52020-04-08 01:55:39 +00001317 app_wrk = app_worker_get (s->app_wrk_index);
1318 if ((rv = app_worker_accept_notify (app_wrk, s)))
1319 {
Florin Coras473556d2020-11-23 15:59:36 -08001320 session_lookup_del_session (s);
Florin Coras12813d52020-04-09 20:59:20 +00001321 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1322 session_free (s);
Florin Corase759bb52020-04-08 01:55:39 +00001323 return rv;
1324 }
1325
Florin Corase759bb52020-04-08 01:55:39 +00001326 return 0;
1327}
1328
1329int
Florin Coras89a9f612021-05-11 11:55:07 -07001330session_open_cl (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001331{
1332 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001333 transport_endpoint_cfg_t *tep;
Florin Coras15531972018-08-12 23:50:53 -07001334 app_worker_t *app_wrk;
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001335 session_handle_t sh;
Florin Coras288eaab2019-02-03 15:26:14 -08001336 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -08001337 int rv;
1338
Florin Coras5665ced2018-10-25 18:03:45 -07001339 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001340 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001341 if (rv < 0)
1342 {
1343 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001344 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001345 }
1346
Florin Coras1ee78302019-02-05 15:51:15 -08001347 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001348
Florin Corasa27a46e2019-02-18 13:02:28 -08001349 /* For dgram type of service, allocate session and fifos now */
Florin Coras89a9f612021-05-11 11:55:07 -07001350 app_wrk = app_worker_get (rmt->app_wrk_index);
Florin Corasa27a46e2019-02-18 13:02:28 -08001351 s = session_alloc_for_connection (tc);
Florin Coras15531972018-08-12 23:50:53 -07001352 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001353 s->session_state = SESSION_STATE_OPENED;
Florin Corasa27a46e2019-02-18 13:02:28 -08001354 if (app_worker_init_connected (app_wrk, s))
1355 {
1356 session_free (s);
1357 return -1;
1358 }
Florin Coras371ca502018-02-21 12:07:41 -08001359
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001360 sh = session_handle (s);
Florin Coras89a9f612021-05-11 11:55:07 -07001361 *rsh = sh;
1362
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001363 session_lookup_add_connection (tc, sh);
Florin Coras89a9f612021-05-11 11:55:07 -07001364 return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, rmt->opaque);
Florin Coras371ca502018-02-21 12:07:41 -08001365}
1366
1367int
Florin Coras89a9f612021-05-11 11:55:07 -07001368session_open_vc (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001369{
1370 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001371 transport_endpoint_cfg_t *tep;
Florin Corasea727642021-05-07 19:39:43 -07001372 app_worker_t *app_wrk;
Florin Coras89a9f612021-05-11 11:55:07 -07001373 session_t *ho;
Florin Coras371ca502018-02-21 12:07:41 -08001374 int rv;
1375
Florin Coras5665ced2018-10-25 18:03:45 -07001376 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001377 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001378 if (rv < 0)
1379 {
1380 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001381 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001382 }
1383
Florin Coras1ee78302019-02-05 15:51:15 -08001384 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001385
Florin Coras89a9f612021-05-11 11:55:07 -07001386 app_wrk = app_worker_get (rmt->app_wrk_index);
Florin Coras371ca502018-02-21 12:07:41 -08001387
Florin Corasea727642021-05-07 19:39:43 -07001388 /* If transport offers a vc service, only allocate established
1389 * session once the connection has been established.
1390 * In the meantime allocate half-open session for tracking purposes
1391 * associate half-open connection to it and add session to app-worker
1392 * half-open table. These are needed to allocate the established
1393 * session on transport notification, and to cleanup the half-open
1394 * session if the app detaches before connection establishment.
Florin Coras371ca502018-02-21 12:07:41 -08001395 */
Florin Coras89a9f612021-05-11 11:55:07 -07001396 ho = session_alloc_for_half_open (tc);
1397 ho->app_wrk_index = app_wrk->wrk_index;
1398 ho->ho_index = app_worker_add_half_open (app_wrk, session_handle (ho));
1399 ho->opaque = rmt->opaque;
1400 *rsh = session_handle (ho);
Florin Corasd50ff7f2020-04-16 04:30:22 +00001401
Florin Coras2c876f92021-05-10 21:12:27 -07001402 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1403 session_lookup_add_half_open (tc, tc->c_index);
Florin Coras4fde4ae2020-04-13 16:48:04 +00001404
Florin Coras371ca502018-02-21 12:07:41 -08001405 return 0;
1406}
1407
1408int
Florin Coras89a9f612021-05-11 11:55:07 -07001409session_open_app (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Florin Coras371ca502018-02-21 12:07:41 -08001410{
Florin Coras89a9f612021-05-11 11:55:07 -07001411 transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (rmt);
Florin Coras5665ced2018-10-25 18:03:45 -07001412
Florin Coras89a9f612021-05-11 11:55:07 -07001413 /* Not supported for now */
1414 *rsh = SESSION_INVALID_HANDLE;
Florin Coras1ee78302019-02-05 15:51:15 -08001415 return transport_connect (rmt->transport_proto, tep_cfg);
Florin Coras371ca502018-02-21 12:07:41 -08001416}
1417
Florin Coras89a9f612021-05-11 11:55:07 -07001418typedef int (*session_open_service_fn) (session_endpoint_cfg_t *,
1419 session_handle_t *);
Florin Coras371ca502018-02-21 12:07:41 -08001420
1421/* *INDENT-OFF* */
1422static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
1423 session_open_vc,
1424 session_open_cl,
1425 session_open_app,
1426};
1427/* *INDENT-ON* */
1428
Florin Coras6cf30ad2017-04-04 23:08:23 -07001429/**
1430 * Ask transport to open connection to remote transport endpoint.
1431 *
1432 * Stores handle for matching request with reply since the call can be
1433 * asynchronous. For instance, for TCP the 3-way handshake must complete
1434 * before reply comes. Session is only created once connection is established.
1435 *
1436 * @param app_index Index of the application requesting the connect
1437 * @param st Session type requested.
1438 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -07001439 * @param opaque Opaque data (typically, api_context) the application expects
1440 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -07001441 */
Florin Corase04c2992017-03-01 08:17:34 -08001442int
Florin Coras89a9f612021-05-11 11:55:07 -07001443session_open (session_endpoint_cfg_t *rmt, session_handle_t *rsh)
Dave Barach68b0fb02017-02-28 15:15:56 -05001444{
Florin Coras1ee78302019-02-05 15:51:15 -08001445 transport_service_type_t tst;
1446 tst = transport_protocol_service_type (rmt->transport_proto);
Florin Coras89a9f612021-05-11 11:55:07 -07001447 return session_open_srv_fns[tst](rmt, rsh);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001448}
1449
Florin Coras7fb0fe12018-04-09 09:24:52 -07001450/**
Florin Corasab2f6db2018-08-31 14:31:41 -07001451 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001452 *
1453 * @param s Session for which listen will be called. Note that unlike
1454 * established sessions, listen sessions are not associated to a
1455 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -07001456 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001457 */
Florin Coras371ca502018-02-21 12:07:41 -08001458int
Florin Coras288eaab2019-02-03 15:26:14 -08001459session_listen (session_t * ls, session_endpoint_cfg_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001460{
Florin Coras0bce71e2022-02-10 11:57:06 -08001461 transport_endpoint_cfg_t *tep;
Florin Corasa8c3b862020-04-07 22:31:06 +00001462 int tc_index;
1463 u32 s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001464
1465 /* Transport bind/listen */
Florin Coras0bce71e2022-02-10 11:57:06 -08001466 tep = session_endpoint_to_transport_cfg (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001467 s_index = ls->session_index;
Florin Corasd4295e62019-02-22 13:11:38 -08001468 tc_index = transport_start_listen (session_get_transport_proto (ls),
1469 s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001470
Florin Corasa8c3b862020-04-07 22:31:06 +00001471 if (tc_index < 0)
1472 return tc_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001473
Florin Corasd4295e62019-02-22 13:11:38 -08001474 /* Attach transport to session. Lookup tables are populated by the app
1475 * worker because local tables (for ct sessions) are not backed by a fib */
Florin Coras74cac882018-09-07 09:13:15 -07001476 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001477 ls->connection_index = tc_index;
1478
Florin Corasab2f6db2018-08-31 14:31:41 -07001479 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001480}
1481
Florin Coras6cf30ad2017-04-04 23:08:23 -07001482/**
1483 * Ask transport to stop listening on local transport endpoint.
1484 *
1485 * @param s Session to stop listening on. It must be in state LISTENING.
1486 */
1487int
Florin Coras288eaab2019-02-03 15:26:14 -08001488session_stop_listen (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001489{
Florin Coras561af9b2017-12-09 10:19:43 -08001490 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001491 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001492
Florin Coras1ee78302019-02-05 15:51:15 -08001493 if (s->session_state != SESSION_STATE_LISTENING)
Florin Corasa8c3b862020-04-07 22:31:06 +00001494 return SESSION_E_NOLISTEN;
Florin Coras1ee78302019-02-05 15:51:15 -08001495
1496 tc = transport_get_listener (tp, s->connection_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001497
1498 /* If no transport, assume everything was cleaned up already */
Florin Coras6cf30ad2017-04-04 23:08:23 -07001499 if (!tc)
Florin Corasa8c3b862020-04-07 22:31:06 +00001500 return SESSION_E_NONE;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001501
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +02001502 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1503 session_lookup_del_connection (tc);
Florin Corasa8c3b862020-04-07 22:31:06 +00001504
Florin Coras1ee78302019-02-05 15:51:15 -08001505 transport_stop_listen (tp, s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001506 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001507}
1508
1509/**
liuyacan534468e2021-05-09 03:50:40 +00001510 * Initialize session half-closing procedure.
1511 *
1512 * Note that half-closing will not change the state of the session.
1513 */
1514void
1515session_half_close (session_t *s)
1516{
1517 if (!s)
1518 return;
1519
1520 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_HALF_CLOSE);
1521}
1522
1523/**
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001524 * Initialize session closing procedure.
Florin Corasa5464812017-04-19 13:00:05 -07001525 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001526 * Request is always sent to session node to ensure that all outstanding
1527 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001528 */
1529void
Florin Coras288eaab2019-02-03 15:26:14 -08001530session_close (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001531{
Florin Coras25579b42018-06-06 17:55:02 -07001532 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001533 return;
Florin Coras25579b42018-06-06 17:55:02 -07001534
1535 if (s->session_state >= SESSION_STATE_CLOSING)
1536 {
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001537 /* Session will only be removed once both app and transport
1538 * acknowledge the close */
Florin Coras5f066322019-07-22 19:03:03 -07001539 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED
1540 || s->session_state == SESSION_STATE_TRANSPORT_DELETED)
Florin Corasdfb3b872019-08-16 17:48:44 -07001541 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras25579b42018-06-06 17:55:02 -07001542 return;
1543 }
1544
Florin Coras5babf982021-11-27 10:54:29 -08001545 /* App closed so stop propagating dequeue notifications */
1546 svm_fifo_clear_deq_ntf (s->tx_fifo);
Florin Corasb2371c22018-05-31 17:14:10 -07001547 s->session_state = SESSION_STATE_CLOSING;
Florin Corasdfb3b872019-08-16 17:48:44 -07001548 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1549}
1550
1551/**
1552 * Force a close without waiting for data to be flushed
1553 */
1554void
1555session_reset (session_t * s)
1556{
1557 if (s->session_state >= SESSION_STATE_CLOSING)
1558 return;
1559 /* Drop all outstanding tx data */
1560 svm_fifo_dequeue_drop_all (s->tx_fifo);
1561 s->session_state = SESSION_STATE_CLOSING;
1562 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001563}
1564
1565/**
liuyacan534468e2021-05-09 03:50:40 +00001566 * Notify transport the session can be half-disconnected.
1567 *
1568 * Must be called from the session's thread.
1569 */
1570void
1571session_transport_half_close (session_t *s)
1572{
1573 /* Only READY session can be half-closed */
1574 if (s->session_state != SESSION_STATE_READY)
1575 {
1576 return;
1577 }
1578
1579 transport_half_close (session_get_transport_proto (s), s->connection_index,
1580 s->thread_index);
1581}
1582
1583/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001584 * Notify transport the session can be disconnected. This should eventually
1585 * result in a delete notification that allows us to cleanup session state.
1586 * Called for both active/passive disconnects.
1587 *
1588 * Must be called from the session's thread.
1589 */
1590void
Florin Coras288eaab2019-02-03 15:26:14 -08001591session_transport_close (session_t * s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001592{
Florin Coras692b9492019-07-12 15:01:53 -07001593 if (s->session_state >= SESSION_STATE_APP_CLOSED)
Florin Coras568ebc72018-09-18 16:12:50 -07001594 {
Florin Coras5f066322019-07-22 19:03:03 -07001595 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1596 s->session_state = SESSION_STATE_CLOSED;
1597 /* If transport is already deleted, just free the session */
1598 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
Florin Coras692b9492019-07-12 15:01:53 -07001599 session_free_w_fifos (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001600 return;
1601 }
Florin Coras78cc4b02018-12-20 18:24:49 -08001602
Florin Coras692b9492019-07-12 15:01:53 -07001603 /* If the tx queue wasn't drained, the transport can continue to try
1604 * sending the outstanding data (in closed state it cannot). It MUST however
1605 * at one point, either after sending everything or after a timeout, call
1606 * delete notify. This will finally lead to the complete cleanup of the
1607 * session.
Florin Coras78cc4b02018-12-20 18:24:49 -08001608 */
Florin Coras692b9492019-07-12 15:01:53 -07001609 s->session_state = SESSION_STATE_APP_CLOSED;
Florin Coras78cc4b02018-12-20 18:24:49 -08001610
Florin Coras1ee78302019-02-05 15:51:15 -08001611 transport_close (session_get_transport_proto (s), s->connection_index,
1612 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001613}
1614
1615/**
Florin Corasdfb3b872019-08-16 17:48:44 -07001616 * Force transport close
1617 */
1618void
1619session_transport_reset (session_t * s)
1620{
1621 if (s->session_state >= SESSION_STATE_APP_CLOSED)
1622 {
1623 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1624 s->session_state = SESSION_STATE_CLOSED;
1625 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1626 session_free_w_fifos (s);
1627 return;
1628 }
1629
1630 s->session_state = SESSION_STATE_APP_CLOSED;
1631 transport_reset (session_get_transport_proto (s), s->connection_index,
1632 s->thread_index);
1633}
1634
1635/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001636 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001637 *
Florin Coras25579b42018-06-06 17:55:02 -07001638 * Notify transport of the cleanup and free the session. This should
1639 * be called only if transport reported some error and is already
1640 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001641 */
1642void
Florin Coras288eaab2019-02-03 15:26:14 -08001643session_transport_cleanup (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001644{
Florin Coras25579b42018-06-06 17:55:02 -07001645 /* Delete from main lookup table before we axe the the transport */
1646 session_lookup_del_session (s);
Florin Coras5afea122019-10-28 08:46:37 -07001647 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
1648 transport_cleanup (session_get_transport_proto (s), s->connection_index,
1649 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001650 /* Since we called cleanup, no delete notification will come. So, make
1651 * sure the session is properly freed. */
Florin Corasd3955fb2019-11-29 09:31:47 -08001652 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1653 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001654}
1655
Florin Corasa5464812017-04-19 13:00:05 -07001656/**
Florin Coras8afe1b82021-11-17 23:38:54 -08001657 * Allocate worker mqs in share-able segment
Florin Corasb384b542018-01-15 01:08:33 -08001658 *
Florin Coras8afe1b82021-11-17 23:38:54 -08001659 * That can only be a newly created memfd segment, that must be mapped
1660 * by all apps/stack users unless private rx mqs are enabled.
Florin Corasa5464812017-04-19 13:00:05 -07001661 */
1662void
Florin Coras8afe1b82021-11-17 23:38:54 -08001663session_vpp_wrk_mqs_alloc (session_main_t *smm)
Florin Corasa5464812017-04-19 13:00:05 -07001664{
Florin Coras8afe1b82021-11-17 23:38:54 -08001665 u32 mq_q_length = 2048, evt_size = sizeof (session_event_t);
1666 fifo_segment_t *mqs_seg = &smm->wrk_mqs_segment;
1667 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1668 uword mqs_seg_size;
Florin Corasb384b542018-01-15 01:08:33 -08001669 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001670
Florin Coras8afe1b82021-11-17 23:38:54 -08001671 mq_q_length = clib_max (mq_q_length, smm->configured_wrk_mq_length);
Florin Corasb384b542018-01-15 01:08:33 -08001672
Florin Coras8afe1b82021-11-17 23:38:54 -08001673 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1674 { mq_q_length, evt_size, 0 }, { mq_q_length >> 1, 256, 0 }
1675 };
1676 cfg->consumer_pid = 0;
1677 cfg->n_rings = 2;
1678 cfg->q_nitems = mq_q_length;
1679 cfg->ring_cfgs = rc;
Florin Coras6c10ab22020-11-08 16:50:39 -08001680
Florin Coras8afe1b82021-11-17 23:38:54 -08001681 /*
1682 * Compute mqs segment size based on rings config and leave space
1683 * for passing extended configuration messages, i.e., data allocated
1684 * outside of the rings. If provided with a config value, accept it
1685 * if larger than minimum size.
1686 */
1687 mqs_seg_size = svm_msg_q_size_to_alloc (cfg) * vec_len (smm->wrk);
Florin Corascf5c7742022-06-28 14:34:45 -07001688 mqs_seg_size = mqs_seg_size + (1 << 20);
Florin Coras8afe1b82021-11-17 23:38:54 -08001689 mqs_seg_size = clib_max (mqs_seg_size, smm->wrk_mqs_segment_size);
1690
1691 mqs_seg->ssvm.ssvm_size = mqs_seg_size;
1692 mqs_seg->ssvm.my_pid = getpid ();
1693 mqs_seg->ssvm.name = format (0, "%s%c", "session: wrk-mqs-segment", 0);
Florin Coras6c10ab22020-11-08 16:50:39 -08001694
Florin Coras8afe1b82021-11-17 23:38:54 -08001695 if (ssvm_server_init (&mqs_seg->ssvm, SSVM_SEGMENT_MEMFD))
Florin Corasa5464812017-04-19 13:00:05 -07001696 {
Florin Coras6c10ab22020-11-08 16:50:39 -08001697 clib_warning ("failed to initialize queue segment");
1698 return;
Florin Corasa5464812017-04-19 13:00:05 -07001699 }
Florin Corasb384b542018-01-15 01:08:33 -08001700
Florin Coras8afe1b82021-11-17 23:38:54 -08001701 fifo_segment_init (mqs_seg);
Florin Corasb384b542018-01-15 01:08:33 -08001702
Florin Corasb4624182020-12-11 13:58:12 -08001703 /* Special fifo segment that's filled only with mqs */
Florin Coras8afe1b82021-11-17 23:38:54 -08001704 mqs_seg->h->n_mqs = vec_len (smm->wrk);
Florin Corasb4624182020-12-11 13:58:12 -08001705
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001706 for (i = 0; i < vec_len (smm->wrk); i++)
Florin Coras8afe1b82021-11-17 23:38:54 -08001707 smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (mqs_seg, i, cfg);
Florin Corasb384b542018-01-15 01:08:33 -08001708}
1709
Florin Coras04943b42020-12-25 11:45:40 -08001710fifo_segment_t *
Florin Coras8afe1b82021-11-17 23:38:54 -08001711session_main_get_wrk_mqs_segment (void)
Florin Corasb384b542018-01-15 01:08:33 -08001712{
Florin Coras8afe1b82021-11-17 23:38:54 -08001713 return &session_main.wrk_mqs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001714}
1715
Florin Coras31c99552019-03-01 13:00:58 -08001716u64
1717session_segment_handle (session_t * s)
1718{
1719 svm_fifo_t *f;
1720
Aloys Augustincdb71702019-04-08 17:54:39 +02001721 if (!s->rx_fifo)
Florin Coras31c99552019-03-01 13:00:58 -08001722 return SESSION_INVALID_HANDLE;
1723
1724 f = s->rx_fifo;
1725 return segment_manager_make_segment_handle (f->segment_manager,
1726 f->segment_index);
1727}
1728
Florin Coras371ca502018-02-21 12:07:41 -08001729/* *INDENT-OFF* */
1730static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1731 session_tx_fifo_peek_and_snd,
1732 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001733 session_tx_fifo_dequeue_internal,
1734 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001735};
1736/* *INDENT-ON* */
1737
Florin Coras561af9b2017-12-09 10:19:43 -08001738void
1739session_register_transport (transport_proto_t transport_proto,
1740 const transport_proto_vft_t * vft, u8 is_ip4,
1741 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001742{
Florin Coras31c99552019-03-01 13:00:58 -08001743 session_main_t *smm = &session_main;
Florin Coras561af9b2017-12-09 10:19:43 -08001744 session_type_t session_type;
1745 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001746
Florin Coras561af9b2017-12-09 10:19:43 -08001747 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1748
1749 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001750 vec_validate (smm->session_tx_fns, session_type);
1751
Florin Coras371ca502018-02-21 12:07:41 -08001752 if (output_node != ~0)
Florin Coraseb839cc2021-04-14 11:23:55 -07001753 next_index = vlib_node_add_next (vlib_get_main (),
1754 session_queue_node.index, output_node);
Florin Coras561af9b2017-12-09 10:19:43 -08001755
1756 smm->session_type_to_next[session_type] = next_index;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001757 smm->session_tx_fns[session_type] =
1758 session_tx_fns[vft->transport_options.tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001759}
1760
Florin Coras5384cca2022-01-20 18:10:26 -08001761void
1762session_register_update_time_fn (session_update_time_fn fn, u8 is_add)
1763{
1764 session_main_t *smm = &session_main;
1765 session_update_time_fn *fi;
1766 u32 fi_pos = ~0;
1767 u8 found = 0;
1768
1769 vec_foreach (fi, smm->update_time_fns)
1770 {
1771 if (*fi == fn)
1772 {
1773 fi_pos = fi - smm->update_time_fns;
1774 found = 1;
1775 break;
1776 }
1777 }
1778
1779 if (is_add)
1780 {
1781 if (found)
1782 {
1783 clib_warning ("update time fn %p already registered", fn);
1784 return;
1785 }
1786 vec_add1 (smm->update_time_fns, fn);
1787 }
1788 else
1789 {
1790 vec_del1 (smm->update_time_fns, fi_pos);
1791 }
1792}
1793
Florin Coras07063b82020-03-13 04:44:51 +00001794transport_proto_t
1795session_add_transport_proto (void)
1796{
1797 session_main_t *smm = &session_main;
1798 session_worker_t *wrk;
1799 u32 thread;
1800
1801 smm->last_transport_proto_type += 1;
1802
1803 for (thread = 0; thread < vec_len (smm->wrk); thread++)
1804 {
1805 wrk = session_main_get_worker (thread);
1806 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1807 }
1808
1809 return smm->last_transport_proto_type;
1810}
1811
Florin Coras3cbc04b2017-10-02 00:18:51 -07001812transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001813session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001814{
Florin Corasade70e42017-10-14 18:56:41 -07001815 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras4edc37e2019-02-04 23:01:34 -08001816 return transport_get_connection (session_get_transport_proto (s),
1817 s->connection_index, s->thread_index);
1818 else
1819 return transport_get_listener (session_get_transport_proto (s),
1820 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001821}
1822
Aloys Augustincdb71702019-04-08 17:54:39 +02001823void
Florin Coras09d18c22019-04-24 11:10:02 -07001824session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +02001825{
1826 if (s->session_state != SESSION_STATE_LISTENING)
1827 return transport_get_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001828 s->connection_index, s->thread_index, tep,
1829 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001830 else
1831 return transport_get_listener_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001832 s->connection_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001833}
1834
Florin Coras04ae8272021-04-12 19:55:37 -07001835int
1836session_transport_attribute (session_t *s, u8 is_get,
1837 transport_endpt_attr_t *attr)
1838{
1839 if (s->session_state < SESSION_STATE_READY)
1840 return -1;
1841
1842 return transport_connection_attribute (session_get_transport_proto (s),
1843 s->connection_index, s->thread_index,
1844 is_get, attr);
1845}
1846
Florin Coras3cbc04b2017-10-02 00:18:51 -07001847transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001848listen_session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001849{
Florin Coras4edc37e2019-02-04 23:01:34 -08001850 return transport_get_listener (session_get_transport_proto (s),
1851 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001852}
1853
Florin Corasfd542f12018-05-16 19:28:24 -07001854void
Florin Coras5484daa2020-03-27 23:55:06 +00001855session_queue_run_on_main_thread (vlib_main_t * vm)
Florin Corasfd542f12018-05-16 19:28:24 -07001856{
1857 ASSERT (vlib_get_thread_index () == 0);
Florin Coras1d2e38b2021-03-17 21:52:49 -07001858 vlib_node_set_interrupt_pending (vm, session_queue_node.index);
Florin Corasfd542f12018-05-16 19:28:24 -07001859}
1860
Florin Corasd82f4712022-04-25 16:15:02 -07001861static void
1862session_stats_collector_fn (vlib_stats_collector_data_t *d)
1863{
1864 u32 i, n_workers, n_wrk_sessions, n_sessions = 0;
1865 session_main_t *smm = &session_main;
1866 session_worker_t *wrk;
1867 counter_t **counters;
1868 counter_t *cb;
1869
1870 n_workers = vec_len (smm->wrk);
1871 vlib_stats_validate (d->entry_index, 0, n_workers - 1);
1872 counters = d->entry->data;
1873 cb = counters[0];
1874
1875 for (i = 0; i < vec_len (smm->wrk); i++)
1876 {
1877 wrk = session_main_get_worker (i);
1878 n_wrk_sessions = pool_elts (wrk->sessions);
1879 cb[i] = n_wrk_sessions;
1880 n_sessions += n_wrk_sessions;
1881 }
1882
1883 vlib_stats_set_gauge (d->private_data, n_sessions);
1884}
1885
1886static void
1887session_stats_collector_init (void)
1888{
Florin Coras975e0df2022-04-26 19:32:11 -07001889 vlib_stats_collector_reg_t reg = {};
Florin Corasd82f4712022-04-25 16:15:02 -07001890
1891 reg.entry_index =
1892 vlib_stats_add_counter_vector ("/sys/session/sessions_per_worker");
1893 reg.private_data = vlib_stats_add_gauge ("/sys/session/sessions_total");
1894 reg.collect_fn = session_stats_collector_fn;
1895 vlib_stats_register_collector_fn (&reg);
1896 vlib_stats_validate (reg.entry_index, 0, vlib_get_n_threads ());
1897}
1898
Dave Barach68b0fb02017-02-28 15:15:56 -05001899static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001900session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001901{
Florin Coras31c99552019-03-01 13:00:58 -08001902 session_main_t *smm = &session_main;
Florin Corase04c2992017-03-01 08:17:34 -08001903 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001904 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras31c99552019-03-01 13:00:58 -08001905 session_worker_t *wrk;
Florin Corasd5c604d2019-03-18 09:06:35 -07001906 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001907
Florin Corase10da622020-10-25 14:00:29 -07001908 /* We only initialize once and do not de-initialized on disable */
1909 if (smm->is_initialized)
1910 goto done;
1911
Dave Barach68b0fb02017-02-28 15:15:56 -05001912 num_threads = 1 /* main thread */ + vtm->n_threads;
1913
1914 if (num_threads < 1)
1915 return clib_error_return (0, "n_thread_stacks not set");
1916
Florin Coras5f56d732018-10-30 10:21:59 -07001917 /* Allocate cache line aligned worker contexts */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001918 vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras53d8d4f2022-03-09 13:55:38 -08001919 clib_spinlock_init (&session_main.pool_realloc_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001920
Dave Barachacd2a6a2017-05-16 17:41:34 -04001921 for (i = 0; i < num_threads; i++)
1922 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001923 wrk = &smm->wrk[i];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001924 wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras2062ec02019-07-15 13:15:18 -07001925 wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras60183db2019-07-20 15:53:16 -07001926 wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Corasaf972212021-05-05 09:54:00 -07001927 wrk->pending_connects = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Corase09bd482022-03-21 10:38:01 -07001928 wrk->evts_pending_main =
1929 clib_llist_make_head (wrk->event_elts, evt_list);
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001930 wrk->vm = vlib_get_main_by_index (i);
Dave Barach77d98382020-04-28 18:00:21 -04001931 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001932 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Corasa48dffe2021-05-16 10:58:53 -07001933 wrk->timerfd = -1;
Florin Coras07063b82020-03-13 04:44:51 +00001934 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
Florin Corasd67f1122018-05-21 17:47:40 -07001935
Florin Coras7da88292021-03-18 15:04:34 -07001936 if (!smm->no_adaptive && smm->use_private_rx_mqs)
1937 session_wrk_enable_adaptive_mode (wrk);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001938 }
1939
Florin Corasb384b542018-01-15 01:08:33 -08001940 /* Allocate vpp event queues segment and queue */
Florin Coras8afe1b82021-11-17 23:38:54 -08001941 session_vpp_wrk_mqs_alloc (smm);
Florin Corasb384b542018-01-15 01:08:33 -08001942
Florin Coras9a45bd82020-12-28 16:28:07 -08001943 /* Initialize segment manager properties */
1944 segment_manager_main_init ();
Florin Coras6cf30ad2017-04-04 23:08:23 -07001945
Florin Coras66b11312017-07-31 17:18:03 -07001946 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001947 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001948 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001949 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001950 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001951 pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001952 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001953 else
Florin Coras66b11312017-07-31 17:18:03 -07001954 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001955 int j;
1956 preallocated_sessions_per_worker =
1957 (1.1 * (f64) smm->preallocated_sessions /
1958 (f64) (num_threads - 1));
1959
1960 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001961 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001962 pool_init_fixed (smm->wrk[j].sessions,
Dave Barachb7f1faa2017-08-29 11:43:37 -04001963 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001964 }
Florin Coras66b11312017-07-31 17:18:03 -07001965 }
1966 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001967
Florin Coras04e53442017-07-16 17:12:15 -07001968 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001969 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001970 transport_init ();
Florin Corasd82f4712022-04-25 16:15:02 -07001971 session_stats_collector_init ();
Florin Corase10da622020-10-25 14:00:29 -07001972 smm->is_initialized = 1;
1973
1974done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001975
Florin Corase04c2992017-03-01 08:17:34 -08001976 smm->is_enabled = 1;
1977
Florin Coras561af9b2017-12-09 10:19:43 -08001978 /* Enable transports */
1979 transport_enable_disable (vm, 1);
Florin Coras11166672020-04-13 01:20:25 +00001980 session_debug_init ();
Srikanth Akula73570432020-04-06 19:19:49 -07001981
Dave Barach68b0fb02017-02-28 15:15:56 -05001982 return 0;
1983}
1984
Florin Corase10da622020-10-25 14:00:29 -07001985static void
1986session_manager_main_disable (vlib_main_t * vm)
1987{
1988 transport_enable_disable (vm, 0 /* is_en */ );
1989}
1990
Florin Corasa5464812017-04-19 13:00:05 -07001991void
1992session_node_enable_disable (u8 is_en)
1993{
Florin Coras1d2e38b2021-03-17 21:52:49 -07001994 u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
Florin Corasa5464812017-04-19 13:00:05 -07001995 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Coras1d2e38b2021-03-17 21:52:49 -07001996 session_main_t *sm = &session_main;
1997 vlib_main_t *vm;
1998 vlib_node_t *n;
1999 int n_vlibs, i;
Florin Corasfd542f12018-05-16 19:28:24 -07002000
Florin Coras1d2e38b2021-03-17 21:52:49 -07002001 n_vlibs = vlib_get_n_threads ();
2002 for (i = 0; i < n_vlibs; i++)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002003 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07002004 vm = vlib_get_main_by_index (i);
2005 /* main thread with workers and not polling */
2006 if (i == 0 && n_vlibs > 1)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002007 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07002008 vlib_node_set_state (vm, session_queue_node.index, mstate);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002009 if (is_en)
2010 {
Florin Corasb32af352021-05-19 07:58:49 -07002011 session_main_get_worker (0)->state = SESSION_WRK_INTERRUPT;
Florin Coras1d2e38b2021-03-17 21:52:49 -07002012 vlib_node_set_state (vm, session_queue_process_node.index,
2013 state);
2014 n = vlib_get_node (vm, session_queue_process_node.index);
2015 vlib_start_process (vm, n->runtime_index);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002016 }
2017 else
2018 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07002019 vlib_process_signal_event_mt (vm,
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002020 session_queue_process_node.index,
2021 SESSION_Q_PROCESS_STOP, 0);
2022 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07002023 if (!sm->poll_main)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002024 continue;
2025 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07002026 vlib_node_set_state (vm, session_queue_node.index, state);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01002027 }
Florin Coras41d5f542021-01-15 13:49:33 -08002028
Florin Coras1d2e38b2021-03-17 21:52:49 -07002029 if (sm->use_private_rx_mqs)
Florin Coras41d5f542021-01-15 13:49:33 -08002030 application_enable_rx_mqs_nodes (is_en);
Florin Corasa5464812017-04-19 13:00:05 -07002031}
2032
Florin Corase04c2992017-03-01 08:17:34 -08002033clib_error_t *
2034vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
2035{
Florin Corascea194d2017-10-02 00:18:51 -07002036 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08002037 if (is_en)
2038 {
Florin Coras31c99552019-03-01 13:00:58 -08002039 if (session_main.is_enabled)
Florin Corase04c2992017-03-01 08:17:34 -08002040 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002041
Florin Corascea194d2017-10-02 00:18:51 -07002042 error = session_manager_main_enable (vm);
Vladimir Kropyleva2e44512019-07-16 21:32:41 +03002043 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08002044 }
2045 else
2046 {
Florin Coras31c99552019-03-01 13:00:58 -08002047 session_main.is_enabled = 0;
Florin Corase10da622020-10-25 14:00:29 -07002048 session_manager_main_disable (vm);
Florin Corasa5464812017-04-19 13:00:05 -07002049 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08002050 }
2051
Florin Corascea194d2017-10-02 00:18:51 -07002052 return error;
Florin Corase04c2992017-03-01 08:17:34 -08002053}
2054
Florin Corase04c2992017-03-01 08:17:34 -08002055clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00002056session_main_init (vlib_main_t * vm)
Florin Corase04c2992017-03-01 08:17:34 -08002057{
Florin Coras31c99552019-03-01 13:00:58 -08002058 session_main_t *smm = &session_main;
Florin Corase33c0022020-04-03 17:23:42 +00002059
2060 smm->is_enabled = 0;
2061 smm->session_enable_asap = 0;
Florin Corase92c9462020-11-25 08:44:16 -08002062 smm->poll_main = 0;
Florin Coras41d5f542021-01-15 13:49:33 -08002063 smm->use_private_rx_mqs = 0;
Florin Coras7da88292021-03-18 15:04:34 -07002064 smm->no_adaptive = 0;
Florin Coras0b656212022-01-13 11:59:44 -08002065 smm->last_transport_proto_type = TRANSPORT_PROTO_HTTP;
Florin Corase33c0022020-04-03 17:23:42 +00002066
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01002067 return 0;
2068}
2069
2070static clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00002071session_main_loop_init (vlib_main_t * vm)
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01002072{
2073 session_main_t *smm = &session_main;
2074 if (smm->session_enable_asap)
2075 {
2076 vlib_worker_thread_barrier_sync (vm);
2077 vnet_session_enable_disable (vm, 1 /* is_en */ );
2078 vlib_worker_thread_barrier_release (vm);
2079 }
Florin Corase04c2992017-03-01 08:17:34 -08002080 return 0;
2081}
2082
Florin Corase33c0022020-04-03 17:23:42 +00002083VLIB_INIT_FUNCTION (session_main_init);
2084VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init);
Dave Barach2c25a622017-06-26 11:35:07 -04002085
2086static clib_error_t *
2087session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04002088{
Florin Coras31c99552019-03-01 13:00:58 -08002089 session_main_t *smm = &session_main;
Dave Barach10d8cc62017-05-30 09:30:07 -04002090 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07002091 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04002092
2093 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2094 {
Florin Coras8afe1b82021-11-17 23:38:54 -08002095 if (unformat (input, "wrk-mq-length %d", &nitems))
Dave Barach10d8cc62017-05-30 09:30:07 -04002096 {
2097 if (nitems >= 2048)
Florin Coras8afe1b82021-11-17 23:38:54 -08002098 smm->configured_wrk_mq_length = nitems;
Dave Barach10d8cc62017-05-30 09:30:07 -04002099 else
2100 clib_warning ("event queue length %d too small, ignored", nitems);
2101 }
Florin Corascf5c7742022-06-28 14:34:45 -07002102 else if (unformat (input, "wrk-mqs-segment-size %U",
2103 unformat_memory_size, &smm->wrk_mqs_segment_size))
2104 ;
Florin Coras66b11312017-07-31 17:18:03 -07002105 else if (unformat (input, "preallocated-sessions %d",
2106 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04002107 ;
Florin Coras66b11312017-07-31 17:18:03 -07002108 else if (unformat (input, "v4-session-table-buckets %d",
2109 &smm->configured_v4_session_table_buckets))
2110 ;
2111 else if (unformat (input, "v4-halfopen-table-buckets %d",
2112 &smm->configured_v4_halfopen_table_buckets))
2113 ;
2114 else if (unformat (input, "v6-session-table-buckets %d",
2115 &smm->configured_v6_session_table_buckets))
2116 ;
2117 else if (unformat (input, "v6-halfopen-table-buckets %d",
2118 &smm->configured_v6_halfopen_table_buckets))
2119 ;
2120 else if (unformat (input, "v4-session-table-memory %U",
2121 unformat_memory_size, &tmp))
2122 {
2123 if (tmp >= 0x100000000)
2124 return clib_error_return (0, "memory size %llx (%lld) too large",
2125 tmp, tmp);
2126 smm->configured_v4_session_table_memory = tmp;
2127 }
2128 else if (unformat (input, "v4-halfopen-table-memory %U",
2129 unformat_memory_size, &tmp))
2130 {
2131 if (tmp >= 0x100000000)
2132 return clib_error_return (0, "memory size %llx (%lld) too large",
2133 tmp, tmp);
2134 smm->configured_v4_halfopen_table_memory = tmp;
2135 }
2136 else if (unformat (input, "v6-session-table-memory %U",
2137 unformat_memory_size, &tmp))
2138 {
2139 if (tmp >= 0x100000000)
2140 return clib_error_return (0, "memory size %llx (%lld) too large",
2141 tmp, tmp);
2142 smm->configured_v6_session_table_memory = tmp;
2143 }
2144 else if (unformat (input, "v6-halfopen-table-memory %U",
2145 unformat_memory_size, &tmp))
2146 {
2147 if (tmp >= 0x100000000)
2148 return clib_error_return (0, "memory size %llx (%lld) too large",
2149 tmp, tmp);
2150 smm->configured_v6_halfopen_table_memory = tmp;
2151 }
Florin Coras93e65802017-11-29 00:07:11 -05002152 else if (unformat (input, "local-endpoints-table-memory %U",
2153 unformat_memory_size, &tmp))
2154 {
2155 if (tmp >= 0x100000000)
2156 return clib_error_return (0, "memory size %llx (%lld) too large",
2157 tmp, tmp);
2158 smm->local_endpoints_table_memory = tmp;
2159 }
2160 else if (unformat (input, "local-endpoints-table-buckets %d",
2161 &smm->local_endpoints_table_buckets))
2162 ;
Nathan Skrzypczak1292d192019-09-13 15:44:54 +02002163 else if (unformat (input, "enable"))
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01002164 smm->session_enable_asap = 1;
Florin Coras61ae0562020-09-02 19:10:28 -07002165 else if (unformat (input, "use-app-socket-api"))
Nathan Skrzypczak7b3a3df2021-07-28 14:09:50 +02002166 (void) appns_sapi_enable_disable (1 /* is_enable */);
Florin Corase92c9462020-11-25 08:44:16 -08002167 else if (unformat (input, "poll-main"))
2168 smm->poll_main = 1;
Florin Coras41d5f542021-01-15 13:49:33 -08002169 else if (unformat (input, "use-private-rx-mqs"))
2170 smm->use_private_rx_mqs = 1;
Florin Coras7da88292021-03-18 15:04:34 -07002171 else if (unformat (input, "no-adaptive"))
2172 smm->no_adaptive = 1;
Florin Coras8afe1b82021-11-17 23:38:54 -08002173 /*
2174 * Deprecated but maintained for compatibility
2175 */
2176 else if (unformat (input, "evt_qs_memfd_seg"))
2177 ;
Florin Corasef048032021-11-17 23:57:30 -08002178 else if (unformat (input, "segment-baseva 0x%lx", &tmp))
2179 ;
Florin Coras8afe1b82021-11-17 23:38:54 -08002180 else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
Florin Corascf5c7742022-06-28 14:34:45 -07002181 &smm->wrk_mqs_segment_size))
Florin Coras8afe1b82021-11-17 23:38:54 -08002182 ;
2183 else if (unformat (input, "event-queue-length %d", &nitems))
2184 {
2185 if (nitems >= 2048)
2186 smm->configured_wrk_mq_length = nitems;
2187 else
2188 clib_warning ("event queue length %d too small, ignored", nitems);
2189 }
Dave Barach10d8cc62017-05-30 09:30:07 -04002190 else
2191 return clib_error_return (0, "unknown input `%U'",
2192 format_unformat_error, input);
2193 }
2194 return 0;
2195}
2196
2197VLIB_CONFIG_FUNCTION (session_config_fn, "session");
2198
Dave Barach68b0fb02017-02-28 15:15:56 -05002199/*
2200 * fd.io coding-style-patch-verification: ON
2201 *
2202 * Local Variables:
2203 * eval: (c-set-style "gnu")
2204 * End:
2205 */