blob: ee02526c190a3fb4ffb5f7b648b45c4258924a6d [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{
Florin Coras3cbc04b2017-10-02 00:18:51 -070034 session_fifo_event_t evt = { {0}, };
Florin Corase86a8ed2018-01-05 03:20:25 -080035 svm_queue_t *q;
Florin Corasb2371c22018-05-31 17:14:10 -070036 u32 tries = 0, max_tries;
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 {
Florin Corasb2371c22018-05-31 17:14:10 -070050 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
51 if (tries++ == max_tries)
Florin Coras3cbc04b2017-10-02 00:18:51 -070052 {
53 SESSION_DBG ("failed to enqueue evt");
54 break;
55 }
56 }
57}
58
59void
60session_send_session_evt_to_thread (u64 session_handle,
61 fifo_event_type_t evt_type,
62 u32 thread_index)
63{
64 session_send_evt_to_thread (session_handle, evt_type, thread_index, 0, 0);
65}
66
67void
68session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
69{
70 if (thread_index != vlib_get_thread_index ())
71 session_send_evt_to_thread (0, FIFO_EVENT_RPC, thread_index, fp,
72 rpc_args);
73 else
74 {
75 void (*fnp) (void *) = fp;
76 fnp (rpc_args);
77 }
78}
79
80stream_session_t *
81session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -050082{
Florin Coras6cf30ad2017-04-04 23:08:23 -070083 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -070084 stream_session_t *s;
85 u8 will_expand = 0;
86 pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
87 CLIB_CACHE_LINE_BYTES);
88 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -080089 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -070090 {
Florin Coras84a30ef2018-01-24 10:49:23 -080091 clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -070092 pool_get_aligned (session_manager_main.sessions[thread_index], s,
93 CLIB_CACHE_LINE_BYTES);
Florin Coras84a30ef2018-01-24 10:49:23 -080094 clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -070095 }
96 else
97 {
98 pool_get_aligned (session_manager_main.sessions[thread_index], s,
99 CLIB_CACHE_LINE_BYTES);
100 }
101 memset (s, 0, sizeof (*s));
102 s->session_index = s - session_manager_main.sessions[thread_index];
103 s->thread_index = thread_index;
104 return s;
105}
106
Florin Coras371ca502018-02-21 12:07:41 -0800107void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700108session_free (stream_session_t * s)
109{
110 pool_put (session_manager_main.sessions[s->thread_index], s);
111 if (CLIB_DEBUG)
112 memset (s, 0xFA, sizeof (*s));
113}
114
Florin Coras371ca502018-02-21 12:07:41 -0800115int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700116session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
117{
Dave Barach68b0fb02017-02-28 15:15:56 -0500118 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
119 u32 fifo_segment_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700120 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500121
Florin Coras3cbc04b2017-10-02 00:18:51 -0700122 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
123 &server_tx_fifo,
124 &fifo_segment_index)))
125 return rv;
126 /* Initialize backpointers */
127 server_rx_fifo->master_session_index = s->session_index;
128 server_rx_fifo->master_thread_index = s->thread_index;
129
130 server_tx_fifo->master_session_index = s->session_index;
131 server_tx_fifo->master_thread_index = s->thread_index;
132
133 s->server_rx_fifo = server_rx_fifo;
134 s->server_tx_fifo = server_tx_fifo;
135 s->svm_segment_index = fifo_segment_index;
136 return 0;
137}
138
139static stream_session_t *
140session_alloc_for_connection (transport_connection_t * tc)
141{
142 stream_session_t *s;
143 u32 thread_index = tc->thread_index;
144
Dave Barach2c25a622017-06-26 11:35:07 -0400145 ASSERT (thread_index == vlib_get_thread_index ());
146
Florin Coras3cbc04b2017-10-02 00:18:51 -0700147 s = session_alloc (thread_index);
148 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500149 s->session_state = SESSION_STATE_CONNECTING;
Andreas Schultzc1214bd2017-12-08 15:12:36 +0100150 s->enqueue_epoch = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500151
Florin Coras3cbc04b2017-10-02 00:18:51 -0700152 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500154 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700155 return s;
156}
157
158static int
159session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
160 u8 alloc_fifos, stream_session_t ** ret_s)
161{
162 stream_session_t *s;
163 int rv;
164
165 s = session_alloc_for_connection (tc);
166 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
167 {
168 session_free (s);
Florin Coras29ca16f2017-11-02 18:14:17 -0400169 *ret_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700170 return rv;
171 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500172
173 /* Add to the main lookup table */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700174 session_lookup_add_connection (tc, session_handle (s));
Dave Barach68b0fb02017-02-28 15:15:56 -0500175
176 *ret_s = s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500177 return 0;
178}
179
Florin Coras1f152cd2017-08-18 19:28:03 -0700180/**
181 * Discards bytes from buffer chain
182 *
183 * It discards n_bytes_to_drop starting at first buffer after chain_b
184 */
185always_inline void
186session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
187 vlib_buffer_t ** chain_b,
188 u32 n_bytes_to_drop)
189{
190 vlib_buffer_t *next = *chain_b;
191 u32 to_drop = n_bytes_to_drop;
192 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
193 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
194 {
195 next = vlib_get_buffer (vm, next->next_buffer);
196 if (next->current_length > to_drop)
197 {
198 vlib_buffer_advance (next, to_drop);
199 to_drop = 0;
200 }
201 else
202 {
203 to_drop -= next->current_length;
204 next->current_length = 0;
205 }
206 }
207 *chain_b = next;
208
209 if (to_drop == 0)
210 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
211}
212
213/**
214 * Enqueue buffer chain tail
215 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700216always_inline int
217session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
218 u32 offset, u8 is_in_order)
219{
220 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700221 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700222 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700223 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700224 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700225 int rv = 0;
226
Florin Coras1f152cd2017-08-18 19:28:03 -0700227 if (is_in_order && offset)
228 {
229 diff = offset - b->current_length;
230 if (diff > b->total_length_not_including_first_buffer)
231 return 0;
232 chain_b = b;
233 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
234 chain_bi = vlib_get_buffer_index (vm, chain_b);
235 }
236 else
237 chain_bi = b->next_buffer;
238
Florin Corasf6d68ed2017-05-07 19:12:02 -0700239 do
240 {
241 chain_b = vlib_get_buffer (vm, chain_bi);
242 data = vlib_buffer_get_current (chain_b);
243 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700244 if (!len)
245 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700246 if (is_in_order)
247 {
248 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700249 if (rv == len)
250 {
251 written += rv;
252 }
253 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700254 {
255 return (rv > 0) ? (written + rv) : written;
256 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700257 else if (rv > len)
258 {
259 written += rv;
260
261 /* written more than what was left in chain */
262 if (written > b->total_length_not_including_first_buffer)
263 return written;
264
265 /* drop the bytes that have already been delivered */
266 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
267 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700268 }
269 else
270 {
271 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
272 data);
273 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700274 {
275 clib_warning ("failed to enqueue multi-buffer seg");
276 return -1;
277 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700278 offset += len;
279 }
280 }
281 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
282 ? chain_b->next_buffer : 0));
283
284 if (is_in_order)
285 return written;
286
287 return 0;
288}
289
Dave Barach68b0fb02017-02-28 15:15:56 -0500290/*
291 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
292 * event but on request can queue notification events for later delivery by
293 * calling stream_server_flush_enqueue_events().
294 *
295 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700296 * @param b Buffer to be enqueued
297 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500298 * @param queue_event Flag to indicate if peer is to be notified or if event
299 * is to be queued. The former is useful when more data is
300 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700301 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500302 * @return Number of bytes enqueued or a negative value if enqueueing failed.
303 */
304int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700305session_enqueue_stream_connection (transport_connection_t * tc,
306 vlib_buffer_t * b, u32 offset,
307 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500308{
309 stream_session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700310 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500311
Florin Corascea194d2017-10-02 00:18:51 -0700312 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500313
Florin Corasf6d68ed2017-05-07 19:12:02 -0700314 if (is_in_order)
315 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700316 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
317 b->current_length,
318 vlib_buffer_get_current (b));
319 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
320 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700321 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700322 in_order_off = enqueued > b->current_length ? enqueued : 0;
323 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
324 if (rv > 0)
325 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700326 }
327 }
328 else
329 {
330 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
331 b->current_length,
332 vlib_buffer_get_current (b));
333 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700334 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
335 /* if something was enqueued, report even this as success for ooo
336 * segment handling */
337 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700338 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500339
340 if (queue_event)
341 {
342 /* Queue RX event on this fifo. Eventually these will need to be flushed
343 * by calling stream_server_flush_enqueue_events () */
344 session_manager_main_t *smm = vnet_get_session_manager_main ();
345 u32 thread_index = s->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700346 u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500347
Florin Coras3cbc04b2017-10-02 00:18:51 -0700348 if (s->enqueue_epoch != enqueue_epoch)
Dave Barach68b0fb02017-02-28 15:15:56 -0500349 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700350 s->enqueue_epoch = enqueue_epoch;
351 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
Dave Barach68b0fb02017-02-28 15:15:56 -0500352 s - smm->sessions[thread_index]);
353 }
354 }
355
Chris Lukeb2bcad62017-09-18 08:51:22 -0400356 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500357}
358
Florin Coras7fb0fe12018-04-09 09:24:52 -0700359
Florin Coras3cbc04b2017-10-02 00:18:51 -0700360int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700361session_enqueue_dgram_connection (stream_session_t * s,
362 session_dgram_hdr_t * hdr,
363 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700364{
365 int enqueued = 0, rv, in_order_off;
366
Florin Coras7fb0fe12018-04-09 09:24:52 -0700367 ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
368 >= b->current_length + sizeof (*hdr));
369
370 svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
371 (u8 *) hdr);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700372 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
373 vlib_buffer_get_current (b));
374 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
375 {
376 in_order_off = enqueued > b->current_length ? enqueued : 0;
377 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
378 if (rv > 0)
379 enqueued += rv;
380 }
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;
387 u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
388
389 if (s->enqueue_epoch != enqueue_epoch)
390 {
391 s->enqueue_epoch = enqueue_epoch;
392 vec_add1 (smm->session_to_enqueue[proto][thread_index],
393 s - smm->sessions[thread_index]);
394 }
395 }
396 return enqueued;
397}
398
Dave Barach68b0fb02017-02-28 15:15:56 -0500399/** Check if we have space in rx fifo to push more bytes */
400u8
401stream_session_no_space (transport_connection_t * tc, u32 thread_index,
402 u16 data_len)
403{
Florin Corascea194d2017-10-02 00:18:51 -0700404 stream_session_t *s = session_get (tc->s_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500405
406 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
407 return 1;
408
409 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
410 return 1;
411
412 return 0;
413}
414
415u32
Florin Coras93992a92017-05-24 18:03:56 -0700416stream_session_tx_fifo_max_dequeue (transport_connection_t * tc)
417{
Florin Corascea194d2017-10-02 00:18:51 -0700418 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasb2215d62017-08-01 16:56:58 -0700419 if (!s->server_tx_fifo)
Florin Coras93992a92017-05-24 18:03:56 -0700420 return 0;
421 return svm_fifo_max_dequeue (s->server_tx_fifo);
422}
423
424int
Dave Barach68b0fb02017-02-28 15:15:56 -0500425stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
426 u32 offset, u32 max_bytes)
427{
Florin Corascea194d2017-10-02 00:18:51 -0700428 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700429 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500430}
431
432u32
433stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
434{
Florin Corascea194d2017-10-02 00:18:51 -0700435 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700436 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500437}
438
439/**
440 * Notify session peer that new data has been enqueued.
441 *
442 * @param s Stream session for which the event is to be generated.
443 * @param block Flag to indicate if call should block if event queue is full.
444 *
445 * @return 0 on succes or negative number if failed to send notification.
446 */
447static int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700448session_enqueue_notify (stream_session_t * s, u8 block)
Dave Barach68b0fb02017-02-28 15:15:56 -0500449{
450 application_t *app;
451 session_fifo_event_t evt;
Florin Corase86a8ed2018-01-05 03:20:25 -0800452 svm_queue_t *q;
Dave Barach68b0fb02017-02-28 15:15:56 -0500453
Florin Corasb2371c22018-05-31 17:14:10 -0700454 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_CLOSING))
Florin Coras50958952017-08-29 14:50:13 -0700455 {
456 /* Session is closed so app will never clean up. Flush rx fifo */
457 u32 to_dequeue = svm_fifo_max_dequeue (s->server_rx_fifo);
458 if (to_dequeue)
459 svm_fifo_dequeue_drop (s->server_rx_fifo, to_dequeue);
460 return 0;
461 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500462
463 /* Get session's server */
Dave Barach818eb542017-08-02 13:56:13 -0400464 app = application_get_if_valid (s->app_index);
465
466 if (PREDICT_FALSE (app == 0))
467 {
468 clib_warning ("invalid s->app_index = %d", s->app_index);
469 return 0;
470 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500471
Florin Coras371ca502018-02-21 12:07:41 -0800472 /* Built-in app? Hand event to the callback... */
473 if (app->cb_fns.builtin_app_rx_callback)
474 return app->cb_fns.builtin_app_rx_callback (s);
Florin Corasd79b41e2017-03-04 05:37:52 -0800475
Florin Coras6792ec02017-03-13 03:49:51 -0700476 /* If no event, send one */
477 if (svm_fifo_set_event (s->server_rx_fifo))
478 {
479 /* Fabricate event */
480 evt.fifo = s->server_rx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700481 evt.event_type = FIFO_EVENT_APP_RX;
Dave Barach68b0fb02017-02-28 15:15:56 -0500482
Florin Coras6792ec02017-03-13 03:49:51 -0700483 /* Add event to server's event queue */
484 q = app->event_queue;
485
486 /* Based on request block (or not) for lack of space */
487 if (block || PREDICT_TRUE (q->cursize < q->maxsize))
Florin Corase86a8ed2018-01-05 03:20:25 -0800488 svm_queue_add (app->event_queue, (u8 *) & evt,
489 0 /* do wait for mutex */ );
Florin Coras6792ec02017-03-13 03:49:51 -0700490 else
491 {
492 clib_warning ("fifo full");
493 return -1;
494 }
495 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500496
Florin Corase69f4952017-03-07 10:06:24 -0800497 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700498 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Corasec44e342017-10-16 20:47:56 -0700499 ed->data[0] = evt.event_type;
Florin Coras6792ec02017-03-13 03:49:51 -0700500 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800501 }));
502 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500503
504 return 0;
505}
506
507/**
508 * Flushes queue of sessions that are to be notified of new data
509 * enqueued events.
510 *
511 * @param thread_index Thread index for which the flush is to be performed.
512 * @return 0 on success or a positive number indicating the number of
513 * failures due to API queue being full.
514 */
515int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700516session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500517{
518 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700519 u32 *indices;
520 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500521 int i, errors = 0;
522
Florin Coras3cbc04b2017-10-02 00:18:51 -0700523 indices = smm->session_to_enqueue[transport_proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500524
Florin Coras3cbc04b2017-10-02 00:18:51 -0700525 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500526 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700527 s = session_get_if_valid (indices[i], thread_index);
528 if (s == 0 || session_enqueue_notify (s, 0 /* don't block */ ))
529 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500530 }
531
Florin Coras3cbc04b2017-10-02 00:18:51 -0700532 vec_reset_length (indices);
533 smm->session_to_enqueue[transport_proto][thread_index] = indices;
534 smm->current_enqueue_epoch[transport_proto][thread_index]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500535
536 return errors;
537}
538
Florin Coras7fb0fe12018-04-09 09:24:52 -0700539int
540session_manager_flush_all_enqueue_events (u8 transport_proto)
541{
542 vlib_thread_main_t *vtm = vlib_get_thread_main ();
543 int i, errors = 0;
544 for (i = 0; i < 1 + vtm->n_threads; i++)
545 errors += session_manager_flush_enqueue_events (transport_proto, i);
546 return errors;
547}
548
Florin Corasc28764f2017-04-26 00:08:42 -0700549/**
550 * Init fifo tail and head pointers
551 *
552 * Useful if transport uses absolute offsets for tracking ooo segments.
553 */
554void
555stream_session_init_fifos_pointers (transport_connection_t * tc,
556 u32 rx_pointer, u32 tx_pointer)
557{
558 stream_session_t *s;
Florin Corascea194d2017-10-02 00:18:51 -0700559 s = session_get (tc->s_index, tc->thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700560 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
561 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
562}
563
Florin Corasf03a59a2017-06-09 21:07:32 -0700564int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700565session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500566{
Florin Coras371ca502018-02-21 12:07:41 -0800567 u32 opaque = 0, new_ti, new_si;
Dave Barach68b0fb02017-02-28 15:15:56 -0500568 stream_session_t *new_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700569 segment_manager_t *sm;
Florin Coras371ca502018-02-21 12:07:41 -0800570 application_t *app;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700571 u8 alloc_fifos;
Florin Coras371ca502018-02-21 12:07:41 -0800572 int error = 0;
573 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500574
Florin Coras3cbc04b2017-10-02 00:18:51 -0700575 /*
576 * Find connection handle and cleanup half-open table
577 */
Florin Corascea194d2017-10-02 00:18:51 -0700578 handle = session_lookup_half_open_handle (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700579 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500580 {
Florin Corascea194d2017-10-02 00:18:51 -0700581 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700582 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500583 }
Florin Corascea194d2017-10-02 00:18:51 -0700584 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400585
Florin Corasab0289a2017-08-14 11:25:25 -0700586 /* Get the app's index from the handle we stored when opening connection
587 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400588 * index */
Florin Corasc87c91d2017-08-16 19:55:49 -0700589 app = application_get_if_valid (handle >> 32);
590 if (!app)
591 return -1;
Florin Corasab0289a2017-08-14 11:25:25 -0700592 opaque = tc->s_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500593
Florin Coras3cbc04b2017-10-02 00:18:51 -0700594 /*
595 * Allocate new session with fifos (svm segments are allocated if needed)
596 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500597 if (!is_fail)
598 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700599 sm = application_get_connect_segment_manager (app);
Florin Coras7999e832017-10-31 01:51:04 -0700600 alloc_fifos = !application_is_builtin_proxy (app);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700601 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
Florin Corasf03a59a2017-06-09 21:07:32 -0700602 {
603 is_fail = 1;
604 error = -1;
605 }
606 else
Florin Coras371ca502018-02-21 12:07:41 -0800607 {
608 new_s->app_index = app->index;
609 new_si = new_s->session_index;
610 new_ti = new_s->thread_index;
611 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500612 }
613
Florin Coras3cbc04b2017-10-02 00:18:51 -0700614 /*
615 * Notify client application
616 */
Florin Corasab0289a2017-08-14 11:25:25 -0700617 if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
Florin Coras6534b7a2017-07-18 05:38:03 -0400618 is_fail))
619 {
Florin Corascea194d2017-10-02 00:18:51 -0700620 SESSION_DBG ("failed to notify app");
Florin Coras6534b7a2017-07-18 05:38:03 -0400621 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800622 {
623 new_s = session_get (new_si, new_ti);
624 stream_session_disconnect_transport (new_s);
625 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400626 }
627 else
628 {
629 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800630 {
631 new_s = session_get (new_si, new_ti);
632 new_s->session_state = SESSION_STATE_READY;
633 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400634 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500635
Florin Corasf03a59a2017-06-09 21:07:32 -0700636 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500637}
638
Florin Coras3cbc04b2017-10-02 00:18:51 -0700639typedef struct _session_switch_pool_args
640{
641 u32 session_index;
642 u32 thread_index;
643 u32 new_thread_index;
644 u32 new_session_index;
645} session_switch_pool_args_t;
646
647static void
648session_switch_pool (void *cb_args)
649{
650 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras561af9b2017-12-09 10:19:43 -0800651 transport_proto_t tp;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700652 stream_session_t *s;
653 ASSERT (args->thread_index == vlib_get_thread_index ());
654 s = session_get (args->session_index, args->thread_index);
655 s->server_tx_fifo->master_session_index = args->new_session_index;
656 s->server_tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras561af9b2017-12-09 10:19:43 -0800657 tp = session_get_transport_proto (s);
658 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700659 session_free (s);
660 clib_mem_free (cb_args);
661}
662
663/**
664 * Move dgram session to the right thread
665 */
666int
667session_dgram_connect_notify (transport_connection_t * tc,
668 u32 old_thread_index,
669 stream_session_t ** new_session)
670{
671 stream_session_t *new_s;
672 session_switch_pool_args_t *rpc_args;
673
674 /*
675 * Clone half-open session to the right thread.
676 */
677 new_s = session_clone_safe (tc->s_index, old_thread_index);
678 new_s->connection_index = tc->c_index;
679 new_s->server_rx_fifo->master_session_index = new_s->session_index;
680 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
681 new_s->session_state = SESSION_STATE_READY;
682 session_lookup_add_connection (tc, session_handle (new_s));
683
684 /*
685 * Ask thread owning the old session to clean it up and make us the tx
686 * fifo owner
687 */
688 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
689 rpc_args->new_session_index = new_s->session_index;
690 rpc_args->new_thread_index = new_s->thread_index;
691 rpc_args->session_index = tc->s_index;
692 rpc_args->thread_index = old_thread_index;
693 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
694 rpc_args);
695
696 tc->s_index = new_s->session_index;
697 new_s->connection_index = tc->c_index;
698 *new_session = new_s;
699 return 0;
700}
701
Dave Barach68b0fb02017-02-28 15:15:56 -0500702void
703stream_session_accept_notify (transport_connection_t * tc)
704{
705 application_t *server;
706 stream_session_t *s;
707
Florin Corascea194d2017-10-02 00:18:51 -0700708 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500709 server = application_get (s->app_index);
710 server->cb_fns.session_accept_callback (s);
711}
712
713/**
714 * Notification from transport that connection is being closed.
715 *
716 * A disconnect is sent to application but state is not removed. Once
717 * disconnect is acknowledged by application, session disconnect is called.
718 * Ultimately this leads to close being called on transport (passive close).
719 */
720void
721stream_session_disconnect_notify (transport_connection_t * tc)
722{
723 application_t *server;
724 stream_session_t *s;
725
Florin Corascea194d2017-10-02 00:18:51 -0700726 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500727 server = application_get (s->app_index);
728 server->cb_fns.session_disconnect_callback (s);
729}
730
731/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400732 * Cleans up session and lookup table.
Dave Barach68b0fb02017-02-28 15:15:56 -0500733 */
734void
735stream_session_delete (stream_session_t * s)
736{
Florin Coras6534b7a2017-07-18 05:38:03 -0400737 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500738
Florin Corasd79b41e2017-03-04 05:37:52 -0800739 /* Delete from the main lookup table. */
Florin Corascea194d2017-10-02 00:18:51 -0700740 if ((rv = session_lookup_del_session (s)))
Florin Coras6534b7a2017-07-18 05:38:03 -0400741 clib_warning ("hash delete error, rv %d", rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500742
743 /* Cleanup fifo segments */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700744 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
745 s->server_tx_fifo);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700746 session_free (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500747}
748
749/**
750 * Notification from transport that connection is being deleted
751 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400752 * This removes the session if it is still valid. It should be called only on
753 * previously fully established sessions. For instance failed connects should
754 * call stream_session_connect_notify and indicate that the connect has
755 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 */
757void
758stream_session_delete_notify (transport_connection_t * tc)
759{
760 stream_session_t *s;
761
Florin Corase04c2992017-03-01 08:17:34 -0800762 /* App might've been removed already */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700763 s = session_get_if_valid (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500764 if (!s)
Florin Corasc87c91d2017-08-16 19:55:49 -0700765 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500766 stream_session_delete (s);
767}
768
769/**
770 * Notify application that connection has been reset.
771 */
772void
773stream_session_reset_notify (transport_connection_t * tc)
774{
775 stream_session_t *s;
776 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700777 s = session_get (tc->s_index, tc->thread_index);
Florin Corasca1c8f32018-05-23 21:01:30 -0700778 s->session_state = SESSION_STATE_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500779 app = application_get (s->app_index);
780 app->cb_fns.session_reset_callback (s);
781}
782
783/**
784 * Accept a stream session. Optionally ping the server by callback.
785 */
786int
787stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700788 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500789{
Dave Barach68b0fb02017-02-28 15:15:56 -0500790 application_t *server;
791 stream_session_t *s, *listener;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700792 segment_manager_t *sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500793 int rv;
794
795 /* Find the server */
Florin Coras5c9083d2018-04-13 06:39:07 -0700796 listener = listen_session_get (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500797 server = application_get (listener->app_index);
798
Florin Coras6cf30ad2017-04-04 23:08:23 -0700799 sm = application_get_listen_segment_manager (server, listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700800 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500801 return rv;
802
Florin Coras6cf30ad2017-04-04 23:08:23 -0700803 s->app_index = server->index;
804 s->listener_index = listener_index;
Dave Barach2c25a622017-06-26 11:35:07 -0400805 s->session_state = SESSION_STATE_ACCEPTING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500806
807 /* Shoulder-tap the server */
808 if (notify)
809 {
810 server->cb_fns.session_accept_callback (s);
811 }
812
813 return 0;
814}
815
Florin Coras371ca502018-02-21 12:07:41 -0800816int
817session_open_cl (u32 app_index, session_endpoint_t * rmt, u32 opaque)
818{
819 transport_connection_t *tc;
820 transport_endpoint_t *tep;
821 segment_manager_t *sm;
822 stream_session_t *s;
823 application_t *app;
824 int rv;
825
826 tep = session_endpoint_to_transport (rmt);
827 rv = tp_vfts[rmt->transport_proto].open (tep);
828 if (rv < 0)
829 {
830 SESSION_DBG ("Transport failed to open connection.");
831 return VNET_API_ERROR_SESSION_CONNECT;
832 }
833
834 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
835
836 /* For dgram type of service, allocate session and fifos now.
837 */
838 app = application_get (app_index);
839 sm = application_get_connect_segment_manager (app);
840
841 if (session_alloc_and_init (sm, tc, 1, &s))
842 return -1;
843 s->app_index = app->index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700844 s->session_state = SESSION_STATE_OPENED;
Florin Coras371ca502018-02-21 12:07:41 -0800845
846 /* Tell the app about the new event fifo for this session */
847 app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
848
849 return 0;
850}
851
852int
853session_open_vc (u32 app_index, session_endpoint_t * rmt, u32 opaque)
854{
855 transport_connection_t *tc;
856 transport_endpoint_t *tep;
857 u64 handle;
858 int rv;
859
Florin Coras371ca502018-02-21 12:07:41 -0800860 tep = session_endpoint_to_transport (rmt);
861 rv = tp_vfts[rmt->transport_proto].open (tep);
862 if (rv < 0)
863 {
864 SESSION_DBG ("Transport failed to open connection.");
865 return VNET_API_ERROR_SESSION_CONNECT;
866 }
867
868 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
869
870 /* If transport offers a stream service, only allocate session once the
871 * connection has been established.
872 * Add connection to half-open table and save app and tc index. The
873 * latter is needed to help establish the connection while the former
874 * is needed when the connect notify comes and we have to notify the
875 * external app
876 */
877 handle = (((u64) app_index) << 32) | (u64) tc->c_index;
878 session_lookup_add_half_open (tc, handle);
879
880 /* Store api_context (opaque) for when the reply comes. Not the nicest
881 * thing but better than allocating a separate half-open pool.
882 */
883 tc->s_index = opaque;
884 return 0;
885}
886
887int
888session_open_app (u32 app_index, session_endpoint_t * rmt, u32 opaque)
889{
Florin Coras8f89dd02018-03-05 16:53:07 -0800890 session_endpoint_extended_t *sep = (session_endpoint_extended_t *) rmt;
891 sep->app_index = app_index;
892 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800893
Florin Coras8f89dd02018-03-05 16:53:07 -0800894 return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
Florin Coras371ca502018-02-21 12:07:41 -0800895}
896
897typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
898
899/* *INDENT-OFF* */
900static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
901 session_open_vc,
902 session_open_cl,
903 session_open_app,
904};
905/* *INDENT-ON* */
906
Florin Coras6cf30ad2017-04-04 23:08:23 -0700907/**
908 * Ask transport to open connection to remote transport endpoint.
909 *
910 * Stores handle for matching request with reply since the call can be
911 * asynchronous. For instance, for TCP the 3-way handshake must complete
912 * before reply comes. Session is only created once connection is established.
913 *
914 * @param app_index Index of the application requesting the connect
915 * @param st Session type requested.
916 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700917 * @param opaque Opaque data (typically, api_context) the application expects
918 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700919 */
Florin Corase04c2992017-03-01 08:17:34 -0800920int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700921session_open (u32 app_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500922{
Florin Coras371ca502018-02-21 12:07:41 -0800923 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
924 return session_open_srv_fns[tst] (app_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700925}
926
Florin Coras6cf30ad2017-04-04 23:08:23 -0700927int
Florin Coras371ca502018-02-21 12:07:41 -0800928session_listen_vc (stream_session_t * s, session_endpoint_t * sep)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700929{
930 transport_connection_t *tc;
931 u32 tci;
932
933 /* Transport bind/listen */
Florin Coras561af9b2017-12-09 10:19:43 -0800934 tci = tp_vfts[sep->transport_proto].bind (s->session_index,
935 session_endpoint_to_transport
936 (sep));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700937
938 if (tci == (u32) ~ 0)
939 return -1;
940
941 /* Attach transport to session */
942 s->connection_index = tci;
Florin Coras561af9b2017-12-09 10:19:43 -0800943 tc = tp_vfts[sep->transport_proto].get_listener (tci);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700944
945 /* Weird but handle it ... */
946 if (tc == 0)
947 return -1;
948
949 /* Add to the main lookup table */
Florin Corascea194d2017-10-02 00:18:51 -0700950 session_lookup_add_connection (tc, s->session_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700951 return 0;
952}
953
Florin Coras371ca502018-02-21 12:07:41 -0800954int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700955session_listen_cl (stream_session_t * s, session_endpoint_t * sep)
956{
957 transport_connection_t *tc;
958 application_t *server;
959 segment_manager_t *sm;
960 u32 tci;
961
962 /* Transport bind/listen */
963 tci = tp_vfts[sep->transport_proto].bind (s->session_index,
964 session_endpoint_to_transport
965 (sep));
966
967 if (tci == (u32) ~ 0)
968 return -1;
969
970 /* Attach transport to session */
971 s->connection_index = tci;
972 tc = tp_vfts[sep->transport_proto].get_listener (tci);
973
974 /* Weird but handle it ... */
975 if (tc == 0)
976 return -1;
977
978 server = application_get (s->app_index);
979 sm = application_get_listen_segment_manager (server, s);
980 if (session_alloc_fifos (sm, s))
981 return -1;
982
983 /* Add to the main lookup table */
984 session_lookup_add_connection (tc, s->session_index);
985 return 0;
986}
987
988int
Florin Coras371ca502018-02-21 12:07:41 -0800989session_listen_app (stream_session_t * s, session_endpoint_t * sep)
990{
991 session_endpoint_extended_t esep;
992 clib_memcpy (&esep, sep, sizeof (*sep));
993 esep.app_index = s->app_index;
994
995 return tp_vfts[sep->transport_proto].bind (s->session_index,
996 (transport_endpoint_t *) & esep);
997}
998
999typedef int (*session_listen_service_fn) (stream_session_t *,
1000 session_endpoint_t *);
1001
1002/* *INDENT-OFF* */
1003static session_listen_service_fn
1004session_listen_srv_fns[TRANSPORT_N_SERVICES] = {
1005 session_listen_vc,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001006 session_listen_cl,
Florin Coras371ca502018-02-21 12:07:41 -08001007 session_listen_app,
1008};
1009/* *INDENT-ON* */
1010
Florin Coras7fb0fe12018-04-09 09:24:52 -07001011/**
1012 * Ask transport to listen on local transport endpoint.
1013 *
1014 * @param s Session for which listen will be called. Note that unlike
1015 * established sessions, listen sessions are not associated to a
1016 * thread.
1017 * @param tep Local endpoint to be listened on.
1018 */
Florin Coras371ca502018-02-21 12:07:41 -08001019int
1020stream_session_listen (stream_session_t * s, session_endpoint_t * sep)
1021{
1022 transport_service_type_t tst = tp_vfts[sep->transport_proto].service_type;
1023 return session_listen_srv_fns[tst] (s, sep);
1024}
1025
Florin Coras6cf30ad2017-04-04 23:08:23 -07001026/**
1027 * Ask transport to stop listening on local transport endpoint.
1028 *
1029 * @param s Session to stop listening on. It must be in state LISTENING.
1030 */
1031int
1032stream_session_stop_listen (stream_session_t * s)
1033{
Florin Coras561af9b2017-12-09 10:19:43 -08001034 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001035 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001036 if (s->session_state != SESSION_STATE_LISTENING)
1037 {
1038 clib_warning ("not a listening session");
1039 return -1;
1040 }
1041
Florin Coras561af9b2017-12-09 10:19:43 -08001042 tc = tp_vfts[tp].get_listener (s->connection_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001043 if (!tc)
1044 {
1045 clib_warning ("no transport");
1046 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1047 }
1048
Florin Corascea194d2017-10-02 00:18:51 -07001049 session_lookup_del_connection (tc);
Florin Coras561af9b2017-12-09 10:19:43 -08001050 tp_vfts[tp].unbind (s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001051 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001052}
1053
1054/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001055 * Initialize session disconnect.
Florin Corasa5464812017-04-19 13:00:05 -07001056 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001057 * Request is always sent to session node to ensure that all outstanding
1058 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 */
1060void
1061stream_session_disconnect (stream_session_t * s)
1062{
Florin Corasb2371c22018-05-31 17:14:10 -07001063 u32 thread_index = vlib_get_thread_index ();
1064 session_manager_main_t *smm = &session_manager_main;
1065 session_fifo_event_t *evt;
1066
1067 if (!s || s->session_state >= SESSION_STATE_CLOSING)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001068 return;
Florin Corasb2371c22018-05-31 17:14:10 -07001069 s->session_state = SESSION_STATE_CLOSING;
1070
1071 /* If we are in the handler thread, or being called with the worker barrier
1072 * held (api/cli), just append a new event pending disconnects vector. */
1073 if (thread_index > 0 || !vlib_get_current_process (vlib_get_main ()))
1074 {
1075 ASSERT (s->thread_index == thread_index || thread_index == 0);
1076 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1077 memset (evt, 0, sizeof (*evt));
1078 evt->session_handle = session_handle (s);
1079 evt->event_type = FIFO_EVENT_DISCONNECT;
1080 }
1081 else
1082 session_send_session_evt_to_thread (session_handle (s),
1083 FIFO_EVENT_DISCONNECT,
1084 s->thread_index);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001085}
1086
1087/**
1088 * Notify transport the session can be disconnected. This should eventually
1089 * result in a delete notification that allows us to cleanup session state.
1090 * Called for both active/passive disconnects.
1091 *
1092 * Must be called from the session's thread.
1093 */
1094void
1095stream_session_disconnect_transport (stream_session_t * s)
1096{
Dave Barach68b0fb02017-02-28 15:15:56 -05001097 s->session_state = SESSION_STATE_CLOSED;
Florin Coras561af9b2017-12-09 10:19:43 -08001098 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1099 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001100}
1101
1102/**
1103 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001104 *
1105 * Notify transport of the cleanup, wait for a delete notify to actually
1106 * remove the session state.
Dave Barach68b0fb02017-02-28 15:15:56 -05001107 */
1108void
1109stream_session_cleanup (stream_session_t * s)
1110{
Florin Corasd79b41e2017-03-04 05:37:52 -08001111 int rv;
1112
1113 s->session_state = SESSION_STATE_CLOSED;
1114
1115 /* Delete from the main lookup table to avoid more enqueues */
Florin Corascea194d2017-10-02 00:18:51 -07001116 rv = session_lookup_del_session (s);
Florin Corasd79b41e2017-03-04 05:37:52 -08001117 if (rv)
1118 clib_warning ("hash delete error, rv %d", rv);
1119
Florin Coras561af9b2017-12-09 10:19:43 -08001120 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1121 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001122}
1123
Florin Corasf08f26d2018-05-10 13:20:47 -07001124transport_service_type_t
1125session_transport_service_type (stream_session_t * s)
1126{
1127 transport_proto_t tp;
1128 tp = session_get_transport_proto (s);
1129 return transport_protocol_service_type (tp);
1130}
1131
1132transport_tx_fn_type_t
1133session_transport_tx_fn_type (stream_session_t * s)
1134{
1135 transport_proto_t tp;
1136 tp = session_get_transport_proto (s);
1137 return transport_protocol_tx_fn_type (tp);
1138}
1139
1140u8
1141session_tx_is_dgram (stream_session_t * s)
1142{
1143 return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
1144}
1145
Florin Corasa5464812017-04-19 13:00:05 -07001146/**
Florin Corasb384b542018-01-15 01:08:33 -08001147 * Allocate event queues in the shared-memory segment
1148 *
1149 * That can either be a newly created memfd segment, that will need to be
1150 * mapped by all stack users, or the binary api's svm region. The latter is
1151 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1152 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1153 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001154 */
1155void
Florin Corasb384b542018-01-15 01:08:33 -08001156session_vpp_event_queues_allocate (session_manager_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001157{
Florin Corasb384b542018-01-15 01:08:33 -08001158 u32 evt_q_length = 2048, evt_size = sizeof (session_fifo_event_t);
1159 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001160 api_main_t *am = &api_main;
Florin Corasb384b542018-01-15 01:08:33 -08001161 u64 eqs_size = 64 << 20;
1162 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001163 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001164 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001165
Florin Corasb384b542018-01-15 01:08:33 -08001166 if (smm->configured_event_queue_length)
1167 evt_q_length = smm->configured_event_queue_length;
1168
1169 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001170 {
Florin Corasb384b542018-01-15 01:08:33 -08001171 if (smm->evt_qs_segment_size)
1172 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001173
Florin Corasb384b542018-01-15 01:08:33 -08001174 eqs->ssvm_size = eqs_size;
1175 eqs->i_am_master = 1;
1176 eqs->my_pid = vpp_pid;
1177 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1178 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001179
Florin Corasb384b542018-01-15 01:08:33 -08001180 ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD);
Florin Corasa5464812017-04-19 13:00:05 -07001181 }
Florin Corasb384b542018-01-15 01:08:33 -08001182
1183 if (smm->evt_qs_use_memfd_seg)
1184 oldheap = ssvm_push_heap (eqs->sh);
1185 else
1186 oldheap = svm_push_data_heap (am->vlib_rp);
1187
1188 for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1189 {
1190 smm->vpp_event_queues[i] = svm_queue_init (evt_q_length, evt_size,
1191 vpp_pid, 0);
1192 }
1193
1194 if (smm->evt_qs_use_memfd_seg)
1195 ssvm_pop_heap (oldheap);
1196 else
1197 svm_pop_heap (oldheap);
1198}
1199
1200ssvm_private_t *
1201session_manager_get_evt_q_segment (void)
1202{
1203 session_manager_main_t *smm = &session_manager_main;
1204 if (smm->evt_qs_use_memfd_seg)
1205 return &smm->evt_qs_segment;
1206 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001207}
1208
Florin Coras371ca502018-02-21 12:07:41 -08001209/* *INDENT-OFF* */
1210static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1211 session_tx_fifo_peek_and_snd,
1212 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001213 session_tx_fifo_dequeue_internal,
1214 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001215};
1216/* *INDENT-ON* */
1217
Florin Coras561af9b2017-12-09 10:19:43 -08001218/**
1219 * Initialize session layer for given transport proto and ip version
1220 *
1221 * Allocates per session type (transport proto + ip version) data structures
1222 * and adds arc from session queue node to session type output node.
1223 */
1224void
1225session_register_transport (transport_proto_t transport_proto,
1226 const transport_proto_vft_t * vft, u8 is_ip4,
1227 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001228{
Florin Coras561af9b2017-12-09 10:19:43 -08001229 session_manager_main_t *smm = &session_manager_main;
1230 session_type_t session_type;
1231 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001232
Florin Coras561af9b2017-12-09 10:19:43 -08001233 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1234
1235 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001236 vec_validate (smm->session_tx_fns, session_type);
1237
1238 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001239 if (output_node != ~0)
1240 {
1241 foreach_vlib_main (({
1242 next_index = vlib_node_add_next (this_vlib_main,
1243 session_queue_node.index,
1244 output_node);
1245 }));
1246 }
Florin Coras561af9b2017-12-09 10:19:43 -08001247 /* *INDENT-ON* */
1248
1249 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001250 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001251}
1252
Florin Coras3cbc04b2017-10-02 00:18:51 -07001253transport_connection_t *
1254session_get_transport (stream_session_t * s)
1255{
Florin Coras561af9b2017-12-09 10:19:43 -08001256 transport_proto_t tp;
Florin Corasade70e42017-10-14 18:56:41 -07001257 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras561af9b2017-12-09 10:19:43 -08001258 {
1259 tp = session_get_transport_proto (s);
1260 return tp_vfts[tp].get_connection (s->connection_index,
1261 s->thread_index);
1262 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001263 return 0;
1264}
1265
1266transport_connection_t *
1267listen_session_get_transport (stream_session_t * s)
1268{
Florin Coras561af9b2017-12-09 10:19:43 -08001269 transport_proto_t tp = session_get_transport_proto (s);
1270 return tp_vfts[tp].get_listener (s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001271}
1272
Florin Corascea194d2017-10-02 00:18:51 -07001273int
1274listen_session_get_local_session_endpoint (stream_session_t * listener,
1275 session_endpoint_t * sep)
1276{
Florin Coras561af9b2017-12-09 10:19:43 -08001277 transport_proto_t tp = session_get_transport_proto (listener);
Florin Corascea194d2017-10-02 00:18:51 -07001278 transport_connection_t *tc;
Florin Coras561af9b2017-12-09 10:19:43 -08001279 tc = tp_vfts[tp].get_listener (listener->connection_index);
Florin Corascea194d2017-10-02 00:18:51 -07001280 if (!tc)
1281 {
1282 clib_warning ("no transport");
1283 return -1;
1284 }
1285
1286 /* N.B. The ip should not be copied because this is the local endpoint */
1287 sep->port = tc->lcl_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001288 sep->transport_proto = tc->proto;
Florin Corascea194d2017-10-02 00:18:51 -07001289 sep->is_ip4 = tc->is_ip4;
1290 return 0;
1291}
1292
Florin Corasfd542f12018-05-16 19:28:24 -07001293void
1294session_flush_frames_main_thread (vlib_main_t * vm)
1295{
1296 ASSERT (vlib_get_thread_index () == 0);
1297 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1298 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1299}
1300
Dave Barach68b0fb02017-02-28 15:15:56 -05001301static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001302session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001303{
Florin Corasa332c462018-01-31 06:52:17 -08001304 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Dave Barach68b0fb02017-02-28 15:15:56 -05001305 session_manager_main_t *smm = &session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -08001306 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001307 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001308 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001309
Dave Barach68b0fb02017-02-28 15:15:56 -05001310 num_threads = 1 /* main thread */ + vtm->n_threads;
1311
1312 if (num_threads < 1)
1313 return clib_error_return (0, "n_thread_stacks not set");
1314
Dave Barach68b0fb02017-02-28 15:15:56 -05001315 /* configure per-thread ** vectors */
1316 vec_validate (smm->sessions, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001317 vec_validate (smm->tx_buffers, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001318 vec_validate (smm->pending_event_vector, num_threads - 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001319 vec_validate (smm->pending_disconnects, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001320 vec_validate (smm->free_event_vector, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001321 vec_validate (smm->vpp_event_queues, num_threads - 1);
Florin Coras84a30ef2018-01-24 10:49:23 -08001322 vec_validate (smm->peekers_rw_locks, num_threads - 1);
Florin Coras8e43d042018-05-04 15:46:57 -07001323 vec_validate_aligned (smm->ctx, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001324
1325 for (i = 0; i < TRANSPORT_N_PROTO; i++)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001326 {
1327 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1328 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1329 for (j = 0; j < num_threads; j++)
1330 smm->current_enqueue_epoch[i][j] = 1;
1331 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001332
Dave Barachacd2a6a2017-05-16 17:41:34 -04001333 for (i = 0; i < num_threads; i++)
1334 {
1335 vec_validate (smm->free_event_vector[i], 0);
1336 _vec_len (smm->free_event_vector[i]) = 0;
1337 vec_validate (smm->pending_event_vector[i], 0);
1338 _vec_len (smm->pending_event_vector[i]) = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001339 vec_validate (smm->pending_disconnects[i], 0);
1340 _vec_len (smm->pending_disconnects[i]) = 0;
Florin Coras29ca16f2017-11-02 18:14:17 -04001341 if (num_threads > 1)
Florin Coras84a30ef2018-01-24 10:49:23 -08001342 clib_rwlock_init (&smm->peekers_rw_locks[i]);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001343 }
1344
Florin Corasc1a448b2018-04-20 10:51:49 -07001345#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -07001346 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1347#endif
1348
Florin Corasb384b542018-01-15 01:08:33 -08001349 /* Allocate vpp event queues segment and queue */
1350 session_vpp_event_queues_allocate (smm);
1351
1352 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001353 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1354 sm_args->size = smm->session_va_space_size;
1355 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001356
Florin Coras66b11312017-07-31 17:18:03 -07001357 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001358 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001359 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001360 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001361 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001362 pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001363 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001364 else
Florin Coras66b11312017-07-31 17:18:03 -07001365 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001366 int j;
1367 preallocated_sessions_per_worker =
1368 (1.1 * (f64) smm->preallocated_sessions /
1369 (f64) (num_threads - 1));
1370
1371 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001372 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001373 pool_init_fixed (smm->sessions[j],
1374 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001375 }
Florin Coras66b11312017-07-31 17:18:03 -07001376 }
1377 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001378
Florin Coras04e53442017-07-16 17:12:15 -07001379 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001380 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001381 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001382
Florin Corase04c2992017-03-01 08:17:34 -08001383 smm->is_enabled = 1;
1384
Florin Coras561af9b2017-12-09 10:19:43 -08001385 /* Enable transports */
1386 transport_enable_disable (vm, 1);
Florin Corasa0b34a72017-03-07 01:20:52 -08001387
Dave Barach68b0fb02017-02-28 15:15:56 -05001388 return 0;
1389}
1390
Florin Corasa5464812017-04-19 13:00:05 -07001391void
1392session_node_enable_disable (u8 is_en)
1393{
1394 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Corasfd542f12018-05-16 19:28:24 -07001395 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1396 u8 have_workers = vtm->n_threads != 0;
1397
Florin Corasa5464812017-04-19 13:00:05 -07001398 /* *INDENT-OFF* */
1399 foreach_vlib_main (({
Florin Corasfd542f12018-05-16 19:28:24 -07001400 if (have_workers && ii == 0)
1401 {
1402 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1403 state);
1404 if (is_en)
1405 {
1406 vlib_node_t *n = vlib_get_node (this_vlib_main,
1407 session_queue_process_node.index);
1408 vlib_start_process (this_vlib_main, n->runtime_index);
1409 }
1410 else
1411 {
1412 vlib_process_signal_event_mt (this_vlib_main,
1413 session_queue_process_node.index,
1414 SESSION_Q_PROCESS_STOP, 0);
1415 }
1416
1417 continue;
1418 }
Florin Corasa5464812017-04-19 13:00:05 -07001419 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1420 state);
1421 }));
1422 /* *INDENT-ON* */
1423}
1424
Florin Corase04c2992017-03-01 08:17:34 -08001425clib_error_t *
1426vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1427{
Florin Corascea194d2017-10-02 00:18:51 -07001428 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001429 if (is_en)
1430 {
1431 if (session_manager_main.is_enabled)
1432 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001433
Florin Corasa5464812017-04-19 13:00:05 -07001434 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001435 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001436 }
1437 else
1438 {
1439 session_manager_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001440 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001441 }
1442
Florin Corascea194d2017-10-02 00:18:51 -07001443 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001444}
1445
Florin Corase04c2992017-03-01 08:17:34 -08001446clib_error_t *
1447session_manager_main_init (vlib_main_t * vm)
1448{
1449 session_manager_main_t *smm = &session_manager_main;
Florin Corasb384b542018-01-15 01:08:33 -08001450 smm->session_baseva = 0x200000000ULL;
Florin Corasa332c462018-01-31 06:52:17 -08001451 smm->session_va_space_size = (u64) 128 << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001452 smm->evt_qs_segment_size = 64 << 20;
Florin Corase04c2992017-03-01 08:17:34 -08001453 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001454 return 0;
1455}
1456
Dave Barach2c25a622017-06-26 11:35:07 -04001457VLIB_INIT_FUNCTION (session_manager_main_init);
1458
1459static clib_error_t *
1460session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001461{
1462 session_manager_main_t *smm = &session_manager_main;
1463 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001464 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001465
1466 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1467 {
1468 if (unformat (input, "event-queue-length %d", &nitems))
1469 {
1470 if (nitems >= 2048)
1471 smm->configured_event_queue_length = nitems;
1472 else
1473 clib_warning ("event queue length %d too small, ignored", nitems);
1474 }
Florin Coras66b11312017-07-31 17:18:03 -07001475 else if (unformat (input, "preallocated-sessions %d",
1476 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001477 ;
Florin Coras66b11312017-07-31 17:18:03 -07001478 else if (unformat (input, "v4-session-table-buckets %d",
1479 &smm->configured_v4_session_table_buckets))
1480 ;
1481 else if (unformat (input, "v4-halfopen-table-buckets %d",
1482 &smm->configured_v4_halfopen_table_buckets))
1483 ;
1484 else if (unformat (input, "v6-session-table-buckets %d",
1485 &smm->configured_v6_session_table_buckets))
1486 ;
1487 else if (unformat (input, "v6-halfopen-table-buckets %d",
1488 &smm->configured_v6_halfopen_table_buckets))
1489 ;
1490 else if (unformat (input, "v4-session-table-memory %U",
1491 unformat_memory_size, &tmp))
1492 {
1493 if (tmp >= 0x100000000)
1494 return clib_error_return (0, "memory size %llx (%lld) too large",
1495 tmp, tmp);
1496 smm->configured_v4_session_table_memory = tmp;
1497 }
1498 else if (unformat (input, "v4-halfopen-table-memory %U",
1499 unformat_memory_size, &tmp))
1500 {
1501 if (tmp >= 0x100000000)
1502 return clib_error_return (0, "memory size %llx (%lld) too large",
1503 tmp, tmp);
1504 smm->configured_v4_halfopen_table_memory = tmp;
1505 }
1506 else if (unformat (input, "v6-session-table-memory %U",
1507 unformat_memory_size, &tmp))
1508 {
1509 if (tmp >= 0x100000000)
1510 return clib_error_return (0, "memory size %llx (%lld) too large",
1511 tmp, tmp);
1512 smm->configured_v6_session_table_memory = tmp;
1513 }
1514 else if (unformat (input, "v6-halfopen-table-memory %U",
1515 unformat_memory_size, &tmp))
1516 {
1517 if (tmp >= 0x100000000)
1518 return clib_error_return (0, "memory size %llx (%lld) too large",
1519 tmp, tmp);
1520 smm->configured_v6_halfopen_table_memory = tmp;
1521 }
Florin Coras93e65802017-11-29 00:07:11 -05001522 else if (unformat (input, "local-endpoints-table-memory %U",
1523 unformat_memory_size, &tmp))
1524 {
1525 if (tmp >= 0x100000000)
1526 return clib_error_return (0, "memory size %llx (%lld) too large",
1527 tmp, tmp);
1528 smm->local_endpoints_table_memory = tmp;
1529 }
1530 else if (unformat (input, "local-endpoints-table-buckets %d",
1531 &smm->local_endpoints_table_buckets))
1532 ;
Florin Corasb384b542018-01-15 01:08:33 -08001533 else if (unformat (input, "evt_qs_memfd_seg"))
1534 smm->evt_qs_use_memfd_seg = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001535 else
1536 return clib_error_return (0, "unknown input `%U'",
1537 format_unformat_error, input);
1538 }
1539 return 0;
1540}
1541
1542VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1543
Dave Barach68b0fb02017-02-28 15:15:56 -05001544/*
1545 * fd.io coding-style-patch-verification: ON
1546 *
1547 * Local Variables:
1548 * eval: (c-set-style "gnu")
1549 * End:
1550 */