blob: 1fac5ed2bb99f90a560201077b6acd67bcfb68f1 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/**
16 * @file
17 * @brief Session and session manager
18 */
19
20#include <vnet/session/session.h>
Florin Coras04e53442017-07-16 17:12:15 -070021#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050022#include <vnet/dpo/load_balance.h>
23#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
Florin Coras31c99552019-03-01 13:00:58 -080025session_main_t session_main;
Florin Coras3eb50622017-07-13 01:24:57 -040026
Florin Coras3c2fed52018-07-04 04:15:05 -070027static inline int
28session_send_evt_to_thread (void *data, void *args, u32 thread_index,
29 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070030{
Florin Coras7da88292021-03-18 15:04:34 -070031 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras52207f12018-07-12 14:48:06 -070032 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070033 svm_msg_q_msg_t msg;
34 svm_msg_q_t *mq;
Florin Coras3cbc04b2017-10-02 00:18:51 -070035
Florin Coras7da88292021-03-18 15:04:34 -070036 mq = wrk->vpp_event_queue;
Nathan Skrzypczakb4c67752019-06-20 09:58:37 +020037 if (PREDICT_FALSE (svm_msg_q_lock (mq)))
38 return -1;
Nathan Skrzypczak989bc472019-11-19 16:48:58 +010039 if (PREDICT_FALSE (svm_msg_q_is_full (mq)
40 || svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
Florin Coras3c2fed52018-07-04 04:15:05 -070041 {
42 svm_msg_q_unlock (mq);
43 return -2;
44 }
Florin Coras3c2fed52018-07-04 04:15:05 -070045 switch (evt_type)
46 {
Florin Corasf6c43132019-03-01 12:41:21 -080047 case SESSION_CTRL_EVT_RPC:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020048 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
49 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070050 evt->rpc_args.fp = data;
51 evt->rpc_args.arg = args;
52 break;
Aloys Augustin0c7f54d2019-07-03 16:59:43 +020053 case SESSION_IO_EVT_RX:
Florin Corasf6c43132019-03-01 12:41:21 -080054 case SESSION_IO_EVT_TX:
Florin Coras844a36d2018-12-20 09:50:50 -080055 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasf6c43132019-03-01 12:41:21 -080056 case SESSION_IO_EVT_BUILTIN_RX:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020057 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
58 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Corasc0737e92019-03-04 14:19:39 -080059 evt->session_index = *(u32 *) data;
Florin Coras3c2fed52018-07-04 04:15:05 -070060 break;
Florin Corasf6c43132019-03-01 12:41:21 -080061 case SESSION_IO_EVT_BUILTIN_TX:
62 case SESSION_CTRL_EVT_CLOSE:
Florin Coras73cad332019-08-28 17:12:32 -070063 case SESSION_CTRL_EVT_RESET:
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020064 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
65 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras288eaab2019-02-03 15:26:14 -080066 evt->session_handle = session_handle ((session_t *) data);
Florin Coras3c2fed52018-07-04 04:15:05 -070067 break;
68 default:
69 clib_warning ("evt unhandled!");
70 svm_msg_q_unlock (mq);
71 return -1;
72 }
Nathan Skrzypczak1afa7af2019-09-13 17:14:57 +020073 evt->event_type = evt_type;
Florin Coras3c2fed52018-07-04 04:15:05 -070074
Florin Coras52207f12018-07-12 14:48:06 -070075 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras7da88292021-03-18 15:04:34 -070076
77 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
78 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
79
Florin Coras3c2fed52018-07-04 04:15:05 -070080 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070081}
82
Florin Coras3c2fed52018-07-04 04:15:05 -070083int
84session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070085{
Florin Corasc547e912020-12-08 17:50:45 -080086 return session_send_evt_to_thread (&f->shr->master_session_index, 0,
Florin Corasc0737e92019-03-04 14:19:39 -080087 f->master_thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070088}
89
90int
Florin Corasef915342018-09-29 10:23:06 -070091session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
Florin Coras3c2fed52018-07-04 04:15:05 -070092 session_evt_type_t evt_type)
93{
Florin Corasef915342018-09-29 10:23:06 -070094 return session_send_evt_to_thread (data, 0, thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070095}
96
97int
Florin Coras288eaab2019-02-03 15:26:14 -080098session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -070099{
Florin Coras458089b2019-08-21 16:20:44 -0700100 /* only events supported are disconnect and reset */
101 ASSERT (evt_type == SESSION_CTRL_EVT_CLOSE
102 || evt_type == SESSION_CTRL_EVT_RESET);
103 return session_send_evt_to_thread (s, 0, s->thread_index, evt_type);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700104}
105
106void
Nathan Skrzypczak60f3e652019-03-19 13:57:31 +0100107session_send_rpc_evt_to_thread_force (u32 thread_index, void *fp,
108 void *rpc_args)
109{
110 session_send_evt_to_thread (fp, rpc_args, thread_index,
111 SESSION_CTRL_EVT_RPC);
112}
113
114void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700115session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
116{
117 if (thread_index != vlib_get_thread_index ())
Nathan Skrzypczak60f3e652019-03-19 13:57:31 +0100118 session_send_rpc_evt_to_thread_force (thread_index, fp, rpc_args);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700119 else
120 {
121 void (*fnp) (void *) = fp;
122 fnp (rpc_args);
123 }
124}
125
Florin Coras26dd6de2019-07-23 23:54:47 -0700126void
127session_add_self_custom_tx_evt (transport_connection_t * tc, u8 has_prio)
128{
Florin Coras7da88292021-03-18 15:04:34 -0700129 session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Coras26dd6de2019-07-23 23:54:47 -0700130
Florin Coras26dd6de2019-07-23 23:54:47 -0700131 ASSERT (s->thread_index == vlib_get_thread_index ());
Florin Corasbe237bf2019-09-27 08:16:40 -0700132 ASSERT (s->session_state != SESSION_STATE_TRANSPORT_DELETED);
Florin Coras7da88292021-03-18 15:04:34 -0700133
Florin Coras26dd6de2019-07-23 23:54:47 -0700134 if (!(s->flags & SESSION_F_CUSTOM_TX))
135 {
136 s->flags |= SESSION_F_CUSTOM_TX;
Florin Coras6080e0d2020-03-13 20:39:43 +0000137 if (svm_fifo_set_event (s->tx_fifo)
138 || transport_connection_is_descheduled (tc))
Florin Coras26dd6de2019-07-23 23:54:47 -0700139 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700140 session_evt_elt_t *elt;
Florin Coras7da88292021-03-18 15:04:34 -0700141 session_worker_t *wrk;
142
Florin Coras26dd6de2019-07-23 23:54:47 -0700143 wrk = session_main_get_worker (tc->thread_index);
144 if (has_prio)
145 elt = session_evt_alloc_new (wrk);
146 else
147 elt = session_evt_alloc_old (wrk);
148 elt->evt.session_index = tc->s_index;
149 elt->evt.event_type = SESSION_IO_EVT_TX;
Florin Coras6080e0d2020-03-13 20:39:43 +0000150 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras7da88292021-03-18 15:04:34 -0700151
152 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
153 vlib_node_set_interrupt_pending (wrk->vm,
154 session_queue_node.index);
Florin Coras26dd6de2019-07-23 23:54:47 -0700155 }
156 }
157}
158
Florin Coras70f879d2020-03-13 17:54:42 +0000159void
160sesssion_reschedule_tx (transport_connection_t * tc)
161{
162 session_worker_t *wrk = session_main_get_worker (tc->thread_index);
163 session_evt_elt_t *elt;
164
165 ASSERT (tc->thread_index == vlib_get_thread_index ());
166
167 elt = session_evt_alloc_new (wrk);
168 elt->evt.session_index = tc->s_index;
169 elt->evt.event_type = SESSION_IO_EVT_TX;
Florin Coras7da88292021-03-18 15:04:34 -0700170
171 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
172 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
Florin Coras70f879d2020-03-13 17:54:42 +0000173}
174
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800175static void
Florin Corasdfb3b872019-08-16 17:48:44 -0700176session_program_transport_ctrl_evt (session_t * s, session_evt_type_t evt)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800177{
178 u32 thread_index = vlib_get_thread_index ();
Florin Coras2062ec02019-07-15 13:15:18 -0700179 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -0800180 session_worker_t *wrk;
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800181
182 /* If we are in the handler thread, or being called with the worker barrier
183 * held, just append a new event to pending disconnects vector. */
184 if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
185 {
Florin Coras31c99552019-03-01 13:00:58 -0800186 wrk = session_main_get_worker (s->thread_index);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700187 elt = session_evt_alloc_ctrl (wrk);
Florin Coras2062ec02019-07-15 13:15:18 -0700188 clib_memset (&elt->evt, 0, sizeof (session_event_t));
189 elt->evt.session_handle = session_handle (s);
Florin Corasdfb3b872019-08-16 17:48:44 -0700190 elt->evt.event_type = evt;
Florin Coras7da88292021-03-18 15:04:34 -0700191
192 if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT))
193 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800194 }
195 else
Florin Corasdfb3b872019-08-16 17:48:44 -0700196 session_send_ctrl_evt_to_thread (s, evt);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800197}
198
Florin Coras288eaab2019-02-03 15:26:14 -0800199session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500201{
Florin Coras31c99552019-03-01 13:00:58 -0800202 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras288eaab2019-02-03 15:26:14 -0800203 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700204 u8 will_expand = 0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700205 pool_get_aligned_will_expand (wrk->sessions, will_expand,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700206 CLIB_CACHE_LINE_BYTES);
207 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800208 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700209 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700210 clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
211 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
212 clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700213 }
214 else
215 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700216 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700217 }
Dave Barachb7b92992018-10-17 10:38:51 -0400218 clib_memset (s, 0, sizeof (*s));
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700219 s->session_index = s - wrk->sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700220 s->thread_index = thread_index;
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200221 s->app_index = APP_INVALID_INDEX;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700222 return s;
223}
224
Florin Coras371ca502018-02-21 12:07:41 -0800225void
Florin Coras288eaab2019-02-03 15:26:14 -0800226session_free (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700227{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700228 if (CLIB_DEBUG)
Florin Coras6416e622019-04-03 17:52:43 -0700229 {
230 u8 thread_index = s->thread_index;
231 clib_memset (s, 0xFA, sizeof (*s));
232 pool_put (session_main.wrk[thread_index].sessions, s);
233 return;
234 }
Florin Corascca96182019-07-19 07:34:13 -0700235 SESSION_EVT (SESSION_EVT_FREE, s);
Florin Coras6416e622019-04-03 17:52:43 -0700236 pool_put (session_main.wrk[s->thread_index].sessions, s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700237}
238
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800239u8
240session_is_valid (u32 si, u8 thread_index)
241{
242 session_t *s;
243 transport_connection_t *tc;
244
245 s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
246
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800247 if (s->thread_index != thread_index || s->session_index != si)
248 return 0;
249
250 if (s->session_state == SESSION_STATE_TRANSPORT_DELETED
251 || s->session_state <= SESSION_STATE_LISTENING)
252 return 1;
253
Florin Corasea727642021-05-07 19:39:43 -0700254 if (s->session_state == SESSION_STATE_CONNECTING &&
255 (s->flags & SESSION_F_HALF_OPEN))
256 return 1;
257
Srikanth Akulae140d5d2019-11-18 11:49:58 -0800258 tc = session_get_transport (s);
259 if (s->connection_index != tc->c_index
260 || s->thread_index != tc->thread_index || tc->s_index != si)
261 return 0;
262
263 return 1;
264}
265
Florin Coras70f26d52019-07-08 11:47:18 -0700266static void
267session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf)
268{
269 app_worker_t *app_wrk;
270
271 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
272 if (!app_wrk)
273 return;
274 app_worker_cleanup_notify (app_wrk, s, ntf);
275}
276
Florin Coraseb97e5f2018-10-15 21:35:42 -0700277void
Florin Coras288eaab2019-02-03 15:26:14 -0800278session_free_w_fifos (session_t * s)
Florin Coras568ebc72018-09-18 16:12:50 -0700279{
Florin Coras70f26d52019-07-08 11:47:18 -0700280 session_cleanup_notify (s, SESSION_CLEANUP_SESSION);
Florin Coras19223e02019-03-03 14:56:05 -0800281 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700282 session_free (s);
283}
284
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800285/**
286 * Cleans up session and lookup table.
287 *
288 * Transport connection must still be valid.
289 */
290static void
Florin Coras288eaab2019-02-03 15:26:14 -0800291session_delete (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800292{
293 int rv;
294
295 /* Delete from the main lookup table. */
296 if ((rv = session_lookup_del_session (s)))
Florin Corasd09236d2019-08-08 17:38:26 -0700297 clib_warning ("session %u hash delete rv %d", s->session_index, rv);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800298
299 session_free_w_fifos (s);
300}
301
Florin Corasd50ff7f2020-04-16 04:30:22 +0000302void
Florin Corasea727642021-05-07 19:39:43 -0700303session_cleanup_half_open (session_handle_t ho_handle)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000304{
Florin Corasea727642021-05-07 19:39:43 -0700305 session_t *s = session_get_from_handle (ho_handle);
306 transport_cleanup_half_open (session_get_transport_proto (s),
307 s->connection_index);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000308}
309
310void
Florin Corasea727642021-05-07 19:39:43 -0700311session_half_open_delete_notify (transport_connection_t *tc)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000312{
Florin Corasea727642021-05-07 19:39:43 -0700313 app_worker_t *app_wrk;
314 session_t *s;
315
316 s = session_get (tc->s_index, tc->thread_index);
317 app_wrk = app_worker_get (s->app_wrk_index);
318 app_worker_del_half_open (app_wrk, s->ho_index);
319 session_free (s);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000320}
321
Andreas Schultz1a8c4372020-03-20 09:39:59 +0100322session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700323session_alloc_for_connection (transport_connection_t * tc)
324{
Florin Coras288eaab2019-02-03 15:26:14 -0800325 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700326 u32 thread_index = tc->thread_index;
327
Florin Coras40903ac2018-06-10 14:41:23 -0700328 ASSERT (thread_index == vlib_get_thread_index ()
329 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400330
Florin Coras3cbc04b2017-10-02 00:18:51 -0700331 s = session_alloc (thread_index);
332 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Florin Corasb0f662f2018-12-27 14:51:46 -0800333 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500334
Florin Coras3cbc04b2017-10-02 00:18:51 -0700335 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500337 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700338 return s;
339}
340
Florin Corasea727642021-05-07 19:39:43 -0700341static session_t *
342session_alloc_for_half_open (transport_connection_t *tc)
343{
344 session_t *s;
345
346 s = ho_session_alloc ();
347 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
348 s->connection_index = tc->c_index;
349 tc->s_index = s->session_index;
350 return s;
351}
352
Florin Coras1f152cd2017-08-18 19:28:03 -0700353/**
354 * Discards bytes from buffer chain
355 *
356 * It discards n_bytes_to_drop starting at first buffer after chain_b
357 */
358always_inline void
359session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
360 vlib_buffer_t ** chain_b,
361 u32 n_bytes_to_drop)
362{
363 vlib_buffer_t *next = *chain_b;
364 u32 to_drop = n_bytes_to_drop;
365 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
366 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
367 {
368 next = vlib_get_buffer (vm, next->next_buffer);
369 if (next->current_length > to_drop)
370 {
371 vlib_buffer_advance (next, to_drop);
372 to_drop = 0;
373 }
374 else
375 {
376 to_drop -= next->current_length;
377 next->current_length = 0;
378 }
379 }
380 *chain_b = next;
381
382 if (to_drop == 0)
383 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
384}
385
386/**
387 * Enqueue buffer chain tail
388 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700389always_inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800390session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700391 u32 offset, u8 is_in_order)
392{
393 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700394 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700395 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700396 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700397 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700398 int rv = 0;
399
Florin Coras1f152cd2017-08-18 19:28:03 -0700400 if (is_in_order && offset)
401 {
402 diff = offset - b->current_length;
403 if (diff > b->total_length_not_including_first_buffer)
404 return 0;
405 chain_b = b;
406 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
407 chain_bi = vlib_get_buffer_index (vm, chain_b);
408 }
409 else
410 chain_bi = b->next_buffer;
411
Florin Corasf6d68ed2017-05-07 19:12:02 -0700412 do
413 {
414 chain_b = vlib_get_buffer (vm, chain_bi);
415 data = vlib_buffer_get_current (chain_b);
416 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700417 if (!len)
418 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700419 if (is_in_order)
420 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700421 rv = svm_fifo_enqueue (s->rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700422 if (rv == len)
423 {
424 written += rv;
425 }
426 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700427 {
428 return (rv > 0) ? (written + rv) : written;
429 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700430 else if (rv > len)
431 {
432 written += rv;
433
434 /* written more than what was left in chain */
435 if (written > b->total_length_not_including_first_buffer)
436 return written;
437
438 /* drop the bytes that have already been delivered */
439 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
440 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700441 }
442 else
443 {
Florin Coras288eaab2019-02-03 15:26:14 -0800444 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700445 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700446 {
447 clib_warning ("failed to enqueue multi-buffer seg");
448 return -1;
449 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700450 offset += len;
451 }
452 }
453 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
454 ? chain_b->next_buffer : 0));
455
456 if (is_in_order)
457 return written;
458
459 return 0;
460}
461
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000462void
463session_fifo_tuning (session_t * s, svm_fifo_t * f,
464 session_ft_action_t act, u32 len)
465{
466 if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING)
467 {
468 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
469 app_worker_session_fifo_tuning (app_wrk, s, f, act, len);
470 if (CLIB_ASSERT_ENABLE)
471 {
472 segment_manager_t *sm;
473 sm = segment_manager_get (f->segment_manager);
Florin Corasc547e912020-12-08 17:50:45 -0800474 ASSERT (f->shr->size >= 4096);
475 ASSERT (f->shr->size <= sm->max_fifo_size);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000476 }
477 }
478}
479
Dave Barach68b0fb02017-02-28 15:15:56 -0500480/*
481 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
482 * event but on request can queue notification events for later delivery by
483 * calling stream_server_flush_enqueue_events().
484 *
485 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700486 * @param b Buffer to be enqueued
487 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500488 * @param queue_event Flag to indicate if peer is to be notified or if event
489 * is to be queued. The former is useful when more data is
490 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700491 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500492 * @return Number of bytes enqueued or a negative value if enqueueing failed.
493 */
494int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700495session_enqueue_stream_connection (transport_connection_t * tc,
496 vlib_buffer_t * b, u32 offset,
497 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500498{
Florin Coras288eaab2019-02-03 15:26:14 -0800499 session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700500 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500501
Florin Corascea194d2017-10-02 00:18:51 -0700502 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500503
Florin Corasf6d68ed2017-05-07 19:12:02 -0700504 if (is_in_order)
505 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700506 enqueued = svm_fifo_enqueue (s->rx_fifo,
507 b->current_length,
508 vlib_buffer_get_current (b));
Florin Coras1f152cd2017-08-18 19:28:03 -0700509 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
510 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700511 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700512 in_order_off = enqueued > b->current_length ? enqueued : 0;
513 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
514 if (rv > 0)
515 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700516 }
517 }
518 else
519 {
Florin Coras288eaab2019-02-03 15:26:14 -0800520 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700521 b->current_length,
522 vlib_buffer_get_current (b));
523 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700524 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
525 /* if something was enqueued, report even this as success for ooo
526 * segment handling */
527 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700528 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500529
530 if (queue_event)
531 {
532 /* Queue RX event on this fifo. Eventually these will need to be flushed
533 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800534 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500535
Florin Coras31c99552019-03-01 13:00:58 -0800536 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700537 if (!(s->flags & SESSION_F_RX_EVT))
Dave Barach68b0fb02017-02-28 15:15:56 -0500538 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700539 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700540 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500541 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000542
543 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500544 }
545
Chris Lukeb2bcad62017-09-18 08:51:22 -0400546 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500547}
548
Florin Coras3cbc04b2017-10-02 00:18:51 -0700549int
Florin Coras288eaab2019-02-03 15:26:14 -0800550session_enqueue_dgram_connection (session_t * s,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700551 session_dgram_hdr_t * hdr,
552 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700553{
Florin Corasc95cfa22020-11-24 08:41:17 -0800554 int rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700555
Sirshak Das28aa5392019-02-05 01:33:33 -0600556 ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700557 >= b->current_length + sizeof (*hdr));
558
Florin Corasc95cfa22020-11-24 08:41:17 -0800559 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700560 {
Florin Corasc95cfa22020-11-24 08:41:17 -0800561 /* *INDENT-OFF* */
562 svm_fifo_seg_t segs[2] = {
563 { (u8 *) hdr, sizeof (*hdr) },
564 { vlib_buffer_get_current (b), b->current_length }
565 };
566 /* *INDENT-ON* */
567
568 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2,
569 0 /* allow_partial */ );
Florin Coras3cbc04b2017-10-02 00:18:51 -0700570 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800571 else
572 {
573 vlib_main_t *vm = vlib_get_main ();
574 svm_fifo_seg_t *segs = 0, *seg;
575 vlib_buffer_t *it = b;
576 u32 n_segs = 1;
577
578 vec_add2 (segs, seg, 1);
579 seg->data = (u8 *) hdr;
580 seg->len = sizeof (*hdr);
581 while (it)
582 {
583 vec_add2 (segs, seg, 1);
584 seg->data = vlib_buffer_get_current (it);
585 seg->len = it->current_length;
586 n_segs++;
587 if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT))
588 break;
589 it = vlib_get_buffer (vm, it->next_buffer);
590 }
591 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs,
592 0 /* allow partial */ );
593 vec_free (segs);
594 }
595
596 if (queue_event && rv > 0)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700597 {
598 /* Queue RX event on this fifo. Eventually these will need to be flushed
599 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800600 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700601
Florin Coras31c99552019-03-01 13:00:58 -0800602 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700603 if (!(s->flags & SESSION_F_RX_EVT))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700604 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700605 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700606 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700607 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000608
609 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700610 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800611 return rv > 0 ? rv : 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700612}
613
Florin Coras93992a92017-05-24 18:03:56 -0700614int
Florin Coras31c99552019-03-01 13:00:58 -0800615session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
616 u32 offset, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500617{
Florin Coras288eaab2019-02-03 15:26:14 -0800618 session_t *s = session_get (tc->s_index, tc->thread_index);
619 return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500620}
621
622u32
Florin Coras31c99552019-03-01 13:00:58 -0800623session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500624{
Florin Coras288eaab2019-02-03 15:26:14 -0800625 session_t *s = session_get (tc->s_index, tc->thread_index);
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300626 u32 rv;
627
628 rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000629 session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv);
Florin Coras0e573f52019-05-07 16:28:16 -0700630
Florin Coras2d379d82019-06-28 12:45:12 -0700631 if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes))
Florin Coras0e573f52019-05-07 16:28:16 -0700632 session_dequeue_notify (s);
633
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300634 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500635}
636
Florin Coras72b04282019-01-14 17:23:11 -0800637static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800638session_notify_subscribers (u32 app_index, session_t * s,
Florin Coras72b04282019-01-14 17:23:11 -0800639 svm_fifo_t * f, session_evt_type_t evt_type)
640{
641 app_worker_t *app_wrk;
642 application_t *app;
643 int i;
644
645 app = application_get (app_index);
646 if (!app)
647 return -1;
648
Florin Corasc547e912020-12-08 17:50:45 -0800649 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800650 {
Florin Corasc547e912020-12-08 17:50:45 -0800651 app_wrk = application_get_worker (app, f->shr->subscribers[i]);
Florin Coras72b04282019-01-14 17:23:11 -0800652 if (!app_wrk)
653 continue;
654 if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
655 return -1;
656 }
657
658 return 0;
659}
660
Dave Barach68b0fb02017-02-28 15:15:56 -0500661/**
662 * Notify session peer that new data has been enqueued.
663 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700664 * @param s Stream session for which the event is to be generated.
665 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500666 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700667 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500668 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700669static inline int
Florin Coras653e43f2019-03-04 10:56:23 -0800670session_enqueue_notify_inline (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500671{
Florin Coras72b04282019-01-14 17:23:11 -0800672 app_worker_t *app_wrk;
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200673 u32 session_index;
674 u8 n_subscribers;
675
676 session_index = s->session_index;
677 n_subscribers = svm_fifo_n_subscribers (s->rx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500678
Florin Coras72b04282019-01-14 17:23:11 -0800679 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
680 if (PREDICT_FALSE (!app_wrk))
Dave Barach818eb542017-08-02 13:56:13 -0400681 {
Florin Coras15531972018-08-12 23:50:53 -0700682 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400683 return 0;
684 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500685
Florin Corascca96182019-07-19 07:34:13 -0700686 SESSION_EVT (SESSION_EVT_ENQ, s, svm_fifo_max_dequeue_prod (s->rx_fifo));
Dave Barach68b0fb02017-02-28 15:15:56 -0500687
Florin Corasd5c604d2019-03-18 09:06:35 -0700688 s->flags &= ~SESSION_F_RX_EVT;
Florin Corasda302e42020-04-19 22:41:55 +0000689
690 /* Application didn't confirm accept yet */
691 if (PREDICT_FALSE (s->session_state == SESSION_STATE_ACCEPTING))
692 return 0;
693
Florin Coras72b04282019-01-14 17:23:11 -0800694 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800695 SESSION_IO_EVT_RX)))
Florin Coras72b04282019-01-14 17:23:11 -0800696 return -1;
697
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200698 if (PREDICT_FALSE (n_subscribers))
699 {
700 s = session_get (session_index, vlib_get_thread_index ());
701 return session_notify_subscribers (app_wrk->app_index, s,
702 s->rx_fifo, SESSION_IO_EVT_RX);
703 }
Florin Coras72b04282019-01-14 17:23:11 -0800704
705 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500706}
707
Florin Coras0d60a0f2018-06-29 02:02:08 -0700708int
Florin Coras653e43f2019-03-04 10:56:23 -0800709session_enqueue_notify (session_t * s)
710{
711 return session_enqueue_notify_inline (s);
712}
713
Aloys Augustinb3392332019-08-06 16:09:01 +0200714static void
715session_enqueue_notify_rpc (void *arg)
716{
Florin Coras5d8a8062019-08-13 08:35:39 -0700717 u32 session_index = pointer_to_uword (arg);
Aloys Augustinb3392332019-08-06 16:09:01 +0200718 session_t *s;
719
Florin Coras5d8a8062019-08-13 08:35:39 -0700720 s = session_get_if_valid (session_index, vlib_get_thread_index ());
Aloys Augustinb3392332019-08-06 16:09:01 +0200721 if (!s)
722 return;
723
724 session_enqueue_notify (s);
725}
726
727/**
728 * Like session_enqueue_notify, but can be called from a thread that does not
729 * own the session.
730 */
731void
732session_enqueue_notify_thread (session_handle_t sh)
733{
734 u32 thread_index = session_thread_from_handle (sh);
Florin Coras5d8a8062019-08-13 08:35:39 -0700735 u32 session_index = session_index_from_handle (sh);
736
737 /*
738 * Pass session index (u32) as opposed to handle (u64) in case pointers
739 * are not 64-bit.
740 */
Aloys Augustinb3392332019-08-06 16:09:01 +0200741 session_send_rpc_evt_to_thread (thread_index,
Florin Coras5d8a8062019-08-13 08:35:39 -0700742 session_enqueue_notify_rpc,
743 uword_to_pointer (session_index, void *));
Aloys Augustinb3392332019-08-06 16:09:01 +0200744}
745
Florin Coras653e43f2019-03-04 10:56:23 -0800746int
Florin Coras288eaab2019-02-03 15:26:14 -0800747session_dequeue_notify (session_t * s)
Florin Coras0d60a0f2018-06-29 02:02:08 -0700748{
Florin Coras72b04282019-01-14 17:23:11 -0800749 app_worker_t *app_wrk;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700750
Vladimir Kropylev5c89fbf2019-08-30 13:04:06 +0300751 svm_fifo_clear_deq_ntf (s->tx_fifo);
752
Florin Coras72b04282019-01-14 17:23:11 -0800753 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
754 if (PREDICT_FALSE (!app_wrk))
Florin Coras208daa12018-07-02 01:30:51 -0700755 return -1;
756
Florin Coras72b04282019-01-14 17:23:11 -0800757 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800758 SESSION_IO_EVT_TX)))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800759 return -1;
760
Florin Corasc547e912020-12-08 17:50:45 -0800761 if (PREDICT_FALSE (s->tx_fifo->shr->n_subscribers))
Florin Coras72b04282019-01-14 17:23:11 -0800762 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800763 s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras72b04282019-01-14 17:23:11 -0800764
Florin Coras1bcad5c2019-01-09 20:04:38 -0800765 return 0;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700766}
767
Dave Barach68b0fb02017-02-28 15:15:56 -0500768/**
769 * Flushes queue of sessions that are to be notified of new data
770 * enqueued events.
771 *
772 * @param thread_index Thread index for which the flush is to be performed.
773 * @return 0 on success or a positive number indicating the number of
774 * failures due to API queue being full.
775 */
776int
Florin Coras31c99552019-03-01 13:00:58 -0800777session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500778{
Florin Coras31c99552019-03-01 13:00:58 -0800779 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800780 session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700781 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700782 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500783
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700784 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500785
Florin Coras3cbc04b2017-10-02 00:18:51 -0700786 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700788 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700789 if (PREDICT_FALSE (!s))
790 {
791 errors++;
792 continue;
793 }
Florin Coras653e43f2019-03-04 10:56:23 -0800794
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000795 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED,
796 0 /* TODO/not needed */ );
797
Florin Coras653e43f2019-03-04 10:56:23 -0800798 if (PREDICT_FALSE (session_enqueue_notify_inline (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700799 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500800 }
801
Florin Coras3cbc04b2017-10-02 00:18:51 -0700802 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700803 wrk->session_to_enqueue[transport_proto] = indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500804
805 return errors;
806}
807
Florin Coras7fb0fe12018-04-09 09:24:52 -0700808int
Florin Coras31c99552019-03-01 13:00:58 -0800809session_main_flush_all_enqueue_events (u8 transport_proto)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700810{
811 vlib_thread_main_t *vtm = vlib_get_thread_main ();
812 int i, errors = 0;
813 for (i = 0; i < 1 + vtm->n_threads; i++)
Florin Coras31c99552019-03-01 13:00:58 -0800814 errors += session_main_flush_enqueue_events (transport_proto, i);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700815 return errors;
816}
817
Florin Coras4fde4ae2020-04-13 16:48:04 +0000818int
819session_stream_connect_notify (transport_connection_t * tc,
820 session_error_t err)
Dave Barach68b0fb02017-02-28 15:15:56 -0500821{
Florin Coras371ca502018-02-21 12:07:41 -0800822 u32 opaque = 0, new_ti, new_si;
Florin Coras15531972018-08-12 23:50:53 -0700823 app_worker_t *app_wrk;
Florin Corasea727642021-05-07 19:39:43 -0700824 session_t *s = 0, *ho;
Dave Barach68b0fb02017-02-28 15:15:56 -0500825
Florin Coras3cbc04b2017-10-02 00:18:51 -0700826 /*
Florin Corasea727642021-05-07 19:39:43 -0700827 * Cleanup half-open table
Florin Coras3cbc04b2017-10-02 00:18:51 -0700828 */
Florin Corascea194d2017-10-02 00:18:51 -0700829 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400830
Florin Corasea727642021-05-07 19:39:43 -0700831 ho = ho_session_get (tc->s_index);
832 opaque = ho->opaque;
833 app_wrk = app_worker_get_if_valid (ho->app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700834 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700835 return -1;
Florin Corasa27a46e2019-02-18 13:02:28 -0800836
Florin Coras00e01d32019-10-21 16:07:46 -0700837 if (err)
838 return app_worker_connect_notify (app_wrk, s, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800839
840 s = session_alloc_for_connection (tc);
841 s->session_state = SESSION_STATE_CONNECTING;
842 s->app_wrk_index = app_wrk->wrk_index;
843 new_si = s->session_index;
844 new_ti = s->thread_index;
845
Florin Coras00e01d32019-10-21 16:07:46 -0700846 if ((err = app_worker_init_connected (app_wrk, s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800848 session_free (s);
Florin Coras00e01d32019-10-21 16:07:46 -0700849 app_worker_connect_notify (app_wrk, 0, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800850 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500851 }
852
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200853 s = session_get (new_si, new_ti);
Florin Coras4fde4ae2020-04-13 16:48:04 +0000854 s->session_state = SESSION_STATE_READY;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200855 session_lookup_add_connection (tc, session_handle (s));
856
Florin Coras00e01d32019-10-21 16:07:46 -0700857 if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque))
Florin Coras6534b7a2017-07-18 05:38:03 -0400858 {
Florin Corasc7fd24e2020-07-24 10:09:07 -0700859 session_lookup_del_connection (tc);
860 /* Avoid notifying app about rejected session cleanup */
Florin Corasa27a46e2019-02-18 13:02:28 -0800861 s = session_get (new_si, new_ti);
Florin Corasc7fd24e2020-07-24 10:09:07 -0700862 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
863 session_free (s);
Florin Corasa27a46e2019-02-18 13:02:28 -0800864 return -1;
Florin Coras6534b7a2017-07-18 05:38:03 -0400865 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500866
Florin Corasa27a46e2019-02-18 13:02:28 -0800867 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500868}
869
Florin Coras6d7552c2020-04-09 01:49:45 +0000870static void
871session_switch_pool_reply (void *arg)
872{
873 u32 session_index = pointer_to_uword (arg);
Florin Coras6d7552c2020-04-09 01:49:45 +0000874 session_t *s;
875
876 s = session_get_if_valid (session_index, vlib_get_thread_index ());
877 if (!s)
878 return;
879
Florin Coras6d7552c2020-04-09 01:49:45 +0000880 /* Notify app that it has data on the new session */
881 session_enqueue_notify (s);
882}
883
Florin Coras3cbc04b2017-10-02 00:18:51 -0700884typedef struct _session_switch_pool_args
885{
886 u32 session_index;
887 u32 thread_index;
888 u32 new_thread_index;
889 u32 new_session_index;
890} session_switch_pool_args_t;
891
Florin Coras49568af2019-07-31 16:46:24 -0700892/**
893 * Notify old thread of the session pool switch
894 */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700895static void
896session_switch_pool (void *cb_args)
897{
898 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras6d7552c2020-04-09 01:49:45 +0000899 session_handle_t new_sh;
900 segment_manager_t *sm;
Florin Coras49568af2019-07-31 16:46:24 -0700901 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800902 session_t *s;
Florin Coras6d7552c2020-04-09 01:49:45 +0000903 void *rargs;
Florin Coras49568af2019-07-31 16:46:24 -0700904
Florin Coras3cbc04b2017-10-02 00:18:51 -0700905 ASSERT (args->thread_index == vlib_get_thread_index ());
906 s = session_get (args->session_index, args->thread_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000907
Florin Coras1ee78302019-02-05 15:51:15 -0800908 transport_cleanup (session_get_transport_proto (s), s->connection_index,
909 s->thread_index);
Florin Coras49568af2019-07-31 16:46:24 -0700910
Florin Coras6d7552c2020-04-09 01:49:45 +0000911 new_sh = session_make_handle (args->new_session_index,
912 args->new_thread_index);
913
Florin Coras49568af2019-07-31 16:46:24 -0700914 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
915 if (app_wrk)
916 {
Florin Coras6d7552c2020-04-09 01:49:45 +0000917 /* Cleanup fifo segment slice state for fifos */
918 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras0bc78d82021-01-09 14:34:01 -0800919 segment_manager_detach_fifo (sm, &s->rx_fifo);
920 segment_manager_detach_fifo (sm, &s->tx_fifo);
Aloys Augustinb3392332019-08-06 16:09:01 +0200921
Florin Coras6d7552c2020-04-09 01:49:45 +0000922 /* Notify app, using old session, about the migration event */
923 app_worker_migrate_notify (app_wrk, s, new_sh);
Florin Coras49568af2019-07-31 16:46:24 -0700924 }
925
Florin Coras6d7552c2020-04-09 01:49:45 +0000926 /* Trigger app read and fifo updates on the new thread */
927 rargs = uword_to_pointer (args->new_session_index, void *);
928 session_send_rpc_evt_to_thread (args->new_thread_index,
929 session_switch_pool_reply, rargs);
930
Florin Coras3cbc04b2017-10-02 00:18:51 -0700931 session_free (s);
932 clib_mem_free (cb_args);
933}
934
935/**
936 * Move dgram session to the right thread
937 */
938int
939session_dgram_connect_notify (transport_connection_t * tc,
Florin Coras288eaab2019-02-03 15:26:14 -0800940 u32 old_thread_index, session_t ** new_session)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700941{
Florin Coras288eaab2019-02-03 15:26:14 -0800942 session_t *new_s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700943 session_switch_pool_args_t *rpc_args;
Florin Coras0bc78d82021-01-09 14:34:01 -0800944 segment_manager_t *sm;
945 app_worker_t *app_wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700946
947 /*
948 * Clone half-open session to the right thread.
949 */
950 new_s = session_clone_safe (tc->s_index, old_thread_index);
951 new_s->connection_index = tc->c_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700952 new_s->session_state = SESSION_STATE_READY;
Nathan Skrzypczakcaa7acf2019-10-02 10:02:05 +0200953 new_s->flags |= SESSION_F_IS_MIGRATING;
Florin Coras6d7552c2020-04-09 01:49:45 +0000954
Florin Coras0bc78d82021-01-09 14:34:01 -0800955 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
956 session_lookup_add_connection (tc, session_handle (new_s));
957
958 app_wrk = app_worker_get_if_valid (new_s->app_wrk_index);
959 if (app_wrk)
960 {
961 /* New set of fifos attached to the same shared memory */
962 sm = app_worker_get_connect_segment_manager (app_wrk);
963 segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s);
964 segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s);
965 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700966
967 /*
968 * Ask thread owning the old session to clean it up and make us the tx
969 * fifo owner
970 */
971 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
972 rpc_args->new_session_index = new_s->session_index;
973 rpc_args->new_thread_index = new_s->thread_index;
974 rpc_args->session_index = tc->s_index;
975 rpc_args->thread_index = old_thread_index;
976 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
977 rpc_args);
978
979 tc->s_index = new_s->session_index;
980 new_s->connection_index = tc->c_index;
981 *new_session = new_s;
982 return 0;
983}
984
Dave Barach68b0fb02017-02-28 15:15:56 -0500985/**
986 * Notification from transport that connection is being closed.
987 *
988 * A disconnect is sent to application but state is not removed. Once
989 * disconnect is acknowledged by application, session disconnect is called.
990 * Ultimately this leads to close being called on transport (passive close).
991 */
992void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800993session_transport_closing_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500994{
Florin Coras15531972018-08-12 23:50:53 -0700995 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800996 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500997
Florin Corascea194d2017-10-02 00:18:51 -0700998 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -0700999 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1000 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001001 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Corasbf7ce2c2019-03-06 14:44:42 -08001002 app_wrk = app_worker_get (s->app_wrk_index);
1003 app_worker_close_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001004}
1005
1006/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001007 * Notification from transport that connection is being deleted
1008 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001009 * This removes the session if it is still valid. It should be called only on
1010 * previously fully established sessions. For instance failed connects should
1011 * call stream_session_connect_notify and indicate that the connect has
1012 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001013 */
1014void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001015session_transport_delete_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001016{
Florin Coras288eaab2019-02-03 15:26:14 -08001017 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001018
Florin Corase04c2992017-03-01 08:17:34 -08001019 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -07001020 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -07001021 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001022
Florin Coras568ebc72018-09-18 16:12:50 -07001023 switch (s->session_state)
1024 {
Florin Coras222e1f412019-02-16 20:47:32 -08001025 case SESSION_STATE_CREATED:
1026 /* Session was created but accept notification was not yet sent to the
1027 * app. Cleanup everything. */
1028 session_lookup_del_session (s);
Zeyu Zhangcbbc4a22019-10-12 14:21:59 +08001029 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1030 session_free (s);
Florin Coras222e1f412019-02-16 20:47:32 -08001031 break;
Florin Corasb0f662f2018-12-27 14:51:46 -08001032 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -07001033 case SESSION_STATE_TRANSPORT_CLOSING:
Florin Coras692b9492019-07-12 15:01:53 -07001034 case SESSION_STATE_CLOSING:
Florin Coras5f066322019-07-22 19:03:03 -07001035 case SESSION_STATE_TRANSPORT_CLOSED:
Florin Coras568ebc72018-09-18 16:12:50 -07001036 /* If transport finishes or times out before we get a reply
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001037 * from the app, mark transport as closed and wait for reply
1038 * before removing the session. Cleanup session table in advance
Florin Corasa9d5bea2018-12-17 08:24:19 -08001039 * because transport will soon be closed and closed sessions
1040 * are assumed to have been removed from the lookup table */
1041 session_lookup_del_session (s);
Florin Coras5f066322019-07-22 19:03:03 -07001042 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001043 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1044 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -07001045 break;
Florin Coras692b9492019-07-12 15:01:53 -07001046 case SESSION_STATE_APP_CLOSED:
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001047 /* Cleanup lookup table as transport needs to still be valid.
1048 * Program transport close to ensure that all session events
1049 * have been cleaned up. Once transport close is called, the
1050 * session is just removed because both transport and app have
1051 * confirmed the close*/
Florin Coras568ebc72018-09-18 16:12:50 -07001052 session_lookup_del_session (s);
Florin Coras3b5e2222019-10-25 16:23:39 -07001053 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001054 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1055 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Corasdfb3b872019-08-16 17:48:44 -07001056 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras568ebc72018-09-18 16:12:50 -07001057 break;
Florin Coras5f066322019-07-22 19:03:03 -07001058 case SESSION_STATE_TRANSPORT_DELETED:
Florin Corasb0f662f2018-12-27 14:51:46 -08001059 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001060 case SESSION_STATE_CLOSED:
Florin Coras70f26d52019-07-08 11:47:18 -07001061 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001062 session_delete (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001063 break;
Florin Corasc01d5782018-10-17 14:53:11 -07001064 default:
Florin Corasb0f662f2018-12-27 14:51:46 -08001065 clib_warning ("session state %u", s->session_state);
Florin Coras70f26d52019-07-08 11:47:18 -07001066 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001067 session_delete (s);
Florin Corasc01d5782018-10-17 14:53:11 -07001068 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001069 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001070}
1071
1072/**
Florin Coras692b9492019-07-12 15:01:53 -07001073 * Notification from transport that it is closed
Florin Coras54ddf432018-12-21 13:54:09 -08001074 *
Florin Coras692b9492019-07-12 15:01:53 -07001075 * Should be called by transport, prior to calling delete notify, once it
1076 * knows that no more data will be exchanged. This could serve as an
1077 * early acknowledgment of an active close especially if transport delete
1078 * can be delayed a long time, e.g., tcp time-wait.
Florin Coras54ddf432018-12-21 13:54:09 -08001079 */
1080void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001081session_transport_closed_notify (transport_connection_t * tc)
Florin Coras54ddf432018-12-21 13:54:09 -08001082{
Florin Coras692b9492019-07-12 15:01:53 -07001083 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001084 session_t *s;
Florin Coras54ddf432018-12-21 13:54:09 -08001085
1086 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1087 return;
Florin Corasb0f662f2018-12-27 14:51:46 -08001088
Florin Coras06a2eec2019-05-23 22:28:16 -07001089 /* Transport thinks that app requested close but it actually didn't.
1090 * Can happen for tcp if fin and rst are received in close succession. */
1091 if (s->session_state == SESSION_STATE_READY)
1092 {
1093 session_transport_closing_notify (tc);
1094 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras692b9492019-07-12 15:01:53 -07001095 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
Florin Coras06a2eec2019-05-23 22:28:16 -07001096 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001097 /* If app close has not been received or has not yet resulted in
1098 * a transport close, only mark the session transport as closed */
Florin Coras06a2eec2019-05-23 22:28:16 -07001099 else if (s->session_state <= SESSION_STATE_CLOSING)
Florin Corasb0f662f2018-12-27 14:51:46 -08001100 {
Florin Corasb0f662f2018-12-27 14:51:46 -08001101 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1102 }
Florin Coras5f066322019-07-22 19:03:03 -07001103 /* If app also closed, switch to closed */
1104 else if (s->session_state == SESSION_STATE_APP_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001105 s->session_state = SESSION_STATE_CLOSED;
Florin Coras692b9492019-07-12 15:01:53 -07001106
1107 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1108 if (app_wrk)
1109 app_worker_transport_closed_notify (app_wrk, s);
Florin Coras54ddf432018-12-21 13:54:09 -08001110}
1111
1112/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001113 * Notify application that connection has been reset.
1114 */
1115void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001116session_transport_reset_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001117{
Florin Coras15531972018-08-12 23:50:53 -07001118 app_worker_t *app_wrk;
Florin Coras69b68ef2019-04-02 11:38:51 -07001119 session_t *s;
1120
Florin Corascea194d2017-10-02 00:18:51 -07001121 s = session_get (tc->s_index, tc->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -08001122 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001123 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1124 return;
1125 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -07001126 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras69b68ef2019-04-02 11:38:51 -07001127 app_worker_reset_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001128}
1129
Florin Corasa27a46e2019-02-18 13:02:28 -08001130int
1131session_stream_accept_notify (transport_connection_t * tc)
1132{
1133 app_worker_t *app_wrk;
1134 session_t *s;
1135
1136 s = session_get (tc->s_index, tc->thread_index);
1137 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1138 if (!app_wrk)
1139 return -1;
Florin Coras600d7a82021-04-29 11:55:23 -07001140 if (s->session_state != SESSION_STATE_CREATED)
1141 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001142 s->session_state = SESSION_STATE_ACCEPTING;
Florin Coras4dc10a42020-02-11 05:31:49 +00001143 if (app_worker_accept_notify (app_wrk, s))
1144 {
1145 /* On transport delete, no notifications should be sent. Unless, the
1146 * accept is retried and successful. */
1147 s->session_state = SESSION_STATE_CREATED;
1148 return -1;
1149 }
1150 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001151}
1152
Dave Barach68b0fb02017-02-28 15:15:56 -05001153/**
1154 * Accept a stream session. Optionally ping the server by callback.
1155 */
1156int
Florin Corasc9940fc2019-02-05 20:55:11 -08001157session_stream_accept (transport_connection_t * tc, u32 listener_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001158 u32 thread_index, u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -05001159{
Florin Corasa27a46e2019-02-18 13:02:28 -08001160 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001161 int rv;
1162
Florin Corasa27a46e2019-02-18 13:02:28 -08001163 s = session_alloc_for_connection (tc);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001164 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
Florin Coras222e1f412019-02-16 20:47:32 -08001165 s->session_state = SESSION_STATE_CREATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001166
Florin Corasa27a46e2019-02-18 13:02:28 -08001167 if ((rv = app_worker_init_accepted (s)))
Florin Coras12813d52020-04-09 20:59:20 +00001168 {
1169 session_free (s);
1170 return rv;
1171 }
Florin Corasa27a46e2019-02-18 13:02:28 -08001172
1173 session_lookup_add_connection (tc, session_handle (s));
1174
Dave Barach68b0fb02017-02-28 15:15:56 -05001175 /* Shoulder-tap the server */
1176 if (notify)
1177 {
Florin Corasa27a46e2019-02-18 13:02:28 -08001178 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras12813d52020-04-09 20:59:20 +00001179 if ((rv = app_worker_accept_notify (app_wrk, s)))
1180 {
1181 session_lookup_del_session (s);
1182 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1183 session_free (s);
1184 return rv;
1185 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001186 }
1187
1188 return 0;
1189}
1190
Florin Coras371ca502018-02-21 12:07:41 -08001191int
Florin Corase759bb52020-04-08 01:55:39 +00001192session_dgram_accept (transport_connection_t * tc, u32 listener_index,
1193 u32 thread_index)
1194{
1195 app_worker_t *app_wrk;
1196 session_t *s;
1197 int rv;
1198
1199 s = session_alloc_for_connection (tc);
1200 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1201
1202 if ((rv = app_worker_init_accepted (s)))
1203 {
1204 session_free (s);
1205 return rv;
1206 }
1207
Florin Coras473556d2020-11-23 15:59:36 -08001208 session_lookup_add_connection (tc, session_handle (s));
1209
Florin Corase759bb52020-04-08 01:55:39 +00001210 app_wrk = app_worker_get (s->app_wrk_index);
1211 if ((rv = app_worker_accept_notify (app_wrk, s)))
1212 {
Florin Coras473556d2020-11-23 15:59:36 -08001213 session_lookup_del_session (s);
Florin Coras12813d52020-04-09 20:59:20 +00001214 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1215 session_free (s);
Florin Corase759bb52020-04-08 01:55:39 +00001216 return rv;
1217 }
1218
1219 s->session_state = SESSION_STATE_READY;
Florin Corase759bb52020-04-08 01:55:39 +00001220
1221 return 0;
1222}
1223
1224int
Florin Coras15531972018-08-12 23:50:53 -07001225session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -08001226{
1227 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001228 transport_endpoint_cfg_t *tep;
Florin Coras15531972018-08-12 23:50:53 -07001229 app_worker_t *app_wrk;
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001230 session_handle_t sh;
Florin Coras288eaab2019-02-03 15:26:14 -08001231 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -08001232 int rv;
1233
Florin Coras5665ced2018-10-25 18:03:45 -07001234 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001235 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001236 if (rv < 0)
1237 {
1238 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001239 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001240 }
1241
Florin Coras1ee78302019-02-05 15:51:15 -08001242 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001243
Florin Corasa27a46e2019-02-18 13:02:28 -08001244 /* For dgram type of service, allocate session and fifos now */
Florin Coras15531972018-08-12 23:50:53 -07001245 app_wrk = app_worker_get (app_wrk_index);
Florin Corasa27a46e2019-02-18 13:02:28 -08001246 s = session_alloc_for_connection (tc);
Florin Coras15531972018-08-12 23:50:53 -07001247 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001248 s->session_state = SESSION_STATE_OPENED;
Florin Corasa27a46e2019-02-18 13:02:28 -08001249 if (app_worker_init_connected (app_wrk, s))
1250 {
1251 session_free (s);
1252 return -1;
1253 }
Florin Coras371ca502018-02-21 12:07:41 -08001254
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001255 sh = session_handle (s);
1256 session_lookup_add_connection (tc, sh);
Florin Coras00e01d32019-10-21 16:07:46 -07001257 return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque);
Florin Coras371ca502018-02-21 12:07:41 -08001258}
1259
1260int
Florin Coras15531972018-08-12 23:50:53 -07001261session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -08001262{
1263 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001264 transport_endpoint_cfg_t *tep;
Florin Corasea727642021-05-07 19:39:43 -07001265 app_worker_t *app_wrk;
1266 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -08001267 int rv;
1268
Florin Coras5665ced2018-10-25 18:03:45 -07001269 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001270 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001271 if (rv < 0)
1272 {
1273 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001274 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001275 }
1276
Florin Coras1ee78302019-02-05 15:51:15 -08001277 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001278
Florin Corasea727642021-05-07 19:39:43 -07001279 app_wrk = app_worker_get (app_wrk_index);
Florin Coras371ca502018-02-21 12:07:41 -08001280
Florin Corasea727642021-05-07 19:39:43 -07001281 /* If transport offers a vc service, only allocate established
1282 * session once the connection has been established.
1283 * In the meantime allocate half-open session for tracking purposes
1284 * associate half-open connection to it and add session to app-worker
1285 * half-open table. These are needed to allocate the established
1286 * session on transport notification, and to cleanup the half-open
1287 * session if the app detaches before connection establishment.
Florin Coras371ca502018-02-21 12:07:41 -08001288 */
Florin Corasea727642021-05-07 19:39:43 -07001289 s = session_alloc_for_half_open (tc);
1290 s->app_wrk_index = app_wrk->wrk_index;
1291 s->ho_index = app_worker_add_half_open (app_wrk, session_handle (s));
1292 s->opaque = opaque;
Florin Corasd50ff7f2020-04-16 04:30:22 +00001293
Florin Corasea727642021-05-07 19:39:43 -07001294 session_lookup_add_half_open (tc, tc->c_index);
Florin Coras4fde4ae2020-04-13 16:48:04 +00001295
Florin Coras371ca502018-02-21 12:07:41 -08001296 return 0;
1297}
1298
1299int
Florin Coras15531972018-08-12 23:50:53 -07001300session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -08001301{
Florin Coras5665ced2018-10-25 18:03:45 -07001302 session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt;
1303 transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep);
1304
Florin Coras15531972018-08-12 23:50:53 -07001305 sep->app_wrk_index = app_wrk_index;
Florin Coras8f89dd02018-03-05 16:53:07 -08001306 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -08001307
Florin Coras1ee78302019-02-05 15:51:15 -08001308 return transport_connect (rmt->transport_proto, tep_cfg);
Florin Coras371ca502018-02-21 12:07:41 -08001309}
1310
1311typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
1312
1313/* *INDENT-OFF* */
1314static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
1315 session_open_vc,
1316 session_open_cl,
1317 session_open_app,
1318};
1319/* *INDENT-ON* */
1320
Florin Coras6cf30ad2017-04-04 23:08:23 -07001321/**
1322 * Ask transport to open connection to remote transport endpoint.
1323 *
1324 * Stores handle for matching request with reply since the call can be
1325 * asynchronous. For instance, for TCP the 3-way handshake must complete
1326 * before reply comes. Session is only created once connection is established.
1327 *
1328 * @param app_index Index of the application requesting the connect
1329 * @param st Session type requested.
1330 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -07001331 * @param opaque Opaque data (typically, api_context) the application expects
1332 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -07001333 */
Florin Corase04c2992017-03-01 08:17:34 -08001334int
Florin Coras15531972018-08-12 23:50:53 -07001335session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -05001336{
Florin Coras1ee78302019-02-05 15:51:15 -08001337 transport_service_type_t tst;
1338 tst = transport_protocol_service_type (rmt->transport_proto);
Florin Coras15531972018-08-12 23:50:53 -07001339 return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001340}
1341
Florin Coras7fb0fe12018-04-09 09:24:52 -07001342/**
Florin Corasab2f6db2018-08-31 14:31:41 -07001343 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001344 *
1345 * @param s Session for which listen will be called. Note that unlike
1346 * established sessions, listen sessions are not associated to a
1347 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -07001348 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001349 */
Florin Coras371ca502018-02-21 12:07:41 -08001350int
Florin Coras288eaab2019-02-03 15:26:14 -08001351session_listen (session_t * ls, session_endpoint_cfg_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001352{
Florin Corasab2f6db2018-08-31 14:31:41 -07001353 transport_endpoint_t *tep;
Florin Corasa8c3b862020-04-07 22:31:06 +00001354 int tc_index;
1355 u32 s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001356
1357 /* Transport bind/listen */
1358 tep = session_endpoint_to_transport (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001359 s_index = ls->session_index;
Florin Corasd4295e62019-02-22 13:11:38 -08001360 tc_index = transport_start_listen (session_get_transport_proto (ls),
1361 s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001362
Florin Corasa8c3b862020-04-07 22:31:06 +00001363 if (tc_index < 0)
1364 return tc_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001365
Florin Corasd4295e62019-02-22 13:11:38 -08001366 /* Attach transport to session. Lookup tables are populated by the app
1367 * worker because local tables (for ct sessions) are not backed by a fib */
Florin Coras74cac882018-09-07 09:13:15 -07001368 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001369 ls->connection_index = tc_index;
1370
Florin Corasab2f6db2018-08-31 14:31:41 -07001371 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001372}
1373
Florin Coras6cf30ad2017-04-04 23:08:23 -07001374/**
1375 * Ask transport to stop listening on local transport endpoint.
1376 *
1377 * @param s Session to stop listening on. It must be in state LISTENING.
1378 */
1379int
Florin Coras288eaab2019-02-03 15:26:14 -08001380session_stop_listen (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001381{
Florin Coras561af9b2017-12-09 10:19:43 -08001382 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001383 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001384
Florin Coras1ee78302019-02-05 15:51:15 -08001385 if (s->session_state != SESSION_STATE_LISTENING)
Florin Corasa8c3b862020-04-07 22:31:06 +00001386 return SESSION_E_NOLISTEN;
Florin Coras1ee78302019-02-05 15:51:15 -08001387
1388 tc = transport_get_listener (tp, s->connection_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001389
1390 /* If no transport, assume everything was cleaned up already */
Florin Coras6cf30ad2017-04-04 23:08:23 -07001391 if (!tc)
Florin Corasa8c3b862020-04-07 22:31:06 +00001392 return SESSION_E_NONE;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001393
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +02001394 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
1395 session_lookup_del_connection (tc);
Florin Corasa8c3b862020-04-07 22:31:06 +00001396
Florin Coras1ee78302019-02-05 15:51:15 -08001397 transport_stop_listen (tp, s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001398 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001399}
1400
1401/**
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001402 * Initialize session closing procedure.
Florin Corasa5464812017-04-19 13:00:05 -07001403 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001404 * Request is always sent to session node to ensure that all outstanding
1405 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001406 */
1407void
Florin Coras288eaab2019-02-03 15:26:14 -08001408session_close (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001409{
Florin Coras25579b42018-06-06 17:55:02 -07001410 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001411 return;
Florin Coras25579b42018-06-06 17:55:02 -07001412
1413 if (s->session_state >= SESSION_STATE_CLOSING)
1414 {
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001415 /* Session will only be removed once both app and transport
1416 * acknowledge the close */
Florin Coras5f066322019-07-22 19:03:03 -07001417 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED
1418 || s->session_state == SESSION_STATE_TRANSPORT_DELETED)
Florin Corasdfb3b872019-08-16 17:48:44 -07001419 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras25579b42018-06-06 17:55:02 -07001420 return;
1421 }
1422
Florin Corasb2371c22018-05-31 17:14:10 -07001423 s->session_state = SESSION_STATE_CLOSING;
Florin Corasdfb3b872019-08-16 17:48:44 -07001424 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
1425}
1426
1427/**
1428 * Force a close without waiting for data to be flushed
1429 */
1430void
1431session_reset (session_t * s)
1432{
1433 if (s->session_state >= SESSION_STATE_CLOSING)
1434 return;
1435 /* Drop all outstanding tx data */
1436 svm_fifo_dequeue_drop_all (s->tx_fifo);
1437 s->session_state = SESSION_STATE_CLOSING;
1438 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001439}
1440
1441/**
1442 * Notify transport the session can be disconnected. This should eventually
1443 * result in a delete notification that allows us to cleanup session state.
1444 * Called for both active/passive disconnects.
1445 *
1446 * Must be called from the session's thread.
1447 */
1448void
Florin Coras288eaab2019-02-03 15:26:14 -08001449session_transport_close (session_t * s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001450{
Florin Coras692b9492019-07-12 15:01:53 -07001451 if (s->session_state >= SESSION_STATE_APP_CLOSED)
Florin Coras568ebc72018-09-18 16:12:50 -07001452 {
Florin Coras5f066322019-07-22 19:03:03 -07001453 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1454 s->session_state = SESSION_STATE_CLOSED;
1455 /* If transport is already deleted, just free the session */
1456 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
Florin Coras692b9492019-07-12 15:01:53 -07001457 session_free_w_fifos (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001458 return;
1459 }
Florin Coras78cc4b02018-12-20 18:24:49 -08001460
Florin Coras692b9492019-07-12 15:01:53 -07001461 /* If the tx queue wasn't drained, the transport can continue to try
1462 * sending the outstanding data (in closed state it cannot). It MUST however
1463 * at one point, either after sending everything or after a timeout, call
1464 * delete notify. This will finally lead to the complete cleanup of the
1465 * session.
Florin Coras78cc4b02018-12-20 18:24:49 -08001466 */
Florin Coras692b9492019-07-12 15:01:53 -07001467 s->session_state = SESSION_STATE_APP_CLOSED;
Florin Coras78cc4b02018-12-20 18:24:49 -08001468
Florin Coras1ee78302019-02-05 15:51:15 -08001469 transport_close (session_get_transport_proto (s), s->connection_index,
1470 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001471}
1472
1473/**
Florin Corasdfb3b872019-08-16 17:48:44 -07001474 * Force transport close
1475 */
1476void
1477session_transport_reset (session_t * s)
1478{
1479 if (s->session_state >= SESSION_STATE_APP_CLOSED)
1480 {
1481 if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED)
1482 s->session_state = SESSION_STATE_CLOSED;
1483 else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
1484 session_free_w_fifos (s);
1485 return;
1486 }
1487
1488 s->session_state = SESSION_STATE_APP_CLOSED;
1489 transport_reset (session_get_transport_proto (s), s->connection_index,
1490 s->thread_index);
1491}
1492
1493/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001494 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001495 *
Florin Coras25579b42018-06-06 17:55:02 -07001496 * Notify transport of the cleanup and free the session. This should
1497 * be called only if transport reported some error and is already
1498 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001499 */
1500void
Florin Coras288eaab2019-02-03 15:26:14 -08001501session_transport_cleanup (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001502{
Florin Coras25579b42018-06-06 17:55:02 -07001503 /* Delete from main lookup table before we axe the the transport */
1504 session_lookup_del_session (s);
Florin Coras5afea122019-10-28 08:46:37 -07001505 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
1506 transport_cleanup (session_get_transport_proto (s), s->connection_index,
1507 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001508 /* Since we called cleanup, no delete notification will come. So, make
1509 * sure the session is properly freed. */
Florin Corasd3955fb2019-11-29 09:31:47 -08001510 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1511 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001512}
1513
Florin Corasa5464812017-04-19 13:00:05 -07001514/**
Florin Corasb384b542018-01-15 01:08:33 -08001515 * Allocate event queues in the shared-memory segment
1516 *
Florin Coras6c10ab22020-11-08 16:50:39 -08001517 * That can only be a newly created memfd segment, that must be
1518 * mapped by all apps/stack users.
Florin Corasa5464812017-04-19 13:00:05 -07001519 */
1520void
Florin Coras31c99552019-03-01 13:00:58 -08001521session_vpp_event_queues_allocate (session_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001522{
Florin Coras52207f12018-07-12 14:48:06 -07001523 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Coras04943b42020-12-25 11:45:40 -08001524 fifo_segment_t *eqs = &smm->evt_qs_segment;
Florin Corasb4c14912019-02-09 13:51:25 -08001525 uword eqs_size = 64 << 20;
Florin Corasb384b542018-01-15 01:08:33 -08001526 pid_t vpp_pid = getpid ();
Florin Corasb384b542018-01-15 01:08:33 -08001527 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001528
Florin Corasb384b542018-01-15 01:08:33 -08001529 if (smm->configured_event_queue_length)
1530 evt_q_length = smm->configured_event_queue_length;
1531
Florin Coras6c10ab22020-11-08 16:50:39 -08001532 if (smm->evt_qs_segment_size)
1533 eqs_size = smm->evt_qs_segment_size;
1534
Florin Coras04943b42020-12-25 11:45:40 -08001535 eqs->ssvm.ssvm_size = eqs_size;
1536 eqs->ssvm.my_pid = vpp_pid;
1537 eqs->ssvm.name = format (0, "%s%c", "session: evt-qs-segment", 0);
Florin Coras6c10ab22020-11-08 16:50:39 -08001538 /* clib_mem_vm_map_shared consumes first page before requested_va */
Florin Coras04943b42020-12-25 11:45:40 -08001539 eqs->ssvm.requested_va = smm->session_baseva + clib_mem_get_page_size ();
Florin Coras6c10ab22020-11-08 16:50:39 -08001540
Florin Coras04943b42020-12-25 11:45:40 -08001541 if (ssvm_server_init (&eqs->ssvm, SSVM_SEGMENT_MEMFD))
Florin Corasa5464812017-04-19 13:00:05 -07001542 {
Florin Coras6c10ab22020-11-08 16:50:39 -08001543 clib_warning ("failed to initialize queue segment");
1544 return;
Florin Corasa5464812017-04-19 13:00:05 -07001545 }
Florin Corasb384b542018-01-15 01:08:33 -08001546
Florin Coras04943b42020-12-25 11:45:40 -08001547 fifo_segment_init (eqs);
Florin Corasb384b542018-01-15 01:08:33 -08001548
Florin Corasb4624182020-12-11 13:58:12 -08001549 /* Special fifo segment that's filled only with mqs */
1550 eqs->h->n_mqs = vec_len (smm->wrk);
1551
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001552 for (i = 0; i < vec_len (smm->wrk); i++)
Florin Corasb384b542018-01-15 01:08:33 -08001553 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001554 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
Florin Coras3c2fed52018-07-04 04:15:05 -07001555 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1556 {evt_q_length, evt_size, 0}
1557 ,
Florin Corasb4c14912019-02-09 13:51:25 -08001558 {evt_q_length >> 1, 256, 0}
Florin Coras3c2fed52018-07-04 04:15:05 -07001559 };
1560 cfg->consumer_pid = 0;
1561 cfg->n_rings = 2;
1562 cfg->q_nitems = evt_q_length;
1563 cfg->ring_cfgs = rc;
Florin Coras04943b42020-12-25 11:45:40 -08001564
Florin Corasb4624182020-12-11 13:58:12 -08001565 smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (eqs, i, cfg);
Florin Corasb384b542018-01-15 01:08:33 -08001566 }
Florin Corasb384b542018-01-15 01:08:33 -08001567}
1568
Florin Coras04943b42020-12-25 11:45:40 -08001569fifo_segment_t *
Florin Coras31c99552019-03-01 13:00:58 -08001570session_main_get_evt_q_segment (void)
Florin Corasb384b542018-01-15 01:08:33 -08001571{
Florin Coras6c10ab22020-11-08 16:50:39 -08001572 return &session_main.evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001573}
1574
Florin Coras31c99552019-03-01 13:00:58 -08001575u64
1576session_segment_handle (session_t * s)
1577{
1578 svm_fifo_t *f;
1579
Aloys Augustincdb71702019-04-08 17:54:39 +02001580 if (!s->rx_fifo)
Florin Coras31c99552019-03-01 13:00:58 -08001581 return SESSION_INVALID_HANDLE;
1582
1583 f = s->rx_fifo;
1584 return segment_manager_make_segment_handle (f->segment_manager,
1585 f->segment_index);
1586}
1587
Florin Coras371ca502018-02-21 12:07:41 -08001588/* *INDENT-OFF* */
1589static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1590 session_tx_fifo_peek_and_snd,
1591 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001592 session_tx_fifo_dequeue_internal,
1593 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001594};
1595/* *INDENT-ON* */
1596
Florin Coras561af9b2017-12-09 10:19:43 -08001597void
1598session_register_transport (transport_proto_t transport_proto,
1599 const transport_proto_vft_t * vft, u8 is_ip4,
1600 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001601{
Florin Coras31c99552019-03-01 13:00:58 -08001602 session_main_t *smm = &session_main;
Florin Coras561af9b2017-12-09 10:19:43 -08001603 session_type_t session_type;
1604 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001605
Florin Coras561af9b2017-12-09 10:19:43 -08001606 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1607
1608 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001609 vec_validate (smm->session_tx_fns, session_type);
1610
Florin Coras371ca502018-02-21 12:07:41 -08001611 if (output_node != ~0)
Florin Coraseb839cc2021-04-14 11:23:55 -07001612 next_index = vlib_node_add_next (vlib_get_main (),
1613 session_queue_node.index, output_node);
Florin Coras561af9b2017-12-09 10:19:43 -08001614
1615 smm->session_type_to_next[session_type] = next_index;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001616 smm->session_tx_fns[session_type] =
1617 session_tx_fns[vft->transport_options.tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001618}
1619
Florin Coras07063b82020-03-13 04:44:51 +00001620transport_proto_t
1621session_add_transport_proto (void)
1622{
1623 session_main_t *smm = &session_main;
1624 session_worker_t *wrk;
1625 u32 thread;
1626
1627 smm->last_transport_proto_type += 1;
1628
1629 for (thread = 0; thread < vec_len (smm->wrk); thread++)
1630 {
1631 wrk = session_main_get_worker (thread);
1632 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
1633 }
1634
1635 return smm->last_transport_proto_type;
1636}
1637
Florin Coras3cbc04b2017-10-02 00:18:51 -07001638transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001639session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001640{
Florin Corasade70e42017-10-14 18:56:41 -07001641 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras4edc37e2019-02-04 23:01:34 -08001642 return transport_get_connection (session_get_transport_proto (s),
1643 s->connection_index, s->thread_index);
1644 else
1645 return transport_get_listener (session_get_transport_proto (s),
1646 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001647}
1648
Aloys Augustincdb71702019-04-08 17:54:39 +02001649void
Florin Coras09d18c22019-04-24 11:10:02 -07001650session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +02001651{
1652 if (s->session_state != SESSION_STATE_LISTENING)
1653 return transport_get_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001654 s->connection_index, s->thread_index, tep,
1655 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001656 else
1657 return transport_get_listener_endpoint (session_get_transport_proto (s),
Florin Coras09d18c22019-04-24 11:10:02 -07001658 s->connection_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +02001659}
1660
Florin Coras04ae8272021-04-12 19:55:37 -07001661int
1662session_transport_attribute (session_t *s, u8 is_get,
1663 transport_endpt_attr_t *attr)
1664{
1665 if (s->session_state < SESSION_STATE_READY)
1666 return -1;
1667
1668 return transport_connection_attribute (session_get_transport_proto (s),
1669 s->connection_index, s->thread_index,
1670 is_get, attr);
1671}
1672
Florin Coras3cbc04b2017-10-02 00:18:51 -07001673transport_connection_t *
Florin Coras288eaab2019-02-03 15:26:14 -08001674listen_session_get_transport (session_t * s)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001675{
Florin Coras4edc37e2019-02-04 23:01:34 -08001676 return transport_get_listener (session_get_transport_proto (s),
1677 s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001678}
1679
Florin Corasfd542f12018-05-16 19:28:24 -07001680void
Florin Coras5484daa2020-03-27 23:55:06 +00001681session_queue_run_on_main_thread (vlib_main_t * vm)
Florin Corasfd542f12018-05-16 19:28:24 -07001682{
1683 ASSERT (vlib_get_thread_index () == 0);
Florin Coras1d2e38b2021-03-17 21:52:49 -07001684 vlib_node_set_interrupt_pending (vm, session_queue_node.index);
Florin Corasfd542f12018-05-16 19:28:24 -07001685}
1686
Dave Barach68b0fb02017-02-28 15:15:56 -05001687static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001688session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001689{
Florin Coras31c99552019-03-01 13:00:58 -08001690 session_main_t *smm = &session_main;
Florin Corase04c2992017-03-01 08:17:34 -08001691 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001692 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras31c99552019-03-01 13:00:58 -08001693 session_worker_t *wrk;
Florin Corasd5c604d2019-03-18 09:06:35 -07001694 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001695
Florin Corase10da622020-10-25 14:00:29 -07001696 /* We only initialize once and do not de-initialized on disable */
1697 if (smm->is_initialized)
1698 goto done;
1699
Dave Barach68b0fb02017-02-28 15:15:56 -05001700 num_threads = 1 /* main thread */ + vtm->n_threads;
1701
1702 if (num_threads < 1)
1703 return clib_error_return (0, "n_thread_stacks not set");
1704
Florin Coras5f56d732018-10-30 10:21:59 -07001705 /* Allocate cache line aligned worker contexts */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001706 vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001707
Dave Barachacd2a6a2017-05-16 17:41:34 -04001708 for (i = 0; i < num_threads; i++)
1709 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001710 wrk = &smm->wrk[i];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001711 wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras2062ec02019-07-15 13:15:18 -07001712 wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list);
Florin Coras60183db2019-07-20 15:53:16 -07001713 wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list);
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001714 wrk->vm = vlib_get_main_by_index (i);
Dave Barach77d98382020-04-28 18:00:21 -04001715 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001716 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras07063b82020-03-13 04:44:51 +00001717 vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type);
Florin Corasd67f1122018-05-21 17:47:40 -07001718
Florin Coras29ca16f2017-11-02 18:14:17 -04001719 if (num_threads > 1)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001720 clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
Florin Coras7da88292021-03-18 15:04:34 -07001721
1722 if (!smm->no_adaptive && smm->use_private_rx_mqs)
1723 session_wrk_enable_adaptive_mode (wrk);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001724 }
1725
Florin Corasb384b542018-01-15 01:08:33 -08001726 /* Allocate vpp event queues segment and queue */
1727 session_vpp_event_queues_allocate (smm);
1728
Florin Coras9a45bd82020-12-28 16:28:07 -08001729 /* Initialize segment manager properties */
1730 segment_manager_main_init ();
Florin Coras6cf30ad2017-04-04 23:08:23 -07001731
Florin Coras66b11312017-07-31 17:18:03 -07001732 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001733 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001734 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001735 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001736 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001737 pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001738 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001739 else
Florin Coras66b11312017-07-31 17:18:03 -07001740 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001741 int j;
1742 preallocated_sessions_per_worker =
1743 (1.1 * (f64) smm->preallocated_sessions /
1744 (f64) (num_threads - 1));
1745
1746 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001747 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001748 pool_init_fixed (smm->wrk[j].sessions,
Dave Barachb7f1faa2017-08-29 11:43:37 -04001749 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001750 }
Florin Coras66b11312017-07-31 17:18:03 -07001751 }
1752 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001753
Florin Coras04e53442017-07-16 17:12:15 -07001754 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001755 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001756 transport_init ();
Florin Corase10da622020-10-25 14:00:29 -07001757 smm->is_initialized = 1;
1758
1759done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001760
Florin Corase04c2992017-03-01 08:17:34 -08001761 smm->is_enabled = 1;
1762
Florin Coras561af9b2017-12-09 10:19:43 -08001763 /* Enable transports */
1764 transport_enable_disable (vm, 1);
Florin Coras11166672020-04-13 01:20:25 +00001765 session_debug_init ();
Srikanth Akula73570432020-04-06 19:19:49 -07001766
Dave Barach68b0fb02017-02-28 15:15:56 -05001767 return 0;
1768}
1769
Florin Corase10da622020-10-25 14:00:29 -07001770static void
1771session_manager_main_disable (vlib_main_t * vm)
1772{
1773 transport_enable_disable (vm, 0 /* is_en */ );
1774}
1775
Florin Corasa5464812017-04-19 13:00:05 -07001776void
1777session_node_enable_disable (u8 is_en)
1778{
Florin Coras1d2e38b2021-03-17 21:52:49 -07001779 u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
Florin Corasa5464812017-04-19 13:00:05 -07001780 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Coras1d2e38b2021-03-17 21:52:49 -07001781 session_main_t *sm = &session_main;
1782 vlib_main_t *vm;
1783 vlib_node_t *n;
1784 int n_vlibs, i;
Florin Corasfd542f12018-05-16 19:28:24 -07001785
Florin Coras1d2e38b2021-03-17 21:52:49 -07001786 n_vlibs = vlib_get_n_threads ();
1787 for (i = 0; i < n_vlibs; i++)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001788 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001789 vm = vlib_get_main_by_index (i);
1790 /* main thread with workers and not polling */
1791 if (i == 0 && n_vlibs > 1)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001792 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001793 vlib_node_set_state (vm, session_queue_node.index, mstate);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001794 if (is_en)
1795 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001796 vlib_node_set_state (vm, session_queue_process_node.index,
1797 state);
1798 n = vlib_get_node (vm, session_queue_process_node.index);
1799 vlib_start_process (vm, n->runtime_index);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001800 }
1801 else
1802 {
Florin Coras1d2e38b2021-03-17 21:52:49 -07001803 vlib_process_signal_event_mt (vm,
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001804 session_queue_process_node.index,
1805 SESSION_Q_PROCESS_STOP, 0);
1806 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07001807 if (!sm->poll_main)
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001808 continue;
1809 }
Florin Coras1d2e38b2021-03-17 21:52:49 -07001810 vlib_node_set_state (vm, session_queue_node.index, state);
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001811 }
Florin Coras41d5f542021-01-15 13:49:33 -08001812
Florin Coras1d2e38b2021-03-17 21:52:49 -07001813 if (sm->use_private_rx_mqs)
Florin Coras41d5f542021-01-15 13:49:33 -08001814 application_enable_rx_mqs_nodes (is_en);
Florin Corasa5464812017-04-19 13:00:05 -07001815}
1816
Florin Corase04c2992017-03-01 08:17:34 -08001817clib_error_t *
1818vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1819{
Florin Corascea194d2017-10-02 00:18:51 -07001820 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001821 if (is_en)
1822 {
Florin Coras31c99552019-03-01 13:00:58 -08001823 if (session_main.is_enabled)
Florin Corase04c2992017-03-01 08:17:34 -08001824 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001825
Florin Corascea194d2017-10-02 00:18:51 -07001826 error = session_manager_main_enable (vm);
Vladimir Kropyleva2e44512019-07-16 21:32:41 +03001827 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001828 }
1829 else
1830 {
Florin Coras31c99552019-03-01 13:00:58 -08001831 session_main.is_enabled = 0;
Florin Corase10da622020-10-25 14:00:29 -07001832 session_manager_main_disable (vm);
Florin Corasa5464812017-04-19 13:00:05 -07001833 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001834 }
1835
Florin Corascea194d2017-10-02 00:18:51 -07001836 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001837}
1838
Florin Corase04c2992017-03-01 08:17:34 -08001839clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00001840session_main_init (vlib_main_t * vm)
Florin Corase04c2992017-03-01 08:17:34 -08001841{
Florin Coras31c99552019-03-01 13:00:58 -08001842 session_main_t *smm = &session_main;
Florin Corase33c0022020-04-03 17:23:42 +00001843
1844 smm->is_enabled = 0;
1845 smm->session_enable_asap = 0;
Florin Corase92c9462020-11-25 08:44:16 -08001846 smm->poll_main = 0;
Florin Coras41d5f542021-01-15 13:49:33 -08001847 smm->use_private_rx_mqs = 0;
Florin Coras7da88292021-03-18 15:04:34 -07001848 smm->no_adaptive = 0;
David Johnsond9818dd2018-12-14 14:53:41 -05001849 smm->session_baseva = HIGH_SEGMENT_BASEVA;
Florin Corase33c0022020-04-03 17:23:42 +00001850
David Johnsond9818dd2018-12-14 14:53:41 -05001851#if (HIGH_SEGMENT_BASEVA > (4ULL << 30))
1852 smm->session_va_space_size = 128ULL << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001853 smm->evt_qs_segment_size = 64 << 20;
David Johnsond9818dd2018-12-14 14:53:41 -05001854#else
1855 smm->session_va_space_size = 128 << 20;
1856 smm->evt_qs_segment_size = 1 << 20;
1857#endif
Florin Corase33c0022020-04-03 17:23:42 +00001858
Florin Coras4b47ee22020-11-19 13:38:26 -08001859 smm->last_transport_proto_type = TRANSPORT_PROTO_DTLS;
Florin Corase33c0022020-04-03 17:23:42 +00001860
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01001861 return 0;
1862}
1863
1864static clib_error_t *
Florin Corase33c0022020-04-03 17:23:42 +00001865session_main_loop_init (vlib_main_t * vm)
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01001866{
1867 session_main_t *smm = &session_main;
1868 if (smm->session_enable_asap)
1869 {
1870 vlib_worker_thread_barrier_sync (vm);
1871 vnet_session_enable_disable (vm, 1 /* is_en */ );
1872 vlib_worker_thread_barrier_release (vm);
1873 }
Florin Corase04c2992017-03-01 08:17:34 -08001874 return 0;
1875}
1876
Florin Corase33c0022020-04-03 17:23:42 +00001877VLIB_INIT_FUNCTION (session_main_init);
1878VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init);
Dave Barach2c25a622017-06-26 11:35:07 -04001879
1880static clib_error_t *
1881session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001882{
Florin Coras31c99552019-03-01 13:00:58 -08001883 session_main_t *smm = &session_main;
Dave Barach10d8cc62017-05-30 09:30:07 -04001884 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001885 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001886
1887 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1888 {
1889 if (unformat (input, "event-queue-length %d", &nitems))
1890 {
1891 if (nitems >= 2048)
1892 smm->configured_event_queue_length = nitems;
1893 else
1894 clib_warning ("event queue length %d too small, ignored", nitems);
1895 }
Florin Coras66b11312017-07-31 17:18:03 -07001896 else if (unformat (input, "preallocated-sessions %d",
1897 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001898 ;
Florin Coras66b11312017-07-31 17:18:03 -07001899 else if (unformat (input, "v4-session-table-buckets %d",
1900 &smm->configured_v4_session_table_buckets))
1901 ;
1902 else if (unformat (input, "v4-halfopen-table-buckets %d",
1903 &smm->configured_v4_halfopen_table_buckets))
1904 ;
1905 else if (unformat (input, "v6-session-table-buckets %d",
1906 &smm->configured_v6_session_table_buckets))
1907 ;
1908 else if (unformat (input, "v6-halfopen-table-buckets %d",
1909 &smm->configured_v6_halfopen_table_buckets))
1910 ;
1911 else if (unformat (input, "v4-session-table-memory %U",
1912 unformat_memory_size, &tmp))
1913 {
1914 if (tmp >= 0x100000000)
1915 return clib_error_return (0, "memory size %llx (%lld) too large",
1916 tmp, tmp);
1917 smm->configured_v4_session_table_memory = tmp;
1918 }
1919 else if (unformat (input, "v4-halfopen-table-memory %U",
1920 unformat_memory_size, &tmp))
1921 {
1922 if (tmp >= 0x100000000)
1923 return clib_error_return (0, "memory size %llx (%lld) too large",
1924 tmp, tmp);
1925 smm->configured_v4_halfopen_table_memory = tmp;
1926 }
1927 else if (unformat (input, "v6-session-table-memory %U",
1928 unformat_memory_size, &tmp))
1929 {
1930 if (tmp >= 0x100000000)
1931 return clib_error_return (0, "memory size %llx (%lld) too large",
1932 tmp, tmp);
1933 smm->configured_v6_session_table_memory = tmp;
1934 }
1935 else if (unformat (input, "v6-halfopen-table-memory %U",
1936 unformat_memory_size, &tmp))
1937 {
1938 if (tmp >= 0x100000000)
1939 return clib_error_return (0, "memory size %llx (%lld) too large",
1940 tmp, tmp);
1941 smm->configured_v6_halfopen_table_memory = tmp;
1942 }
Florin Coras93e65802017-11-29 00:07:11 -05001943 else if (unformat (input, "local-endpoints-table-memory %U",
1944 unformat_memory_size, &tmp))
1945 {
1946 if (tmp >= 0x100000000)
1947 return clib_error_return (0, "memory size %llx (%lld) too large",
1948 tmp, tmp);
1949 smm->local_endpoints_table_memory = tmp;
1950 }
1951 else if (unformat (input, "local-endpoints-table-buckets %d",
1952 &smm->local_endpoints_table_buckets))
1953 ;
Florin Coras6c10ab22020-11-08 16:50:39 -08001954 /* Deprecated but maintained for compatibility */
Florin Corasb384b542018-01-15 01:08:33 -08001955 else if (unformat (input, "evt_qs_memfd_seg"))
Florin Coras6c10ab22020-11-08 16:50:39 -08001956 ;
Florin Corasb4c14912019-02-09 13:51:25 -08001957 else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size,
1958 &smm->evt_qs_segment_size))
1959 ;
Nathan Skrzypczak1292d192019-09-13 15:44:54 +02001960 else if (unformat (input, "enable"))
Nathan Skrzypczak31bd0352019-11-07 17:55:01 +01001961 smm->session_enable_asap = 1;
Florin Corasaae177e2020-10-12 18:39:44 -07001962 else if (unformat (input, "segment-baseva 0x%lx", &smm->session_baseva))
1963 ;
Florin Coras61ae0562020-09-02 19:10:28 -07001964 else if (unformat (input, "use-app-socket-api"))
1965 appns_sapi_enable ();
Florin Corase92c9462020-11-25 08:44:16 -08001966 else if (unformat (input, "poll-main"))
1967 smm->poll_main = 1;
Florin Coras41d5f542021-01-15 13:49:33 -08001968 else if (unformat (input, "use-private-rx-mqs"))
1969 smm->use_private_rx_mqs = 1;
Florin Coras7da88292021-03-18 15:04:34 -07001970 else if (unformat (input, "no-adaptive"))
1971 smm->no_adaptive = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001972 else
1973 return clib_error_return (0, "unknown input `%U'",
1974 format_unformat_error, input);
1975 }
1976 return 0;
1977}
1978
1979VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1980
Dave Barach68b0fb02017-02-28 15:15:56 -05001981/*
1982 * fd.io coding-style-patch-verification: ON
1983 *
1984 * Local Variables:
1985 * eval: (c-set-style "gnu")
1986 * End:
1987 */