blob: 7fe35c233c8224a95edf17a6dc755401503d7740 [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
254 tc = session_get_transport (s);
255 if (s->connection_index != tc->c_index
256 || s->thread_index != tc->thread_index || tc->s_index != si)
257 return 0;
258
259 return 1;
260}
261
Florin Coras70f26d52019-07-08 11:47:18 -0700262static void
263session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf)
264{
265 app_worker_t *app_wrk;
266
267 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
268 if (!app_wrk)
269 return;
270 app_worker_cleanup_notify (app_wrk, s, ntf);
271}
272
Florin Coraseb97e5f2018-10-15 21:35:42 -0700273void
Florin Coras288eaab2019-02-03 15:26:14 -0800274session_free_w_fifos (session_t * s)
Florin Coras568ebc72018-09-18 16:12:50 -0700275{
Florin Coras70f26d52019-07-08 11:47:18 -0700276 session_cleanup_notify (s, SESSION_CLEANUP_SESSION);
Florin Coras19223e02019-03-03 14:56:05 -0800277 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -0700278 session_free (s);
279}
280
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800281/**
282 * Cleans up session and lookup table.
283 *
284 * Transport connection must still be valid.
285 */
286static void
Florin Coras288eaab2019-02-03 15:26:14 -0800287session_delete (session_t * s)
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800288{
289 int rv;
290
291 /* Delete from the main lookup table. */
292 if ((rv = session_lookup_del_session (s)))
Florin Corasd09236d2019-08-08 17:38:26 -0700293 clib_warning ("session %u hash delete rv %d", s->session_index, rv);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800294
295 session_free_w_fifos (s);
296}
297
Florin Corasd50ff7f2020-04-16 04:30:22 +0000298void
299session_cleanup_half_open (transport_proto_t tp, session_handle_t ho_handle)
300{
301 transport_cleanup_half_open (tp, session_handle_index (ho_handle));
302}
303
304void
305session_half_open_delete_notify (transport_proto_t tp,
306 session_handle_t ho_handle)
307{
308 app_worker_t *app_wrk = app_worker_get (session_handle_data (ho_handle));
309 app_worker_del_half_open (app_wrk, tp, ho_handle);
310}
311
Andreas Schultz1a8c4372020-03-20 09:39:59 +0100312session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700313session_alloc_for_connection (transport_connection_t * tc)
314{
Florin Coras288eaab2019-02-03 15:26:14 -0800315 session_t *s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700316 u32 thread_index = tc->thread_index;
317
Florin Coras40903ac2018-06-10 14:41:23 -0700318 ASSERT (thread_index == vlib_get_thread_index ()
319 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400320
Florin Coras3cbc04b2017-10-02 00:18:51 -0700321 s = session_alloc (thread_index);
322 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Florin Corasb0f662f2018-12-27 14:51:46 -0800323 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500324
Florin Coras3cbc04b2017-10-02 00:18:51 -0700325 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500326 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500327 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700328 return s;
329}
330
Florin Coras1f152cd2017-08-18 19:28:03 -0700331/**
332 * Discards bytes from buffer chain
333 *
334 * It discards n_bytes_to_drop starting at first buffer after chain_b
335 */
336always_inline void
337session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
338 vlib_buffer_t ** chain_b,
339 u32 n_bytes_to_drop)
340{
341 vlib_buffer_t *next = *chain_b;
342 u32 to_drop = n_bytes_to_drop;
343 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
344 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
345 {
346 next = vlib_get_buffer (vm, next->next_buffer);
347 if (next->current_length > to_drop)
348 {
349 vlib_buffer_advance (next, to_drop);
350 to_drop = 0;
351 }
352 else
353 {
354 to_drop -= next->current_length;
355 next->current_length = 0;
356 }
357 }
358 *chain_b = next;
359
360 if (to_drop == 0)
361 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
362}
363
364/**
365 * Enqueue buffer chain tail
366 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700367always_inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800368session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700369 u32 offset, u8 is_in_order)
370{
371 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700372 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700373 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700374 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700375 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700376 int rv = 0;
377
Florin Coras1f152cd2017-08-18 19:28:03 -0700378 if (is_in_order && offset)
379 {
380 diff = offset - b->current_length;
381 if (diff > b->total_length_not_including_first_buffer)
382 return 0;
383 chain_b = b;
384 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
385 chain_bi = vlib_get_buffer_index (vm, chain_b);
386 }
387 else
388 chain_bi = b->next_buffer;
389
Florin Corasf6d68ed2017-05-07 19:12:02 -0700390 do
391 {
392 chain_b = vlib_get_buffer (vm, chain_bi);
393 data = vlib_buffer_get_current (chain_b);
394 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700395 if (!len)
396 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700397 if (is_in_order)
398 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700399 rv = svm_fifo_enqueue (s->rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700400 if (rv == len)
401 {
402 written += rv;
403 }
404 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700405 {
406 return (rv > 0) ? (written + rv) : written;
407 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700408 else if (rv > len)
409 {
410 written += rv;
411
412 /* written more than what was left in chain */
413 if (written > b->total_length_not_including_first_buffer)
414 return written;
415
416 /* drop the bytes that have already been delivered */
417 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
418 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700419 }
420 else
421 {
Florin Coras288eaab2019-02-03 15:26:14 -0800422 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700423 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700424 {
425 clib_warning ("failed to enqueue multi-buffer seg");
426 return -1;
427 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700428 offset += len;
429 }
430 }
431 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
432 ? chain_b->next_buffer : 0));
433
434 if (is_in_order)
435 return written;
436
437 return 0;
438}
439
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000440void
441session_fifo_tuning (session_t * s, svm_fifo_t * f,
442 session_ft_action_t act, u32 len)
443{
444 if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING)
445 {
446 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
447 app_worker_session_fifo_tuning (app_wrk, s, f, act, len);
448 if (CLIB_ASSERT_ENABLE)
449 {
450 segment_manager_t *sm;
451 sm = segment_manager_get (f->segment_manager);
Florin Corasc547e912020-12-08 17:50:45 -0800452 ASSERT (f->shr->size >= 4096);
453 ASSERT (f->shr->size <= sm->max_fifo_size);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000454 }
455 }
456}
457
Dave Barach68b0fb02017-02-28 15:15:56 -0500458/*
459 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
460 * event but on request can queue notification events for later delivery by
461 * calling stream_server_flush_enqueue_events().
462 *
463 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700464 * @param b Buffer to be enqueued
465 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 * @param queue_event Flag to indicate if peer is to be notified or if event
467 * is to be queued. The former is useful when more data is
468 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700469 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500470 * @return Number of bytes enqueued or a negative value if enqueueing failed.
471 */
472int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700473session_enqueue_stream_connection (transport_connection_t * tc,
474 vlib_buffer_t * b, u32 offset,
475 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500476{
Florin Coras288eaab2019-02-03 15:26:14 -0800477 session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700478 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500479
Florin Corascea194d2017-10-02 00:18:51 -0700480 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500481
Florin Corasf6d68ed2017-05-07 19:12:02 -0700482 if (is_in_order)
483 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700484 enqueued = svm_fifo_enqueue (s->rx_fifo,
485 b->current_length,
486 vlib_buffer_get_current (b));
Florin Coras1f152cd2017-08-18 19:28:03 -0700487 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
488 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700489 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700490 in_order_off = enqueued > b->current_length ? enqueued : 0;
491 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
492 if (rv > 0)
493 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700494 }
495 }
496 else
497 {
Florin Coras288eaab2019-02-03 15:26:14 -0800498 rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700499 b->current_length,
500 vlib_buffer_get_current (b));
501 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700502 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
503 /* if something was enqueued, report even this as success for ooo
504 * segment handling */
505 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700506 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500507
508 if (queue_event)
509 {
510 /* Queue RX event on this fifo. Eventually these will need to be flushed
511 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800512 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500513
Florin Coras31c99552019-03-01 13:00:58 -0800514 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700515 if (!(s->flags & SESSION_F_RX_EVT))
Dave Barach68b0fb02017-02-28 15:15:56 -0500516 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700517 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700518 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500519 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000520
521 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500522 }
523
Chris Lukeb2bcad62017-09-18 08:51:22 -0400524 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500525}
526
Florin Coras3cbc04b2017-10-02 00:18:51 -0700527int
Florin Coras288eaab2019-02-03 15:26:14 -0800528session_enqueue_dgram_connection (session_t * s,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700529 session_dgram_hdr_t * hdr,
530 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700531{
Florin Corasc95cfa22020-11-24 08:41:17 -0800532 int rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700533
Sirshak Das28aa5392019-02-05 01:33:33 -0600534 ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700535 >= b->current_length + sizeof (*hdr));
536
Florin Corasc95cfa22020-11-24 08:41:17 -0800537 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700538 {
Florin Corasc95cfa22020-11-24 08:41:17 -0800539 /* *INDENT-OFF* */
540 svm_fifo_seg_t segs[2] = {
541 { (u8 *) hdr, sizeof (*hdr) },
542 { vlib_buffer_get_current (b), b->current_length }
543 };
544 /* *INDENT-ON* */
545
546 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2,
547 0 /* allow_partial */ );
Florin Coras3cbc04b2017-10-02 00:18:51 -0700548 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800549 else
550 {
551 vlib_main_t *vm = vlib_get_main ();
552 svm_fifo_seg_t *segs = 0, *seg;
553 vlib_buffer_t *it = b;
554 u32 n_segs = 1;
555
556 vec_add2 (segs, seg, 1);
557 seg->data = (u8 *) hdr;
558 seg->len = sizeof (*hdr);
559 while (it)
560 {
561 vec_add2 (segs, seg, 1);
562 seg->data = vlib_buffer_get_current (it);
563 seg->len = it->current_length;
564 n_segs++;
565 if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT))
566 break;
567 it = vlib_get_buffer (vm, it->next_buffer);
568 }
569 rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs,
570 0 /* allow partial */ );
571 vec_free (segs);
572 }
573
574 if (queue_event && rv > 0)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700575 {
576 /* Queue RX event on this fifo. Eventually these will need to be flushed
577 * by calling stream_server_flush_enqueue_events () */
Florin Coras31c99552019-03-01 13:00:58 -0800578 session_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700579
Florin Coras31c99552019-03-01 13:00:58 -0800580 wrk = session_main_get_worker (s->thread_index);
Florin Corasd5c604d2019-03-18 09:06:35 -0700581 if (!(s->flags & SESSION_F_RX_EVT))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700582 {
Florin Corasd5c604d2019-03-18 09:06:35 -0700583 s->flags |= SESSION_F_RX_EVT;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700584 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700585 }
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000586
587 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700588 }
Florin Corasc95cfa22020-11-24 08:41:17 -0800589 return rv > 0 ? rv : 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700590}
591
Florin Coras93992a92017-05-24 18:03:56 -0700592int
Florin Coras31c99552019-03-01 13:00:58 -0800593session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
594 u32 offset, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500595{
Florin Coras288eaab2019-02-03 15:26:14 -0800596 session_t *s = session_get (tc->s_index, tc->thread_index);
597 return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500598}
599
600u32
Florin Coras31c99552019-03-01 13:00:58 -0800601session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
Dave Barach68b0fb02017-02-28 15:15:56 -0500602{
Florin Coras288eaab2019-02-03 15:26:14 -0800603 session_t *s = session_get (tc->s_index, tc->thread_index);
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300604 u32 rv;
605
606 rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes);
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000607 session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv);
Florin Coras0e573f52019-05-07 16:28:16 -0700608
Florin Coras2d379d82019-06-28 12:45:12 -0700609 if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes))
Florin Coras0e573f52019-05-07 16:28:16 -0700610 session_dequeue_notify (s);
611
Vladimir Kropylevf867cf12019-06-17 21:38:00 +0300612 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500613}
614
Florin Coras72b04282019-01-14 17:23:11 -0800615static inline int
Florin Coras288eaab2019-02-03 15:26:14 -0800616session_notify_subscribers (u32 app_index, session_t * s,
Florin Coras72b04282019-01-14 17:23:11 -0800617 svm_fifo_t * f, session_evt_type_t evt_type)
618{
619 app_worker_t *app_wrk;
620 application_t *app;
621 int i;
622
623 app = application_get (app_index);
624 if (!app)
625 return -1;
626
Florin Corasc547e912020-12-08 17:50:45 -0800627 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800628 {
Florin Corasc547e912020-12-08 17:50:45 -0800629 app_wrk = application_get_worker (app, f->shr->subscribers[i]);
Florin Coras72b04282019-01-14 17:23:11 -0800630 if (!app_wrk)
631 continue;
632 if (app_worker_lock_and_send_event (app_wrk, s, evt_type))
633 return -1;
634 }
635
636 return 0;
637}
638
Dave Barach68b0fb02017-02-28 15:15:56 -0500639/**
640 * Notify session peer that new data has been enqueued.
641 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700642 * @param s Stream session for which the event is to be generated.
643 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500644 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700645 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500646 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700647static inline int
Florin Coras653e43f2019-03-04 10:56:23 -0800648session_enqueue_notify_inline (session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500649{
Florin Coras72b04282019-01-14 17:23:11 -0800650 app_worker_t *app_wrk;
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200651 u32 session_index;
652 u8 n_subscribers;
653
654 session_index = s->session_index;
655 n_subscribers = svm_fifo_n_subscribers (s->rx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500656
Florin Coras72b04282019-01-14 17:23:11 -0800657 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
658 if (PREDICT_FALSE (!app_wrk))
Dave Barach818eb542017-08-02 13:56:13 -0400659 {
Florin Coras15531972018-08-12 23:50:53 -0700660 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400661 return 0;
662 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500663
Florin Corascca96182019-07-19 07:34:13 -0700664 SESSION_EVT (SESSION_EVT_ENQ, s, svm_fifo_max_dequeue_prod (s->rx_fifo));
Dave Barach68b0fb02017-02-28 15:15:56 -0500665
Florin Corasd5c604d2019-03-18 09:06:35 -0700666 s->flags &= ~SESSION_F_RX_EVT;
Florin Corasda302e42020-04-19 22:41:55 +0000667
668 /* Application didn't confirm accept yet */
669 if (PREDICT_FALSE (s->session_state == SESSION_STATE_ACCEPTING))
670 return 0;
671
Florin Coras72b04282019-01-14 17:23:11 -0800672 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800673 SESSION_IO_EVT_RX)))
Florin Coras72b04282019-01-14 17:23:11 -0800674 return -1;
675
Aloys Augustinb3b267c2019-04-09 11:25:56 +0200676 if (PREDICT_FALSE (n_subscribers))
677 {
678 s = session_get (session_index, vlib_get_thread_index ());
679 return session_notify_subscribers (app_wrk->app_index, s,
680 s->rx_fifo, SESSION_IO_EVT_RX);
681 }
Florin Coras72b04282019-01-14 17:23:11 -0800682
683 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500684}
685
Florin Coras0d60a0f2018-06-29 02:02:08 -0700686int
Florin Coras653e43f2019-03-04 10:56:23 -0800687session_enqueue_notify (session_t * s)
688{
689 return session_enqueue_notify_inline (s);
690}
691
Aloys Augustinb3392332019-08-06 16:09:01 +0200692static void
693session_enqueue_notify_rpc (void *arg)
694{
Florin Coras5d8a8062019-08-13 08:35:39 -0700695 u32 session_index = pointer_to_uword (arg);
Aloys Augustinb3392332019-08-06 16:09:01 +0200696 session_t *s;
697
Florin Coras5d8a8062019-08-13 08:35:39 -0700698 s = session_get_if_valid (session_index, vlib_get_thread_index ());
Aloys Augustinb3392332019-08-06 16:09:01 +0200699 if (!s)
700 return;
701
702 session_enqueue_notify (s);
703}
704
705/**
706 * Like session_enqueue_notify, but can be called from a thread that does not
707 * own the session.
708 */
709void
710session_enqueue_notify_thread (session_handle_t sh)
711{
712 u32 thread_index = session_thread_from_handle (sh);
Florin Coras5d8a8062019-08-13 08:35:39 -0700713 u32 session_index = session_index_from_handle (sh);
714
715 /*
716 * Pass session index (u32) as opposed to handle (u64) in case pointers
717 * are not 64-bit.
718 */
Aloys Augustinb3392332019-08-06 16:09:01 +0200719 session_send_rpc_evt_to_thread (thread_index,
Florin Coras5d8a8062019-08-13 08:35:39 -0700720 session_enqueue_notify_rpc,
721 uword_to_pointer (session_index, void *));
Aloys Augustinb3392332019-08-06 16:09:01 +0200722}
723
Florin Coras653e43f2019-03-04 10:56:23 -0800724int
Florin Coras288eaab2019-02-03 15:26:14 -0800725session_dequeue_notify (session_t * s)
Florin Coras0d60a0f2018-06-29 02:02:08 -0700726{
Florin Coras72b04282019-01-14 17:23:11 -0800727 app_worker_t *app_wrk;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700728
Vladimir Kropylev5c89fbf2019-08-30 13:04:06 +0300729 svm_fifo_clear_deq_ntf (s->tx_fifo);
730
Florin Coras72b04282019-01-14 17:23:11 -0800731 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
732 if (PREDICT_FALSE (!app_wrk))
Florin Coras208daa12018-07-02 01:30:51 -0700733 return -1;
734
Florin Coras72b04282019-01-14 17:23:11 -0800735 if (PREDICT_FALSE (app_worker_lock_and_send_event (app_wrk, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800736 SESSION_IO_EVT_TX)))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800737 return -1;
738
Florin Corasc547e912020-12-08 17:50:45 -0800739 if (PREDICT_FALSE (s->tx_fifo->shr->n_subscribers))
Florin Coras72b04282019-01-14 17:23:11 -0800740 return session_notify_subscribers (app_wrk->app_index, s,
Florin Corasf6c43132019-03-01 12:41:21 -0800741 s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras72b04282019-01-14 17:23:11 -0800742
Florin Coras1bcad5c2019-01-09 20:04:38 -0800743 return 0;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700744}
745
Dave Barach68b0fb02017-02-28 15:15:56 -0500746/**
747 * Flushes queue of sessions that are to be notified of new data
748 * enqueued events.
749 *
750 * @param thread_index Thread index for which the flush is to be performed.
751 * @return 0 on success or a positive number indicating the number of
752 * failures due to API queue being full.
753 */
754int
Florin Coras31c99552019-03-01 13:00:58 -0800755session_main_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500756{
Florin Coras31c99552019-03-01 13:00:58 -0800757 session_worker_t *wrk = session_main_get_worker (thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800758 session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700759 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700760 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500761
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700762 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500763
Florin Coras3cbc04b2017-10-02 00:18:51 -0700764 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500765 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700766 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700767 if (PREDICT_FALSE (!s))
768 {
769 errors++;
770 continue;
771 }
Florin Coras653e43f2019-03-04 10:56:23 -0800772
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000773 session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED,
774 0 /* TODO/not needed */ );
775
Florin Coras653e43f2019-03-04 10:56:23 -0800776 if (PREDICT_FALSE (session_enqueue_notify_inline (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700777 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 }
779
Florin Coras3cbc04b2017-10-02 00:18:51 -0700780 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700781 wrk->session_to_enqueue[transport_proto] = indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500782
783 return errors;
784}
785
Florin Coras7fb0fe12018-04-09 09:24:52 -0700786int
Florin Coras31c99552019-03-01 13:00:58 -0800787session_main_flush_all_enqueue_events (u8 transport_proto)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700788{
789 vlib_thread_main_t *vtm = vlib_get_thread_main ();
790 int i, errors = 0;
791 for (i = 0; i < 1 + vtm->n_threads; i++)
Florin Coras31c99552019-03-01 13:00:58 -0800792 errors += session_main_flush_enqueue_events (transport_proto, i);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700793 return errors;
794}
795
Florin Coras4fde4ae2020-04-13 16:48:04 +0000796int
797session_stream_connect_notify (transport_connection_t * tc,
798 session_error_t err)
Dave Barach68b0fb02017-02-28 15:15:56 -0500799{
Florin Corasd50ff7f2020-04-16 04:30:22 +0000800 session_handle_t ho_handle, wrk_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800801 u32 opaque = 0, new_ti, new_si;
Florin Coras15531972018-08-12 23:50:53 -0700802 app_worker_t *app_wrk;
Florin Corasa27a46e2019-02-18 13:02:28 -0800803 session_t *s = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500804
Florin Coras3cbc04b2017-10-02 00:18:51 -0700805 /*
806 * Find connection handle and cleanup half-open table
807 */
Florin Corasa27a46e2019-02-18 13:02:28 -0800808 ho_handle = session_lookup_half_open_handle (tc);
809 if (ho_handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 {
Florin Corascea194d2017-10-02 00:18:51 -0700811 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700812 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500813 }
Florin Corascea194d2017-10-02 00:18:51 -0700814 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400815
Florin Corasab0289a2017-08-14 11:25:25 -0700816 /* Get the app's index from the handle we stored when opening connection
817 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400818 * index */
Florin Corasd50ff7f2020-04-16 04:30:22 +0000819 app_wrk = app_worker_get_if_valid (session_handle_data (ho_handle));
Florin Coras15531972018-08-12 23:50:53 -0700820 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700821 return -1;
Florin Corasa27a46e2019-02-18 13:02:28 -0800822
Florin Corasd50ff7f2020-04-16 04:30:22 +0000823 wrk_handle = app_worker_lookup_half_open (app_wrk, tc->proto, ho_handle);
824 if (wrk_handle == SESSION_INVALID_HANDLE)
825 return -1;
826
827 /* Make sure this is the same half-open index */
828 if (session_handle_index (wrk_handle) != session_handle_index (ho_handle))
829 return -1;
830
831 opaque = session_handle_data (wrk_handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500832
Florin Coras00e01d32019-10-21 16:07:46 -0700833 if (err)
834 return app_worker_connect_notify (app_wrk, s, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800835
836 s = session_alloc_for_connection (tc);
837 s->session_state = SESSION_STATE_CONNECTING;
838 s->app_wrk_index = app_wrk->wrk_index;
839 new_si = s->session_index;
840 new_ti = s->thread_index;
841
Florin Coras00e01d32019-10-21 16:07:46 -0700842 if ((err = app_worker_init_connected (app_wrk, s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500843 {
Florin Corasa27a46e2019-02-18 13:02:28 -0800844 session_free (s);
Florin Coras00e01d32019-10-21 16:07:46 -0700845 app_worker_connect_notify (app_wrk, 0, err, opaque);
Florin Corasa27a46e2019-02-18 13:02:28 -0800846 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 }
848
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200849 s = session_get (new_si, new_ti);
Florin Coras4fde4ae2020-04-13 16:48:04 +0000850 s->session_state = SESSION_STATE_READY;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200851 session_lookup_add_connection (tc, session_handle (s));
852
Florin Coras00e01d32019-10-21 16:07:46 -0700853 if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque))
Florin Coras6534b7a2017-07-18 05:38:03 -0400854 {
Florin Corasc7fd24e2020-07-24 10:09:07 -0700855 session_lookup_del_connection (tc);
856 /* Avoid notifying app about rejected session cleanup */
Florin Corasa27a46e2019-02-18 13:02:28 -0800857 s = session_get (new_si, new_ti);
Florin Corasc7fd24e2020-07-24 10:09:07 -0700858 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
859 session_free (s);
Florin Corasa27a46e2019-02-18 13:02:28 -0800860 return -1;
Florin Coras6534b7a2017-07-18 05:38:03 -0400861 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500862
Florin Corasa27a46e2019-02-18 13:02:28 -0800863 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500864}
865
Florin Coras6d7552c2020-04-09 01:49:45 +0000866static void
867session_switch_pool_reply (void *arg)
868{
869 u32 session_index = pointer_to_uword (arg);
Florin Coras6d7552c2020-04-09 01:49:45 +0000870 session_t *s;
871
872 s = session_get_if_valid (session_index, vlib_get_thread_index ());
873 if (!s)
874 return;
875
Florin Coras6d7552c2020-04-09 01:49:45 +0000876 /* Notify app that it has data on the new session */
877 session_enqueue_notify (s);
878}
879
Florin Coras3cbc04b2017-10-02 00:18:51 -0700880typedef struct _session_switch_pool_args
881{
882 u32 session_index;
883 u32 thread_index;
884 u32 new_thread_index;
885 u32 new_session_index;
886} session_switch_pool_args_t;
887
Florin Coras49568af2019-07-31 16:46:24 -0700888/**
889 * Notify old thread of the session pool switch
890 */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700891static void
892session_switch_pool (void *cb_args)
893{
894 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras6d7552c2020-04-09 01:49:45 +0000895 session_handle_t new_sh;
896 segment_manager_t *sm;
Florin Coras49568af2019-07-31 16:46:24 -0700897 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800898 session_t *s;
Florin Coras6d7552c2020-04-09 01:49:45 +0000899 void *rargs;
Florin Coras49568af2019-07-31 16:46:24 -0700900
Florin Coras3cbc04b2017-10-02 00:18:51 -0700901 ASSERT (args->thread_index == vlib_get_thread_index ());
902 s = session_get (args->session_index, args->thread_index);
Florin Coras6d7552c2020-04-09 01:49:45 +0000903
Florin Coras1ee78302019-02-05 15:51:15 -0800904 transport_cleanup (session_get_transport_proto (s), s->connection_index,
905 s->thread_index);
Florin Coras49568af2019-07-31 16:46:24 -0700906
Florin Coras6d7552c2020-04-09 01:49:45 +0000907 new_sh = session_make_handle (args->new_session_index,
908 args->new_thread_index);
909
Florin Coras49568af2019-07-31 16:46:24 -0700910 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
911 if (app_wrk)
912 {
Florin Coras6d7552c2020-04-09 01:49:45 +0000913 /* Cleanup fifo segment slice state for fifos */
914 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras0bc78d82021-01-09 14:34:01 -0800915 segment_manager_detach_fifo (sm, &s->rx_fifo);
916 segment_manager_detach_fifo (sm, &s->tx_fifo);
Aloys Augustinb3392332019-08-06 16:09:01 +0200917
Florin Coras6d7552c2020-04-09 01:49:45 +0000918 /* Notify app, using old session, about the migration event */
919 app_worker_migrate_notify (app_wrk, s, new_sh);
Florin Coras49568af2019-07-31 16:46:24 -0700920 }
921
Florin Coras6d7552c2020-04-09 01:49:45 +0000922 /* Trigger app read and fifo updates on the new thread */
923 rargs = uword_to_pointer (args->new_session_index, void *);
924 session_send_rpc_evt_to_thread (args->new_thread_index,
925 session_switch_pool_reply, rargs);
926
Florin Coras3cbc04b2017-10-02 00:18:51 -0700927 session_free (s);
928 clib_mem_free (cb_args);
929}
930
931/**
932 * Move dgram session to the right thread
933 */
934int
935session_dgram_connect_notify (transport_connection_t * tc,
Florin Coras288eaab2019-02-03 15:26:14 -0800936 u32 old_thread_index, session_t ** new_session)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700937{
Florin Coras288eaab2019-02-03 15:26:14 -0800938 session_t *new_s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700939 session_switch_pool_args_t *rpc_args;
Florin Coras0bc78d82021-01-09 14:34:01 -0800940 segment_manager_t *sm;
941 app_worker_t *app_wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700942
943 /*
944 * Clone half-open session to the right thread.
945 */
946 new_s = session_clone_safe (tc->s_index, old_thread_index);
947 new_s->connection_index = tc->c_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700948 new_s->session_state = SESSION_STATE_READY;
Nathan Skrzypczakcaa7acf2019-10-02 10:02:05 +0200949 new_s->flags |= SESSION_F_IS_MIGRATING;
Florin Coras6d7552c2020-04-09 01:49:45 +0000950
Florin Coras0bc78d82021-01-09 14:34:01 -0800951 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
952 session_lookup_add_connection (tc, session_handle (new_s));
953
954 app_wrk = app_worker_get_if_valid (new_s->app_wrk_index);
955 if (app_wrk)
956 {
957 /* New set of fifos attached to the same shared memory */
958 sm = app_worker_get_connect_segment_manager (app_wrk);
959 segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s);
960 segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s);
961 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700962
963 /*
964 * Ask thread owning the old session to clean it up and make us the tx
965 * fifo owner
966 */
967 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
968 rpc_args->new_session_index = new_s->session_index;
969 rpc_args->new_thread_index = new_s->thread_index;
970 rpc_args->session_index = tc->s_index;
971 rpc_args->thread_index = old_thread_index;
972 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
973 rpc_args);
974
975 tc->s_index = new_s->session_index;
976 new_s->connection_index = tc->c_index;
977 *new_session = new_s;
978 return 0;
979}
980
Dave Barach68b0fb02017-02-28 15:15:56 -0500981/**
982 * Notification from transport that connection is being closed.
983 *
984 * A disconnect is sent to application but state is not removed. Once
985 * disconnect is acknowledged by application, session disconnect is called.
986 * Ultimately this leads to close being called on transport (passive close).
987 */
988void
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800989session_transport_closing_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500990{
Florin Coras15531972018-08-12 23:50:53 -0700991 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800992 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500993
Florin Corascea194d2017-10-02 00:18:51 -0700994 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -0700995 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
996 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700997 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Corasbf7ce2c2019-03-06 14:44:42 -0800998 app_wrk = app_worker_get (s->app_wrk_index);
999 app_worker_close_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001000}
1001
1002/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001003 * Notification from transport that connection is being deleted
1004 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001005 * This removes the session if it is still valid. It should be called only on
1006 * previously fully established sessions. For instance failed connects should
1007 * call stream_session_connect_notify and indicate that the connect has
1008 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001009 */
1010void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001011session_transport_delete_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001012{
Florin Coras288eaab2019-02-03 15:26:14 -08001013 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001014
Florin Corase04c2992017-03-01 08:17:34 -08001015 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -07001016 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -07001017 return;
Florin Coras568ebc72018-09-18 16:12:50 -07001018
Florin Coras568ebc72018-09-18 16:12:50 -07001019 switch (s->session_state)
1020 {
Florin Coras222e1f412019-02-16 20:47:32 -08001021 case SESSION_STATE_CREATED:
1022 /* Session was created but accept notification was not yet sent to the
1023 * app. Cleanup everything. */
1024 session_lookup_del_session (s);
Zeyu Zhangcbbc4a22019-10-12 14:21:59 +08001025 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1026 session_free (s);
Florin Coras222e1f412019-02-16 20:47:32 -08001027 break;
Florin Corasb0f662f2018-12-27 14:51:46 -08001028 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -07001029 case SESSION_STATE_TRANSPORT_CLOSING:
Florin Coras692b9492019-07-12 15:01:53 -07001030 case SESSION_STATE_CLOSING:
Florin Coras5f066322019-07-22 19:03:03 -07001031 case SESSION_STATE_TRANSPORT_CLOSED:
Florin Coras568ebc72018-09-18 16:12:50 -07001032 /* If transport finishes or times out before we get a reply
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001033 * from the app, mark transport as closed and wait for reply
1034 * before removing the session. Cleanup session table in advance
Florin Corasa9d5bea2018-12-17 08:24:19 -08001035 * because transport will soon be closed and closed sessions
1036 * are assumed to have been removed from the lookup table */
1037 session_lookup_del_session (s);
Florin Coras5f066322019-07-22 19:03:03 -07001038 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001039 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1040 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras568ebc72018-09-18 16:12:50 -07001041 break;
Florin Coras692b9492019-07-12 15:01:53 -07001042 case SESSION_STATE_APP_CLOSED:
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001043 /* Cleanup lookup table as transport needs to still be valid.
1044 * Program transport close to ensure that all session events
1045 * have been cleaned up. Once transport close is called, the
1046 * session is just removed because both transport and app have
1047 * confirmed the close*/
Florin Coras568ebc72018-09-18 16:12:50 -07001048 session_lookup_del_session (s);
Florin Coras3b5e2222019-10-25 16:23:39 -07001049 s->session_state = SESSION_STATE_TRANSPORT_DELETED;
Florin Coras70f26d52019-07-08 11:47:18 -07001050 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
1051 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Corasdfb3b872019-08-16 17:48:44 -07001052 session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE);
Florin Coras568ebc72018-09-18 16:12:50 -07001053 break;
Florin Coras5f066322019-07-22 19:03:03 -07001054 case SESSION_STATE_TRANSPORT_DELETED:
Florin Corasb0f662f2018-12-27 14:51:46 -08001055 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001056 case SESSION_STATE_CLOSED:
Florin Coras70f26d52019-07-08 11:47:18 -07001057 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001058 session_delete (s);
Florin Coras568ebc72018-09-18 16:12:50 -07001059 break;
Florin Corasc01d5782018-10-17 14:53:11 -07001060 default:
Florin Corasb0f662f2018-12-27 14:51:46 -08001061 clib_warning ("session state %u", s->session_state);
Florin Coras70f26d52019-07-08 11:47:18 -07001062 session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001063 session_delete (s);
Florin Corasc01d5782018-10-17 14:53:11 -07001064 break;
Florin Coras568ebc72018-09-18 16:12:50 -07001065 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001066}
1067
1068/**
Florin Coras692b9492019-07-12 15:01:53 -07001069 * Notification from transport that it is closed
Florin Coras54ddf432018-12-21 13:54:09 -08001070 *
Florin Coras692b9492019-07-12 15:01:53 -07001071 * Should be called by transport, prior to calling delete notify, once it
1072 * knows that no more data will be exchanged. This could serve as an
1073 * early acknowledgment of an active close especially if transport delete
1074 * can be delayed a long time, e.g., tcp time-wait.
Florin Coras54ddf432018-12-21 13:54:09 -08001075 */
1076void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001077session_transport_closed_notify (transport_connection_t * tc)
Florin Coras54ddf432018-12-21 13:54:09 -08001078{
Florin Coras692b9492019-07-12 15:01:53 -07001079 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -08001080 session_t *s;
Florin Coras54ddf432018-12-21 13:54:09 -08001081
1082 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
1083 return;
Florin Corasb0f662f2018-12-27 14:51:46 -08001084
Florin Coras06a2eec2019-05-23 22:28:16 -07001085 /* Transport thinks that app requested close but it actually didn't.
1086 * Can happen for tcp if fin and rst are received in close succession. */
1087 if (s->session_state == SESSION_STATE_READY)
1088 {
1089 session_transport_closing_notify (tc);
1090 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras692b9492019-07-12 15:01:53 -07001091 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
Florin Coras06a2eec2019-05-23 22:28:16 -07001092 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001093 /* If app close has not been received or has not yet resulted in
1094 * a transport close, only mark the session transport as closed */
Florin Coras06a2eec2019-05-23 22:28:16 -07001095 else if (s->session_state <= SESSION_STATE_CLOSING)
Florin Corasb0f662f2018-12-27 14:51:46 -08001096 {
Florin Corasb0f662f2018-12-27 14:51:46 -08001097 s->session_state = SESSION_STATE_TRANSPORT_CLOSED;
1098 }
Florin Coras5f066322019-07-22 19:03:03 -07001099 /* If app also closed, switch to closed */
1100 else if (s->session_state == SESSION_STATE_APP_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001101 s->session_state = SESSION_STATE_CLOSED;
Florin Coras692b9492019-07-12 15:01:53 -07001102
1103 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1104 if (app_wrk)
1105 app_worker_transport_closed_notify (app_wrk, s);
Florin Coras54ddf432018-12-21 13:54:09 -08001106}
1107
1108/**
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 * Notify application that connection has been reset.
1110 */
1111void
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001112session_transport_reset_notify (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001113{
Florin Coras15531972018-08-12 23:50:53 -07001114 app_worker_t *app_wrk;
Florin Coras69b68ef2019-04-02 11:38:51 -07001115 session_t *s;
1116
Florin Corascea194d2017-10-02 00:18:51 -07001117 s = session_get (tc->s_index, tc->thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -08001118 svm_fifo_dequeue_drop_all (s->tx_fifo);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001119 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
1120 return;
1121 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -07001122 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras69b68ef2019-04-02 11:38:51 -07001123 app_worker_reset_notify (app_wrk, s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001124}
1125
Florin Corasa27a46e2019-02-18 13:02:28 -08001126int
1127session_stream_accept_notify (transport_connection_t * tc)
1128{
1129 app_worker_t *app_wrk;
1130 session_t *s;
1131
1132 s = session_get (tc->s_index, tc->thread_index);
1133 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
1134 if (!app_wrk)
1135 return -1;
Florin Coras600d7a82021-04-29 11:55:23 -07001136 if (s->session_state != SESSION_STATE_CREATED)
1137 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001138 s->session_state = SESSION_STATE_ACCEPTING;
Florin Coras4dc10a42020-02-11 05:31:49 +00001139 if (app_worker_accept_notify (app_wrk, s))
1140 {
1141 /* On transport delete, no notifications should be sent. Unless, the
1142 * accept is retried and successful. */
1143 s->session_state = SESSION_STATE_CREATED;
1144 return -1;
1145 }
1146 return 0;
Florin Corasa27a46e2019-02-18 13:02:28 -08001147}
1148
Dave Barach68b0fb02017-02-28 15:15:56 -05001149/**
1150 * Accept a stream session. Optionally ping the server by callback.
1151 */
1152int
Florin Corasc9940fc2019-02-05 20:55:11 -08001153session_stream_accept (transport_connection_t * tc, u32 listener_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001154 u32 thread_index, u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -05001155{
Florin Corasa27a46e2019-02-18 13:02:28 -08001156 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001157 int rv;
1158
Florin Corasa27a46e2019-02-18 13:02:28 -08001159 s = session_alloc_for_connection (tc);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02001160 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
Florin Coras222e1f412019-02-16 20:47:32 -08001161 s->session_state = SESSION_STATE_CREATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001162
Florin Corasa27a46e2019-02-18 13:02:28 -08001163 if ((rv = app_worker_init_accepted (s)))
Florin Coras12813d52020-04-09 20:59:20 +00001164 {
1165 session_free (s);
1166 return rv;
1167 }
Florin Corasa27a46e2019-02-18 13:02:28 -08001168
1169 session_lookup_add_connection (tc, session_handle (s));
1170
Dave Barach68b0fb02017-02-28 15:15:56 -05001171 /* Shoulder-tap the server */
1172 if (notify)
1173 {
Florin Corasa27a46e2019-02-18 13:02:28 -08001174 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras12813d52020-04-09 20:59:20 +00001175 if ((rv = app_worker_accept_notify (app_wrk, s)))
1176 {
1177 session_lookup_del_session (s);
1178 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1179 session_free (s);
1180 return rv;
1181 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001182 }
1183
1184 return 0;
1185}
1186
Florin Coras371ca502018-02-21 12:07:41 -08001187int
Florin Corase759bb52020-04-08 01:55:39 +00001188session_dgram_accept (transport_connection_t * tc, u32 listener_index,
1189 u32 thread_index)
1190{
1191 app_worker_t *app_wrk;
1192 session_t *s;
1193 int rv;
1194
1195 s = session_alloc_for_connection (tc);
1196 s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index;
1197
1198 if ((rv = app_worker_init_accepted (s)))
1199 {
1200 session_free (s);
1201 return rv;
1202 }
1203
Florin Coras473556d2020-11-23 15:59:36 -08001204 session_lookup_add_connection (tc, session_handle (s));
1205
Florin Corase759bb52020-04-08 01:55:39 +00001206 app_wrk = app_worker_get (s->app_wrk_index);
1207 if ((rv = app_worker_accept_notify (app_wrk, s)))
1208 {
Florin Coras473556d2020-11-23 15:59:36 -08001209 session_lookup_del_session (s);
Florin Coras12813d52020-04-09 20:59:20 +00001210 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
1211 session_free (s);
Florin Corase759bb52020-04-08 01:55:39 +00001212 return rv;
1213 }
1214
1215 s->session_state = SESSION_STATE_READY;
Florin Corase759bb52020-04-08 01:55:39 +00001216
1217 return 0;
1218}
1219
1220int
Florin Coras15531972018-08-12 23:50:53 -07001221session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -08001222{
1223 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001224 transport_endpoint_cfg_t *tep;
Florin Coras15531972018-08-12 23:50:53 -07001225 app_worker_t *app_wrk;
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001226 session_handle_t sh;
Florin Coras288eaab2019-02-03 15:26:14 -08001227 session_t *s;
Florin Coras371ca502018-02-21 12:07:41 -08001228 int rv;
1229
Florin Coras5665ced2018-10-25 18:03:45 -07001230 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001231 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001232 if (rv < 0)
1233 {
1234 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001235 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001236 }
1237
Florin Coras1ee78302019-02-05 15:51:15 -08001238 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001239
Florin Corasa27a46e2019-02-18 13:02:28 -08001240 /* For dgram type of service, allocate session and fifos now */
Florin Coras15531972018-08-12 23:50:53 -07001241 app_wrk = app_worker_get (app_wrk_index);
Florin Corasa27a46e2019-02-18 13:02:28 -08001242 s = session_alloc_for_connection (tc);
Florin Coras15531972018-08-12 23:50:53 -07001243 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001244 s->session_state = SESSION_STATE_OPENED;
Florin Corasa27a46e2019-02-18 13:02:28 -08001245 if (app_worker_init_connected (app_wrk, s))
1246 {
1247 session_free (s);
1248 return -1;
1249 }
Florin Coras371ca502018-02-21 12:07:41 -08001250
Aloys Augustin20ab31e2019-03-25 11:29:17 +01001251 sh = session_handle (s);
1252 session_lookup_add_connection (tc, sh);
Florin Coras00e01d32019-10-21 16:07:46 -07001253 return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque);
Florin Coras371ca502018-02-21 12:07:41 -08001254}
1255
1256int
Florin Coras15531972018-08-12 23:50:53 -07001257session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -08001258{
1259 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -07001260 transport_endpoint_cfg_t *tep;
Florin Corasd50ff7f2020-04-16 04:30:22 +00001261 u64 handle, wrk_handle;
Florin Coras371ca502018-02-21 12:07:41 -08001262 int rv;
1263
Florin Coras5665ced2018-10-25 18:03:45 -07001264 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras1ee78302019-02-05 15:51:15 -08001265 rv = transport_connect (rmt->transport_proto, tep);
Florin Coras371ca502018-02-21 12:07:41 -08001266 if (rv < 0)
1267 {
1268 SESSION_DBG ("Transport failed to open connection.");
Florin Coras57660d92020-04-04 22:45:34 +00001269 return rv;
Florin Coras371ca502018-02-21 12:07:41 -08001270 }
1271
Florin Coras1ee78302019-02-05 15:51:15 -08001272 tc = transport_get_half_open (rmt->transport_proto, (u32) rv);
Florin Coras371ca502018-02-21 12:07:41 -08001273
1274 /* If transport offers a stream service, only allocate session once the
1275 * connection has been established.
1276 * Add connection to half-open table and save app and tc index. The
1277 * latter is needed to help establish the connection while the former
1278 * is needed when the connect notify comes and we have to notify the
1279 * external app
1280 */
Florin Corasd50ff7f2020-04-16 04:30:22 +00001281 handle = session_make_handle (tc->c_index, app_wrk_index);
Florin Coras371ca502018-02-21 12:07:41 -08001282 session_lookup_add_half_open (tc, handle);
1283
Florin Corasd50ff7f2020-04-16 04:30:22 +00001284 /* Store the half-open handle in the connection. Transport will use it
1285 * when cleaning up @ref session_half_open_delete_notify
Florin Coras371ca502018-02-21 12:07:41 -08001286 */
Florin Corasd50ff7f2020-04-16 04:30:22 +00001287 tc->s_ho_handle = handle;
1288
1289 /* Track the half-open connections in case we want to forcefully
1290 * clean them up @ref session_cleanup_half_open
1291 */
1292 wrk_handle = session_make_handle (tc->c_index, opaque);
1293 app_worker_add_half_open (app_worker_get (app_wrk_index),
1294 rmt->transport_proto, handle, wrk_handle);
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 */