blob: 897cb1a5a1e661382bf28b21a899fac7b358103f [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/**
16 * @file
17 * @brief Session and session manager
18 */
19
20#include <vnet/session/session.h>
Florin Coras04e53442017-07-16 17:12:15 -070021#include <vnet/session/session_debug.h>
22#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023#include <vlibmemory/api.h>
24#include <vnet/dpo/load_balance.h>
25#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27session_manager_main_t session_manager_main;
Florin Coras04e53442017-07-16 17:12:15 -070028extern transport_proto_vft_t *tp_vfts;
Florin Coras3eb50622017-07-13 01:24:57 -040029
Florin Coras3c2fed52018-07-04 04:15:05 -070030static inline int
31session_send_evt_to_thread (void *data, void *args, u32 thread_index,
32 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070033{
Florin Coras52207f12018-07-12 14:48:06 -070034 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070035 svm_msg_q_msg_t msg;
36 svm_msg_q_t *mq;
Florin Corasb2371c22018-05-31 17:14:10 -070037 u32 tries = 0, max_tries;
Florin Coras3cbc04b2017-10-02 00:18:51 -070038
Florin Coras3c2fed52018-07-04 04:15:05 -070039 mq = session_manager_get_vpp_event_queue (thread_index);
40 while (svm_msg_q_try_lock (mq))
Florin Coras3cbc04b2017-10-02 00:18:51 -070041 {
Florin Corasb2371c22018-05-31 17:14:10 -070042 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
43 if (tries++ == max_tries)
Florin Coras3cbc04b2017-10-02 00:18:51 -070044 {
45 SESSION_DBG ("failed to enqueue evt");
Florin Coras3c2fed52018-07-04 04:15:05 -070046 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -070047 }
48 }
Florin Coras3c2fed52018-07-04 04:15:05 -070049 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
50 {
51 svm_msg_q_unlock (mq);
52 return -2;
53 }
54 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
55 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
56 {
57 svm_msg_q_unlock (mq);
58 return -2;
59 }
Florin Coras52207f12018-07-12 14:48:06 -070060 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070061 evt->event_type = evt_type;
62 switch (evt_type)
63 {
64 case FIFO_EVENT_RPC:
65 evt->rpc_args.fp = data;
66 evt->rpc_args.arg = args;
67 break;
68 case FIFO_EVENT_APP_TX:
69 case FIFO_EVENT_BUILTIN_RX:
70 evt->fifo = data;
71 break;
72 case FIFO_EVENT_DISCONNECT:
73 evt->session_handle = session_handle ((stream_session_t *) data);
74 break;
75 default:
76 clib_warning ("evt unhandled!");
77 svm_msg_q_unlock (mq);
78 return -1;
79 }
80
Florin Coras52207f12018-07-12 14:48:06 -070081 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070082 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070083}
84
Florin Coras3c2fed52018-07-04 04:15:05 -070085int
86session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070087{
Florin Coras3c2fed52018-07-04 04:15:05 -070088 return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
89}
90
91int
92session_send_io_evt_to_thread_custom (svm_fifo_t * f, u32 thread_index,
93 session_evt_type_t evt_type)
94{
95 return session_send_evt_to_thread (f, 0, thread_index, evt_type);
96}
97
98int
99session_send_ctrl_evt_to_thread (stream_session_t * s,
100 session_evt_type_t evt_type)
101{
102 /* only event supported for now is disconnect */
103 ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
104 return session_send_evt_to_thread (s, 0, s->thread_index,
105 FIFO_EVENT_DISCONNECT);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700106}
107
108void
109session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
110{
111 if (thread_index != vlib_get_thread_index ())
Florin Coras3c2fed52018-07-04 04:15:05 -0700112 session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700113 else
114 {
115 void (*fnp) (void *) = fp;
116 fnp (rpc_args);
117 }
118}
119
120stream_session_t *
121session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500122{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700123 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700124 stream_session_t *s;
125 u8 will_expand = 0;
126 pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
127 CLIB_CACHE_LINE_BYTES);
128 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800129 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700130 {
Florin Coras84a30ef2018-01-24 10:49:23 -0800131 clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700132 pool_get_aligned (session_manager_main.sessions[thread_index], s,
133 CLIB_CACHE_LINE_BYTES);
Florin Coras84a30ef2018-01-24 10:49:23 -0800134 clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700135 }
136 else
137 {
138 pool_get_aligned (session_manager_main.sessions[thread_index], s,
139 CLIB_CACHE_LINE_BYTES);
140 }
141 memset (s, 0, sizeof (*s));
142 s->session_index = s - session_manager_main.sessions[thread_index];
143 s->thread_index = thread_index;
144 return s;
145}
146
Florin Coras371ca502018-02-21 12:07:41 -0800147void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700148session_free (stream_session_t * s)
149{
150 pool_put (session_manager_main.sessions[s->thread_index], s);
151 if (CLIB_DEBUG)
152 memset (s, 0xFA, sizeof (*s));
153}
154
Florin Coras371ca502018-02-21 12:07:41 -0800155int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700156session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
157{
Dave Barach68b0fb02017-02-28 15:15:56 -0500158 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
159 u32 fifo_segment_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700160 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500161
Florin Coras3cbc04b2017-10-02 00:18:51 -0700162 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
163 &server_tx_fifo,
164 &fifo_segment_index)))
165 return rv;
166 /* Initialize backpointers */
167 server_rx_fifo->master_session_index = s->session_index;
168 server_rx_fifo->master_thread_index = s->thread_index;
169
170 server_tx_fifo->master_session_index = s->session_index;
171 server_tx_fifo->master_thread_index = s->thread_index;
172
173 s->server_rx_fifo = server_rx_fifo;
174 s->server_tx_fifo = server_tx_fifo;
175 s->svm_segment_index = fifo_segment_index;
176 return 0;
177}
178
179static stream_session_t *
180session_alloc_for_connection (transport_connection_t * tc)
181{
182 stream_session_t *s;
183 u32 thread_index = tc->thread_index;
184
Florin Coras40903ac2018-06-10 14:41:23 -0700185 ASSERT (thread_index == vlib_get_thread_index ()
186 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400187
Florin Coras3cbc04b2017-10-02 00:18:51 -0700188 s = session_alloc (thread_index);
189 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500190 s->session_state = SESSION_STATE_CONNECTING;
Andreas Schultzc1214bd2017-12-08 15:12:36 +0100191 s->enqueue_epoch = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500192
Florin Coras3cbc04b2017-10-02 00:18:51 -0700193 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500195 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700196 return s;
197}
198
199static int
200session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
201 u8 alloc_fifos, stream_session_t ** ret_s)
202{
203 stream_session_t *s;
204 int rv;
205
206 s = session_alloc_for_connection (tc);
207 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
208 {
209 session_free (s);
Florin Coras29ca16f2017-11-02 18:14:17 -0400210 *ret_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700211 return rv;
212 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500213
214 /* Add to the main lookup table */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700215 session_lookup_add_connection (tc, session_handle (s));
Dave Barach68b0fb02017-02-28 15:15:56 -0500216
217 *ret_s = s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 return 0;
219}
220
Florin Coras1f152cd2017-08-18 19:28:03 -0700221/**
222 * Discards bytes from buffer chain
223 *
224 * It discards n_bytes_to_drop starting at first buffer after chain_b
225 */
226always_inline void
227session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
228 vlib_buffer_t ** chain_b,
229 u32 n_bytes_to_drop)
230{
231 vlib_buffer_t *next = *chain_b;
232 u32 to_drop = n_bytes_to_drop;
233 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
234 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
235 {
236 next = vlib_get_buffer (vm, next->next_buffer);
237 if (next->current_length > to_drop)
238 {
239 vlib_buffer_advance (next, to_drop);
240 to_drop = 0;
241 }
242 else
243 {
244 to_drop -= next->current_length;
245 next->current_length = 0;
246 }
247 }
248 *chain_b = next;
249
250 if (to_drop == 0)
251 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
252}
253
254/**
255 * Enqueue buffer chain tail
256 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700257always_inline int
258session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
259 u32 offset, u8 is_in_order)
260{
261 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700262 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700263 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700264 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700265 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700266 int rv = 0;
267
Florin Coras1f152cd2017-08-18 19:28:03 -0700268 if (is_in_order && offset)
269 {
270 diff = offset - b->current_length;
271 if (diff > b->total_length_not_including_first_buffer)
272 return 0;
273 chain_b = b;
274 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
275 chain_bi = vlib_get_buffer_index (vm, chain_b);
276 }
277 else
278 chain_bi = b->next_buffer;
279
Florin Corasf6d68ed2017-05-07 19:12:02 -0700280 do
281 {
282 chain_b = vlib_get_buffer (vm, chain_bi);
283 data = vlib_buffer_get_current (chain_b);
284 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700285 if (!len)
286 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700287 if (is_in_order)
288 {
289 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700290 if (rv == len)
291 {
292 written += rv;
293 }
294 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700295 {
296 return (rv > 0) ? (written + rv) : written;
297 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700298 else if (rv > len)
299 {
300 written += rv;
301
302 /* written more than what was left in chain */
303 if (written > b->total_length_not_including_first_buffer)
304 return written;
305
306 /* drop the bytes that have already been delivered */
307 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
308 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700309 }
310 else
311 {
312 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
313 data);
314 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700315 {
316 clib_warning ("failed to enqueue multi-buffer seg");
317 return -1;
318 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700319 offset += len;
320 }
321 }
322 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
323 ? chain_b->next_buffer : 0));
324
325 if (is_in_order)
326 return written;
327
328 return 0;
329}
330
Dave Barach68b0fb02017-02-28 15:15:56 -0500331/*
332 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
333 * event but on request can queue notification events for later delivery by
334 * calling stream_server_flush_enqueue_events().
335 *
336 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700337 * @param b Buffer to be enqueued
338 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500339 * @param queue_event Flag to indicate if peer is to be notified or if event
340 * is to be queued. The former is useful when more data is
341 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700342 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500343 * @return Number of bytes enqueued or a negative value if enqueueing failed.
344 */
345int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700346session_enqueue_stream_connection (transport_connection_t * tc,
347 vlib_buffer_t * b, u32 offset,
348 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500349{
350 stream_session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700351 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500352
Florin Corascea194d2017-10-02 00:18:51 -0700353 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500354
Florin Corasf6d68ed2017-05-07 19:12:02 -0700355 if (is_in_order)
356 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700357 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
358 b->current_length,
359 vlib_buffer_get_current (b));
360 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
361 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700362 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700363 in_order_off = enqueued > b->current_length ? enqueued : 0;
364 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
365 if (rv > 0)
366 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700367 }
368 }
369 else
370 {
371 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
372 b->current_length,
373 vlib_buffer_get_current (b));
374 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700375 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
376 /* if something was enqueued, report even this as success for ooo
377 * segment handling */
378 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700379 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500380
381 if (queue_event)
382 {
383 /* Queue RX event on this fifo. Eventually these will need to be flushed
384 * by calling stream_server_flush_enqueue_events () */
385 session_manager_main_t *smm = vnet_get_session_manager_main ();
386 u32 thread_index = s->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700387 u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500388
Florin Coras3cbc04b2017-10-02 00:18:51 -0700389 if (s->enqueue_epoch != enqueue_epoch)
Dave Barach68b0fb02017-02-28 15:15:56 -0500390 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700391 s->enqueue_epoch = enqueue_epoch;
392 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 s - smm->sessions[thread_index]);
394 }
395 }
396
Chris Lukeb2bcad62017-09-18 08:51:22 -0400397 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500398}
399
Florin Coras7fb0fe12018-04-09 09:24:52 -0700400
Florin Coras3cbc04b2017-10-02 00:18:51 -0700401int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700402session_enqueue_dgram_connection (stream_session_t * s,
403 session_dgram_hdr_t * hdr,
404 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700405{
406 int enqueued = 0, rv, in_order_off;
407
Florin Coras7fb0fe12018-04-09 09:24:52 -0700408 ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
409 >= b->current_length + sizeof (*hdr));
410
411 svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
412 (u8 *) hdr);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700413 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
414 vlib_buffer_get_current (b));
415 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
416 {
417 in_order_off = enqueued > b->current_length ? enqueued : 0;
418 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
419 if (rv > 0)
420 enqueued += rv;
421 }
422 if (queue_event)
423 {
424 /* Queue RX event on this fifo. Eventually these will need to be flushed
425 * by calling stream_server_flush_enqueue_events () */
426 session_manager_main_t *smm = vnet_get_session_manager_main ();
427 u32 thread_index = s->thread_index;
428 u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
429
430 if (s->enqueue_epoch != enqueue_epoch)
431 {
432 s->enqueue_epoch = enqueue_epoch;
433 vec_add1 (smm->session_to_enqueue[proto][thread_index],
434 s - smm->sessions[thread_index]);
435 }
436 }
437 return enqueued;
438}
439
Dave Barach68b0fb02017-02-28 15:15:56 -0500440/** Check if we have space in rx fifo to push more bytes */
441u8
442stream_session_no_space (transport_connection_t * tc, u32 thread_index,
443 u16 data_len)
444{
Florin Corascea194d2017-10-02 00:18:51 -0700445 stream_session_t *s = session_get (tc->s_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500446
447 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
448 return 1;
449
450 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
451 return 1;
452
453 return 0;
454}
455
456u32
Florin Coras25579b42018-06-06 17:55:02 -0700457session_tx_fifo_max_dequeue (transport_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -0700458{
Florin Corascea194d2017-10-02 00:18:51 -0700459 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasb2215d62017-08-01 16:56:58 -0700460 if (!s->server_tx_fifo)
Florin Coras93992a92017-05-24 18:03:56 -0700461 return 0;
462 return svm_fifo_max_dequeue (s->server_tx_fifo);
463}
464
465int
Dave Barach68b0fb02017-02-28 15:15:56 -0500466stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
467 u32 offset, u32 max_bytes)
468{
Florin Corascea194d2017-10-02 00:18:51 -0700469 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700470 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500471}
472
473u32
474stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
475{
Florin Corascea194d2017-10-02 00:18:51 -0700476 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700477 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500478}
479
480/**
481 * Notify session peer that new data has been enqueued.
482 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700483 * @param s Stream session for which the event is to be generated.
484 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500485 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700486 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700488static inline int
489session_enqueue_notify (stream_session_t * s, u8 lock)
Dave Barach68b0fb02017-02-28 15:15:56 -0500490{
491 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500492
Dave Barach818eb542017-08-02 13:56:13 -0400493 app = application_get_if_valid (s->app_index);
Dave Barach818eb542017-08-02 13:56:13 -0400494 if (PREDICT_FALSE (app == 0))
495 {
496 clib_warning ("invalid s->app_index = %d", s->app_index);
497 return 0;
498 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500499
Florin Corase69f4952017-03-07 10:06:24 -0800500 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700501 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Coras3c2fed52018-07-04 04:15:05 -0700502 ed->data[0] = FIFO_EVENT_APP_RX;
Florin Coras6792ec02017-03-13 03:49:51 -0700503 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800504 }));
505 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500506
Florin Coras3c2fed52018-07-04 04:15:05 -0700507 if (lock)
508 return application_lock_and_send_event (app, s, FIFO_EVENT_APP_RX);
509
510 return application_send_event (app, s, FIFO_EVENT_APP_RX);
Dave Barach68b0fb02017-02-28 15:15:56 -0500511}
512
Florin Coras0d60a0f2018-06-29 02:02:08 -0700513int
514session_dequeue_notify (stream_session_t * s)
515{
516 application_t *app;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700517
Florin Coras208daa12018-07-02 01:30:51 -0700518 app = application_get_if_valid (s->app_index);
519 if (PREDICT_FALSE (!app))
520 return -1;
521
Florin Coras3c2fed52018-07-04 04:15:05 -0700522 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL)
523 return application_lock_and_send_event (app, s, FIFO_EVENT_APP_RX);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700524
Florin Coras3c2fed52018-07-04 04:15:05 -0700525 return application_send_event (app, s, FIFO_EVENT_APP_TX);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700526}
527
Dave Barach68b0fb02017-02-28 15:15:56 -0500528/**
529 * Flushes queue of sessions that are to be notified of new data
530 * enqueued events.
531 *
532 * @param thread_index Thread index for which the flush is to be performed.
533 * @return 0 on success or a positive number indicating the number of
534 * failures due to API queue being full.
535 */
536int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700537session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500538{
539 session_manager_main_t *smm = &session_manager_main;
Florin Coras3c2fed52018-07-04 04:15:05 -0700540 transport_service_type_t tp_service;
541 int i, errors = 0, lock;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700542 stream_session_t *s;
Florin Coras3c2fed52018-07-04 04:15:05 -0700543 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500544
Florin Coras3cbc04b2017-10-02 00:18:51 -0700545 indices = smm->session_to_enqueue[transport_proto][thread_index];
Florin Coras3c2fed52018-07-04 04:15:05 -0700546 tp_service = transport_protocol_service_type (transport_proto);
547 lock = tp_service == TRANSPORT_SERVICE_CL;
Dave Barach68b0fb02017-02-28 15:15:56 -0500548
Florin Coras3cbc04b2017-10-02 00:18:51 -0700549 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500550 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700551 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700552 if (PREDICT_FALSE (!s))
553 {
554 errors++;
555 continue;
556 }
557 if (PREDICT_FALSE (session_enqueue_notify (s, lock)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700558 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500559 }
560
Florin Coras3cbc04b2017-10-02 00:18:51 -0700561 vec_reset_length (indices);
562 smm->session_to_enqueue[transport_proto][thread_index] = indices;
563 smm->current_enqueue_epoch[transport_proto][thread_index]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500564
565 return errors;
566}
567
Florin Coras7fb0fe12018-04-09 09:24:52 -0700568int
569session_manager_flush_all_enqueue_events (u8 transport_proto)
570{
571 vlib_thread_main_t *vtm = vlib_get_thread_main ();
572 int i, errors = 0;
573 for (i = 0; i < 1 + vtm->n_threads; i++)
574 errors += session_manager_flush_enqueue_events (transport_proto, i);
575 return errors;
576}
577
Florin Corasc28764f2017-04-26 00:08:42 -0700578/**
579 * Init fifo tail and head pointers
580 *
581 * Useful if transport uses absolute offsets for tracking ooo segments.
582 */
583void
584stream_session_init_fifos_pointers (transport_connection_t * tc,
585 u32 rx_pointer, u32 tx_pointer)
586{
587 stream_session_t *s;
Florin Corascea194d2017-10-02 00:18:51 -0700588 s = session_get (tc->s_index, tc->thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700589 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
590 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
591}
592
Florin Corasf03a59a2017-06-09 21:07:32 -0700593int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700594session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500595{
Florin Coras371ca502018-02-21 12:07:41 -0800596 u32 opaque = 0, new_ti, new_si;
Dave Barach68b0fb02017-02-28 15:15:56 -0500597 stream_session_t *new_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 segment_manager_t *sm;
Florin Coras371ca502018-02-21 12:07:41 -0800599 application_t *app;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700600 u8 alloc_fifos;
Florin Coras371ca502018-02-21 12:07:41 -0800601 int error = 0;
602 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500603
Florin Coras3cbc04b2017-10-02 00:18:51 -0700604 /*
605 * Find connection handle and cleanup half-open table
606 */
Florin Corascea194d2017-10-02 00:18:51 -0700607 handle = session_lookup_half_open_handle (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700608 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500609 {
Florin Corascea194d2017-10-02 00:18:51 -0700610 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700611 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500612 }
Florin Corascea194d2017-10-02 00:18:51 -0700613 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400614
Florin Corasab0289a2017-08-14 11:25:25 -0700615 /* Get the app's index from the handle we stored when opening connection
616 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400617 * index */
Florin Corasc87c91d2017-08-16 19:55:49 -0700618 app = application_get_if_valid (handle >> 32);
619 if (!app)
620 return -1;
Florin Corasab0289a2017-08-14 11:25:25 -0700621 opaque = tc->s_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500622
Florin Coras3cbc04b2017-10-02 00:18:51 -0700623 /*
624 * Allocate new session with fifos (svm segments are allocated if needed)
625 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500626 if (!is_fail)
627 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700628 sm = application_get_connect_segment_manager (app);
Florin Coras7999e832017-10-31 01:51:04 -0700629 alloc_fifos = !application_is_builtin_proxy (app);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700630 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
Florin Corasf03a59a2017-06-09 21:07:32 -0700631 {
632 is_fail = 1;
633 error = -1;
634 }
635 else
Florin Coras371ca502018-02-21 12:07:41 -0800636 {
637 new_s->app_index = app->index;
638 new_si = new_s->session_index;
639 new_ti = new_s->thread_index;
640 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500641 }
642
Florin Coras3cbc04b2017-10-02 00:18:51 -0700643 /*
644 * Notify client application
645 */
Florin Corasab0289a2017-08-14 11:25:25 -0700646 if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
Florin Coras6534b7a2017-07-18 05:38:03 -0400647 is_fail))
648 {
Florin Corascea194d2017-10-02 00:18:51 -0700649 SESSION_DBG ("failed to notify app");
Florin Coras6534b7a2017-07-18 05:38:03 -0400650 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800651 {
652 new_s = session_get (new_si, new_ti);
653 stream_session_disconnect_transport (new_s);
654 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400655 }
656 else
657 {
658 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800659 {
660 new_s = session_get (new_si, new_ti);
661 new_s->session_state = SESSION_STATE_READY;
662 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400663 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500664
Florin Corasf03a59a2017-06-09 21:07:32 -0700665 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500666}
667
Florin Coras3cbc04b2017-10-02 00:18:51 -0700668typedef struct _session_switch_pool_args
669{
670 u32 session_index;
671 u32 thread_index;
672 u32 new_thread_index;
673 u32 new_session_index;
674} session_switch_pool_args_t;
675
676static void
677session_switch_pool (void *cb_args)
678{
679 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras561af9b2017-12-09 10:19:43 -0800680 transport_proto_t tp;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700681 stream_session_t *s;
682 ASSERT (args->thread_index == vlib_get_thread_index ());
683 s = session_get (args->session_index, args->thread_index);
684 s->server_tx_fifo->master_session_index = args->new_session_index;
685 s->server_tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras561af9b2017-12-09 10:19:43 -0800686 tp = session_get_transport_proto (s);
687 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700688 session_free (s);
689 clib_mem_free (cb_args);
690}
691
692/**
693 * Move dgram session to the right thread
694 */
695int
696session_dgram_connect_notify (transport_connection_t * tc,
697 u32 old_thread_index,
698 stream_session_t ** new_session)
699{
700 stream_session_t *new_s;
701 session_switch_pool_args_t *rpc_args;
702
703 /*
704 * Clone half-open session to the right thread.
705 */
706 new_s = session_clone_safe (tc->s_index, old_thread_index);
707 new_s->connection_index = tc->c_index;
708 new_s->server_rx_fifo->master_session_index = new_s->session_index;
709 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
710 new_s->session_state = SESSION_STATE_READY;
711 session_lookup_add_connection (tc, session_handle (new_s));
712
713 /*
714 * Ask thread owning the old session to clean it up and make us the tx
715 * fifo owner
716 */
717 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
718 rpc_args->new_session_index = new_s->session_index;
719 rpc_args->new_thread_index = new_s->thread_index;
720 rpc_args->session_index = tc->s_index;
721 rpc_args->thread_index = old_thread_index;
722 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
723 rpc_args);
724
725 tc->s_index = new_s->session_index;
726 new_s->connection_index = tc->c_index;
727 *new_session = new_s;
728 return 0;
729}
730
Dave Barach68b0fb02017-02-28 15:15:56 -0500731void
732stream_session_accept_notify (transport_connection_t * tc)
733{
734 application_t *server;
735 stream_session_t *s;
736
Florin Corascea194d2017-10-02 00:18:51 -0700737 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 server = application_get (s->app_index);
739 server->cb_fns.session_accept_callback (s);
740}
741
742/**
743 * Notification from transport that connection is being closed.
744 *
745 * A disconnect is sent to application but state is not removed. Once
746 * disconnect is acknowledged by application, session disconnect is called.
747 * Ultimately this leads to close being called on transport (passive close).
748 */
749void
750stream_session_disconnect_notify (transport_connection_t * tc)
751{
752 application_t *server;
753 stream_session_t *s;
754
Florin Corascea194d2017-10-02 00:18:51 -0700755 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 server = application_get (s->app_index);
757 server->cb_fns.session_disconnect_callback (s);
Florin Coras25579b42018-06-06 17:55:02 -0700758 s->session_state = SESSION_STATE_CLOSING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500759}
760
761/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400762 * Cleans up session and lookup table.
Florin Coras25579b42018-06-06 17:55:02 -0700763 *
764 * Transport connection must still be valid.
Dave Barach68b0fb02017-02-28 15:15:56 -0500765 */
766void
767stream_session_delete (stream_session_t * s)
768{
Florin Coras6534b7a2017-07-18 05:38:03 -0400769 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500770
Florin Corasd79b41e2017-03-04 05:37:52 -0800771 /* Delete from the main lookup table. */
Florin Corascea194d2017-10-02 00:18:51 -0700772 if ((rv = session_lookup_del_session (s)))
Florin Coras6534b7a2017-07-18 05:38:03 -0400773 clib_warning ("hash delete error, rv %d", rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500774
775 /* Cleanup fifo segments */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700776 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
777 s->server_tx_fifo);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700778 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500779}
780
781/**
782 * Notification from transport that connection is being deleted
783 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400784 * This removes the session if it is still valid. It should be called only on
785 * previously fully established sessions. For instance failed connects should
786 * call stream_session_connect_notify and indicate that the connect has
787 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500788 */
789void
790stream_session_delete_notify (transport_connection_t * tc)
791{
792 stream_session_t *s;
793
Florin Corase04c2992017-03-01 08:17:34 -0800794 /* App might've been removed already */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700795 s = session_get_if_valid (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500796 if (!s)
Florin Corasc87c91d2017-08-16 19:55:49 -0700797 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500798 stream_session_delete (s);
799}
800
801/**
802 * Notify application that connection has been reset.
803 */
804void
805stream_session_reset_notify (transport_connection_t * tc)
806{
807 stream_session_t *s;
808 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700809 s = session_get (tc->s_index, tc->thread_index);
Florin Corasca1c8f32018-05-23 21:01:30 -0700810 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500811 app = application_get (s->app_index);
812 app->cb_fns.session_reset_callback (s);
813}
814
815/**
816 * Accept a stream session. Optionally ping the server by callback.
817 */
818int
819stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700820 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500821{
Dave Barach68b0fb02017-02-28 15:15:56 -0500822 application_t *server;
823 stream_session_t *s, *listener;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700824 segment_manager_t *sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500825 int rv;
826
827 /* Find the server */
Florin Coras5c9083d2018-04-13 06:39:07 -0700828 listener = listen_session_get (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 server = application_get (listener->app_index);
830
Florin Coras6cf30ad2017-04-04 23:08:23 -0700831 sm = application_get_listen_segment_manager (server, listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700832 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 return rv;
834
Florin Coras6cf30ad2017-04-04 23:08:23 -0700835 s->app_index = server->index;
836 s->listener_index = listener_index;
Dave Barach2c25a622017-06-26 11:35:07 -0400837 s->session_state = SESSION_STATE_ACCEPTING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500838
839 /* Shoulder-tap the server */
840 if (notify)
841 {
842 server->cb_fns.session_accept_callback (s);
843 }
844
845 return 0;
846}
847
Florin Coras371ca502018-02-21 12:07:41 -0800848int
849session_open_cl (u32 app_index, session_endpoint_t * rmt, u32 opaque)
850{
851 transport_connection_t *tc;
852 transport_endpoint_t *tep;
853 segment_manager_t *sm;
854 stream_session_t *s;
855 application_t *app;
856 int rv;
857
858 tep = session_endpoint_to_transport (rmt);
859 rv = tp_vfts[rmt->transport_proto].open (tep);
860 if (rv < 0)
861 {
862 SESSION_DBG ("Transport failed to open connection.");
863 return VNET_API_ERROR_SESSION_CONNECT;
864 }
865
866 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
867
868 /* For dgram type of service, allocate session and fifos now.
869 */
870 app = application_get (app_index);
871 sm = application_get_connect_segment_manager (app);
872
873 if (session_alloc_and_init (sm, tc, 1, &s))
874 return -1;
875 s->app_index = app->index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700876 s->session_state = SESSION_STATE_OPENED;
Florin Coras371ca502018-02-21 12:07:41 -0800877
878 /* Tell the app about the new event fifo for this session */
879 app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
880
881 return 0;
882}
883
884int
885session_open_vc (u32 app_index, session_endpoint_t * rmt, u32 opaque)
886{
887 transport_connection_t *tc;
888 transport_endpoint_t *tep;
889 u64 handle;
890 int rv;
891
Florin Coras371ca502018-02-21 12:07:41 -0800892 tep = session_endpoint_to_transport (rmt);
893 rv = tp_vfts[rmt->transport_proto].open (tep);
894 if (rv < 0)
895 {
896 SESSION_DBG ("Transport failed to open connection.");
897 return VNET_API_ERROR_SESSION_CONNECT;
898 }
899
900 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
901
902 /* If transport offers a stream service, only allocate session once the
903 * connection has been established.
904 * Add connection to half-open table and save app and tc index. The
905 * latter is needed to help establish the connection while the former
906 * is needed when the connect notify comes and we have to notify the
907 * external app
908 */
909 handle = (((u64) app_index) << 32) | (u64) tc->c_index;
910 session_lookup_add_half_open (tc, handle);
911
912 /* Store api_context (opaque) for when the reply comes. Not the nicest
913 * thing but better than allocating a separate half-open pool.
914 */
915 tc->s_index = opaque;
916 return 0;
917}
918
919int
920session_open_app (u32 app_index, session_endpoint_t * rmt, u32 opaque)
921{
Florin Coras8f89dd02018-03-05 16:53:07 -0800922 session_endpoint_extended_t *sep = (session_endpoint_extended_t *) rmt;
923 sep->app_index = app_index;
924 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800925
Florin Coras8f89dd02018-03-05 16:53:07 -0800926 return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
Florin Coras371ca502018-02-21 12:07:41 -0800927}
928
929typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
930
931/* *INDENT-OFF* */
932static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
933 session_open_vc,
934 session_open_cl,
935 session_open_app,
936};
937/* *INDENT-ON* */
938
Florin Coras6cf30ad2017-04-04 23:08:23 -0700939/**
940 * Ask transport to open connection to remote transport endpoint.
941 *
942 * Stores handle for matching request with reply since the call can be
943 * asynchronous. For instance, for TCP the 3-way handshake must complete
944 * before reply comes. Session is only created once connection is established.
945 *
946 * @param app_index Index of the application requesting the connect
947 * @param st Session type requested.
948 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700949 * @param opaque Opaque data (typically, api_context) the application expects
950 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700951 */
Florin Corase04c2992017-03-01 08:17:34 -0800952int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700953session_open (u32 app_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500954{
Florin Coras371ca502018-02-21 12:07:41 -0800955 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
956 return session_open_srv_fns[tst] (app_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700957}
958
Florin Coras6cf30ad2017-04-04 23:08:23 -0700959int
Florin Coras371ca502018-02-21 12:07:41 -0800960session_listen_vc (stream_session_t * s, session_endpoint_t * sep)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700961{
962 transport_connection_t *tc;
963 u32 tci;
964
965 /* Transport bind/listen */
Florin Coras561af9b2017-12-09 10:19:43 -0800966 tci = tp_vfts[sep->transport_proto].bind (s->session_index,
967 session_endpoint_to_transport
968 (sep));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700969
970 if (tci == (u32) ~ 0)
971 return -1;
972
973 /* Attach transport to session */
974 s->connection_index = tci;
Florin Coras561af9b2017-12-09 10:19:43 -0800975 tc = tp_vfts[sep->transport_proto].get_listener (tci);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700976
977 /* Weird but handle it ... */
978 if (tc == 0)
979 return -1;
980
981 /* Add to the main lookup table */
Florin Corascea194d2017-10-02 00:18:51 -0700982 session_lookup_add_connection (tc, s->session_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700983 return 0;
984}
985
Florin Coras371ca502018-02-21 12:07:41 -0800986int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700987session_listen_cl (stream_session_t * s, session_endpoint_t * sep)
988{
989 transport_connection_t *tc;
990 application_t *server;
991 segment_manager_t *sm;
992 u32 tci;
993
994 /* Transport bind/listen */
995 tci = tp_vfts[sep->transport_proto].bind (s->session_index,
996 session_endpoint_to_transport
997 (sep));
998
999 if (tci == (u32) ~ 0)
1000 return -1;
1001
1002 /* Attach transport to session */
1003 s->connection_index = tci;
1004 tc = tp_vfts[sep->transport_proto].get_listener (tci);
1005
1006 /* Weird but handle it ... */
1007 if (tc == 0)
1008 return -1;
1009
1010 server = application_get (s->app_index);
1011 sm = application_get_listen_segment_manager (server, s);
1012 if (session_alloc_fifos (sm, s))
1013 return -1;
1014
1015 /* Add to the main lookup table */
1016 session_lookup_add_connection (tc, s->session_index);
1017 return 0;
1018}
1019
1020int
Florin Coras371ca502018-02-21 12:07:41 -08001021session_listen_app (stream_session_t * s, session_endpoint_t * sep)
1022{
1023 session_endpoint_extended_t esep;
1024 clib_memcpy (&esep, sep, sizeof (*sep));
1025 esep.app_index = s->app_index;
1026
1027 return tp_vfts[sep->transport_proto].bind (s->session_index,
1028 (transport_endpoint_t *) & esep);
1029}
1030
1031typedef int (*session_listen_service_fn) (stream_session_t *,
1032 session_endpoint_t *);
1033
1034/* *INDENT-OFF* */
1035static session_listen_service_fn
1036session_listen_srv_fns[TRANSPORT_N_SERVICES] = {
1037 session_listen_vc,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001038 session_listen_cl,
Florin Coras371ca502018-02-21 12:07:41 -08001039 session_listen_app,
1040};
1041/* *INDENT-ON* */
1042
Florin Coras7fb0fe12018-04-09 09:24:52 -07001043/**
1044 * Ask transport to listen on local transport endpoint.
1045 *
1046 * @param s Session for which listen will be called. Note that unlike
1047 * established sessions, listen sessions are not associated to a
1048 * thread.
1049 * @param tep Local endpoint to be listened on.
1050 */
Florin Coras371ca502018-02-21 12:07:41 -08001051int
1052stream_session_listen (stream_session_t * s, session_endpoint_t * sep)
1053{
1054 transport_service_type_t tst = tp_vfts[sep->transport_proto].service_type;
1055 return session_listen_srv_fns[tst] (s, sep);
1056}
1057
Florin Coras6cf30ad2017-04-04 23:08:23 -07001058/**
1059 * Ask transport to stop listening on local transport endpoint.
1060 *
1061 * @param s Session to stop listening on. It must be in state LISTENING.
1062 */
1063int
1064stream_session_stop_listen (stream_session_t * s)
1065{
Florin Coras561af9b2017-12-09 10:19:43 -08001066 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001067 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001068 if (s->session_state != SESSION_STATE_LISTENING)
1069 {
1070 clib_warning ("not a listening session");
1071 return -1;
1072 }
1073
Florin Coras561af9b2017-12-09 10:19:43 -08001074 tc = tp_vfts[tp].get_listener (s->connection_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001075 if (!tc)
1076 {
1077 clib_warning ("no transport");
1078 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1079 }
1080
Florin Corascea194d2017-10-02 00:18:51 -07001081 session_lookup_del_connection (tc);
Florin Coras561af9b2017-12-09 10:19:43 -08001082 tp_vfts[tp].unbind (s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001083 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001084}
1085
1086/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001087 * Initialize session disconnect.
Florin Corasa5464812017-04-19 13:00:05 -07001088 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001089 * Request is always sent to session node to ensure that all outstanding
1090 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001091 */
1092void
1093stream_session_disconnect (stream_session_t * s)
1094{
Florin Corasb2371c22018-05-31 17:14:10 -07001095 u32 thread_index = vlib_get_thread_index ();
1096 session_manager_main_t *smm = &session_manager_main;
Florin Coras52207f12018-07-12 14:48:06 -07001097 session_event_t *evt;
Florin Corasb2371c22018-05-31 17:14:10 -07001098
Florin Coras25579b42018-06-06 17:55:02 -07001099 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001100 return;
Florin Coras25579b42018-06-06 17:55:02 -07001101
1102 if (s->session_state >= SESSION_STATE_CLOSING)
1103 {
1104 /* Session already closed. Clear the tx fifo */
1105 if (s->session_state == SESSION_STATE_CLOSED)
1106 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1107 return;
1108 }
1109
Florin Corasb2371c22018-05-31 17:14:10 -07001110 s->session_state = SESSION_STATE_CLOSING;
1111
1112 /* If we are in the handler thread, or being called with the worker barrier
Florin Coras25579b42018-06-06 17:55:02 -07001113 * held (api/cli), just append a new event to pending disconnects vector. */
1114 if ((thread_index == 0 && !vlib_get_current_process (vlib_get_main ()))
1115 || thread_index == s->thread_index)
Florin Corasb2371c22018-05-31 17:14:10 -07001116 {
1117 ASSERT (s->thread_index == thread_index || thread_index == 0);
1118 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1119 memset (evt, 0, sizeof (*evt));
1120 evt->session_handle = session_handle (s);
1121 evt->event_type = FIFO_EVENT_DISCONNECT;
1122 }
1123 else
Florin Coras3c2fed52018-07-04 04:15:05 -07001124 session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001125}
1126
1127/**
1128 * Notify transport the session can be disconnected. This should eventually
1129 * result in a delete notification that allows us to cleanup session state.
1130 * Called for both active/passive disconnects.
1131 *
1132 * Must be called from the session's thread.
1133 */
1134void
1135stream_session_disconnect_transport (stream_session_t * s)
1136{
Dave Barach68b0fb02017-02-28 15:15:56 -05001137 s->session_state = SESSION_STATE_CLOSED;
Florin Coras561af9b2017-12-09 10:19:43 -08001138 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1139 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001140}
1141
1142/**
1143 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001144 *
Florin Coras25579b42018-06-06 17:55:02 -07001145 * Notify transport of the cleanup and free the session. This should
1146 * be called only if transport reported some error and is already
1147 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001148 */
1149void
1150stream_session_cleanup (stream_session_t * s)
1151{
Florin Corasd79b41e2017-03-04 05:37:52 -08001152 s->session_state = SESSION_STATE_CLOSED;
1153
Florin Coras25579b42018-06-06 17:55:02 -07001154 /* Delete from main lookup table before we axe the the transport */
1155 session_lookup_del_session (s);
Florin Coras561af9b2017-12-09 10:19:43 -08001156 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1157 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001158 /* Since we called cleanup, no delete notification will come. So, make
1159 * sure the session is properly freed. */
1160 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
1161 s->server_tx_fifo);
1162 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001163}
1164
Florin Corasf08f26d2018-05-10 13:20:47 -07001165transport_service_type_t
1166session_transport_service_type (stream_session_t * s)
1167{
1168 transport_proto_t tp;
1169 tp = session_get_transport_proto (s);
1170 return transport_protocol_service_type (tp);
1171}
1172
1173transport_tx_fn_type_t
1174session_transport_tx_fn_type (stream_session_t * s)
1175{
1176 transport_proto_t tp;
1177 tp = session_get_transport_proto (s);
1178 return transport_protocol_tx_fn_type (tp);
1179}
1180
1181u8
1182session_tx_is_dgram (stream_session_t * s)
1183{
1184 return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
1185}
1186
Florin Corasa5464812017-04-19 13:00:05 -07001187/**
Florin Corasb384b542018-01-15 01:08:33 -08001188 * Allocate event queues in the shared-memory segment
1189 *
1190 * That can either be a newly created memfd segment, that will need to be
1191 * mapped by all stack users, or the binary api's svm region. The latter is
1192 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1193 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1194 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001195 */
1196void
Florin Corasb384b542018-01-15 01:08:33 -08001197session_vpp_event_queues_allocate (session_manager_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001198{
Florin Coras52207f12018-07-12 14:48:06 -07001199 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Corasb384b542018-01-15 01:08:33 -08001200 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001201 api_main_t *am = &api_main;
Florin Corasb384b542018-01-15 01:08:33 -08001202 u64 eqs_size = 64 << 20;
1203 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001204 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001205 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001206
Florin Corasb384b542018-01-15 01:08:33 -08001207 if (smm->configured_event_queue_length)
1208 evt_q_length = smm->configured_event_queue_length;
1209
1210 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001211 {
Florin Corasb384b542018-01-15 01:08:33 -08001212 if (smm->evt_qs_segment_size)
1213 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001214
Florin Corasb384b542018-01-15 01:08:33 -08001215 eqs->ssvm_size = eqs_size;
1216 eqs->i_am_master = 1;
1217 eqs->my_pid = vpp_pid;
1218 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1219 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001220
Florin Coras95e0ce02018-07-05 23:44:23 -07001221 if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1222 {
1223 clib_warning ("failed to initialize queue segment");
1224 return;
1225 }
Florin Corasa5464812017-04-19 13:00:05 -07001226 }
Florin Corasb384b542018-01-15 01:08:33 -08001227
1228 if (smm->evt_qs_use_memfd_seg)
1229 oldheap = ssvm_push_heap (eqs->sh);
1230 else
1231 oldheap = svm_push_data_heap (am->vlib_rp);
1232
1233 for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1234 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001235 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1236 u32 notif_q_size = clib_max (16, evt_q_length >> 4);
1237 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1238 {evt_q_length, evt_size, 0}
1239 ,
1240 {notif_q_size, 256, 0}
1241 };
1242 cfg->consumer_pid = 0;
1243 cfg->n_rings = 2;
1244 cfg->q_nitems = evt_q_length;
1245 cfg->ring_cfgs = rc;
1246 smm->vpp_event_queues[i] = svm_msg_q_alloc (cfg);
Florin Corasb384b542018-01-15 01:08:33 -08001247 }
1248
1249 if (smm->evt_qs_use_memfd_seg)
1250 ssvm_pop_heap (oldheap);
1251 else
1252 svm_pop_heap (oldheap);
1253}
1254
1255ssvm_private_t *
1256session_manager_get_evt_q_segment (void)
1257{
1258 session_manager_main_t *smm = &session_manager_main;
1259 if (smm->evt_qs_use_memfd_seg)
1260 return &smm->evt_qs_segment;
1261 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001262}
1263
Florin Coras371ca502018-02-21 12:07:41 -08001264/* *INDENT-OFF* */
1265static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1266 session_tx_fifo_peek_and_snd,
1267 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001268 session_tx_fifo_dequeue_internal,
1269 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001270};
1271/* *INDENT-ON* */
1272
Florin Coras561af9b2017-12-09 10:19:43 -08001273/**
1274 * Initialize session layer for given transport proto and ip version
1275 *
1276 * Allocates per session type (transport proto + ip version) data structures
1277 * and adds arc from session queue node to session type output node.
1278 */
1279void
1280session_register_transport (transport_proto_t transport_proto,
1281 const transport_proto_vft_t * vft, u8 is_ip4,
1282 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001283{
Florin Coras561af9b2017-12-09 10:19:43 -08001284 session_manager_main_t *smm = &session_manager_main;
1285 session_type_t session_type;
1286 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001287
Florin Coras561af9b2017-12-09 10:19:43 -08001288 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1289
1290 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001291 vec_validate (smm->session_tx_fns, session_type);
1292
1293 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001294 if (output_node != ~0)
1295 {
1296 foreach_vlib_main (({
1297 next_index = vlib_node_add_next (this_vlib_main,
1298 session_queue_node.index,
1299 output_node);
1300 }));
1301 }
Florin Coras561af9b2017-12-09 10:19:43 -08001302 /* *INDENT-ON* */
1303
1304 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001305 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001306}
1307
Florin Coras3cbc04b2017-10-02 00:18:51 -07001308transport_connection_t *
1309session_get_transport (stream_session_t * s)
1310{
Florin Coras561af9b2017-12-09 10:19:43 -08001311 transport_proto_t tp;
Florin Corasade70e42017-10-14 18:56:41 -07001312 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras561af9b2017-12-09 10:19:43 -08001313 {
1314 tp = session_get_transport_proto (s);
1315 return tp_vfts[tp].get_connection (s->connection_index,
1316 s->thread_index);
1317 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001318 return 0;
1319}
1320
1321transport_connection_t *
1322listen_session_get_transport (stream_session_t * s)
1323{
Florin Coras561af9b2017-12-09 10:19:43 -08001324 transport_proto_t tp = session_get_transport_proto (s);
1325 return tp_vfts[tp].get_listener (s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001326}
1327
Florin Corascea194d2017-10-02 00:18:51 -07001328int
1329listen_session_get_local_session_endpoint (stream_session_t * listener,
1330 session_endpoint_t * sep)
1331{
Florin Coras561af9b2017-12-09 10:19:43 -08001332 transport_proto_t tp = session_get_transport_proto (listener);
Florin Corascea194d2017-10-02 00:18:51 -07001333 transport_connection_t *tc;
Florin Coras561af9b2017-12-09 10:19:43 -08001334 tc = tp_vfts[tp].get_listener (listener->connection_index);
Florin Corascea194d2017-10-02 00:18:51 -07001335 if (!tc)
1336 {
1337 clib_warning ("no transport");
1338 return -1;
1339 }
1340
1341 /* N.B. The ip should not be copied because this is the local endpoint */
1342 sep->port = tc->lcl_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001343 sep->transport_proto = tc->proto;
Florin Corascea194d2017-10-02 00:18:51 -07001344 sep->is_ip4 = tc->is_ip4;
1345 return 0;
1346}
1347
Florin Corasfd542f12018-05-16 19:28:24 -07001348void
1349session_flush_frames_main_thread (vlib_main_t * vm)
1350{
1351 ASSERT (vlib_get_thread_index () == 0);
1352 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1353 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1354}
1355
Dave Barach68b0fb02017-02-28 15:15:56 -05001356static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001357session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001358{
Florin Corasa332c462018-01-31 06:52:17 -08001359 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Dave Barach68b0fb02017-02-28 15:15:56 -05001360 session_manager_main_t *smm = &session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -08001361 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001362 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001363 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001364
Dave Barach68b0fb02017-02-28 15:15:56 -05001365 num_threads = 1 /* main thread */ + vtm->n_threads;
1366
1367 if (num_threads < 1)
1368 return clib_error_return (0, "n_thread_stacks not set");
1369
Dave Barach68b0fb02017-02-28 15:15:56 -05001370 /* configure per-thread ** vectors */
1371 vec_validate (smm->sessions, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001372 vec_validate (smm->tx_buffers, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001373 vec_validate (smm->pending_event_vector, num_threads - 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001374 vec_validate (smm->pending_disconnects, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001375 vec_validate (smm->free_event_vector, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001376 vec_validate (smm->vpp_event_queues, num_threads - 1);
Florin Coras84a30ef2018-01-24 10:49:23 -08001377 vec_validate (smm->peekers_rw_locks, num_threads - 1);
Florin Coras8e43d042018-05-04 15:46:57 -07001378 vec_validate_aligned (smm->ctx, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001379
1380 for (i = 0; i < TRANSPORT_N_PROTO; i++)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001381 {
1382 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1383 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1384 for (j = 0; j < num_threads; j++)
1385 smm->current_enqueue_epoch[i][j] = 1;
1386 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001387
Dave Barachacd2a6a2017-05-16 17:41:34 -04001388 for (i = 0; i < num_threads; i++)
1389 {
1390 vec_validate (smm->free_event_vector[i], 0);
1391 _vec_len (smm->free_event_vector[i]) = 0;
1392 vec_validate (smm->pending_event_vector[i], 0);
1393 _vec_len (smm->pending_event_vector[i]) = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001394 vec_validate (smm->pending_disconnects[i], 0);
1395 _vec_len (smm->pending_disconnects[i]) = 0;
Florin Coras29ca16f2017-11-02 18:14:17 -04001396 if (num_threads > 1)
Florin Coras84a30ef2018-01-24 10:49:23 -08001397 clib_rwlock_init (&smm->peekers_rw_locks[i]);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001398 }
1399
Florin Corasc1a448b2018-04-20 10:51:49 -07001400#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -07001401 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1402#endif
1403
Florin Corasb384b542018-01-15 01:08:33 -08001404 /* Allocate vpp event queues segment and queue */
1405 session_vpp_event_queues_allocate (smm);
1406
1407 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001408 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1409 sm_args->size = smm->session_va_space_size;
1410 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001411
Florin Coras66b11312017-07-31 17:18:03 -07001412 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001413 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001414 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001415 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001416 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001417 pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001418 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001419 else
Florin Coras66b11312017-07-31 17:18:03 -07001420 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001421 int j;
1422 preallocated_sessions_per_worker =
1423 (1.1 * (f64) smm->preallocated_sessions /
1424 (f64) (num_threads - 1));
1425
1426 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001427 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001428 pool_init_fixed (smm->sessions[j],
1429 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001430 }
Florin Coras66b11312017-07-31 17:18:03 -07001431 }
1432 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001433
Florin Coras04e53442017-07-16 17:12:15 -07001434 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001435 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001436 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001437
Florin Corase04c2992017-03-01 08:17:34 -08001438 smm->is_enabled = 1;
1439
Florin Coras561af9b2017-12-09 10:19:43 -08001440 /* Enable transports */
1441 transport_enable_disable (vm, 1);
Florin Corasa0b34a72017-03-07 01:20:52 -08001442
Dave Barach68b0fb02017-02-28 15:15:56 -05001443 return 0;
1444}
1445
Florin Corasa5464812017-04-19 13:00:05 -07001446void
1447session_node_enable_disable (u8 is_en)
1448{
1449 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Corasfd542f12018-05-16 19:28:24 -07001450 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1451 u8 have_workers = vtm->n_threads != 0;
1452
Florin Corasa5464812017-04-19 13:00:05 -07001453 /* *INDENT-OFF* */
1454 foreach_vlib_main (({
Florin Corasfd542f12018-05-16 19:28:24 -07001455 if (have_workers && ii == 0)
1456 {
1457 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1458 state);
1459 if (is_en)
1460 {
1461 vlib_node_t *n = vlib_get_node (this_vlib_main,
1462 session_queue_process_node.index);
1463 vlib_start_process (this_vlib_main, n->runtime_index);
1464 }
1465 else
1466 {
1467 vlib_process_signal_event_mt (this_vlib_main,
1468 session_queue_process_node.index,
1469 SESSION_Q_PROCESS_STOP, 0);
1470 }
1471
1472 continue;
1473 }
Florin Corasa5464812017-04-19 13:00:05 -07001474 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1475 state);
1476 }));
1477 /* *INDENT-ON* */
1478}
1479
Florin Corase04c2992017-03-01 08:17:34 -08001480clib_error_t *
1481vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1482{
Florin Corascea194d2017-10-02 00:18:51 -07001483 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001484 if (is_en)
1485 {
1486 if (session_manager_main.is_enabled)
1487 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001488
Florin Corasa5464812017-04-19 13:00:05 -07001489 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001490 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001491 }
1492 else
1493 {
1494 session_manager_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001495 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001496 }
1497
Florin Corascea194d2017-10-02 00:18:51 -07001498 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001499}
1500
Florin Corase04c2992017-03-01 08:17:34 -08001501clib_error_t *
1502session_manager_main_init (vlib_main_t * vm)
1503{
1504 session_manager_main_t *smm = &session_manager_main;
Florin Corasb384b542018-01-15 01:08:33 -08001505 smm->session_baseva = 0x200000000ULL;
Florin Corasa332c462018-01-31 06:52:17 -08001506 smm->session_va_space_size = (u64) 128 << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001507 smm->evt_qs_segment_size = 64 << 20;
Florin Corase04c2992017-03-01 08:17:34 -08001508 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001509 return 0;
1510}
1511
Dave Barach2c25a622017-06-26 11:35:07 -04001512VLIB_INIT_FUNCTION (session_manager_main_init);
1513
1514static clib_error_t *
1515session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001516{
1517 session_manager_main_t *smm = &session_manager_main;
1518 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001519 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001520
1521 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1522 {
1523 if (unformat (input, "event-queue-length %d", &nitems))
1524 {
1525 if (nitems >= 2048)
1526 smm->configured_event_queue_length = nitems;
1527 else
1528 clib_warning ("event queue length %d too small, ignored", nitems);
1529 }
Florin Coras66b11312017-07-31 17:18:03 -07001530 else if (unformat (input, "preallocated-sessions %d",
1531 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001532 ;
Florin Coras66b11312017-07-31 17:18:03 -07001533 else if (unformat (input, "v4-session-table-buckets %d",
1534 &smm->configured_v4_session_table_buckets))
1535 ;
1536 else if (unformat (input, "v4-halfopen-table-buckets %d",
1537 &smm->configured_v4_halfopen_table_buckets))
1538 ;
1539 else if (unformat (input, "v6-session-table-buckets %d",
1540 &smm->configured_v6_session_table_buckets))
1541 ;
1542 else if (unformat (input, "v6-halfopen-table-buckets %d",
1543 &smm->configured_v6_halfopen_table_buckets))
1544 ;
1545 else if (unformat (input, "v4-session-table-memory %U",
1546 unformat_memory_size, &tmp))
1547 {
1548 if (tmp >= 0x100000000)
1549 return clib_error_return (0, "memory size %llx (%lld) too large",
1550 tmp, tmp);
1551 smm->configured_v4_session_table_memory = tmp;
1552 }
1553 else if (unformat (input, "v4-halfopen-table-memory %U",
1554 unformat_memory_size, &tmp))
1555 {
1556 if (tmp >= 0x100000000)
1557 return clib_error_return (0, "memory size %llx (%lld) too large",
1558 tmp, tmp);
1559 smm->configured_v4_halfopen_table_memory = tmp;
1560 }
1561 else if (unformat (input, "v6-session-table-memory %U",
1562 unformat_memory_size, &tmp))
1563 {
1564 if (tmp >= 0x100000000)
1565 return clib_error_return (0, "memory size %llx (%lld) too large",
1566 tmp, tmp);
1567 smm->configured_v6_session_table_memory = tmp;
1568 }
1569 else if (unformat (input, "v6-halfopen-table-memory %U",
1570 unformat_memory_size, &tmp))
1571 {
1572 if (tmp >= 0x100000000)
1573 return clib_error_return (0, "memory size %llx (%lld) too large",
1574 tmp, tmp);
1575 smm->configured_v6_halfopen_table_memory = tmp;
1576 }
Florin Coras93e65802017-11-29 00:07:11 -05001577 else if (unformat (input, "local-endpoints-table-memory %U",
1578 unformat_memory_size, &tmp))
1579 {
1580 if (tmp >= 0x100000000)
1581 return clib_error_return (0, "memory size %llx (%lld) too large",
1582 tmp, tmp);
1583 smm->local_endpoints_table_memory = tmp;
1584 }
1585 else if (unformat (input, "local-endpoints-table-buckets %d",
1586 &smm->local_endpoints_table_buckets))
1587 ;
Florin Corasb384b542018-01-15 01:08:33 -08001588 else if (unformat (input, "evt_qs_memfd_seg"))
1589 smm->evt_qs_use_memfd_seg = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001590 else
1591 return clib_error_return (0, "unknown input `%U'",
1592 format_unformat_error, input);
1593 }
1594 return 0;
1595}
1596
1597VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1598
Dave Barach68b0fb02017-02-28 15:15:56 -05001599/*
1600 * fd.io coding-style-patch-verification: ON
1601 *
1602 * Local Variables:
1603 * eval: (c-set-style "gnu")
1604 * End:
1605 */