blob: b944f5a2104aac9e7e075b9ed6d20f0f1736c568 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/**
16 * @file
17 * @brief Session and session manager
18 */
19
20#include <vnet/session/session.h>
Florin Coras04e53442017-07-16 17:12:15 -070021#include <vnet/session/session_debug.h>
22#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023#include <vlibmemory/api.h>
24#include <vnet/dpo/load_balance.h>
25#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27session_manager_main_t session_manager_main;
Florin Coras04e53442017-07-16 17:12:15 -070028extern transport_proto_vft_t *tp_vfts;
Florin Coras3eb50622017-07-13 01:24:57 -040029
Florin Coras3c2fed52018-07-04 04:15:05 -070030static inline int
31session_send_evt_to_thread (void *data, void *args, u32 thread_index,
32 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070033{
Florin Coras52207f12018-07-12 14:48:06 -070034 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070035 svm_msg_q_msg_t msg;
36 svm_msg_q_t *mq;
Florin Corasb2371c22018-05-31 17:14:10 -070037 u32 tries = 0, max_tries;
Florin Coras3cbc04b2017-10-02 00:18:51 -070038
Florin Coras3c2fed52018-07-04 04:15:05 -070039 mq = session_manager_get_vpp_event_queue (thread_index);
40 while (svm_msg_q_try_lock (mq))
Florin Coras3cbc04b2017-10-02 00:18:51 -070041 {
Florin Corasb2371c22018-05-31 17:14:10 -070042 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
43 if (tries++ == max_tries)
Florin Coras3cbc04b2017-10-02 00:18:51 -070044 {
45 SESSION_DBG ("failed to enqueue evt");
Florin Coras3c2fed52018-07-04 04:15:05 -070046 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -070047 }
48 }
Florin Coras3c2fed52018-07-04 04:15:05 -070049 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
50 {
51 svm_msg_q_unlock (mq);
52 return -2;
53 }
54 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
55 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
56 {
57 svm_msg_q_unlock (mq);
58 return -2;
59 }
Florin Coras52207f12018-07-12 14:48:06 -070060 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070061 evt->event_type = evt_type;
62 switch (evt_type)
63 {
64 case FIFO_EVENT_RPC:
65 evt->rpc_args.fp = data;
66 evt->rpc_args.arg = args;
67 break;
68 case FIFO_EVENT_APP_TX:
69 case FIFO_EVENT_BUILTIN_RX:
70 evt->fifo = data;
71 break;
Florin Corasef915342018-09-29 10:23:06 -070072 case FIFO_EVENT_BUILTIN_TX:
Florin Coras3c2fed52018-07-04 04:15:05 -070073 case FIFO_EVENT_DISCONNECT:
74 evt->session_handle = session_handle ((stream_session_t *) data);
75 break;
76 default:
77 clib_warning ("evt unhandled!");
78 svm_msg_q_unlock (mq);
79 return -1;
80 }
81
Florin Coras52207f12018-07-12 14:48:06 -070082 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070083 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070084}
85
Florin Coras3c2fed52018-07-04 04:15:05 -070086int
87session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070088{
Florin Coras3c2fed52018-07-04 04:15:05 -070089 return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
90}
91
92int
Florin Corasef915342018-09-29 10:23:06 -070093session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
Florin Coras3c2fed52018-07-04 04:15:05 -070094 session_evt_type_t evt_type)
95{
Florin Corasef915342018-09-29 10:23:06 -070096 return session_send_evt_to_thread (data, 0, thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070097}
98
99int
100session_send_ctrl_evt_to_thread (stream_session_t * s,
101 session_evt_type_t evt_type)
102{
103 /* only event supported for now is disconnect */
104 ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
105 return session_send_evt_to_thread (s, 0, s->thread_index,
106 FIFO_EVENT_DISCONNECT);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700107}
108
109void
110session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
111{
112 if (thread_index != vlib_get_thread_index ())
Florin Coras3c2fed52018-07-04 04:15:05 -0700113 session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700114 else
115 {
116 void (*fnp) (void *) = fp;
117 fnp (rpc_args);
118 }
119}
120
121stream_session_t *
122session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500123{
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700124 session_manager_worker_t *wrk = &session_manager_main.wrk[thread_index];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700125 stream_session_t *s;
126 u8 will_expand = 0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700127 pool_get_aligned_will_expand (wrk->sessions, will_expand,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700128 CLIB_CACHE_LINE_BYTES);
129 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800130 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700131 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700132 clib_rwlock_writer_lock (&wrk->peekers_rw_locks);
133 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
134 clib_rwlock_writer_unlock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700135 }
136 else
137 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700138 pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700139 }
Dave Barachb7b92992018-10-17 10:38:51 -0400140 clib_memset (s, 0, sizeof (*s));
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700141 s->session_index = s - wrk->sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700142 s->thread_index = thread_index;
143 return s;
144}
145
Florin Coras371ca502018-02-21 12:07:41 -0800146void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700147session_free (stream_session_t * s)
148{
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700149 pool_put (session_manager_main.wrk[s->thread_index].sessions, s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700150 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400151 clib_memset (s, 0xFA, sizeof (*s));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700152}
153
Florin Coraseb97e5f2018-10-15 21:35:42 -0700154void
Florin Coras568ebc72018-09-18 16:12:50 -0700155session_free_w_fifos (stream_session_t * s)
156{
157 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
158 s->server_tx_fifo);
159 session_free (s);
160}
161
Florin Coras371ca502018-02-21 12:07:41 -0800162int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700163session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
164{
Dave Barach68b0fb02017-02-28 15:15:56 -0500165 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
166 u32 fifo_segment_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700167 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500168
Florin Coras3cbc04b2017-10-02 00:18:51 -0700169 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
170 &server_tx_fifo,
171 &fifo_segment_index)))
172 return rv;
173 /* Initialize backpointers */
174 server_rx_fifo->master_session_index = s->session_index;
175 server_rx_fifo->master_thread_index = s->thread_index;
176
177 server_tx_fifo->master_session_index = s->session_index;
178 server_tx_fifo->master_thread_index = s->thread_index;
179
180 s->server_rx_fifo = server_rx_fifo;
181 s->server_tx_fifo = server_tx_fifo;
182 s->svm_segment_index = fifo_segment_index;
183 return 0;
184}
185
186static stream_session_t *
187session_alloc_for_connection (transport_connection_t * tc)
188{
189 stream_session_t *s;
190 u32 thread_index = tc->thread_index;
191
Florin Coras40903ac2018-06-10 14:41:23 -0700192 ASSERT (thread_index == vlib_get_thread_index ()
193 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400194
Florin Coras3cbc04b2017-10-02 00:18:51 -0700195 s = session_alloc (thread_index);
196 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500197 s->session_state = SESSION_STATE_CONNECTING;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700198 s->enqueue_epoch = (u64) ~ 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500199
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500201 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500202 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700203 return s;
204}
205
206static int
207session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
208 u8 alloc_fifos, stream_session_t ** ret_s)
209{
210 stream_session_t *s;
211 int rv;
212
213 s = session_alloc_for_connection (tc);
214 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
215 {
216 session_free (s);
Florin Coras29ca16f2017-11-02 18:14:17 -0400217 *ret_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700218 return rv;
219 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500220
221 /* Add to the main lookup table */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700222 session_lookup_add_connection (tc, session_handle (s));
Dave Barach68b0fb02017-02-28 15:15:56 -0500223
224 *ret_s = s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500225 return 0;
226}
227
Florin Coras1f152cd2017-08-18 19:28:03 -0700228/**
229 * Discards bytes from buffer chain
230 *
231 * It discards n_bytes_to_drop starting at first buffer after chain_b
232 */
233always_inline void
234session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
235 vlib_buffer_t ** chain_b,
236 u32 n_bytes_to_drop)
237{
238 vlib_buffer_t *next = *chain_b;
239 u32 to_drop = n_bytes_to_drop;
240 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
241 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
242 {
243 next = vlib_get_buffer (vm, next->next_buffer);
244 if (next->current_length > to_drop)
245 {
246 vlib_buffer_advance (next, to_drop);
247 to_drop = 0;
248 }
249 else
250 {
251 to_drop -= next->current_length;
252 next->current_length = 0;
253 }
254 }
255 *chain_b = next;
256
257 if (to_drop == 0)
258 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
259}
260
261/**
262 * Enqueue buffer chain tail
263 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700264always_inline int
265session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
266 u32 offset, u8 is_in_order)
267{
268 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700269 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700270 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700271 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700272 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700273 int rv = 0;
274
Florin Coras1f152cd2017-08-18 19:28:03 -0700275 if (is_in_order && offset)
276 {
277 diff = offset - b->current_length;
278 if (diff > b->total_length_not_including_first_buffer)
279 return 0;
280 chain_b = b;
281 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
282 chain_bi = vlib_get_buffer_index (vm, chain_b);
283 }
284 else
285 chain_bi = b->next_buffer;
286
Florin Corasf6d68ed2017-05-07 19:12:02 -0700287 do
288 {
289 chain_b = vlib_get_buffer (vm, chain_bi);
290 data = vlib_buffer_get_current (chain_b);
291 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700292 if (!len)
293 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700294 if (is_in_order)
295 {
296 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700297 if (rv == len)
298 {
299 written += rv;
300 }
301 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700302 {
303 return (rv > 0) ? (written + rv) : written;
304 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700305 else if (rv > len)
306 {
307 written += rv;
308
309 /* written more than what was left in chain */
310 if (written > b->total_length_not_including_first_buffer)
311 return written;
312
313 /* drop the bytes that have already been delivered */
314 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
315 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700316 }
317 else
318 {
319 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
320 data);
321 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700322 {
323 clib_warning ("failed to enqueue multi-buffer seg");
324 return -1;
325 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700326 offset += len;
327 }
328 }
329 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
330 ? chain_b->next_buffer : 0));
331
332 if (is_in_order)
333 return written;
334
335 return 0;
336}
337
Dave Barach68b0fb02017-02-28 15:15:56 -0500338/*
339 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
340 * event but on request can queue notification events for later delivery by
341 * calling stream_server_flush_enqueue_events().
342 *
343 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700344 * @param b Buffer to be enqueued
345 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500346 * @param queue_event Flag to indicate if peer is to be notified or if event
347 * is to be queued. The former is useful when more data is
348 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700349 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500350 * @return Number of bytes enqueued or a negative value if enqueueing failed.
351 */
352int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700353session_enqueue_stream_connection (transport_connection_t * tc,
354 vlib_buffer_t * b, u32 offset,
355 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500356{
357 stream_session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700358 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500359
Florin Corascea194d2017-10-02 00:18:51 -0700360 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500361
Florin Corasf6d68ed2017-05-07 19:12:02 -0700362 if (is_in_order)
363 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700364 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
365 b->current_length,
366 vlib_buffer_get_current (b));
367 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
368 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700369 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700370 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;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700374 }
375 }
376 else
377 {
378 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
379 b->current_length,
380 vlib_buffer_get_current (b));
381 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700382 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
383 /* if something was enqueued, report even this as success for ooo
384 * segment handling */
385 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700386 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500387
388 if (queue_event)
389 {
390 /* Queue RX event on this fifo. Eventually these will need to be flushed
391 * by calling stream_server_flush_enqueue_events () */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700392 session_manager_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500393
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700394 wrk = session_manager_get_worker (s->thread_index);
395 if (s->enqueue_epoch != wrk->current_enqueue_epoch[tc->proto])
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700397 s->enqueue_epoch = wrk->current_enqueue_epoch[tc->proto];
398 vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399 }
400 }
401
Chris Lukeb2bcad62017-09-18 08:51:22 -0400402 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500403}
404
Florin Coras3cbc04b2017-10-02 00:18:51 -0700405int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700406session_enqueue_dgram_connection (stream_session_t * s,
407 session_dgram_hdr_t * hdr,
408 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700409{
410 int enqueued = 0, rv, in_order_off;
411
Florin Coras7fb0fe12018-04-09 09:24:52 -0700412 ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
413 >= b->current_length + sizeof (*hdr));
414
415 svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
416 (u8 *) hdr);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700417 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
418 vlib_buffer_get_current (b));
419 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
420 {
421 in_order_off = enqueued > b->current_length ? enqueued : 0;
422 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
423 if (rv > 0)
424 enqueued += rv;
425 }
426 if (queue_event)
427 {
428 /* Queue RX event on this fifo. Eventually these will need to be flushed
429 * by calling stream_server_flush_enqueue_events () */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700430 session_manager_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700431
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700432 wrk = session_manager_get_worker (s->thread_index);
433 if (s->enqueue_epoch != wrk->current_enqueue_epoch[proto])
Florin Coras3cbc04b2017-10-02 00:18:51 -0700434 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700435 s->enqueue_epoch = wrk->current_enqueue_epoch[proto];
436 vec_add1 (wrk->session_to_enqueue[proto], s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700437 }
438 }
439 return enqueued;
440}
441
Dave Barach68b0fb02017-02-28 15:15:56 -0500442/** Check if we have space in rx fifo to push more bytes */
443u8
444stream_session_no_space (transport_connection_t * tc, u32 thread_index,
445 u16 data_len)
446{
Florin Corascea194d2017-10-02 00:18:51 -0700447 stream_session_t *s = session_get (tc->s_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500448
449 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
450 return 1;
451
452 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
453 return 1;
454
455 return 0;
456}
457
458u32
Florin Coras25579b42018-06-06 17:55:02 -0700459session_tx_fifo_max_dequeue (transport_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -0700460{
Florin Corascea194d2017-10-02 00:18:51 -0700461 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasb2215d62017-08-01 16:56:58 -0700462 if (!s->server_tx_fifo)
Florin Coras93992a92017-05-24 18:03:56 -0700463 return 0;
464 return svm_fifo_max_dequeue (s->server_tx_fifo);
465}
466
467int
Dave Barach68b0fb02017-02-28 15:15:56 -0500468stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
469 u32 offset, u32 max_bytes)
470{
Florin Corascea194d2017-10-02 00:18:51 -0700471 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700472 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500473}
474
475u32
476stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
477{
Florin Corascea194d2017-10-02 00:18:51 -0700478 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700479 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500480}
481
482/**
483 * Notify session peer that new data has been enqueued.
484 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700485 * @param s Stream session for which the event is to be generated.
486 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700488 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500489 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700490static inline int
Florin Coras21795132018-09-09 09:40:51 -0700491session_enqueue_notify (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500492{
Florin Coras15531972018-08-12 23:50:53 -0700493 app_worker_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500494
Florin Coras15531972018-08-12 23:50:53 -0700495 app = app_worker_get_if_valid (s->app_wrk_index);
Florin Coras3ec66b02018-08-23 16:27:05 -0700496 if (PREDICT_FALSE (!app))
Dave Barach818eb542017-08-02 13:56:13 -0400497 {
Florin Coras15531972018-08-12 23:50:53 -0700498 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400499 return 0;
500 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500501
Florin Corase69f4952017-03-07 10:06:24 -0800502 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700503 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Coras3c2fed52018-07-04 04:15:05 -0700504 ed->data[0] = FIFO_EVENT_APP_RX;
Florin Coras6792ec02017-03-13 03:49:51 -0700505 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800506 }));
507 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500508
Florin Coras21795132018-09-09 09:40:51 -0700509 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_RX);
Dave Barach68b0fb02017-02-28 15:15:56 -0500510}
511
Florin Coras0d60a0f2018-06-29 02:02:08 -0700512int
513session_dequeue_notify (stream_session_t * s)
514{
Florin Coras15531972018-08-12 23:50:53 -0700515 app_worker_t *app;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700516
Florin Coras15531972018-08-12 23:50:53 -0700517 app = app_worker_get_if_valid (s->app_wrk_index);
Florin Coras208daa12018-07-02 01:30:51 -0700518 if (PREDICT_FALSE (!app))
519 return -1;
520
Florin Coras21795132018-09-09 09:40:51 -0700521 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_TX);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700522}
523
Dave Barach68b0fb02017-02-28 15:15:56 -0500524/**
525 * Flushes queue of sessions that are to be notified of new data
526 * enqueued events.
527 *
528 * @param thread_index Thread index for which the flush is to be performed.
529 * @return 0 on success or a positive number indicating the number of
530 * failures due to API queue being full.
531 */
532int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700533session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500534{
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700535 session_manager_worker_t *wrk = session_manager_get_worker (thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700536 stream_session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700537 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700538 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500539
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700540 indices = wrk->session_to_enqueue[transport_proto];
Dave Barach68b0fb02017-02-28 15:15:56 -0500541
Florin Coras3cbc04b2017-10-02 00:18:51 -0700542 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500543 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700544 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700545 if (PREDICT_FALSE (!s))
546 {
547 errors++;
548 continue;
549 }
Florin Coras21795132018-09-09 09:40:51 -0700550 if (PREDICT_FALSE (session_enqueue_notify (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700551 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500552 }
553
Florin Coras3cbc04b2017-10-02 00:18:51 -0700554 vec_reset_length (indices);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700555 wrk->session_to_enqueue[transport_proto] = indices;
556 wrk->current_enqueue_epoch[transport_proto]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500557
558 return errors;
559}
560
Florin Coras7fb0fe12018-04-09 09:24:52 -0700561int
562session_manager_flush_all_enqueue_events (u8 transport_proto)
563{
564 vlib_thread_main_t *vtm = vlib_get_thread_main ();
565 int i, errors = 0;
566 for (i = 0; i < 1 + vtm->n_threads; i++)
567 errors += session_manager_flush_enqueue_events (transport_proto, i);
568 return errors;
569}
570
Florin Corasc28764f2017-04-26 00:08:42 -0700571/**
572 * Init fifo tail and head pointers
573 *
574 * Useful if transport uses absolute offsets for tracking ooo segments.
575 */
576void
577stream_session_init_fifos_pointers (transport_connection_t * tc,
578 u32 rx_pointer, u32 tx_pointer)
579{
580 stream_session_t *s;
Florin Corascea194d2017-10-02 00:18:51 -0700581 s = session_get (tc->s_index, tc->thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700582 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
583 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
584}
585
Florin Corasf03a59a2017-06-09 21:07:32 -0700586int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700587session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500588{
Florin Coras371ca502018-02-21 12:07:41 -0800589 u32 opaque = 0, new_ti, new_si;
Dave Barach68b0fb02017-02-28 15:15:56 -0500590 stream_session_t *new_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700591 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700592 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800593 application_t *app;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700594 u8 alloc_fifos;
Florin Coras371ca502018-02-21 12:07:41 -0800595 int error = 0;
596 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500597
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 /*
599 * Find connection handle and cleanup half-open table
600 */
Florin Corascea194d2017-10-02 00:18:51 -0700601 handle = session_lookup_half_open_handle (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700602 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500603 {
Florin Corascea194d2017-10-02 00:18:51 -0700604 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700605 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500606 }
Florin Corascea194d2017-10-02 00:18:51 -0700607 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400608
Florin Corasab0289a2017-08-14 11:25:25 -0700609 /* Get the app's index from the handle we stored when opening connection
610 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400611 * index */
Florin Coras15531972018-08-12 23:50:53 -0700612 app_wrk = app_worker_get_if_valid (handle >> 32);
613 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700614 return -1;
Florin Corasab0289a2017-08-14 11:25:25 -0700615 opaque = tc->s_index;
Florin Coras15531972018-08-12 23:50:53 -0700616 app = application_get (app_wrk->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500617
Florin Coras3cbc04b2017-10-02 00:18:51 -0700618 /*
619 * Allocate new session with fifos (svm segments are allocated if needed)
620 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500621 if (!is_fail)
622 {
Florin Coras15531972018-08-12 23:50:53 -0700623 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras7999e832017-10-31 01:51:04 -0700624 alloc_fifos = !application_is_builtin_proxy (app);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700625 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
Florin Corasf03a59a2017-06-09 21:07:32 -0700626 {
627 is_fail = 1;
628 error = -1;
629 }
630 else
Florin Coras371ca502018-02-21 12:07:41 -0800631 {
Florin Coras15531972018-08-12 23:50:53 -0700632 new_s->app_wrk_index = app_wrk->wrk_index;
Florin Coras371ca502018-02-21 12:07:41 -0800633 new_si = new_s->session_index;
634 new_ti = new_s->thread_index;
635 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500636 }
637
Florin Coras3cbc04b2017-10-02 00:18:51 -0700638 /*
639 * Notify client application
640 */
Florin Coras15531972018-08-12 23:50:53 -0700641 if (app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque,
642 new_s, is_fail))
Florin Coras6534b7a2017-07-18 05:38:03 -0400643 {
Florin Corascea194d2017-10-02 00:18:51 -0700644 SESSION_DBG ("failed to notify app");
Florin Coras6534b7a2017-07-18 05:38:03 -0400645 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800646 {
647 new_s = session_get (new_si, new_ti);
648 stream_session_disconnect_transport (new_s);
649 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400650 }
651 else
652 {
653 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800654 {
655 new_s = session_get (new_si, new_ti);
656 new_s->session_state = SESSION_STATE_READY;
657 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400658 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500659
Florin Corasf03a59a2017-06-09 21:07:32 -0700660 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500661}
662
Florin Coras3cbc04b2017-10-02 00:18:51 -0700663typedef struct _session_switch_pool_args
664{
665 u32 session_index;
666 u32 thread_index;
667 u32 new_thread_index;
668 u32 new_session_index;
669} session_switch_pool_args_t;
670
671static void
672session_switch_pool (void *cb_args)
673{
674 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras561af9b2017-12-09 10:19:43 -0800675 transport_proto_t tp;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700676 stream_session_t *s;
677 ASSERT (args->thread_index == vlib_get_thread_index ());
678 s = session_get (args->session_index, args->thread_index);
679 s->server_tx_fifo->master_session_index = args->new_session_index;
680 s->server_tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras561af9b2017-12-09 10:19:43 -0800681 tp = session_get_transport_proto (s);
682 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700683 session_free (s);
684 clib_mem_free (cb_args);
685}
686
687/**
688 * Move dgram session to the right thread
689 */
690int
691session_dgram_connect_notify (transport_connection_t * tc,
692 u32 old_thread_index,
693 stream_session_t ** new_session)
694{
695 stream_session_t *new_s;
696 session_switch_pool_args_t *rpc_args;
697
698 /*
699 * Clone half-open session to the right thread.
700 */
701 new_s = session_clone_safe (tc->s_index, old_thread_index);
702 new_s->connection_index = tc->c_index;
703 new_s->server_rx_fifo->master_session_index = new_s->session_index;
704 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
705 new_s->session_state = SESSION_STATE_READY;
706 session_lookup_add_connection (tc, session_handle (new_s));
707
708 /*
709 * Ask thread owning the old session to clean it up and make us the tx
710 * fifo owner
711 */
712 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
713 rpc_args->new_session_index = new_s->session_index;
714 rpc_args->new_thread_index = new_s->thread_index;
715 rpc_args->session_index = tc->s_index;
716 rpc_args->thread_index = old_thread_index;
717 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
718 rpc_args);
719
720 tc->s_index = new_s->session_index;
721 new_s->connection_index = tc->c_index;
722 *new_session = new_s;
723 return 0;
724}
725
Dave Barach68b0fb02017-02-28 15:15:56 -0500726void
727stream_session_accept_notify (transport_connection_t * tc)
728{
Florin Coras15531972018-08-12 23:50:53 -0700729 app_worker_t *app_wrk;
730 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500731 stream_session_t *s;
732
Florin Corascea194d2017-10-02 00:18:51 -0700733 s = session_get (tc->s_index, tc->thread_index);
Florin Coras15531972018-08-12 23:50:53 -0700734 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
735 if (!app_wrk)
736 return;
737 app = application_get (app_wrk->app_index);
738 app->cb_fns.session_accept_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500739}
740
741/**
742 * Notification from transport that connection is being closed.
743 *
744 * A disconnect is sent to application but state is not removed. Once
745 * disconnect is acknowledged by application, session disconnect is called.
746 * Ultimately this leads to close being called on transport (passive close).
747 */
748void
749stream_session_disconnect_notify (transport_connection_t * tc)
750{
Florin Coras15531972018-08-12 23:50:53 -0700751 app_worker_t *app_wrk;
752 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500753 stream_session_t *s;
754
Florin Corascea194d2017-10-02 00:18:51 -0700755 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -0700756 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
757 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700758 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -0700759 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
760 if (!app_wrk)
761 return;
762 app = application_get (app_wrk->app_index);
763 app->cb_fns.session_disconnect_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500764}
765
766/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400767 * Cleans up session and lookup table.
Florin Coras25579b42018-06-06 17:55:02 -0700768 *
769 * Transport connection must still be valid.
Dave Barach68b0fb02017-02-28 15:15:56 -0500770 */
771void
772stream_session_delete (stream_session_t * s)
773{
Florin Coras6534b7a2017-07-18 05:38:03 -0400774 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500775
Florin Corasd79b41e2017-03-04 05:37:52 -0800776 /* Delete from the main lookup table. */
Florin Corascea194d2017-10-02 00:18:51 -0700777 if ((rv = session_lookup_del_session (s)))
Florin Coras6534b7a2017-07-18 05:38:03 -0400778 clib_warning ("hash delete error, rv %d", rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500779
Florin Coras568ebc72018-09-18 16:12:50 -0700780 session_free_w_fifos (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500781}
782
783/**
784 * Notification from transport that connection is being deleted
785 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400786 * This removes the session if it is still valid. It should be called only on
787 * previously fully established sessions. For instance failed connects should
788 * call stream_session_connect_notify and indicate that the connect has
789 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500790 */
791void
792stream_session_delete_notify (transport_connection_t * tc)
793{
794 stream_session_t *s;
795
Florin Corase04c2992017-03-01 08:17:34 -0800796 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -0700797 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -0700798 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700799
800 /* Make sure we don't try to send anything more */
801 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
802
803 switch (s->session_state)
804 {
805 case SESSION_STATE_TRANSPORT_CLOSING:
806 /* If transport finishes or times out before we get a reply
807 * from the app, do the whole disconnect since we might still
808 * have lingering events */
809 stream_session_disconnect (s);
Florin Corasc01d5782018-10-17 14:53:11 -0700810 s->session_state = SESSION_STATE_CLOSED;
Florin Coras568ebc72018-09-18 16:12:50 -0700811 break;
812 case SESSION_STATE_CLOSING:
813 /* Cleanup lookup table. Transport needs to still be valid */
814 session_lookup_del_session (s);
Florin Corasc01d5782018-10-17 14:53:11 -0700815 s->session_state = SESSION_STATE_CLOSED;
Florin Coras568ebc72018-09-18 16:12:50 -0700816 break;
817 case SESSION_STATE_CLOSED:
Florin Corasc5347d92018-10-17 10:41:28 -0700818 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -0700819 stream_session_delete (s);
820 break;
Florin Corasc01d5782018-10-17 14:53:11 -0700821 default:
822 /* Assume connection was not yet added the lookup table */
823 session_free_w_fifos (s);
824 break;
Florin Coras568ebc72018-09-18 16:12:50 -0700825 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500826}
827
828/**
829 * Notify application that connection has been reset.
830 */
831void
832stream_session_reset_notify (transport_connection_t * tc)
833{
834 stream_session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700835 app_worker_t *app_wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500836 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700837 s = session_get (tc->s_index, tc->thread_index);
Florin Corasca1c8f32018-05-23 21:01:30 -0700838 s->session_state = SESSION_STATE_CLOSED;
Florin Coras15531972018-08-12 23:50:53 -0700839 app_wrk = app_worker_get (s->app_wrk_index);
840 app = application_get (app_wrk->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500841 app->cb_fns.session_reset_callback (s);
842}
843
844/**
845 * Accept a stream session. Optionally ping the server by callback.
846 */
847int
848stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700849 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500850{
Dave Barach68b0fb02017-02-28 15:15:56 -0500851 stream_session_t *s, *listener;
Florin Coras15531972018-08-12 23:50:53 -0700852 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700853 segment_manager_t *sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500854 int rv;
855
856 /* Find the server */
Florin Coras5c9083d2018-04-13 06:39:07 -0700857 listener = listen_session_get (listener_index);
Florin Coras21795132018-09-09 09:40:51 -0700858 app_wrk = application_listener_select_worker (listener, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500859
Florin Coras15531972018-08-12 23:50:53 -0700860 sm = app_worker_get_listen_segment_manager (app_wrk, listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700861 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500862 return rv;
863
Florin Coras15531972018-08-12 23:50:53 -0700864 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700865 s->listener_index = listener_index;
Dave Barach2c25a622017-06-26 11:35:07 -0400866 s->session_state = SESSION_STATE_ACCEPTING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500867
868 /* Shoulder-tap the server */
869 if (notify)
870 {
Florin Coras15531972018-08-12 23:50:53 -0700871 application_t *app = application_get (app_wrk->app_index);
872 app->cb_fns.session_accept_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500873 }
874
875 return 0;
876}
877
Florin Coras371ca502018-02-21 12:07:41 -0800878int
Florin Coras15531972018-08-12 23:50:53 -0700879session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800880{
881 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -0700882 transport_endpoint_cfg_t *tep;
Florin Coras371ca502018-02-21 12:07:41 -0800883 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700884 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800885 stream_session_t *s;
886 application_t *app;
887 int rv;
888
Florin Coras5665ced2018-10-25 18:03:45 -0700889 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras371ca502018-02-21 12:07:41 -0800890 rv = tp_vfts[rmt->transport_proto].open (tep);
891 if (rv < 0)
892 {
893 SESSION_DBG ("Transport failed to open connection.");
894 return VNET_API_ERROR_SESSION_CONNECT;
895 }
896
897 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
898
899 /* For dgram type of service, allocate session and fifos now.
900 */
Florin Coras15531972018-08-12 23:50:53 -0700901 app_wrk = app_worker_get (app_wrk_index);
902 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras371ca502018-02-21 12:07:41 -0800903
904 if (session_alloc_and_init (sm, tc, 1, &s))
905 return -1;
Florin Coras15531972018-08-12 23:50:53 -0700906 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700907 s->session_state = SESSION_STATE_OPENED;
Florin Coras371ca502018-02-21 12:07:41 -0800908
909 /* Tell the app about the new event fifo for this session */
Florin Coras15531972018-08-12 23:50:53 -0700910 app = application_get (app_wrk->app_index);
911 app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, s, 0);
Florin Coras371ca502018-02-21 12:07:41 -0800912
913 return 0;
914}
915
916int
Florin Coras15531972018-08-12 23:50:53 -0700917session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800918{
919 transport_connection_t *tc;
Florin Coras5665ced2018-10-25 18:03:45 -0700920 transport_endpoint_cfg_t *tep;
Florin Coras371ca502018-02-21 12:07:41 -0800921 u64 handle;
922 int rv;
923
Florin Coras5665ced2018-10-25 18:03:45 -0700924 tep = session_endpoint_to_transport_cfg (rmt);
Florin Coras371ca502018-02-21 12:07:41 -0800925 rv = tp_vfts[rmt->transport_proto].open (tep);
926 if (rv < 0)
927 {
928 SESSION_DBG ("Transport failed to open connection.");
929 return VNET_API_ERROR_SESSION_CONNECT;
930 }
931
932 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
933
934 /* If transport offers a stream service, only allocate session once the
935 * connection has been established.
936 * Add connection to half-open table and save app and tc index. The
937 * latter is needed to help establish the connection while the former
938 * is needed when the connect notify comes and we have to notify the
939 * external app
940 */
Florin Coras15531972018-08-12 23:50:53 -0700941 handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
Florin Coras371ca502018-02-21 12:07:41 -0800942 session_lookup_add_half_open (tc, handle);
943
944 /* Store api_context (opaque) for when the reply comes. Not the nicest
945 * thing but better than allocating a separate half-open pool.
946 */
947 tc->s_index = opaque;
948 return 0;
949}
950
951int
Florin Coras15531972018-08-12 23:50:53 -0700952session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800953{
Florin Coras5665ced2018-10-25 18:03:45 -0700954 session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt;
955 transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep);
956
Florin Coras15531972018-08-12 23:50:53 -0700957 sep->app_wrk_index = app_wrk_index;
Florin Coras8f89dd02018-03-05 16:53:07 -0800958 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800959
Florin Coras5665ced2018-10-25 18:03:45 -0700960 return tp_vfts[rmt->transport_proto].open (tep_cfg);
Florin Coras371ca502018-02-21 12:07:41 -0800961}
962
963typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
964
965/* *INDENT-OFF* */
966static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
967 session_open_vc,
968 session_open_cl,
969 session_open_app,
970};
971/* *INDENT-ON* */
972
Florin Coras6cf30ad2017-04-04 23:08:23 -0700973/**
974 * Ask transport to open connection to remote transport endpoint.
975 *
976 * Stores handle for matching request with reply since the call can be
977 * asynchronous. For instance, for TCP the 3-way handshake must complete
978 * before reply comes. Session is only created once connection is established.
979 *
980 * @param app_index Index of the application requesting the connect
981 * @param st Session type requested.
982 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700983 * @param opaque Opaque data (typically, api_context) the application expects
984 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700985 */
Florin Corase04c2992017-03-01 08:17:34 -0800986int
Florin Coras15531972018-08-12 23:50:53 -0700987session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500988{
Florin Coras371ca502018-02-21 12:07:41 -0800989 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
Florin Coras15531972018-08-12 23:50:53 -0700990 return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700991}
992
Florin Coras7fb0fe12018-04-09 09:24:52 -0700993/**
Florin Corasab2f6db2018-08-31 14:31:41 -0700994 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -0700995 *
996 * @param s Session for which listen will be called. Note that unlike
997 * established sessions, listen sessions are not associated to a
998 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -0700999 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001000 */
Florin Coras371ca502018-02-21 12:07:41 -08001001int
Florin Coras5665ced2018-10-25 18:03:45 -07001002session_listen (stream_session_t * ls, session_endpoint_cfg_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001003{
Florin Corasab2f6db2018-08-31 14:31:41 -07001004 transport_connection_t *tc;
1005 transport_endpoint_t *tep;
Florin Coras74cac882018-09-07 09:13:15 -07001006 u32 tc_index, s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001007
1008 /* Transport bind/listen */
1009 tep = session_endpoint_to_transport (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001010 s_index = ls->session_index;
1011 tc_index = tp_vfts[sep->transport_proto].bind (s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001012
1013 if (tc_index == (u32) ~ 0)
1014 return -1;
1015
1016 /* Attach transport to session */
Florin Coras74cac882018-09-07 09:13:15 -07001017 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001018 ls->connection_index = tc_index;
1019
1020 /* Add to the main lookup table after transport was initialized */
1021 tc = tp_vfts[sep->transport_proto].get_listener (tc_index);
Florin Coras74cac882018-09-07 09:13:15 -07001022 session_lookup_add_connection (tc, s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001023 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001024}
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
Florin Corasab2f6db2018-08-31 14:31:41 -07001032session_stop_listen (stream_session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001033{
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 ();
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001064 session_manager_worker_t *wrk;
Florin Coras52207f12018-07-12 14:48:06 -07001065 session_event_t *evt;
Florin Corasb2371c22018-05-31 17:14:10 -07001066
Florin Coras25579b42018-06-06 17:55:02 -07001067 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001068 return;
Florin Coras25579b42018-06-06 17:55:02 -07001069
1070 if (s->session_state >= SESSION_STATE_CLOSING)
1071 {
1072 /* Session already closed. Clear the tx fifo */
1073 if (s->session_state == SESSION_STATE_CLOSED)
1074 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1075 return;
1076 }
1077
Florin Corasb2371c22018-05-31 17:14:10 -07001078 s->session_state = SESSION_STATE_CLOSING;
1079
1080 /* If we are in the handler thread, or being called with the worker barrier
Florin Coras568ebc72018-09-18 16:12:50 -07001081 * held, just append a new event to pending disconnects vector. */
1082 if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
Florin Corasb2371c22018-05-31 17:14:10 -07001083 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001084 wrk = session_manager_get_worker (s->thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001085 vec_add2 (wrk->pending_disconnects, evt, 1);
Dave Barachb7b92992018-10-17 10:38:51 -04001086 clib_memset (evt, 0, sizeof (*evt));
Florin Corasb2371c22018-05-31 17:14:10 -07001087 evt->session_handle = session_handle (s);
1088 evt->event_type = FIFO_EVENT_DISCONNECT;
1089 }
1090 else
Florin Coras3c2fed52018-07-04 04:15:05 -07001091 session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001092}
1093
1094/**
1095 * Notify transport the session can be disconnected. This should eventually
1096 * result in a delete notification that allows us to cleanup session state.
1097 * Called for both active/passive disconnects.
1098 *
1099 * Must be called from the session's thread.
1100 */
1101void
1102stream_session_disconnect_transport (stream_session_t * s)
1103{
Florin Coras568ebc72018-09-18 16:12:50 -07001104 /* If transport is already closed, just free the session */
1105 if (s->session_state == SESSION_STATE_CLOSED)
1106 {
1107 session_free_w_fifos (s);
1108 return;
1109 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001110 s->session_state = SESSION_STATE_CLOSED;
Florin Coras561af9b2017-12-09 10:19:43 -08001111 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1112 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001113}
1114
1115/**
1116 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001117 *
Florin Coras25579b42018-06-06 17:55:02 -07001118 * Notify transport of the cleanup and free the session. This should
1119 * be called only if transport reported some error and is already
1120 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001121 */
1122void
1123stream_session_cleanup (stream_session_t * s)
1124{
Florin Corasd79b41e2017-03-04 05:37:52 -08001125 s->session_state = SESSION_STATE_CLOSED;
1126
Florin Coras25579b42018-06-06 17:55:02 -07001127 /* Delete from main lookup table before we axe the the transport */
1128 session_lookup_del_session (s);
Florin Coras561af9b2017-12-09 10:19:43 -08001129 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1130 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001131 /* Since we called cleanup, no delete notification will come. So, make
1132 * sure the session is properly freed. */
Florin Coras568ebc72018-09-18 16:12:50 -07001133 session_free_w_fifos (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001134}
1135
Florin Corasf08f26d2018-05-10 13:20:47 -07001136transport_service_type_t
1137session_transport_service_type (stream_session_t * s)
1138{
1139 transport_proto_t tp;
1140 tp = session_get_transport_proto (s);
1141 return transport_protocol_service_type (tp);
1142}
1143
1144transport_tx_fn_type_t
1145session_transport_tx_fn_type (stream_session_t * s)
1146{
1147 transport_proto_t tp;
1148 tp = session_get_transport_proto (s);
1149 return transport_protocol_tx_fn_type (tp);
1150}
1151
1152u8
1153session_tx_is_dgram (stream_session_t * s)
1154{
1155 return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
1156}
1157
Florin Corasa5464812017-04-19 13:00:05 -07001158/**
Florin Corasb384b542018-01-15 01:08:33 -08001159 * Allocate event queues in the shared-memory segment
1160 *
1161 * That can either be a newly created memfd segment, that will need to be
1162 * mapped by all stack users, or the binary api's svm region. The latter is
1163 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1164 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1165 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001166 */
1167void
Florin Corasb384b542018-01-15 01:08:33 -08001168session_vpp_event_queues_allocate (session_manager_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001169{
Florin Coras52207f12018-07-12 14:48:06 -07001170 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Corasb384b542018-01-15 01:08:33 -08001171 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001172 api_main_t *am = &api_main;
Florin Corasb384b542018-01-15 01:08:33 -08001173 u64 eqs_size = 64 << 20;
1174 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001175 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001176 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001177
Florin Corasb384b542018-01-15 01:08:33 -08001178 if (smm->configured_event_queue_length)
1179 evt_q_length = smm->configured_event_queue_length;
1180
1181 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001182 {
Florin Corasb384b542018-01-15 01:08:33 -08001183 if (smm->evt_qs_segment_size)
1184 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001185
Florin Corasb384b542018-01-15 01:08:33 -08001186 eqs->ssvm_size = eqs_size;
1187 eqs->i_am_master = 1;
1188 eqs->my_pid = vpp_pid;
1189 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1190 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001191
Florin Coras95e0ce02018-07-05 23:44:23 -07001192 if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1193 {
1194 clib_warning ("failed to initialize queue segment");
1195 return;
1196 }
Florin Corasa5464812017-04-19 13:00:05 -07001197 }
Florin Corasb384b542018-01-15 01:08:33 -08001198
1199 if (smm->evt_qs_use_memfd_seg)
1200 oldheap = ssvm_push_heap (eqs->sh);
1201 else
1202 oldheap = svm_push_data_heap (am->vlib_rp);
1203
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001204 for (i = 0; i < vec_len (smm->wrk); i++)
Florin Corasb384b542018-01-15 01:08:33 -08001205 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001206 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1207 u32 notif_q_size = clib_max (16, evt_q_length >> 4);
1208 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1209 {evt_q_length, evt_size, 0}
1210 ,
1211 {notif_q_size, 256, 0}
1212 };
1213 cfg->consumer_pid = 0;
1214 cfg->n_rings = 2;
1215 cfg->q_nitems = evt_q_length;
1216 cfg->ring_cfgs = rc;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001217 smm->wrk[i].vpp_event_queue = svm_msg_q_alloc (cfg);
Florin Coras99368312018-08-02 10:45:44 -07001218 if (smm->evt_qs_use_memfd_seg)
1219 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001220 if (svm_msg_q_alloc_consumer_eventfd (smm->wrk[i].vpp_event_queue))
Florin Coras99368312018-08-02 10:45:44 -07001221 clib_warning ("eventfd returned");
1222 }
Florin Corasb384b542018-01-15 01:08:33 -08001223 }
1224
1225 if (smm->evt_qs_use_memfd_seg)
1226 ssvm_pop_heap (oldheap);
1227 else
1228 svm_pop_heap (oldheap);
1229}
1230
1231ssvm_private_t *
1232session_manager_get_evt_q_segment (void)
1233{
1234 session_manager_main_t *smm = &session_manager_main;
1235 if (smm->evt_qs_use_memfd_seg)
1236 return &smm->evt_qs_segment;
1237 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001238}
1239
Florin Coras371ca502018-02-21 12:07:41 -08001240/* *INDENT-OFF* */
1241static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1242 session_tx_fifo_peek_and_snd,
1243 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001244 session_tx_fifo_dequeue_internal,
1245 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001246};
1247/* *INDENT-ON* */
1248
Florin Coras561af9b2017-12-09 10:19:43 -08001249/**
1250 * Initialize session layer for given transport proto and ip version
1251 *
1252 * Allocates per session type (transport proto + ip version) data structures
1253 * and adds arc from session queue node to session type output node.
1254 */
1255void
1256session_register_transport (transport_proto_t transport_proto,
1257 const transport_proto_vft_t * vft, u8 is_ip4,
1258 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001259{
Florin Coras561af9b2017-12-09 10:19:43 -08001260 session_manager_main_t *smm = &session_manager_main;
1261 session_type_t session_type;
1262 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001263
Florin Coras561af9b2017-12-09 10:19:43 -08001264 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1265
1266 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001267 vec_validate (smm->session_tx_fns, session_type);
1268
1269 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001270 if (output_node != ~0)
1271 {
1272 foreach_vlib_main (({
1273 next_index = vlib_node_add_next (this_vlib_main,
1274 session_queue_node.index,
1275 output_node);
1276 }));
1277 }
Florin Coras561af9b2017-12-09 10:19:43 -08001278 /* *INDENT-ON* */
1279
1280 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001281 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001282}
1283
Florin Coras3cbc04b2017-10-02 00:18:51 -07001284transport_connection_t *
1285session_get_transport (stream_session_t * s)
1286{
Florin Coras561af9b2017-12-09 10:19:43 -08001287 transport_proto_t tp;
Florin Corasade70e42017-10-14 18:56:41 -07001288 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras561af9b2017-12-09 10:19:43 -08001289 {
1290 tp = session_get_transport_proto (s);
1291 return tp_vfts[tp].get_connection (s->connection_index,
1292 s->thread_index);
1293 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001294 return 0;
1295}
1296
1297transport_connection_t *
1298listen_session_get_transport (stream_session_t * s)
1299{
Florin Coras561af9b2017-12-09 10:19:43 -08001300 transport_proto_t tp = session_get_transport_proto (s);
1301 return tp_vfts[tp].get_listener (s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001302}
1303
Florin Corascea194d2017-10-02 00:18:51 -07001304int
1305listen_session_get_local_session_endpoint (stream_session_t * listener,
1306 session_endpoint_t * sep)
1307{
Florin Coras561af9b2017-12-09 10:19:43 -08001308 transport_proto_t tp = session_get_transport_proto (listener);
Florin Corascea194d2017-10-02 00:18:51 -07001309 transport_connection_t *tc;
Florin Coras561af9b2017-12-09 10:19:43 -08001310 tc = tp_vfts[tp].get_listener (listener->connection_index);
Florin Corascea194d2017-10-02 00:18:51 -07001311 if (!tc)
1312 {
1313 clib_warning ("no transport");
1314 return -1;
1315 }
1316
1317 /* N.B. The ip should not be copied because this is the local endpoint */
1318 sep->port = tc->lcl_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001319 sep->transport_proto = tc->proto;
Florin Corascea194d2017-10-02 00:18:51 -07001320 sep->is_ip4 = tc->is_ip4;
1321 return 0;
1322}
1323
Florin Corasfd542f12018-05-16 19:28:24 -07001324void
1325session_flush_frames_main_thread (vlib_main_t * vm)
1326{
1327 ASSERT (vlib_get_thread_index () == 0);
1328 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1329 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1330}
1331
Dave Barach68b0fb02017-02-28 15:15:56 -05001332static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001333session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001334{
Florin Corasa332c462018-01-31 06:52:17 -08001335 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Dave Barach68b0fb02017-02-28 15:15:56 -05001336 session_manager_main_t *smm = &session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -08001337 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001338 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001339 session_manager_worker_t *wrk;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001340 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001341
Dave Barach68b0fb02017-02-28 15:15:56 -05001342 num_threads = 1 /* main thread */ + vtm->n_threads;
1343
1344 if (num_threads < 1)
1345 return clib_error_return (0, "n_thread_stacks not set");
1346
Florin Coras5f56d732018-10-30 10:21:59 -07001347 /* Allocate cache line aligned worker contexts */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001348 vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001349
1350 for (i = 0; i < TRANSPORT_N_PROTO; i++)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001351 {
Florin Coras7fb0fe12018-04-09 09:24:52 -07001352 for (j = 0; j < num_threads; j++)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001353 smm->wrk[j].current_enqueue_epoch[i] = 1;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001354 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001355
Dave Barachacd2a6a2017-05-16 17:41:34 -04001356 for (i = 0; i < num_threads; i++)
1357 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001358 wrk = &smm->wrk[i];
Florin Coras5f56d732018-10-30 10:21:59 -07001359 vec_validate (wrk->free_event_vector, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001360 _vec_len (wrk->free_event_vector) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001361 vec_validate (wrk->pending_event_vector, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001362 _vec_len (wrk->pending_event_vector) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001363 vec_validate (wrk->pending_disconnects, 128);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001364 _vec_len (wrk->pending_disconnects) = 0;
Florin Coras5f56d732018-10-30 10:21:59 -07001365 vec_validate (wrk->postponed_event_vector, 128);
1366 _vec_len (wrk->postponed_event_vector) = 0;
Florin Corasd67f1122018-05-21 17:47:40 -07001367
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001368 wrk->last_vlib_time = vlib_time_now (vlib_mains[i]);
Florin Corasc44a5582018-11-01 16:30:54 -07001369 wrk->dispatch_period = 500e-6;
Florin Corasd67f1122018-05-21 17:47:40 -07001370
Florin Coras29ca16f2017-11-02 18:14:17 -04001371 if (num_threads > 1)
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001372 clib_rwlock_init (&smm->wrk[i].peekers_rw_locks);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001373 }
1374
Florin Corasc1a448b2018-04-20 10:51:49 -07001375#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -07001376 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1377#endif
1378
Florin Corasb384b542018-01-15 01:08:33 -08001379 /* Allocate vpp event queues segment and queue */
1380 session_vpp_event_queues_allocate (smm);
1381
1382 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001383 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1384 sm_args->size = smm->session_va_space_size;
1385 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001386
Florin Coras66b11312017-07-31 17:18:03 -07001387 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001388 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001389 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001390 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001391 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001392 pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001393 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001394 else
Florin Coras66b11312017-07-31 17:18:03 -07001395 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001396 int j;
1397 preallocated_sessions_per_worker =
1398 (1.1 * (f64) smm->preallocated_sessions /
1399 (f64) (num_threads - 1));
1400
1401 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001402 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001403 pool_init_fixed (smm->wrk[j].sessions,
Dave Barachb7f1faa2017-08-29 11:43:37 -04001404 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001405 }
Florin Coras66b11312017-07-31 17:18:03 -07001406 }
1407 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001408
Florin Coras04e53442017-07-16 17:12:15 -07001409 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001410 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001411 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001412
Florin Corase04c2992017-03-01 08:17:34 -08001413 smm->is_enabled = 1;
1414
Florin Coras561af9b2017-12-09 10:19:43 -08001415 /* Enable transports */
1416 transport_enable_disable (vm, 1);
Florin Corasd67f1122018-05-21 17:47:40 -07001417 transport_init_tx_pacers_period ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001418 return 0;
1419}
1420
Florin Corasa5464812017-04-19 13:00:05 -07001421void
1422session_node_enable_disable (u8 is_en)
1423{
1424 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Corasfd542f12018-05-16 19:28:24 -07001425 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1426 u8 have_workers = vtm->n_threads != 0;
1427
Florin Corasa5464812017-04-19 13:00:05 -07001428 /* *INDENT-OFF* */
1429 foreach_vlib_main (({
Florin Corasfd542f12018-05-16 19:28:24 -07001430 if (have_workers && ii == 0)
1431 {
1432 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1433 state);
1434 if (is_en)
1435 {
1436 vlib_node_t *n = vlib_get_node (this_vlib_main,
1437 session_queue_process_node.index);
1438 vlib_start_process (this_vlib_main, n->runtime_index);
1439 }
1440 else
1441 {
1442 vlib_process_signal_event_mt (this_vlib_main,
1443 session_queue_process_node.index,
1444 SESSION_Q_PROCESS_STOP, 0);
1445 }
1446
1447 continue;
1448 }
Florin Corasa5464812017-04-19 13:00:05 -07001449 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1450 state);
1451 }));
1452 /* *INDENT-ON* */
1453}
1454
Florin Corase04c2992017-03-01 08:17:34 -08001455clib_error_t *
1456vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1457{
Florin Corascea194d2017-10-02 00:18:51 -07001458 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001459 if (is_en)
1460 {
1461 if (session_manager_main.is_enabled)
1462 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001463
Florin Corasa5464812017-04-19 13:00:05 -07001464 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001465 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001466 }
1467 else
1468 {
1469 session_manager_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001470 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001471 }
1472
Florin Corascea194d2017-10-02 00:18:51 -07001473 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001474}
1475
Florin Corase04c2992017-03-01 08:17:34 -08001476clib_error_t *
1477session_manager_main_init (vlib_main_t * vm)
1478{
1479 session_manager_main_t *smm = &session_manager_main;
Florin Corasb384b542018-01-15 01:08:33 -08001480 smm->session_baseva = 0x200000000ULL;
Florin Corasa332c462018-01-31 06:52:17 -08001481 smm->session_va_space_size = (u64) 128 << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001482 smm->evt_qs_segment_size = 64 << 20;
Florin Corase04c2992017-03-01 08:17:34 -08001483 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001484 return 0;
1485}
1486
Dave Barach2c25a622017-06-26 11:35:07 -04001487VLIB_INIT_FUNCTION (session_manager_main_init);
1488
1489static clib_error_t *
1490session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001491{
1492 session_manager_main_t *smm = &session_manager_main;
1493 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001494 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001495
1496 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1497 {
1498 if (unformat (input, "event-queue-length %d", &nitems))
1499 {
1500 if (nitems >= 2048)
1501 smm->configured_event_queue_length = nitems;
1502 else
1503 clib_warning ("event queue length %d too small, ignored", nitems);
1504 }
Florin Coras66b11312017-07-31 17:18:03 -07001505 else if (unformat (input, "preallocated-sessions %d",
1506 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001507 ;
Florin Coras66b11312017-07-31 17:18:03 -07001508 else if (unformat (input, "v4-session-table-buckets %d",
1509 &smm->configured_v4_session_table_buckets))
1510 ;
1511 else if (unformat (input, "v4-halfopen-table-buckets %d",
1512 &smm->configured_v4_halfopen_table_buckets))
1513 ;
1514 else if (unformat (input, "v6-session-table-buckets %d",
1515 &smm->configured_v6_session_table_buckets))
1516 ;
1517 else if (unformat (input, "v6-halfopen-table-buckets %d",
1518 &smm->configured_v6_halfopen_table_buckets))
1519 ;
1520 else if (unformat (input, "v4-session-table-memory %U",
1521 unformat_memory_size, &tmp))
1522 {
1523 if (tmp >= 0x100000000)
1524 return clib_error_return (0, "memory size %llx (%lld) too large",
1525 tmp, tmp);
1526 smm->configured_v4_session_table_memory = tmp;
1527 }
1528 else if (unformat (input, "v4-halfopen-table-memory %U",
1529 unformat_memory_size, &tmp))
1530 {
1531 if (tmp >= 0x100000000)
1532 return clib_error_return (0, "memory size %llx (%lld) too large",
1533 tmp, tmp);
1534 smm->configured_v4_halfopen_table_memory = tmp;
1535 }
1536 else if (unformat (input, "v6-session-table-memory %U",
1537 unformat_memory_size, &tmp))
1538 {
1539 if (tmp >= 0x100000000)
1540 return clib_error_return (0, "memory size %llx (%lld) too large",
1541 tmp, tmp);
1542 smm->configured_v6_session_table_memory = tmp;
1543 }
1544 else if (unformat (input, "v6-halfopen-table-memory %U",
1545 unformat_memory_size, &tmp))
1546 {
1547 if (tmp >= 0x100000000)
1548 return clib_error_return (0, "memory size %llx (%lld) too large",
1549 tmp, tmp);
1550 smm->configured_v6_halfopen_table_memory = tmp;
1551 }
Florin Coras93e65802017-11-29 00:07:11 -05001552 else if (unformat (input, "local-endpoints-table-memory %U",
1553 unformat_memory_size, &tmp))
1554 {
1555 if (tmp >= 0x100000000)
1556 return clib_error_return (0, "memory size %llx (%lld) too large",
1557 tmp, tmp);
1558 smm->local_endpoints_table_memory = tmp;
1559 }
1560 else if (unformat (input, "local-endpoints-table-buckets %d",
1561 &smm->local_endpoints_table_buckets))
1562 ;
Florin Corasb384b542018-01-15 01:08:33 -08001563 else if (unformat (input, "evt_qs_memfd_seg"))
1564 smm->evt_qs_use_memfd_seg = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001565 else
1566 return clib_error_return (0, "unknown input `%U'",
1567 format_unformat_error, input);
1568 }
1569 return 0;
1570}
1571
1572VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1573
Dave Barach68b0fb02017-02-28 15:15:56 -05001574/*
1575 * fd.io coding-style-patch-verification: ON
1576 *
1577 * Local Variables:
1578 * eval: (c-set-style "gnu")
1579 * End:
1580 */