blob: d258b82c983dff4373d1ed7814342d186edd201c [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 Coras3cbc04b2017-10-02 00:18:51 -070030static void
31session_send_evt_to_thread (u64 session_handle, fifo_event_type_t evt_type,
32 u32 thread_index, void *fp, void *rpc_args)
33{
34 u32 tries = 0;
35 session_fifo_event_t evt = { {0}, };
Florin Corase86a8ed2018-01-05 03:20:25 -080036 svm_queue_t *q;
Florin Coras3cbc04b2017-10-02 00:18:51 -070037
38 evt.event_type = evt_type;
39 if (evt_type == FIFO_EVENT_RPC)
40 {
41 evt.rpc_args.fp = fp;
42 evt.rpc_args.arg = rpc_args;
43 }
44 else
45 evt.session_handle = session_handle;
46
47 q = session_manager_get_vpp_event_queue (thread_index);
Florin Corase86a8ed2018-01-05 03:20:25 -080048 while (svm_queue_add (q, (u8 *) & evt, 1))
Florin Coras3cbc04b2017-10-02 00:18:51 -070049 {
50 if (tries++ == 3)
51 {
52 SESSION_DBG ("failed to enqueue evt");
53 break;
54 }
55 }
56}
57
58void
59session_send_session_evt_to_thread (u64 session_handle,
60 fifo_event_type_t evt_type,
61 u32 thread_index)
62{
63 session_send_evt_to_thread (session_handle, evt_type, thread_index, 0, 0);
64}
65
66void
67session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
68{
69 if (thread_index != vlib_get_thread_index ())
70 session_send_evt_to_thread (0, FIFO_EVENT_RPC, thread_index, fp,
71 rpc_args);
72 else
73 {
74 void (*fnp) (void *) = fp;
75 fnp (rpc_args);
76 }
77}
78
79stream_session_t *
80session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -050081{
Florin Coras6cf30ad2017-04-04 23:08:23 -070082 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -070083 stream_session_t *s;
84 u8 will_expand = 0;
85 pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
86 CLIB_CACHE_LINE_BYTES);
87 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -080088 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -070089 {
Florin Coras84a30ef2018-01-24 10:49:23 -080090 clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -070091 pool_get_aligned (session_manager_main.sessions[thread_index], s,
92 CLIB_CACHE_LINE_BYTES);
Florin Coras84a30ef2018-01-24 10:49:23 -080093 clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -070094 }
95 else
96 {
97 pool_get_aligned (session_manager_main.sessions[thread_index], s,
98 CLIB_CACHE_LINE_BYTES);
99 }
100 memset (s, 0, sizeof (*s));
101 s->session_index = s - session_manager_main.sessions[thread_index];
102 s->thread_index = thread_index;
103 return s;
104}
105
Florin Coras371ca502018-02-21 12:07:41 -0800106void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700107session_free (stream_session_t * s)
108{
109 pool_put (session_manager_main.sessions[s->thread_index], s);
110 if (CLIB_DEBUG)
111 memset (s, 0xFA, sizeof (*s));
112}
113
Florin Coras371ca502018-02-21 12:07:41 -0800114int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700115session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
116{
Dave Barach68b0fb02017-02-28 15:15:56 -0500117 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
118 u32 fifo_segment_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700119 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500120
Florin Coras3cbc04b2017-10-02 00:18:51 -0700121 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
122 &server_tx_fifo,
123 &fifo_segment_index)))
124 return rv;
125 /* Initialize backpointers */
126 server_rx_fifo->master_session_index = s->session_index;
127 server_rx_fifo->master_thread_index = s->thread_index;
128
129 server_tx_fifo->master_session_index = s->session_index;
130 server_tx_fifo->master_thread_index = s->thread_index;
131
132 s->server_rx_fifo = server_rx_fifo;
133 s->server_tx_fifo = server_tx_fifo;
134 s->svm_segment_index = fifo_segment_index;
135 return 0;
136}
137
138static stream_session_t *
139session_alloc_for_connection (transport_connection_t * tc)
140{
141 stream_session_t *s;
142 u32 thread_index = tc->thread_index;
143
Dave Barach2c25a622017-06-26 11:35:07 -0400144 ASSERT (thread_index == vlib_get_thread_index ());
145
Florin Coras3cbc04b2017-10-02 00:18:51 -0700146 s = session_alloc (thread_index);
147 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500148 s->session_state = SESSION_STATE_CONNECTING;
Andreas Schultzc1214bd2017-12-08 15:12:36 +0100149 s->enqueue_epoch = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500150
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500152 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700154 return s;
155}
156
157static int
158session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
159 u8 alloc_fifos, stream_session_t ** ret_s)
160{
161 stream_session_t *s;
162 int rv;
163
164 s = session_alloc_for_connection (tc);
165 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
166 {
167 session_free (s);
Florin Coras29ca16f2017-11-02 18:14:17 -0400168 *ret_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700169 return rv;
170 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500171
172 /* Add to the main lookup table */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700173 session_lookup_add_connection (tc, session_handle (s));
Dave Barach68b0fb02017-02-28 15:15:56 -0500174
175 *ret_s = s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500176 return 0;
177}
178
Florin Coras1f152cd2017-08-18 19:28:03 -0700179/**
180 * Discards bytes from buffer chain
181 *
182 * It discards n_bytes_to_drop starting at first buffer after chain_b
183 */
184always_inline void
185session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
186 vlib_buffer_t ** chain_b,
187 u32 n_bytes_to_drop)
188{
189 vlib_buffer_t *next = *chain_b;
190 u32 to_drop = n_bytes_to_drop;
191 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
192 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
193 {
194 next = vlib_get_buffer (vm, next->next_buffer);
195 if (next->current_length > to_drop)
196 {
197 vlib_buffer_advance (next, to_drop);
198 to_drop = 0;
199 }
200 else
201 {
202 to_drop -= next->current_length;
203 next->current_length = 0;
204 }
205 }
206 *chain_b = next;
207
208 if (to_drop == 0)
209 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
210}
211
212/**
213 * Enqueue buffer chain tail
214 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700215always_inline int
216session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
217 u32 offset, u8 is_in_order)
218{
219 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700220 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700221 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700222 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700223 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700224 int rv = 0;
225
Florin Coras1f152cd2017-08-18 19:28:03 -0700226 if (is_in_order && offset)
227 {
228 diff = offset - b->current_length;
229 if (diff > b->total_length_not_including_first_buffer)
230 return 0;
231 chain_b = b;
232 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
233 chain_bi = vlib_get_buffer_index (vm, chain_b);
234 }
235 else
236 chain_bi = b->next_buffer;
237
Florin Corasf6d68ed2017-05-07 19:12:02 -0700238 do
239 {
240 chain_b = vlib_get_buffer (vm, chain_bi);
241 data = vlib_buffer_get_current (chain_b);
242 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700243 if (!len)
244 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700245 if (is_in_order)
246 {
247 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700248 if (rv == len)
249 {
250 written += rv;
251 }
252 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700253 {
254 return (rv > 0) ? (written + rv) : written;
255 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700256 else if (rv > len)
257 {
258 written += rv;
259
260 /* written more than what was left in chain */
261 if (written > b->total_length_not_including_first_buffer)
262 return written;
263
264 /* drop the bytes that have already been delivered */
265 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
266 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700267 }
268 else
269 {
270 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
271 data);
272 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700273 {
274 clib_warning ("failed to enqueue multi-buffer seg");
275 return -1;
276 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700277 offset += len;
278 }
279 }
280 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
281 ? chain_b->next_buffer : 0));
282
283 if (is_in_order)
284 return written;
285
286 return 0;
287}
288
Dave Barach68b0fb02017-02-28 15:15:56 -0500289/*
290 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
291 * event but on request can queue notification events for later delivery by
292 * calling stream_server_flush_enqueue_events().
293 *
294 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700295 * @param b Buffer to be enqueued
296 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500297 * @param queue_event Flag to indicate if peer is to be notified or if event
298 * is to be queued. The former is useful when more data is
299 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700300 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 * @return Number of bytes enqueued or a negative value if enqueueing failed.
302 */
303int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700304session_enqueue_stream_connection (transport_connection_t * tc,
305 vlib_buffer_t * b, u32 offset,
306 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500307{
308 stream_session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700309 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500310
Florin Corascea194d2017-10-02 00:18:51 -0700311 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500312
Florin Corasf6d68ed2017-05-07 19:12:02 -0700313 if (is_in_order)
314 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700315 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
316 b->current_length,
317 vlib_buffer_get_current (b));
318 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
319 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700320 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700321 in_order_off = enqueued > b->current_length ? enqueued : 0;
322 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
323 if (rv > 0)
324 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700325 }
326 }
327 else
328 {
329 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
330 b->current_length,
331 vlib_buffer_get_current (b));
332 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700333 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
334 /* if something was enqueued, report even this as success for ooo
335 * segment handling */
336 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700337 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500338
339 if (queue_event)
340 {
341 /* Queue RX event on this fifo. Eventually these will need to be flushed
342 * by calling stream_server_flush_enqueue_events () */
343 session_manager_main_t *smm = vnet_get_session_manager_main ();
344 u32 thread_index = s->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700345 u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500346
Florin Coras3cbc04b2017-10-02 00:18:51 -0700347 if (s->enqueue_epoch != enqueue_epoch)
Dave Barach68b0fb02017-02-28 15:15:56 -0500348 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700349 s->enqueue_epoch = enqueue_epoch;
350 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 s - smm->sessions[thread_index]);
352 }
353 }
354
Chris Lukeb2bcad62017-09-18 08:51:22 -0400355 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500356}
357
Florin Coras3cbc04b2017-10-02 00:18:51 -0700358int
359session_enqueue_dgram_connection (stream_session_t * s, vlib_buffer_t * b,
360 u8 proto, u8 queue_event)
361{
362 int enqueued = 0, rv, in_order_off;
363
364 if (svm_fifo_max_enqueue (s->server_rx_fifo) < b->current_length)
365 return -1;
366 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
367 vlib_buffer_get_current (b));
368 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
369 {
370 in_order_off = enqueued > b->current_length ? enqueued : 0;
371 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
372 if (rv > 0)
373 enqueued += rv;
374 }
375 if (queue_event)
376 {
377 /* Queue RX event on this fifo. Eventually these will need to be flushed
378 * by calling stream_server_flush_enqueue_events () */
379 session_manager_main_t *smm = vnet_get_session_manager_main ();
380 u32 thread_index = s->thread_index;
381 u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
382
383 if (s->enqueue_epoch != enqueue_epoch)
384 {
385 s->enqueue_epoch = enqueue_epoch;
386 vec_add1 (smm->session_to_enqueue[proto][thread_index],
387 s - smm->sessions[thread_index]);
388 }
389 }
390 return enqueued;
391}
392
Dave Barach68b0fb02017-02-28 15:15:56 -0500393/** Check if we have space in rx fifo to push more bytes */
394u8
395stream_session_no_space (transport_connection_t * tc, u32 thread_index,
396 u16 data_len)
397{
Florin Corascea194d2017-10-02 00:18:51 -0700398 stream_session_t *s = session_get (tc->s_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399
400 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
401 return 1;
402
403 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
404 return 1;
405
406 return 0;
407}
408
409u32
Florin Coras93992a92017-05-24 18:03:56 -0700410stream_session_tx_fifo_max_dequeue (transport_connection_t * tc)
411{
Florin Corascea194d2017-10-02 00:18:51 -0700412 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasb2215d62017-08-01 16:56:58 -0700413 if (!s->server_tx_fifo)
Florin Coras93992a92017-05-24 18:03:56 -0700414 return 0;
415 return svm_fifo_max_dequeue (s->server_tx_fifo);
416}
417
418int
Dave Barach68b0fb02017-02-28 15:15:56 -0500419stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
420 u32 offset, u32 max_bytes)
421{
Florin Corascea194d2017-10-02 00:18:51 -0700422 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700423 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500424}
425
426u32
427stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
428{
Florin Corascea194d2017-10-02 00:18:51 -0700429 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700430 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500431}
432
433/**
434 * Notify session peer that new data has been enqueued.
435 *
436 * @param s Stream session for which the event is to be generated.
437 * @param block Flag to indicate if call should block if event queue is full.
438 *
439 * @return 0 on succes or negative number if failed to send notification.
440 */
441static int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700442session_enqueue_notify (stream_session_t * s, u8 block)
Dave Barach68b0fb02017-02-28 15:15:56 -0500443{
444 application_t *app;
445 session_fifo_event_t evt;
Florin Corase86a8ed2018-01-05 03:20:25 -0800446 svm_queue_t *q;
Dave Barach68b0fb02017-02-28 15:15:56 -0500447
448 if (PREDICT_FALSE (s->session_state == SESSION_STATE_CLOSED))
Florin Coras50958952017-08-29 14:50:13 -0700449 {
450 /* Session is closed so app will never clean up. Flush rx fifo */
451 u32 to_dequeue = svm_fifo_max_dequeue (s->server_rx_fifo);
452 if (to_dequeue)
453 svm_fifo_dequeue_drop (s->server_rx_fifo, to_dequeue);
454 return 0;
455 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500456
457 /* Get session's server */
Dave Barach818eb542017-08-02 13:56:13 -0400458 app = application_get_if_valid (s->app_index);
459
460 if (PREDICT_FALSE (app == 0))
461 {
462 clib_warning ("invalid s->app_index = %d", s->app_index);
463 return 0;
464 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500465
Florin Coras371ca502018-02-21 12:07:41 -0800466 /* Built-in app? Hand event to the callback... */
467 if (app->cb_fns.builtin_app_rx_callback)
468 return app->cb_fns.builtin_app_rx_callback (s);
Florin Corasd79b41e2017-03-04 05:37:52 -0800469
Florin Coras6792ec02017-03-13 03:49:51 -0700470 /* If no event, send one */
471 if (svm_fifo_set_event (s->server_rx_fifo))
472 {
473 /* Fabricate event */
474 evt.fifo = s->server_rx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700475 evt.event_type = FIFO_EVENT_APP_RX;
Dave Barach68b0fb02017-02-28 15:15:56 -0500476
Florin Coras6792ec02017-03-13 03:49:51 -0700477 /* Add event to server's event queue */
478 q = app->event_queue;
479
480 /* Based on request block (or not) for lack of space */
481 if (block || PREDICT_TRUE (q->cursize < q->maxsize))
Florin Corase86a8ed2018-01-05 03:20:25 -0800482 svm_queue_add (app->event_queue, (u8 *) & evt,
483 0 /* do wait for mutex */ );
Florin Coras6792ec02017-03-13 03:49:51 -0700484 else
485 {
486 clib_warning ("fifo full");
487 return -1;
488 }
489 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500490
Florin Corase69f4952017-03-07 10:06:24 -0800491 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700492 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Corasec44e342017-10-16 20:47:56 -0700493 ed->data[0] = evt.event_type;
Florin Coras6792ec02017-03-13 03:49:51 -0700494 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800495 }));
496 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500497
498 return 0;
499}
500
501/**
502 * Flushes queue of sessions that are to be notified of new data
503 * enqueued events.
504 *
505 * @param thread_index Thread index for which the flush is to be performed.
506 * @return 0 on success or a positive number indicating the number of
507 * failures due to API queue being full.
508 */
509int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700510session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500511{
512 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700513 u32 *indices;
514 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500515 int i, errors = 0;
516
Florin Coras3cbc04b2017-10-02 00:18:51 -0700517 indices = smm->session_to_enqueue[transport_proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500518
Florin Coras3cbc04b2017-10-02 00:18:51 -0700519 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500520 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700521 s = session_get_if_valid (indices[i], thread_index);
522 if (s == 0 || session_enqueue_notify (s, 0 /* don't block */ ))
523 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500524 }
525
Florin Coras3cbc04b2017-10-02 00:18:51 -0700526 vec_reset_length (indices);
527 smm->session_to_enqueue[transport_proto][thread_index] = indices;
528 smm->current_enqueue_epoch[transport_proto][thread_index]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500529
530 return errors;
531}
532
Florin Corasc28764f2017-04-26 00:08:42 -0700533/**
534 * Init fifo tail and head pointers
535 *
536 * Useful if transport uses absolute offsets for tracking ooo segments.
537 */
538void
539stream_session_init_fifos_pointers (transport_connection_t * tc,
540 u32 rx_pointer, u32 tx_pointer)
541{
542 stream_session_t *s;
Florin Corascea194d2017-10-02 00:18:51 -0700543 s = session_get (tc->s_index, tc->thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700544 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
545 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
546}
547
Florin Corasf03a59a2017-06-09 21:07:32 -0700548int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700549session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500550{
Florin Coras371ca502018-02-21 12:07:41 -0800551 u32 opaque = 0, new_ti, new_si;
Dave Barach68b0fb02017-02-28 15:15:56 -0500552 stream_session_t *new_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700553 segment_manager_t *sm;
Florin Coras371ca502018-02-21 12:07:41 -0800554 application_t *app;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700555 u8 alloc_fifos;
Florin Coras371ca502018-02-21 12:07:41 -0800556 int error = 0;
557 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500558
Florin Coras3cbc04b2017-10-02 00:18:51 -0700559 /*
560 * Find connection handle and cleanup half-open table
561 */
Florin Corascea194d2017-10-02 00:18:51 -0700562 handle = session_lookup_half_open_handle (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700563 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500564 {
Florin Corascea194d2017-10-02 00:18:51 -0700565 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700566 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500567 }
Florin Corascea194d2017-10-02 00:18:51 -0700568 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400569
Florin Corasab0289a2017-08-14 11:25:25 -0700570 /* Get the app's index from the handle we stored when opening connection
571 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400572 * index */
Florin Corasc87c91d2017-08-16 19:55:49 -0700573 app = application_get_if_valid (handle >> 32);
574 if (!app)
575 return -1;
Florin Corasab0289a2017-08-14 11:25:25 -0700576 opaque = tc->s_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500577
Florin Coras3cbc04b2017-10-02 00:18:51 -0700578 /*
579 * Allocate new session with fifos (svm segments are allocated if needed)
580 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500581 if (!is_fail)
582 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700583 sm = application_get_connect_segment_manager (app);
Florin Coras7999e832017-10-31 01:51:04 -0700584 alloc_fifos = !application_is_builtin_proxy (app);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700585 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
Florin Corasf03a59a2017-06-09 21:07:32 -0700586 {
587 is_fail = 1;
588 error = -1;
589 }
590 else
Florin Coras371ca502018-02-21 12:07:41 -0800591 {
592 new_s->app_index = app->index;
593 new_si = new_s->session_index;
594 new_ti = new_s->thread_index;
595 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500596 }
597
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 /*
599 * Notify client application
600 */
Florin Corasab0289a2017-08-14 11:25:25 -0700601 if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
Florin Coras6534b7a2017-07-18 05:38:03 -0400602 is_fail))
603 {
Florin Corascea194d2017-10-02 00:18:51 -0700604 SESSION_DBG ("failed to notify app");
Florin Coras6534b7a2017-07-18 05:38:03 -0400605 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800606 {
607 new_s = session_get (new_si, new_ti);
608 stream_session_disconnect_transport (new_s);
609 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400610 }
611 else
612 {
613 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800614 {
615 new_s = session_get (new_si, new_ti);
616 new_s->session_state = SESSION_STATE_READY;
617 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400618 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500619
Florin Corasf03a59a2017-06-09 21:07:32 -0700620 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500621}
622
Florin Coras3cbc04b2017-10-02 00:18:51 -0700623typedef struct _session_switch_pool_args
624{
625 u32 session_index;
626 u32 thread_index;
627 u32 new_thread_index;
628 u32 new_session_index;
629} session_switch_pool_args_t;
630
631static void
632session_switch_pool (void *cb_args)
633{
634 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras561af9b2017-12-09 10:19:43 -0800635 transport_proto_t tp;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700636 stream_session_t *s;
637 ASSERT (args->thread_index == vlib_get_thread_index ());
638 s = session_get (args->session_index, args->thread_index);
639 s->server_tx_fifo->master_session_index = args->new_session_index;
640 s->server_tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras561af9b2017-12-09 10:19:43 -0800641 tp = session_get_transport_proto (s);
642 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700643 session_free (s);
644 clib_mem_free (cb_args);
645}
646
647/**
648 * Move dgram session to the right thread
649 */
650int
651session_dgram_connect_notify (transport_connection_t * tc,
652 u32 old_thread_index,
653 stream_session_t ** new_session)
654{
655 stream_session_t *new_s;
656 session_switch_pool_args_t *rpc_args;
657
658 /*
659 * Clone half-open session to the right thread.
660 */
661 new_s = session_clone_safe (tc->s_index, old_thread_index);
662 new_s->connection_index = tc->c_index;
663 new_s->server_rx_fifo->master_session_index = new_s->session_index;
664 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
665 new_s->session_state = SESSION_STATE_READY;
666 session_lookup_add_connection (tc, session_handle (new_s));
667
668 /*
669 * Ask thread owning the old session to clean it up and make us the tx
670 * fifo owner
671 */
672 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
673 rpc_args->new_session_index = new_s->session_index;
674 rpc_args->new_thread_index = new_s->thread_index;
675 rpc_args->session_index = tc->s_index;
676 rpc_args->thread_index = old_thread_index;
677 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
678 rpc_args);
679
680 tc->s_index = new_s->session_index;
681 new_s->connection_index = tc->c_index;
682 *new_session = new_s;
683 return 0;
684}
685
Dave Barach68b0fb02017-02-28 15:15:56 -0500686void
687stream_session_accept_notify (transport_connection_t * tc)
688{
689 application_t *server;
690 stream_session_t *s;
691
Florin Corascea194d2017-10-02 00:18:51 -0700692 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500693 server = application_get (s->app_index);
694 server->cb_fns.session_accept_callback (s);
695}
696
697/**
698 * Notification from transport that connection is being closed.
699 *
700 * A disconnect is sent to application but state is not removed. Once
701 * disconnect is acknowledged by application, session disconnect is called.
702 * Ultimately this leads to close being called on transport (passive close).
703 */
704void
705stream_session_disconnect_notify (transport_connection_t * tc)
706{
707 application_t *server;
708 stream_session_t *s;
709
Florin Corascea194d2017-10-02 00:18:51 -0700710 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500711 server = application_get (s->app_index);
712 server->cb_fns.session_disconnect_callback (s);
713}
714
715/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400716 * Cleans up session and lookup table.
Dave Barach68b0fb02017-02-28 15:15:56 -0500717 */
718void
719stream_session_delete (stream_session_t * s)
720{
Florin Coras6534b7a2017-07-18 05:38:03 -0400721 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500722
Florin Corasd79b41e2017-03-04 05:37:52 -0800723 /* Delete from the main lookup table. */
Florin Corascea194d2017-10-02 00:18:51 -0700724 if ((rv = session_lookup_del_session (s)))
Florin Coras6534b7a2017-07-18 05:38:03 -0400725 clib_warning ("hash delete error, rv %d", rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500726
727 /* Cleanup fifo segments */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700728 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
729 s->server_tx_fifo);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700730 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500731}
732
733/**
734 * Notification from transport that connection is being deleted
735 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400736 * This removes the session if it is still valid. It should be called only on
737 * previously fully established sessions. For instance failed connects should
738 * call stream_session_connect_notify and indicate that the connect has
739 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500740 */
741void
742stream_session_delete_notify (transport_connection_t * tc)
743{
744 stream_session_t *s;
745
Florin Corase04c2992017-03-01 08:17:34 -0800746 /* App might've been removed already */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700747 s = session_get_if_valid (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500748 if (!s)
Florin Corasc87c91d2017-08-16 19:55:49 -0700749 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 stream_session_delete (s);
751}
752
753/**
754 * Notify application that connection has been reset.
755 */
756void
757stream_session_reset_notify (transport_connection_t * tc)
758{
759 stream_session_t *s;
760 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700761 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500762
763 app = application_get (s->app_index);
764 app->cb_fns.session_reset_callback (s);
765}
766
767/**
768 * Accept a stream session. Optionally ping the server by callback.
769 */
770int
771stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700772 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500773{
Dave Barach68b0fb02017-02-28 15:15:56 -0500774 application_t *server;
775 stream_session_t *s, *listener;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700776 segment_manager_t *sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500777 int rv;
778
779 /* Find the server */
Florin Coras5c9083d2018-04-13 06:39:07 -0700780 listener = listen_session_get (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500781 server = application_get (listener->app_index);
782
Florin Coras6cf30ad2017-04-04 23:08:23 -0700783 sm = application_get_listen_segment_manager (server, listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700784 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500785 return rv;
786
Florin Coras6cf30ad2017-04-04 23:08:23 -0700787 s->app_index = server->index;
788 s->listener_index = listener_index;
Dave Barach2c25a622017-06-26 11:35:07 -0400789 s->session_state = SESSION_STATE_ACCEPTING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500790
791 /* Shoulder-tap the server */
792 if (notify)
793 {
794 server->cb_fns.session_accept_callback (s);
795 }
796
797 return 0;
798}
799
Florin Coras371ca502018-02-21 12:07:41 -0800800int
801session_open_cl (u32 app_index, session_endpoint_t * rmt, u32 opaque)
802{
803 transport_connection_t *tc;
804 transport_endpoint_t *tep;
805 segment_manager_t *sm;
806 stream_session_t *s;
807 application_t *app;
808 int rv;
809
810 tep = session_endpoint_to_transport (rmt);
811 rv = tp_vfts[rmt->transport_proto].open (tep);
812 if (rv < 0)
813 {
814 SESSION_DBG ("Transport failed to open connection.");
815 return VNET_API_ERROR_SESSION_CONNECT;
816 }
817
818 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
819
820 /* For dgram type of service, allocate session and fifos now.
821 */
822 app = application_get (app_index);
823 sm = application_get_connect_segment_manager (app);
824
825 if (session_alloc_and_init (sm, tc, 1, &s))
826 return -1;
827 s->app_index = app->index;
828 s->session_state = SESSION_STATE_CONNECTING_READY;
829
830 /* Tell the app about the new event fifo for this session */
831 app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
832
833 return 0;
834}
835
836int
837session_open_vc (u32 app_index, session_endpoint_t * rmt, u32 opaque)
838{
839 transport_connection_t *tc;
840 transport_endpoint_t *tep;
841 u64 handle;
842 int rv;
843
844 /* TODO until udp is fixed */
845 if (rmt->transport_proto == TRANSPORT_PROTO_UDP)
846 return session_open_cl (app_index, rmt, opaque);
847
848 tep = session_endpoint_to_transport (rmt);
849 rv = tp_vfts[rmt->transport_proto].open (tep);
850 if (rv < 0)
851 {
852 SESSION_DBG ("Transport failed to open connection.");
853 return VNET_API_ERROR_SESSION_CONNECT;
854 }
855
856 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
857
858 /* If transport offers a stream service, only allocate session once the
859 * connection has been established.
860 * Add connection to half-open table and save app and tc index. The
861 * latter is needed to help establish the connection while the former
862 * is needed when the connect notify comes and we have to notify the
863 * external app
864 */
865 handle = (((u64) app_index) << 32) | (u64) tc->c_index;
866 session_lookup_add_half_open (tc, handle);
867
868 /* Store api_context (opaque) for when the reply comes. Not the nicest
869 * thing but better than allocating a separate half-open pool.
870 */
871 tc->s_index = opaque;
872 return 0;
873}
874
875int
876session_open_app (u32 app_index, session_endpoint_t * rmt, u32 opaque)
877{
Florin Coras8f89dd02018-03-05 16:53:07 -0800878 session_endpoint_extended_t *sep = (session_endpoint_extended_t *) rmt;
879 sep->app_index = app_index;
880 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800881
Florin Coras8f89dd02018-03-05 16:53:07 -0800882 return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
Florin Coras371ca502018-02-21 12:07:41 -0800883}
884
885typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
886
887/* *INDENT-OFF* */
888static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
889 session_open_vc,
890 session_open_cl,
891 session_open_app,
892};
893/* *INDENT-ON* */
894
Florin Coras6cf30ad2017-04-04 23:08:23 -0700895/**
896 * Ask transport to open connection to remote transport endpoint.
897 *
898 * Stores handle for matching request with reply since the call can be
899 * asynchronous. For instance, for TCP the 3-way handshake must complete
900 * before reply comes. Session is only created once connection is established.
901 *
902 * @param app_index Index of the application requesting the connect
903 * @param st Session type requested.
904 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700905 * @param opaque Opaque data (typically, api_context) the application expects
906 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700907 */
Florin Corase04c2992017-03-01 08:17:34 -0800908int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700909session_open (u32 app_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500910{
Florin Coras371ca502018-02-21 12:07:41 -0800911 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
912 return session_open_srv_fns[tst] (app_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700913}
914
915/**
916 * Ask transport to listen on local transport endpoint.
917 *
918 * @param s Session for which listen will be called. Note that unlike
919 * established sessions, listen sessions are not associated to a
920 * thread.
921 * @param tep Local endpoint to be listened on.
922 */
923int
Florin Coras371ca502018-02-21 12:07:41 -0800924session_listen_vc (stream_session_t * s, session_endpoint_t * sep)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700925{
926 transport_connection_t *tc;
927 u32 tci;
928
929 /* Transport bind/listen */
Florin Coras561af9b2017-12-09 10:19:43 -0800930 tci = tp_vfts[sep->transport_proto].bind (s->session_index,
931 session_endpoint_to_transport
932 (sep));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700933
934 if (tci == (u32) ~ 0)
935 return -1;
936
937 /* Attach transport to session */
938 s->connection_index = tci;
Florin Coras561af9b2017-12-09 10:19:43 -0800939 tc = tp_vfts[sep->transport_proto].get_listener (tci);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700940
941 /* Weird but handle it ... */
942 if (tc == 0)
943 return -1;
944
945 /* Add to the main lookup table */
Florin Corascea194d2017-10-02 00:18:51 -0700946 session_lookup_add_connection (tc, s->session_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700947 return 0;
948}
949
Florin Coras371ca502018-02-21 12:07:41 -0800950int
951session_listen_app (stream_session_t * s, session_endpoint_t * sep)
952{
953 session_endpoint_extended_t esep;
954 clib_memcpy (&esep, sep, sizeof (*sep));
955 esep.app_index = s->app_index;
956
957 return tp_vfts[sep->transport_proto].bind (s->session_index,
958 (transport_endpoint_t *) & esep);
959}
960
961typedef int (*session_listen_service_fn) (stream_session_t *,
962 session_endpoint_t *);
963
964/* *INDENT-OFF* */
965static session_listen_service_fn
966session_listen_srv_fns[TRANSPORT_N_SERVICES] = {
967 session_listen_vc,
968 session_listen_vc,
969 session_listen_app,
970};
971/* *INDENT-ON* */
972
973int
974stream_session_listen (stream_session_t * s, session_endpoint_t * sep)
975{
976 transport_service_type_t tst = tp_vfts[sep->transport_proto].service_type;
977 return session_listen_srv_fns[tst] (s, sep);
978}
979
Florin Coras6cf30ad2017-04-04 23:08:23 -0700980/**
981 * Ask transport to stop listening on local transport endpoint.
982 *
983 * @param s Session to stop listening on. It must be in state LISTENING.
984 */
985int
986stream_session_stop_listen (stream_session_t * s)
987{
Florin Coras561af9b2017-12-09 10:19:43 -0800988 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700989 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700990 if (s->session_state != SESSION_STATE_LISTENING)
991 {
992 clib_warning ("not a listening session");
993 return -1;
994 }
995
Florin Coras561af9b2017-12-09 10:19:43 -0800996 tc = tp_vfts[tp].get_listener (s->connection_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700997 if (!tc)
998 {
999 clib_warning ("no transport");
1000 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1001 }
1002
Florin Corascea194d2017-10-02 00:18:51 -07001003 session_lookup_del_connection (tc);
Florin Coras561af9b2017-12-09 10:19:43 -08001004 tp_vfts[tp].unbind (s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001005 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001006}
1007
1008/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001009 * Initialize session disconnect.
Florin Corasa5464812017-04-19 13:00:05 -07001010 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001011 * Request is always sent to session node to ensure that all outstanding
1012 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001013 */
1014void
1015stream_session_disconnect (stream_session_t * s)
1016{
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001017 if (!s || s->session_state == SESSION_STATE_CLOSED)
1018 return;
1019 s->session_state = SESSION_STATE_CLOSED;
1020 session_send_session_evt_to_thread (session_handle (s),
1021 FIFO_EVENT_DISCONNECT, s->thread_index);
1022}
1023
1024/**
1025 * Notify transport the session can be disconnected. This should eventually
1026 * result in a delete notification that allows us to cleanup session state.
1027 * Called for both active/passive disconnects.
1028 *
1029 * Must be called from the session's thread.
1030 */
1031void
1032stream_session_disconnect_transport (stream_session_t * s)
1033{
Dave Barach68b0fb02017-02-28 15:15:56 -05001034 s->session_state = SESSION_STATE_CLOSED;
Florin Coras561af9b2017-12-09 10:19:43 -08001035 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1036 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001037}
1038
1039/**
1040 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001041 *
1042 * Notify transport of the cleanup, wait for a delete notify to actually
1043 * remove the session state.
Dave Barach68b0fb02017-02-28 15:15:56 -05001044 */
1045void
1046stream_session_cleanup (stream_session_t * s)
1047{
Florin Corasd79b41e2017-03-04 05:37:52 -08001048 int rv;
1049
1050 s->session_state = SESSION_STATE_CLOSED;
1051
1052 /* Delete from the main lookup table to avoid more enqueues */
Florin Corascea194d2017-10-02 00:18:51 -07001053 rv = session_lookup_del_session (s);
Florin Corasd79b41e2017-03-04 05:37:52 -08001054 if (rv)
1055 clib_warning ("hash delete error, rv %d", rv);
1056
Florin Coras561af9b2017-12-09 10:19:43 -08001057 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1058 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001059}
1060
Florin Corasa5464812017-04-19 13:00:05 -07001061/**
Florin Corasb384b542018-01-15 01:08:33 -08001062 * Allocate event queues in the shared-memory segment
1063 *
1064 * That can either be a newly created memfd segment, that will need to be
1065 * mapped by all stack users, or the binary api's svm region. The latter is
1066 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1067 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1068 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001069 */
1070void
Florin Corasb384b542018-01-15 01:08:33 -08001071session_vpp_event_queues_allocate (session_manager_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001072{
Florin Corasb384b542018-01-15 01:08:33 -08001073 u32 evt_q_length = 2048, evt_size = sizeof (session_fifo_event_t);
1074 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001075 api_main_t *am = &api_main;
Florin Corasb384b542018-01-15 01:08:33 -08001076 u64 eqs_size = 64 << 20;
1077 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001078 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001079 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001080
Florin Corasb384b542018-01-15 01:08:33 -08001081 if (smm->configured_event_queue_length)
1082 evt_q_length = smm->configured_event_queue_length;
1083
1084 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001085 {
Florin Corasb384b542018-01-15 01:08:33 -08001086 if (smm->evt_qs_segment_size)
1087 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001088
Florin Corasb384b542018-01-15 01:08:33 -08001089 eqs->ssvm_size = eqs_size;
1090 eqs->i_am_master = 1;
1091 eqs->my_pid = vpp_pid;
1092 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1093 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001094
Florin Corasb384b542018-01-15 01:08:33 -08001095 ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD);
Florin Corasa5464812017-04-19 13:00:05 -07001096 }
Florin Corasb384b542018-01-15 01:08:33 -08001097
1098 if (smm->evt_qs_use_memfd_seg)
1099 oldheap = ssvm_push_heap (eqs->sh);
1100 else
1101 oldheap = svm_push_data_heap (am->vlib_rp);
1102
1103 for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1104 {
1105 smm->vpp_event_queues[i] = svm_queue_init (evt_q_length, evt_size,
1106 vpp_pid, 0);
1107 }
1108
1109 if (smm->evt_qs_use_memfd_seg)
1110 ssvm_pop_heap (oldheap);
1111 else
1112 svm_pop_heap (oldheap);
1113}
1114
1115ssvm_private_t *
1116session_manager_get_evt_q_segment (void)
1117{
1118 session_manager_main_t *smm = &session_manager_main;
1119 if (smm->evt_qs_use_memfd_seg)
1120 return &smm->evt_qs_segment;
1121 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001122}
1123
Florin Coras371ca502018-02-21 12:07:41 -08001124/* *INDENT-OFF* */
1125static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1126 session_tx_fifo_peek_and_snd,
1127 session_tx_fifo_dequeue_and_snd,
1128 session_tx_fifo_dequeue_internal
1129};
1130/* *INDENT-ON* */
1131
Florin Coras561af9b2017-12-09 10:19:43 -08001132/**
1133 * Initialize session layer for given transport proto and ip version
1134 *
1135 * Allocates per session type (transport proto + ip version) data structures
1136 * and adds arc from session queue node to session type output node.
1137 */
1138void
1139session_register_transport (transport_proto_t transport_proto,
1140 const transport_proto_vft_t * vft, u8 is_ip4,
1141 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001142{
Florin Coras561af9b2017-12-09 10:19:43 -08001143 session_manager_main_t *smm = &session_manager_main;
1144 session_type_t session_type;
1145 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001146
Florin Coras561af9b2017-12-09 10:19:43 -08001147 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1148
1149 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001150 vec_validate (smm->session_tx_fns, session_type);
1151
1152 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001153 if (output_node != ~0)
1154 {
1155 foreach_vlib_main (({
1156 next_index = vlib_node_add_next (this_vlib_main,
1157 session_queue_node.index,
1158 output_node);
1159 }));
1160 }
Florin Coras561af9b2017-12-09 10:19:43 -08001161 /* *INDENT-ON* */
1162
1163 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001164 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001165}
1166
Florin Coras3cbc04b2017-10-02 00:18:51 -07001167transport_connection_t *
1168session_get_transport (stream_session_t * s)
1169{
Florin Coras561af9b2017-12-09 10:19:43 -08001170 transport_proto_t tp;
Florin Corasade70e42017-10-14 18:56:41 -07001171 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras561af9b2017-12-09 10:19:43 -08001172 {
1173 tp = session_get_transport_proto (s);
1174 return tp_vfts[tp].get_connection (s->connection_index,
1175 s->thread_index);
1176 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001177 return 0;
1178}
1179
1180transport_connection_t *
1181listen_session_get_transport (stream_session_t * s)
1182{
Florin Coras561af9b2017-12-09 10:19:43 -08001183 transport_proto_t tp = session_get_transport_proto (s);
1184 return tp_vfts[tp].get_listener (s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001185}
1186
Florin Corascea194d2017-10-02 00:18:51 -07001187int
1188listen_session_get_local_session_endpoint (stream_session_t * listener,
1189 session_endpoint_t * sep)
1190{
Florin Coras561af9b2017-12-09 10:19:43 -08001191 transport_proto_t tp = session_get_transport_proto (listener);
Florin Corascea194d2017-10-02 00:18:51 -07001192 transport_connection_t *tc;
Florin Coras561af9b2017-12-09 10:19:43 -08001193 tc = tp_vfts[tp].get_listener (listener->connection_index);
Florin Corascea194d2017-10-02 00:18:51 -07001194 if (!tc)
1195 {
1196 clib_warning ("no transport");
1197 return -1;
1198 }
1199
1200 /* N.B. The ip should not be copied because this is the local endpoint */
1201 sep->port = tc->lcl_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001202 sep->transport_proto = tc->proto;
Florin Corascea194d2017-10-02 00:18:51 -07001203 sep->is_ip4 = tc->is_ip4;
1204 return 0;
1205}
1206
Dave Barach68b0fb02017-02-28 15:15:56 -05001207static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001208session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001209{
Florin Corasa332c462018-01-31 06:52:17 -08001210 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Dave Barach68b0fb02017-02-28 15:15:56 -05001211 session_manager_main_t *smm = &session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -08001212 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001213 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001214 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001215
Dave Barach68b0fb02017-02-28 15:15:56 -05001216 num_threads = 1 /* main thread */ + vtm->n_threads;
1217
1218 if (num_threads < 1)
1219 return clib_error_return (0, "n_thread_stacks not set");
1220
Dave Barach68b0fb02017-02-28 15:15:56 -05001221 /* configure per-thread ** vectors */
1222 vec_validate (smm->sessions, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001223 vec_validate (smm->tx_buffers, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001224 vec_validate (smm->pending_event_vector, num_threads - 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001225 vec_validate (smm->pending_disconnects, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001226 vec_validate (smm->free_event_vector, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001227 vec_validate (smm->vpp_event_queues, num_threads - 1);
Florin Coras84a30ef2018-01-24 10:49:23 -08001228 vec_validate (smm->peekers_rw_locks, num_threads - 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001229
1230 for (i = 0; i < TRANSPORT_N_PROTO; i++)
1231 for (j = 0; j < num_threads; j++)
1232 {
1233 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1234 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1235 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001236
Dave Barachacd2a6a2017-05-16 17:41:34 -04001237 for (i = 0; i < num_threads; i++)
1238 {
1239 vec_validate (smm->free_event_vector[i], 0);
1240 _vec_len (smm->free_event_vector[i]) = 0;
1241 vec_validate (smm->pending_event_vector[i], 0);
1242 _vec_len (smm->pending_event_vector[i]) = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001243 vec_validate (smm->pending_disconnects[i], 0);
1244 _vec_len (smm->pending_disconnects[i]) = 0;
Florin Coras29ca16f2017-11-02 18:14:17 -04001245 if (num_threads > 1)
Florin Coras84a30ef2018-01-24 10:49:23 -08001246 clib_rwlock_init (&smm->peekers_rw_locks[i]);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001247 }
1248
Florin Coras3e350af2017-03-30 02:54:28 -07001249#if SESSION_DBG
1250 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1251#endif
1252
Florin Corasb384b542018-01-15 01:08:33 -08001253 /* Allocate vpp event queues segment and queue */
1254 session_vpp_event_queues_allocate (smm);
1255
1256 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001257 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1258 sm_args->size = smm->session_va_space_size;
1259 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001260
Florin Coras66b11312017-07-31 17:18:03 -07001261 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001262 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001263 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001264 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001265 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001266 pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001267 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001268 else
Florin Coras66b11312017-07-31 17:18:03 -07001269 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001270 int j;
1271 preallocated_sessions_per_worker =
1272 (1.1 * (f64) smm->preallocated_sessions /
1273 (f64) (num_threads - 1));
1274
1275 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001276 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001277 pool_init_fixed (smm->sessions[j],
1278 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001279 }
Florin Coras66b11312017-07-31 17:18:03 -07001280 }
1281 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001282
Florin Coras04e53442017-07-16 17:12:15 -07001283 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001284 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001285 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001286
Florin Corase04c2992017-03-01 08:17:34 -08001287 smm->is_enabled = 1;
1288
Florin Coras561af9b2017-12-09 10:19:43 -08001289 /* Enable transports */
1290 transport_enable_disable (vm, 1);
Florin Corasa0b34a72017-03-07 01:20:52 -08001291
Dave Barach68b0fb02017-02-28 15:15:56 -05001292 return 0;
1293}
1294
Florin Corasa5464812017-04-19 13:00:05 -07001295void
1296session_node_enable_disable (u8 is_en)
1297{
1298 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1299 /* *INDENT-OFF* */
1300 foreach_vlib_main (({
1301 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1302 state);
1303 }));
1304 /* *INDENT-ON* */
1305}
1306
Florin Corase04c2992017-03-01 08:17:34 -08001307clib_error_t *
1308vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1309{
Florin Corascea194d2017-10-02 00:18:51 -07001310 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001311 if (is_en)
1312 {
1313 if (session_manager_main.is_enabled)
1314 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001315
Florin Corasa5464812017-04-19 13:00:05 -07001316 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001317 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001318 }
1319 else
1320 {
1321 session_manager_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001322 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001323 }
1324
Florin Corascea194d2017-10-02 00:18:51 -07001325 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001326}
1327
Florin Corase04c2992017-03-01 08:17:34 -08001328clib_error_t *
1329session_manager_main_init (vlib_main_t * vm)
1330{
1331 session_manager_main_t *smm = &session_manager_main;
Florin Corasb384b542018-01-15 01:08:33 -08001332 smm->session_baseva = 0x200000000ULL;
Florin Corasa332c462018-01-31 06:52:17 -08001333 smm->session_va_space_size = (u64) 128 << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001334 smm->evt_qs_segment_size = 64 << 20;
Florin Corase04c2992017-03-01 08:17:34 -08001335 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001336 return 0;
1337}
1338
Dave Barach2c25a622017-06-26 11:35:07 -04001339VLIB_INIT_FUNCTION (session_manager_main_init);
1340
1341static clib_error_t *
1342session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001343{
1344 session_manager_main_t *smm = &session_manager_main;
1345 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001346 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001347
1348 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1349 {
1350 if (unformat (input, "event-queue-length %d", &nitems))
1351 {
1352 if (nitems >= 2048)
1353 smm->configured_event_queue_length = nitems;
1354 else
1355 clib_warning ("event queue length %d too small, ignored", nitems);
1356 }
Florin Coras66b11312017-07-31 17:18:03 -07001357 else if (unformat (input, "preallocated-sessions %d",
1358 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001359 ;
Florin Coras66b11312017-07-31 17:18:03 -07001360 else if (unformat (input, "v4-session-table-buckets %d",
1361 &smm->configured_v4_session_table_buckets))
1362 ;
1363 else if (unformat (input, "v4-halfopen-table-buckets %d",
1364 &smm->configured_v4_halfopen_table_buckets))
1365 ;
1366 else if (unformat (input, "v6-session-table-buckets %d",
1367 &smm->configured_v6_session_table_buckets))
1368 ;
1369 else if (unformat (input, "v6-halfopen-table-buckets %d",
1370 &smm->configured_v6_halfopen_table_buckets))
1371 ;
1372 else if (unformat (input, "v4-session-table-memory %U",
1373 unformat_memory_size, &tmp))
1374 {
1375 if (tmp >= 0x100000000)
1376 return clib_error_return (0, "memory size %llx (%lld) too large",
1377 tmp, tmp);
1378 smm->configured_v4_session_table_memory = tmp;
1379 }
1380 else if (unformat (input, "v4-halfopen-table-memory %U",
1381 unformat_memory_size, &tmp))
1382 {
1383 if (tmp >= 0x100000000)
1384 return clib_error_return (0, "memory size %llx (%lld) too large",
1385 tmp, tmp);
1386 smm->configured_v4_halfopen_table_memory = tmp;
1387 }
1388 else if (unformat (input, "v6-session-table-memory %U",
1389 unformat_memory_size, &tmp))
1390 {
1391 if (tmp >= 0x100000000)
1392 return clib_error_return (0, "memory size %llx (%lld) too large",
1393 tmp, tmp);
1394 smm->configured_v6_session_table_memory = tmp;
1395 }
1396 else if (unformat (input, "v6-halfopen-table-memory %U",
1397 unformat_memory_size, &tmp))
1398 {
1399 if (tmp >= 0x100000000)
1400 return clib_error_return (0, "memory size %llx (%lld) too large",
1401 tmp, tmp);
1402 smm->configured_v6_halfopen_table_memory = tmp;
1403 }
Florin Coras93e65802017-11-29 00:07:11 -05001404 else if (unformat (input, "local-endpoints-table-memory %U",
1405 unformat_memory_size, &tmp))
1406 {
1407 if (tmp >= 0x100000000)
1408 return clib_error_return (0, "memory size %llx (%lld) too large",
1409 tmp, tmp);
1410 smm->local_endpoints_table_memory = tmp;
1411 }
1412 else if (unformat (input, "local-endpoints-table-buckets %d",
1413 &smm->local_endpoints_table_buckets))
1414 ;
Florin Corasb384b542018-01-15 01:08:33 -08001415 else if (unformat (input, "evt_qs_memfd_seg"))
1416 smm->evt_qs_use_memfd_seg = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001417 else
1418 return clib_error_return (0, "unknown input `%U'",
1419 format_unformat_error, input);
1420 }
1421 return 0;
1422}
1423
1424VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1425
Dave Barach68b0fb02017-02-28 15:15:56 -05001426/*
1427 * fd.io coding-style-patch-verification: ON
1428 *
1429 * Local Variables:
1430 * eval: (c-set-style "gnu")
1431 * End:
1432 */